2 * Marvell Wireless LAN device driver: functions for station ioctl
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.
30 * Copies the multicast address list from device to driver.
32 * This function does not validate the destination memory for
33 * size, and the calling function must ensure enough memory is
36 int mwifiex_copy_mcast_addr(struct mwifiex_multicast_list
*mlist
,
37 struct net_device
*dev
)
40 struct netdev_hw_addr
*ha
;
42 netdev_for_each_mc_addr(ha
, dev
)
43 memcpy(&mlist
->mac_list
[i
++], ha
->addr
, ETH_ALEN
);
49 * Wait queue completion handler.
51 * This function waits on a cmd wait queue. It also cancels the pending
52 * request after waking up, in case of errors.
54 int mwifiex_wait_queue_complete(struct mwifiex_adapter
*adapter
)
56 bool cancel_flag
= false;
57 int status
= adapter
->cmd_wait_q
.status
;
59 dev_dbg(adapter
->dev
, "cmd pending\n");
60 atomic_inc(&adapter
->cmd_pending
);
62 /* Status pending, wake up main process */
63 queue_work(adapter
->workqueue
, &adapter
->main_work
);
65 /* Wait for completion */
66 wait_event_interruptible(adapter
->cmd_wait_q
.wait
,
67 adapter
->cmd_wait_q
.condition
);
68 if (!adapter
->cmd_wait_q
.condition
)
72 mwifiex_cancel_pending_ioctl(adapter
);
73 dev_dbg(adapter
->dev
, "cmd cancel\n");
75 adapter
->cmd_wait_q
.status
= 0;
81 * This function prepares the correct firmware command and
82 * issues it to set the multicast list.
84 * This function can be used to enable promiscuous mode, or enable all
85 * multicast packets, or to enable selective multicast.
87 int mwifiex_request_set_multicast_list(struct mwifiex_private
*priv
,
88 struct mwifiex_multicast_list
*mcast_list
)
93 old_pkt_filter
= priv
->curr_pkt_filter
;
95 if (mcast_list
->mode
== MWIFIEX_PROMISC_MODE
) {
96 dev_dbg(priv
->adapter
->dev
, "info: Enable Promiscuous mode\n");
97 priv
->curr_pkt_filter
|= HostCmd_ACT_MAC_PROMISCUOUS_ENABLE
;
98 priv
->curr_pkt_filter
&=
99 ~HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE
;
102 priv
->curr_pkt_filter
&= ~HostCmd_ACT_MAC_PROMISCUOUS_ENABLE
;
103 if (mcast_list
->mode
== MWIFIEX_MULTICAST_MODE
) {
104 dev_dbg(priv
->adapter
->dev
,
105 "info: Enabling All Multicast!\n");
106 priv
->curr_pkt_filter
|=
107 HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE
;
109 priv
->curr_pkt_filter
&=
110 ~HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE
;
111 if (mcast_list
->num_multicast_addr
) {
112 dev_dbg(priv
->adapter
->dev
,
113 "info: Set multicast list=%d\n",
114 mcast_list
->num_multicast_addr
);
115 /* Set multicast addresses to firmware */
116 if (old_pkt_filter
== priv
->curr_pkt_filter
) {
117 /* Send request to firmware */
118 ret
= mwifiex_send_cmd_async(priv
,
119 HostCmd_CMD_MAC_MULTICAST_ADR
,
120 HostCmd_ACT_GEN_SET
, 0,
123 /* Send request to firmware */
124 ret
= mwifiex_send_cmd_async(priv
,
125 HostCmd_CMD_MAC_MULTICAST_ADR
,
126 HostCmd_ACT_GEN_SET
, 0,
132 dev_dbg(priv
->adapter
->dev
,
133 "info: old_pkt_filter=%#x, curr_pkt_filter=%#x\n",
134 old_pkt_filter
, priv
->curr_pkt_filter
);
135 if (old_pkt_filter
!= priv
->curr_pkt_filter
) {
136 ret
= mwifiex_send_cmd_async(priv
, HostCmd_CMD_MAC_CONTROL
,
138 0, &priv
->curr_pkt_filter
);
145 * In Ad-Hoc mode, the IBSS is created if not found in scan list.
146 * In both Ad-Hoc and infra mode, an deauthentication is performed
149 int mwifiex_bss_start(struct mwifiex_private
*priv
,
150 struct mwifiex_ssid_bssid
*ssid_bssid
)
153 struct mwifiex_adapter
*adapter
= priv
->adapter
;
156 priv
->scan_block
= false;
160 if (priv
->bss_mode
== NL80211_IFTYPE_STATION
) {
162 ret
= mwifiex_deauthenticate(priv
, NULL
);
166 /* Search for the requested SSID in the scan table */
167 if (ssid_bssid
->ssid
.ssid_len
)
168 i
= mwifiex_find_ssid_in_list(priv
, &ssid_bssid
->ssid
,
169 NULL
, NL80211_IFTYPE_STATION
);
171 i
= mwifiex_find_bssid_in_list(priv
,
172 (u8
*) &ssid_bssid
->bssid
,
173 NL80211_IFTYPE_STATION
);
177 dev_dbg(adapter
->dev
,
178 "info: SSID found in scan list ... associating...\n");
180 /* Clear any past association response stored for
181 * application retrieval */
182 priv
->assoc_rsp_size
= 0;
183 ret
= mwifiex_associate(priv
, &adapter
->scan_table
[i
]);
188 /* If the requested SSID matches current SSID, return */
189 if (ssid_bssid
->ssid
.ssid_len
&&
191 (&priv
->curr_bss_params
.bss_descriptor
.ssid
,
195 /* Exit Adhoc mode first */
196 dev_dbg(adapter
->dev
, "info: Sending Adhoc Stop\n");
197 ret
= mwifiex_deauthenticate(priv
, NULL
);
201 priv
->adhoc_is_link_sensed
= false;
203 /* Search for the requested network in the scan table */
204 if (ssid_bssid
->ssid
.ssid_len
)
205 i
= mwifiex_find_ssid_in_list(priv
,
206 &ssid_bssid
->ssid
, NULL
,
207 NL80211_IFTYPE_ADHOC
);
209 i
= mwifiex_find_bssid_in_list(priv
,
210 (u8
*)&ssid_bssid
->bssid
,
211 NL80211_IFTYPE_ADHOC
);
214 dev_dbg(adapter
->dev
, "info: network found in scan"
215 " list. Joining...\n");
216 ret
= mwifiex_adhoc_join(priv
, &adapter
->scan_table
[i
]);
220 dev_dbg(adapter
->dev
, "info: Network not found in "
221 "the list, creating adhoc with ssid = %s\n",
222 ssid_bssid
->ssid
.ssid
);
223 ret
= mwifiex_adhoc_start(priv
, &ssid_bssid
->ssid
);
233 * IOCTL request handler to set host sleep configuration.
235 * This function prepares the correct firmware command and
238 int mwifiex_set_hs_params(struct mwifiex_private
*priv
, u16 action
,
239 int cmd_type
, struct mwifiex_ds_hs_cfg
*hs_cfg
)
242 struct mwifiex_adapter
*adapter
= priv
->adapter
;
250 case HostCmd_ACT_GEN_SET
:
251 if (adapter
->pps_uapsd_mode
) {
252 dev_dbg(adapter
->dev
, "info: Host Sleep IOCTL"
253 " is blocked in UAPSD/PPS mode\n");
257 if (hs_cfg
->is_invoke_hostcmd
) {
258 if (hs_cfg
->conditions
== HOST_SLEEP_CFG_CANCEL
) {
259 if (!adapter
->is_hs_configured
)
260 /* Already cancelled */
262 /* Save previous condition */
263 prev_cond
= le32_to_cpu(adapter
->hs_cfg
265 adapter
->hs_cfg
.conditions
=
266 cpu_to_le32(hs_cfg
->conditions
);
267 } else if (hs_cfg
->conditions
) {
268 adapter
->hs_cfg
.conditions
=
269 cpu_to_le32(hs_cfg
->conditions
);
270 adapter
->hs_cfg
.gpio
= (u8
)hs_cfg
->gpio
;
272 adapter
->hs_cfg
.gap
= (u8
)hs_cfg
->gap
;
273 } else if (adapter
->hs_cfg
.conditions
==
275 HOST_SLEEP_CFG_CANCEL
)) {
276 /* Return failure if no parameters for HS
281 if (cmd_type
== MWIFIEX_SYNC_CMD
)
282 status
= mwifiex_send_cmd_sync(priv
,
283 HostCmd_CMD_802_11_HS_CFG_ENH
,
284 HostCmd_ACT_GEN_SET
, 0,
287 status
= mwifiex_send_cmd_async(priv
,
288 HostCmd_CMD_802_11_HS_CFG_ENH
,
289 HostCmd_ACT_GEN_SET
, 0,
291 if (hs_cfg
->conditions
== HOST_SLEEP_CFG_CANCEL
)
292 /* Restore previous condition */
293 adapter
->hs_cfg
.conditions
=
294 cpu_to_le32(prev_cond
);
296 adapter
->hs_cfg
.conditions
=
297 cpu_to_le32(hs_cfg
->conditions
);
298 adapter
->hs_cfg
.gpio
= (u8
)hs_cfg
->gpio
;
299 adapter
->hs_cfg
.gap
= (u8
)hs_cfg
->gap
;
302 case HostCmd_ACT_GEN_GET
:
303 hs_cfg
->conditions
= le32_to_cpu(adapter
->hs_cfg
.conditions
);
304 hs_cfg
->gpio
= adapter
->hs_cfg
.gpio
;
305 hs_cfg
->gap
= adapter
->hs_cfg
.gap
;
316 * Sends IOCTL request to cancel the existing Host Sleep configuration.
318 * This function allocates the IOCTL request buffer, fills it
319 * with requisite parameters and calls the IOCTL handler.
321 int mwifiex_cancel_hs(struct mwifiex_private
*priv
, int cmd_type
)
323 struct mwifiex_ds_hs_cfg hscfg
;
325 hscfg
.conditions
= HOST_SLEEP_CFG_CANCEL
;
326 hscfg
.is_invoke_hostcmd
= true;
328 return mwifiex_set_hs_params(priv
, HostCmd_ACT_GEN_SET
,
331 EXPORT_SYMBOL_GPL(mwifiex_cancel_hs
);
334 * Sends IOCTL request to cancel the existing Host Sleep configuration.
336 * This function allocates the IOCTL request buffer, fills it
337 * with requisite parameters and calls the IOCTL handler.
339 int mwifiex_enable_hs(struct mwifiex_adapter
*adapter
)
341 struct mwifiex_ds_hs_cfg hscfg
;
343 if (adapter
->hs_activated
) {
344 dev_dbg(adapter
->dev
, "cmd: HS Already actived\n");
348 adapter
->hs_activate_wait_q_woken
= false;
350 memset(&hscfg
, 0, sizeof(struct mwifiex_hs_config_param
));
351 hscfg
.is_invoke_hostcmd
= true;
353 if (mwifiex_set_hs_params(mwifiex_get_priv(adapter
,
354 MWIFIEX_BSS_ROLE_STA
),
355 HostCmd_ACT_GEN_SET
, MWIFIEX_SYNC_CMD
,
357 dev_err(adapter
->dev
, "IOCTL request HS enable failed\n");
361 wait_event_interruptible(adapter
->hs_activate_wait_q
,
362 adapter
->hs_activate_wait_q_woken
);
366 EXPORT_SYMBOL_GPL(mwifiex_enable_hs
);
369 * IOCTL request handler to get BSS information.
371 * This function collates the information from different driver structures
372 * to send to the user.
374 int mwifiex_get_bss_info(struct mwifiex_private
*priv
,
375 struct mwifiex_bss_info
*info
)
377 struct mwifiex_adapter
*adapter
= priv
->adapter
;
378 struct mwifiex_bssdescriptor
*bss_desc
;
384 bss_desc
= &priv
->curr_bss_params
.bss_descriptor
;
386 info
->bss_mode
= priv
->bss_mode
;
388 memcpy(&info
->ssid
, &bss_desc
->ssid
,
389 sizeof(struct mwifiex_802_11_ssid
));
391 memcpy(&info
->bssid
, &bss_desc
->mac_address
, ETH_ALEN
);
393 info
->bss_chan
= bss_desc
->channel
;
395 info
->region_code
= adapter
->region_code
;
397 /* Scan table index if connected */
398 info
->scan_table_idx
= 0;
399 if (priv
->media_connected
) {
401 mwifiex_find_ssid_in_list(priv
, &bss_desc
->ssid
,
402 bss_desc
->mac_address
,
405 info
->scan_table_idx
= tbl_idx
;
408 info
->media_connected
= priv
->media_connected
;
410 info
->max_power_level
= priv
->max_tx_power_level
;
411 info
->min_power_level
= priv
->min_tx_power_level
;
413 info
->adhoc_state
= priv
->adhoc_state
;
415 info
->bcn_nf_last
= priv
->bcn_nf_last
;
417 if (priv
->sec_info
.wep_status
== MWIFIEX_802_11_WEP_ENABLED
)
418 info
->wep_status
= true;
420 info
->wep_status
= false;
422 info
->is_hs_configured
= adapter
->is_hs_configured
;
423 info
->is_deep_sleep
= adapter
->is_deep_sleep
;
429 * The function sets band configurations.
431 * it performs extra checks to make sure the Ad-Hoc
432 * band and channel are compatible. Otherwise it returns an error.
435 int mwifiex_set_radio_band_cfg(struct mwifiex_private
*priv
,
436 struct mwifiex_ds_band_cfg
*radio_cfg
)
438 struct mwifiex_adapter
*adapter
= priv
->adapter
;
439 u8 infra_band
, adhoc_band
;
442 infra_band
= (u8
) radio_cfg
->config_bands
;
443 adhoc_band
= (u8
) radio_cfg
->adhoc_start_band
;
444 adhoc_channel
= radio_cfg
->adhoc_channel
;
447 if ((infra_band
| adapter
->fw_bands
) & ~adapter
->fw_bands
)
450 adapter
->config_bands
= infra_band
;
452 /* SET Ad-hoc Band */
453 if ((adhoc_band
| adapter
->fw_bands
) & ~adapter
->fw_bands
)
457 adapter
->adhoc_start_band
= adhoc_band
;
458 adapter
->chan_offset
= (u8
) radio_cfg
->sec_chan_offset
;
460 * If no adhoc_channel is supplied verify if the existing adhoc
461 * channel compiles with new adhoc_band
463 if (!adhoc_channel
) {
464 if (!mwifiex_get_cfp_by_band_and_channel_from_cfg80211
465 (priv
, adapter
->adhoc_start_band
,
466 priv
->adhoc_channel
)) {
467 /* Pass back the default channel */
468 radio_cfg
->adhoc_channel
= DEFAULT_AD_HOC_CHANNEL
;
469 if ((adapter
->adhoc_start_band
& BAND_A
)
470 || (adapter
->adhoc_start_band
& BAND_AN
))
471 radio_cfg
->adhoc_channel
=
472 DEFAULT_AD_HOC_CHANNEL_A
;
474 } else { /* Retrurn error if adhoc_band and
475 adhoc_channel combination is invalid */
476 if (!mwifiex_get_cfp_by_band_and_channel_from_cfg80211
477 (priv
, adapter
->adhoc_start_band
, (u16
) adhoc_channel
))
479 priv
->adhoc_channel
= (u8
) adhoc_channel
;
481 if ((adhoc_band
& BAND_GN
) || (adhoc_band
& BAND_AN
))
482 adapter
->adhoc_11n_enabled
= true;
484 adapter
->adhoc_11n_enabled
= false;
490 * The function disables auto deep sleep mode.
492 int mwifiex_disable_auto_ds(struct mwifiex_private
*priv
)
494 struct mwifiex_ds_auto_ds auto_ds
;
496 auto_ds
.auto_ds
= DEEP_SLEEP_OFF
;
498 return mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_PS_MODE_ENH
,
499 DIS_AUTO_PS
, BITMAP_AUTO_DS
, &auto_ds
);
501 EXPORT_SYMBOL_GPL(mwifiex_disable_auto_ds
);
504 * IOCTL request handler to set/get active channel.
506 * This function performs validity checking on channel/frequency
507 * compatibility and returns failure if not valid.
509 int mwifiex_bss_set_channel(struct mwifiex_private
*priv
,
510 struct mwifiex_chan_freq_power
*chan
)
512 struct mwifiex_adapter
*adapter
= priv
->adapter
;
513 struct mwifiex_chan_freq_power
*cfp
= NULL
;
518 if (!chan
->channel
&& !chan
->freq
)
520 if (adapter
->adhoc_start_band
& BAND_AN
)
521 adapter
->adhoc_start_band
= BAND_G
| BAND_B
| BAND_GN
;
522 else if (adapter
->adhoc_start_band
& BAND_A
)
523 adapter
->adhoc_start_band
= BAND_G
| BAND_B
;
525 if (chan
->channel
<= MAX_CHANNEL_BAND_BG
)
526 cfp
= mwifiex_get_cfp_by_band_and_channel_from_cfg80211
527 (priv
, 0, (u16
) chan
->channel
);
529 cfp
= mwifiex_get_cfp_by_band_and_channel_from_cfg80211
530 (priv
, BAND_A
, (u16
) chan
->channel
);
532 if (adapter
->adhoc_11n_enabled
)
533 adapter
->adhoc_start_band
= BAND_A
536 adapter
->adhoc_start_band
= BAND_A
;
540 if (chan
->freq
<= MAX_FREQUENCY_BAND_BG
)
541 cfp
= mwifiex_get_cfp_by_band_and_freq_from_cfg80211(
542 priv
, 0, chan
->freq
);
544 cfp
= mwifiex_get_cfp_by_band_and_freq_from_cfg80211
545 (priv
, BAND_A
, chan
->freq
);
547 if (adapter
->adhoc_11n_enabled
)
548 adapter
->adhoc_start_band
= BAND_A
551 adapter
->adhoc_start_band
= BAND_A
;
555 if (!cfp
|| !cfp
->channel
) {
556 dev_err(adapter
->dev
, "invalid channel/freq\n");
559 priv
->adhoc_channel
= (u8
) cfp
->channel
;
560 chan
->channel
= cfp
->channel
;
561 chan
->freq
= cfp
->freq
;
567 * IOCTL request handler to set/get Ad-Hoc channel.
569 * This function prepares the correct firmware command and
570 * issues it to set or get the ad-hoc channel.
572 static int mwifiex_bss_ioctl_ibss_channel(struct mwifiex_private
*priv
,
573 u16 action
, u16
*channel
)
575 if (action
== HostCmd_ACT_GEN_GET
) {
576 if (!priv
->media_connected
) {
577 *channel
= priv
->adhoc_channel
;
581 priv
->adhoc_channel
= (u8
) *channel
;
584 return mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_RF_CHANNEL
,
589 * IOCTL request handler to find a particular BSS.
591 * The BSS can be searched with either a BSSID or a SSID. If none of
592 * these are provided, just the best BSS (best RSSI) is returned.
594 int mwifiex_bss_ioctl_find_bss(struct mwifiex_private
*priv
,
595 struct mwifiex_ssid_bssid
*ssid_bssid
)
597 struct mwifiex_adapter
*adapter
= priv
->adapter
;
598 struct mwifiex_bssdescriptor
*bss_desc
;
599 u8 zero_mac
[ETH_ALEN
] = { 0, 0, 0, 0, 0, 0 };
603 if (memcmp(ssid_bssid
->bssid
, zero_mac
, sizeof(zero_mac
))) {
604 i
= mwifiex_find_bssid_in_list(priv
,
605 (u8
*) ssid_bssid
->bssid
,
608 memcpy(mac
, ssid_bssid
->bssid
, sizeof(mac
));
609 dev_err(adapter
->dev
, "cannot find bssid %pM\n", mac
);
612 bss_desc
= &adapter
->scan_table
[i
];
613 memcpy(&ssid_bssid
->ssid
, &bss_desc
->ssid
,
614 sizeof(struct mwifiex_802_11_ssid
));
615 } else if (ssid_bssid
->ssid
.ssid_len
) {
616 i
= mwifiex_find_ssid_in_list(priv
, &ssid_bssid
->ssid
, NULL
,
619 dev_err(adapter
->dev
, "cannot find ssid %s\n",
620 ssid_bssid
->ssid
.ssid
);
623 bss_desc
= &adapter
->scan_table
[i
];
624 memcpy(ssid_bssid
->bssid
, bss_desc
->mac_address
, ETH_ALEN
);
626 return mwifiex_find_best_network(priv
, ssid_bssid
);
633 * IOCTL request handler to change Ad-Hoc channel.
635 * This function allocates the IOCTL request buffer, fills it
636 * with requisite parameters and calls the IOCTL handler.
638 * The function follows the following steps to perform the change -
639 * - Get current IBSS information
640 * - Get current channel
641 * - If no change is required, return
642 * - If not connected, change channel and return
646 * - Perform specific SSID scan with same SSID
647 * - Start/Join the IBSS
650 mwifiex_drv_change_adhoc_chan(struct mwifiex_private
*priv
, int channel
)
653 struct mwifiex_bss_info bss_info
;
654 struct mwifiex_ssid_bssid ssid_bssid
;
657 memset(&bss_info
, 0, sizeof(bss_info
));
659 /* Get BSS information */
660 if (mwifiex_get_bss_info(priv
, &bss_info
))
663 /* Get current channel */
664 ret
= mwifiex_bss_ioctl_ibss_channel(priv
, HostCmd_ACT_GEN_GET
,
667 if (curr_chan
== channel
) {
671 dev_dbg(priv
->adapter
->dev
, "cmd: updating channel from %d to %d\n",
674 if (!bss_info
.media_connected
) {
680 memset(&ssid_bssid
, 0, ETH_ALEN
);
681 ret
= mwifiex_deauthenticate(priv
, ssid_bssid
.bssid
);
683 ret
= mwifiex_bss_ioctl_ibss_channel(priv
, HostCmd_ACT_GEN_SET
,
686 /* Do specific SSID scanning */
687 if (mwifiex_request_scan(priv
, &bss_info
.ssid
)) {
691 /* Start/Join Adhoc network */
692 memset(&ssid_bssid
, 0, sizeof(struct mwifiex_ssid_bssid
));
693 memcpy(&ssid_bssid
.ssid
, &bss_info
.ssid
,
694 sizeof(struct mwifiex_802_11_ssid
));
696 ret
= mwifiex_bss_start(priv
, &ssid_bssid
);
702 * IOCTL request handler to get rate.
704 * This function prepares the correct firmware command and
705 * issues it to get the current rate if it is connected,
706 * otherwise, the function returns the lowest supported rate
709 static int mwifiex_rate_ioctl_get_rate_value(struct mwifiex_private
*priv
,
710 struct mwifiex_rate_cfg
*rate_cfg
)
712 struct mwifiex_adapter
*adapter
= priv
->adapter
;
714 rate_cfg
->is_rate_auto
= priv
->is_data_rate_auto
;
715 if (!priv
->media_connected
) {
716 switch (adapter
->config_bands
) {
718 /* Return the lowest supported rate for B band */
719 rate_cfg
->rate
= supported_rates_b
[0] & 0x7f;
722 case BAND_G
| BAND_GN
:
723 /* Return the lowest supported rate for G band */
724 rate_cfg
->rate
= supported_rates_g
[0] & 0x7f;
726 case BAND_B
| BAND_G
:
727 case BAND_A
| BAND_B
| BAND_G
:
728 case BAND_A
| BAND_B
:
729 case BAND_A
| BAND_B
| BAND_G
| BAND_AN
| BAND_GN
:
730 case BAND_B
| BAND_G
| BAND_GN
:
731 /* Return the lowest supported rate for BG band */
732 rate_cfg
->rate
= supported_rates_bg
[0] & 0x7f;
735 case BAND_A
| BAND_G
:
736 case BAND_A
| BAND_G
| BAND_AN
| BAND_GN
:
737 case BAND_A
| BAND_AN
:
738 /* Return the lowest supported rate for A band */
739 rate_cfg
->rate
= supported_rates_a
[0] & 0x7f;
742 /* Return the lowest supported rate for N band */
743 rate_cfg
->rate
= supported_rates_n
[0] & 0x7f;
746 dev_warn(adapter
->dev
, "invalid band %#x\n",
747 adapter
->config_bands
);
751 return mwifiex_send_cmd_sync(priv
,
752 HostCmd_CMD_802_11_TX_RATE_QUERY
,
753 HostCmd_ACT_GEN_GET
, 0, NULL
);
760 * IOCTL request handler to set rate.
762 * This function prepares the correct firmware command and
763 * issues it to set the current rate.
765 * The function also performs validation checking on the supplied value.
767 static int mwifiex_rate_ioctl_set_rate_value(struct mwifiex_private
*priv
,
768 struct mwifiex_rate_cfg
*rate_cfg
)
770 u8 rates
[MWIFIEX_SUPPORTED_RATES
];
773 u16 bitmap_rates
[MAX_BITMAP_RATES_SIZE
];
775 struct mwifiex_adapter
*adapter
= priv
->adapter
;
777 if (rate_cfg
->is_rate_auto
) {
778 memset(bitmap_rates
, 0, sizeof(bitmap_rates
));
779 /* Support all HR/DSSS rates */
780 bitmap_rates
[0] = 0x000F;
781 /* Support all OFDM rates */
782 bitmap_rates
[1] = 0x00FF;
783 /* Support all HT-MCSs rate */
784 for (i
= 0; i
< ARRAY_SIZE(priv
->bitmap_rates
) - 3; i
++)
785 bitmap_rates
[i
+ 2] = 0xFFFF;
786 bitmap_rates
[9] = 0x3FFF;
788 memset(rates
, 0, sizeof(rates
));
789 mwifiex_get_active_data_rates(priv
, rates
);
791 for (i
= 0; (rate
[i
] && i
< MWIFIEX_SUPPORTED_RATES
); i
++) {
792 dev_dbg(adapter
->dev
, "info: rate=%#x wanted=%#x\n",
793 rate
[i
], rate_cfg
->rate
);
794 if ((rate
[i
] & 0x7f) == (rate_cfg
->rate
& 0x7f))
797 if (!rate
[i
] || (i
== MWIFIEX_SUPPORTED_RATES
)) {
798 dev_err(adapter
->dev
, "fixed data rate %#x is out "
799 "of range\n", rate_cfg
->rate
);
802 memset(bitmap_rates
, 0, sizeof(bitmap_rates
));
804 rate_index
= mwifiex_data_rate_to_index(rate_cfg
->rate
);
806 /* Only allow b/g rates to be set */
807 if (rate_index
>= MWIFIEX_RATE_INDEX_HRDSSS0
&&
808 rate_index
<= MWIFIEX_RATE_INDEX_HRDSSS3
) {
809 bitmap_rates
[0] = 1 << rate_index
;
811 rate_index
-= 1; /* There is a 0x00 in the table */
812 if (rate_index
>= MWIFIEX_RATE_INDEX_OFDM0
&&
813 rate_index
<= MWIFIEX_RATE_INDEX_OFDM7
)
814 bitmap_rates
[1] = 1 << (rate_index
-
815 MWIFIEX_RATE_INDEX_OFDM0
);
819 ret
= mwifiex_send_cmd_sync(priv
, HostCmd_CMD_TX_RATE_CFG
,
820 HostCmd_ACT_GEN_SET
, 0, bitmap_rates
);
826 * IOCTL request handler to set/get rate.
828 * This function can be used to set/get either the rate value or the
831 static int mwifiex_rate_ioctl_cfg(struct mwifiex_private
*priv
,
832 struct mwifiex_rate_cfg
*rate_cfg
)
839 if (rate_cfg
->action
== HostCmd_ACT_GEN_GET
)
840 status
= mwifiex_rate_ioctl_get_rate_value(priv
, rate_cfg
);
842 status
= mwifiex_rate_ioctl_set_rate_value(priv
, rate_cfg
);
848 * Sends IOCTL request to get the data rate.
850 * This function allocates the IOCTL request buffer, fills it
851 * with requisite parameters and calls the IOCTL handler.
853 int mwifiex_drv_get_data_rate(struct mwifiex_private
*priv
,
854 struct mwifiex_rate_cfg
*rate
)
858 memset(rate
, 0, sizeof(struct mwifiex_rate_cfg
));
859 rate
->action
= HostCmd_ACT_GEN_GET
;
860 ret
= mwifiex_rate_ioctl_cfg(priv
, rate
);
863 if (rate
&& rate
->is_rate_auto
)
864 rate
->rate
= mwifiex_index_to_data_rate(priv
->tx_rate
,
867 rate
->rate
= priv
->data_rate
;
876 * IOCTL request handler to set tx power configuration.
878 * This function prepares the correct firmware command and
881 * For non-auto power mode, all the following power groups are set -
882 * - Modulation class HR/DSSS
883 * - Modulation class OFDM
884 * - Modulation class HTBW20
885 * - Modulation class HTBW40
887 int mwifiex_set_tx_power(struct mwifiex_private
*priv
,
888 struct mwifiex_power_cfg
*power_cfg
)
891 struct host_cmd_ds_txpwr_cfg
*txp_cfg
;
892 struct mwifiex_types_power_group
*pg_tlv
;
893 struct mwifiex_power_group
*pg
;
897 if (!power_cfg
->is_power_auto
) {
898 dbm
= (u16
) power_cfg
->power_level
;
899 if ((dbm
< priv
->min_tx_power_level
) ||
900 (dbm
> priv
->max_tx_power_level
)) {
901 dev_err(priv
->adapter
->dev
, "txpower value %d dBm"
902 " is out of range (%d dBm-%d dBm)\n",
903 dbm
, priv
->min_tx_power_level
,
904 priv
->max_tx_power_level
);
908 buf
= kzalloc(MWIFIEX_SIZE_OF_CMD_BUFFER
, GFP_KERNEL
);
910 dev_err(priv
->adapter
->dev
, "%s: failed to alloc cmd buffer\n",
915 txp_cfg
= (struct host_cmd_ds_txpwr_cfg
*) buf
;
916 txp_cfg
->action
= cpu_to_le16(HostCmd_ACT_GEN_SET
);
917 if (!power_cfg
->is_power_auto
) {
918 txp_cfg
->mode
= cpu_to_le32(1);
919 pg_tlv
= (struct mwifiex_types_power_group
*) (buf
+
920 sizeof(struct host_cmd_ds_txpwr_cfg
));
921 pg_tlv
->type
= TLV_TYPE_POWER_GROUP
;
922 pg_tlv
->length
= 4 * sizeof(struct mwifiex_power_group
);
923 pg
= (struct mwifiex_power_group
*) (buf
+
924 sizeof(struct host_cmd_ds_txpwr_cfg
) +
925 sizeof(struct mwifiex_types_power_group
));
926 /* Power group for modulation class HR/DSSS */
927 pg
->first_rate_code
= 0x00;
928 pg
->last_rate_code
= 0x03;
929 pg
->modulation_class
= MOD_CLASS_HR_DSSS
;
931 pg
->power_min
= (s8
) dbm
;
932 pg
->power_max
= (s8
) dbm
;
934 /* Power group for modulation class OFDM */
935 pg
->first_rate_code
= 0x00;
936 pg
->last_rate_code
= 0x07;
937 pg
->modulation_class
= MOD_CLASS_OFDM
;
939 pg
->power_min
= (s8
) dbm
;
940 pg
->power_max
= (s8
) dbm
;
942 /* Power group for modulation class HTBW20 */
943 pg
->first_rate_code
= 0x00;
944 pg
->last_rate_code
= 0x20;
945 pg
->modulation_class
= MOD_CLASS_HT
;
947 pg
->power_min
= (s8
) dbm
;
948 pg
->power_max
= (s8
) dbm
;
949 pg
->ht_bandwidth
= HT_BW_20
;
951 /* Power group for modulation class HTBW40 */
952 pg
->first_rate_code
= 0x00;
953 pg
->last_rate_code
= 0x20;
954 pg
->modulation_class
= MOD_CLASS_HT
;
956 pg
->power_min
= (s8
) dbm
;
957 pg
->power_max
= (s8
) dbm
;
958 pg
->ht_bandwidth
= HT_BW_40
;
960 ret
= mwifiex_send_cmd_sync(priv
, HostCmd_CMD_TXPWR_CFG
,
961 HostCmd_ACT_GEN_SET
, 0, buf
);
968 * IOCTL request handler to get power save mode.
970 * This function prepares the correct firmware command and
973 int mwifiex_drv_set_power(struct mwifiex_private
*priv
, u32
*ps_mode
)
976 struct mwifiex_adapter
*adapter
= priv
->adapter
;
980 adapter
->ps_mode
= MWIFIEX_802_11_POWER_MODE_PSP
;
982 adapter
->ps_mode
= MWIFIEX_802_11_POWER_MODE_CAM
;
983 sub_cmd
= (*ps_mode
) ? EN_AUTO_PS
: DIS_AUTO_PS
;
984 ret
= mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_PS_MODE_ENH
,
985 sub_cmd
, BITMAP_STA_PS
, NULL
);
986 if ((!ret
) && (sub_cmd
== DIS_AUTO_PS
))
987 ret
= mwifiex_send_cmd_async(priv
,
988 HostCmd_CMD_802_11_PS_MODE_ENH
, GET_PS
,
995 * IOCTL request handler to set/reset WPA IE.
997 * The supplied WPA IE is treated as a opaque buffer. Only the first field
998 * is checked to determine WPA version. If buffer length is zero, the existing
1001 static int mwifiex_set_wpa_ie_helper(struct mwifiex_private
*priv
,
1002 u8
*ie_data_ptr
, u16 ie_len
)
1005 if (ie_len
> sizeof(priv
->wpa_ie
)) {
1006 dev_err(priv
->adapter
->dev
,
1007 "failed to copy WPA IE, too big\n");
1010 memcpy(priv
->wpa_ie
, ie_data_ptr
, ie_len
);
1011 priv
->wpa_ie_len
= (u8
) ie_len
;
1012 dev_dbg(priv
->adapter
->dev
, "cmd: Set Wpa_ie_len=%d IE=%#x\n",
1013 priv
->wpa_ie_len
, priv
->wpa_ie
[0]);
1015 if (priv
->wpa_ie
[0] == WLAN_EID_WPA
) {
1016 priv
->sec_info
.wpa_enabled
= true;
1017 } else if (priv
->wpa_ie
[0] == WLAN_EID_RSN
) {
1018 priv
->sec_info
.wpa2_enabled
= true;
1020 priv
->sec_info
.wpa_enabled
= false;
1021 priv
->sec_info
.wpa2_enabled
= false;
1024 memset(priv
->wpa_ie
, 0, sizeof(priv
->wpa_ie
));
1025 priv
->wpa_ie_len
= 0;
1026 dev_dbg(priv
->adapter
->dev
, "info: reset wpa_ie_len=%d IE=%#x\n",
1027 priv
->wpa_ie_len
, priv
->wpa_ie
[0]);
1028 priv
->sec_info
.wpa_enabled
= false;
1029 priv
->sec_info
.wpa2_enabled
= false;
1036 * IOCTL request handler to set/reset WAPI IE.
1038 * The supplied WAPI IE is treated as a opaque buffer. Only the first field
1039 * is checked to internally enable WAPI. If buffer length is zero, the existing
1042 static int mwifiex_set_wapi_ie(struct mwifiex_private
*priv
,
1043 u8
*ie_data_ptr
, u16 ie_len
)
1046 if (ie_len
> sizeof(priv
->wapi_ie
)) {
1047 dev_dbg(priv
->adapter
->dev
,
1048 "info: failed to copy WAPI IE, too big\n");
1051 memcpy(priv
->wapi_ie
, ie_data_ptr
, ie_len
);
1052 priv
->wapi_ie_len
= ie_len
;
1053 dev_dbg(priv
->adapter
->dev
, "cmd: Set wapi_ie_len=%d IE=%#x\n",
1054 priv
->wapi_ie_len
, priv
->wapi_ie
[0]);
1056 if (priv
->wapi_ie
[0] == WLAN_EID_BSS_AC_ACCESS_DELAY
)
1057 priv
->sec_info
.wapi_enabled
= true;
1059 memset(priv
->wapi_ie
, 0, sizeof(priv
->wapi_ie
));
1060 priv
->wapi_ie_len
= ie_len
;
1061 dev_dbg(priv
->adapter
->dev
,
1062 "info: Reset wapi_ie_len=%d IE=%#x\n",
1063 priv
->wapi_ie_len
, priv
->wapi_ie
[0]);
1064 priv
->sec_info
.wapi_enabled
= false;
1070 * IOCTL request handler to set WAPI key.
1072 * This function prepares the correct firmware command and
1075 static int mwifiex_sec_ioctl_set_wapi_key(struct mwifiex_private
*priv
,
1076 struct mwifiex_ds_encrypt_key
*encrypt_key
)
1079 return mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_KEY_MATERIAL
,
1080 HostCmd_ACT_GEN_SET
, KEY_INFO_ENABLED
,
1085 * IOCTL request handler to set WEP network key.
1087 * This function prepares the correct firmware command and
1088 * issues it, after validation checks.
1090 static int mwifiex_sec_ioctl_set_wep_key(struct mwifiex_private
*priv
,
1091 struct mwifiex_ds_encrypt_key
*encrypt_key
)
1094 struct mwifiex_wep_key
*wep_key
;
1097 if (priv
->wep_key_curr_index
>= NUM_WEP_KEYS
)
1098 priv
->wep_key_curr_index
= 0;
1099 wep_key
= &priv
->wep_key
[priv
->wep_key_curr_index
];
1100 index
= encrypt_key
->key_index
;
1101 if (encrypt_key
->key_disable
) {
1102 priv
->sec_info
.wep_status
= MWIFIEX_802_11_WEP_DISABLED
;
1103 } else if (!encrypt_key
->key_len
) {
1104 /* Copy the required key as the current key */
1105 wep_key
= &priv
->wep_key
[index
];
1106 if (!wep_key
->key_length
) {
1107 dev_err(priv
->adapter
->dev
,
1108 "key not set, so cannot enable it\n");
1111 priv
->wep_key_curr_index
= (u16
) index
;
1112 priv
->sec_info
.wep_status
= MWIFIEX_802_11_WEP_ENABLED
;
1114 wep_key
= &priv
->wep_key
[index
];
1115 memset(wep_key
, 0, sizeof(struct mwifiex_wep_key
));
1116 /* Copy the key in the driver */
1117 memcpy(wep_key
->key_material
,
1118 encrypt_key
->key_material
,
1119 encrypt_key
->key_len
);
1120 wep_key
->key_index
= index
;
1121 wep_key
->key_length
= encrypt_key
->key_len
;
1122 priv
->sec_info
.wep_status
= MWIFIEX_802_11_WEP_ENABLED
;
1124 if (wep_key
->key_length
) {
1125 /* Send request to firmware */
1126 ret
= mwifiex_send_cmd_async(priv
,
1127 HostCmd_CMD_802_11_KEY_MATERIAL
,
1128 HostCmd_ACT_GEN_SET
, 0, NULL
);
1132 if (priv
->sec_info
.wep_status
== MWIFIEX_802_11_WEP_ENABLED
)
1133 priv
->curr_pkt_filter
|= HostCmd_ACT_MAC_WEP_ENABLE
;
1135 priv
->curr_pkt_filter
&= ~HostCmd_ACT_MAC_WEP_ENABLE
;
1137 ret
= mwifiex_send_cmd_sync(priv
, HostCmd_CMD_MAC_CONTROL
,
1138 HostCmd_ACT_GEN_SET
, 0,
1139 &priv
->curr_pkt_filter
);
1145 * IOCTL request handler to set WPA key.
1147 * This function prepares the correct firmware command and
1148 * issues it, after validation checks.
1150 * Current driver only supports key length of up to 32 bytes.
1152 * This function can also be used to disable a currently set key.
1154 static int mwifiex_sec_ioctl_set_wpa_key(struct mwifiex_private
*priv
,
1155 struct mwifiex_ds_encrypt_key
*encrypt_key
)
1158 u8 remove_key
= false;
1159 struct host_cmd_ds_802_11_key_material
*ibss_key
;
1161 /* Current driver only supports key length of up to 32 bytes */
1162 if (encrypt_key
->key_len
> WLAN_MAX_KEY_LEN
) {
1163 dev_err(priv
->adapter
->dev
, "key length too long\n");
1167 if (priv
->bss_mode
== NL80211_IFTYPE_ADHOC
) {
1169 * IBSS/WPA-None uses only one key (Group) for both receiving
1170 * and sending unicast and multicast packets.
1172 /* Send the key as PTK to firmware */
1173 encrypt_key
->key_index
= MWIFIEX_KEY_INDEX_UNICAST
;
1174 ret
= mwifiex_send_cmd_async(priv
,
1175 HostCmd_CMD_802_11_KEY_MATERIAL
,
1176 HostCmd_ACT_GEN_SET
, KEY_INFO_ENABLED
,
1181 ibss_key
= &priv
->aes_key
;
1183 sizeof(struct host_cmd_ds_802_11_key_material
));
1184 /* Copy the key in the driver */
1185 memcpy(ibss_key
->key_param_set
.key
, encrypt_key
->key_material
,
1186 encrypt_key
->key_len
);
1187 memcpy(&ibss_key
->key_param_set
.key_len
, &encrypt_key
->key_len
,
1188 sizeof(ibss_key
->key_param_set
.key_len
));
1189 ibss_key
->key_param_set
.key_type_id
1190 = cpu_to_le16(KEY_TYPE_ID_TKIP
);
1191 ibss_key
->key_param_set
.key_info
= cpu_to_le16(KEY_ENABLED
);
1193 /* Send the key as GTK to firmware */
1194 encrypt_key
->key_index
= ~MWIFIEX_KEY_INDEX_UNICAST
;
1197 if (!encrypt_key
->key_index
)
1198 encrypt_key
->key_index
= MWIFIEX_KEY_INDEX_UNICAST
;
1201 ret
= mwifiex_send_cmd_sync(priv
,
1202 HostCmd_CMD_802_11_KEY_MATERIAL
,
1203 HostCmd_ACT_GEN_SET
, !(KEY_INFO_ENABLED
),
1206 ret
= mwifiex_send_cmd_sync(priv
,
1207 HostCmd_CMD_802_11_KEY_MATERIAL
,
1208 HostCmd_ACT_GEN_SET
, KEY_INFO_ENABLED
,
1215 * IOCTL request handler to set/get network keys.
1217 * This is a generic key handling function which supports WEP, WPA
1221 mwifiex_sec_ioctl_encrypt_key(struct mwifiex_private
*priv
,
1222 struct mwifiex_ds_encrypt_key
*encrypt_key
)
1226 if (encrypt_key
->is_wapi_key
)
1227 status
= mwifiex_sec_ioctl_set_wapi_key(priv
, encrypt_key
);
1228 else if (encrypt_key
->key_len
> WLAN_KEY_LEN_WEP104
)
1229 status
= mwifiex_sec_ioctl_set_wpa_key(priv
, encrypt_key
);
1231 status
= mwifiex_sec_ioctl_set_wep_key(priv
, encrypt_key
);
1236 * This function returns the driver version.
1239 mwifiex_drv_get_driver_version(struct mwifiex_adapter
*adapter
, char *version
,
1248 ver
.l
= adapter
->fw_release_number
;
1249 sprintf(fw_ver
, "%u.%u.%u.p%u", ver
.c
[2], ver
.c
[1], ver
.c
[0], ver
.c
[3]);
1251 snprintf(version
, max_len
, driver_version
, fw_ver
);
1253 dev_dbg(adapter
->dev
, "info: MWIFIEX VERSION: %s\n", version
);
1259 * Sends IOCTL request to get signal information.
1261 * This function allocates the IOCTL request buffer, fills it
1262 * with requisite parameters and calls the IOCTL handler.
1264 int mwifiex_get_signal_info(struct mwifiex_private
*priv
,
1265 struct mwifiex_ds_get_signal
*signal
)
1269 signal
->selector
= ALL_RSSI_INFO_MASK
;
1271 /* Signal info can be obtained only if connected */
1272 if (!priv
->media_connected
) {
1273 dev_dbg(priv
->adapter
->dev
,
1274 "info: Can not get signal in disconnected state\n");
1278 status
= mwifiex_send_cmd_sync(priv
, HostCmd_CMD_RSSI_INFO
,
1279 HostCmd_ACT_GEN_GET
, 0, signal
);
1282 if (signal
->selector
& BCN_RSSI_AVG_MASK
)
1283 priv
->w_stats
.qual
.level
= signal
->bcn_rssi_avg
;
1284 if (signal
->selector
& BCN_NF_AVG_MASK
)
1285 priv
->w_stats
.qual
.noise
= signal
->bcn_nf_avg
;
1292 * Sends IOCTL request to set encoding parameters.
1294 * This function allocates the IOCTL request buffer, fills it
1295 * with requisite parameters and calls the IOCTL handler.
1297 int mwifiex_set_encode(struct mwifiex_private
*priv
, const u8
*key
,
1298 int key_len
, u8 key_index
, int disable
)
1300 struct mwifiex_ds_encrypt_key encrypt_key
;
1302 memset(&encrypt_key
, 0, sizeof(struct mwifiex_ds_encrypt_key
));
1303 encrypt_key
.key_len
= key_len
;
1305 encrypt_key
.key_index
= key_index
;
1307 memcpy(encrypt_key
.key_material
, key
, key_len
);
1309 encrypt_key
.key_disable
= true;
1312 return mwifiex_sec_ioctl_encrypt_key(priv
, &encrypt_key
);
1316 * Sends IOCTL request to get extended version.
1318 * This function allocates the IOCTL request buffer, fills it
1319 * with requisite parameters and calls the IOCTL handler.
1322 mwifiex_get_ver_ext(struct mwifiex_private
*priv
)
1324 struct mwifiex_ver_ext ver_ext
;
1326 memset(&ver_ext
, 0, sizeof(struct host_cmd_ds_version_ext
));
1327 if (mwifiex_send_cmd_sync(priv
, HostCmd_CMD_VERSION_EXT
,
1328 HostCmd_ACT_GEN_GET
, 0, &ver_ext
))
1335 * Sends IOCTL request to get statistics information.
1337 * This function allocates the IOCTL request buffer, fills it
1338 * with requisite parameters and calls the IOCTL handler.
1341 mwifiex_get_stats_info(struct mwifiex_private
*priv
,
1342 struct mwifiex_ds_get_stats
*log
)
1346 ret
= mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_GET_LOG
,
1347 HostCmd_ACT_GEN_GET
, 0, log
);
1350 priv
->w_stats
.discard
.fragment
= log
->fcs_error
;
1351 priv
->w_stats
.discard
.retries
= log
->retry
;
1352 priv
->w_stats
.discard
.misc
= log
->ack_failure
;
1359 * IOCTL request handler to read/write register.
1361 * This function prepares the correct firmware command and
1364 * Access to the following registers are supported -
1371 static int mwifiex_reg_mem_ioctl_reg_rw(struct mwifiex_private
*priv
,
1372 struct mwifiex_ds_reg_rw
*reg_rw
,
1377 switch (le32_to_cpu(reg_rw
->type
)) {
1378 case MWIFIEX_REG_MAC
:
1379 cmd_no
= HostCmd_CMD_MAC_REG_ACCESS
;
1381 case MWIFIEX_REG_BBP
:
1382 cmd_no
= HostCmd_CMD_BBP_REG_ACCESS
;
1384 case MWIFIEX_REG_RF
:
1385 cmd_no
= HostCmd_CMD_RF_REG_ACCESS
;
1387 case MWIFIEX_REG_PMIC
:
1388 cmd_no
= HostCmd_CMD_PMIC_REG_ACCESS
;
1390 case MWIFIEX_REG_CAU
:
1391 cmd_no
= HostCmd_CMD_CAU_REG_ACCESS
;
1397 return mwifiex_send_cmd_sync(priv
, cmd_no
, action
, 0, reg_rw
);
1402 * Sends IOCTL request to write to a register.
1404 * This function allocates the IOCTL request buffer, fills it
1405 * with requisite parameters and calls the IOCTL handler.
1408 mwifiex_reg_write(struct mwifiex_private
*priv
, u32 reg_type
,
1409 u32 reg_offset
, u32 reg_value
)
1411 struct mwifiex_ds_reg_rw reg_rw
;
1413 reg_rw
.type
= cpu_to_le32(reg_type
);
1414 reg_rw
.offset
= cpu_to_le32(reg_offset
);
1415 reg_rw
.value
= cpu_to_le32(reg_value
);
1417 return mwifiex_reg_mem_ioctl_reg_rw(priv
, ®_rw
, HostCmd_ACT_GEN_SET
);
1421 * Sends IOCTL request to read from a register.
1423 * This function allocates the IOCTL request buffer, fills it
1424 * with requisite parameters and calls the IOCTL handler.
1427 mwifiex_reg_read(struct mwifiex_private
*priv
, u32 reg_type
,
1428 u32 reg_offset
, u32
*value
)
1431 struct mwifiex_ds_reg_rw reg_rw
;
1433 reg_rw
.type
= cpu_to_le32(reg_type
);
1434 reg_rw
.offset
= cpu_to_le32(reg_offset
);
1435 ret
= mwifiex_reg_mem_ioctl_reg_rw(priv
, ®_rw
, HostCmd_ACT_GEN_GET
);
1440 *value
= le32_to_cpu(reg_rw
.value
);
1447 * Sends IOCTL request to read from EEPROM.
1449 * This function allocates the IOCTL request buffer, fills it
1450 * with requisite parameters and calls the IOCTL handler.
1453 mwifiex_eeprom_read(struct mwifiex_private
*priv
, u16 offset
, u16 bytes
,
1457 struct mwifiex_ds_read_eeprom rd_eeprom
;
1459 rd_eeprom
.offset
= cpu_to_le16((u16
) offset
);
1460 rd_eeprom
.byte_count
= cpu_to_le16((u16
) bytes
);
1462 /* Send request to firmware */
1463 ret
= mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_EEPROM_ACCESS
,
1464 HostCmd_ACT_GEN_GET
, 0, &rd_eeprom
);
1467 memcpy(value
, rd_eeprom
.value
, MAX_EEPROM_DATA
);
1472 * This function sets a generic IE. In addition to generic IE, it can
1473 * also handle WPA, WPA2 and WAPI IEs.
1476 mwifiex_set_gen_ie_helper(struct mwifiex_private
*priv
, u8
*ie_data_ptr
,
1480 struct ieee_types_vendor_header
*pvendor_ie
;
1481 const u8 wpa_oui
[] = { 0x00, 0x50, 0xf2, 0x01 };
1482 const u8 wps_oui
[] = { 0x00, 0x50, 0xf2, 0x04 };
1484 /* If the passed length is zero, reset the buffer */
1486 priv
->gen_ie_buf_len
= 0;
1487 priv
->wps
.session_enable
= false;
1490 } else if (!ie_data_ptr
) {
1493 pvendor_ie
= (struct ieee_types_vendor_header
*) ie_data_ptr
;
1494 /* Test to see if it is a WPA IE, if not, then it is a gen IE */
1495 if (((pvendor_ie
->element_id
== WLAN_EID_WPA
)
1496 && (!memcmp(pvendor_ie
->oui
, wpa_oui
, sizeof(wpa_oui
))))
1497 || (pvendor_ie
->element_id
== WLAN_EID_RSN
)) {
1499 /* IE is a WPA/WPA2 IE so call set_wpa function */
1500 ret
= mwifiex_set_wpa_ie_helper(priv
, ie_data_ptr
, ie_len
);
1501 priv
->wps
.session_enable
= false;
1504 } else if (pvendor_ie
->element_id
== WLAN_EID_BSS_AC_ACCESS_DELAY
) {
1505 /* IE is a WAPI IE so call set_wapi function */
1506 ret
= mwifiex_set_wapi_ie(priv
, ie_data_ptr
, ie_len
);
1511 * Verify that the passed length is not larger than the
1512 * available space remaining in the buffer
1514 if (ie_len
< (sizeof(priv
->gen_ie_buf
) - priv
->gen_ie_buf_len
)) {
1516 /* Test to see if it is a WPS IE, if so, enable
1519 pvendor_ie
= (struct ieee_types_vendor_header
*) ie_data_ptr
;
1520 if ((pvendor_ie
->element_id
== WLAN_EID_VENDOR_SPECIFIC
)
1521 && (!memcmp(pvendor_ie
->oui
, wps_oui
,
1522 sizeof(wps_oui
)))) {
1523 priv
->wps
.session_enable
= true;
1524 dev_dbg(priv
->adapter
->dev
,
1525 "info: WPS Session Enabled.\n");
1528 /* Append the passed data to the end of the
1530 memcpy(priv
->gen_ie_buf
+ priv
->gen_ie_buf_len
, ie_data_ptr
,
1532 /* Increment the stored buffer length by the
1534 priv
->gen_ie_buf_len
+= ie_len
;
1536 /* Passed data does not fit in the remaining
1541 /* Return 0, or -1 for error case */
1546 * IOCTL request handler to set/get generic IE.
1548 * In addition to various generic IEs, this function can also be
1549 * used to set the ARP filter.
1551 static int mwifiex_misc_ioctl_gen_ie(struct mwifiex_private
*priv
,
1552 struct mwifiex_ds_misc_gen_ie
*gen_ie
,
1555 struct mwifiex_adapter
*adapter
= priv
->adapter
;
1557 switch (gen_ie
->type
) {
1558 case MWIFIEX_IE_TYPE_GEN_IE
:
1559 if (action
== HostCmd_ACT_GEN_GET
) {
1560 gen_ie
->len
= priv
->wpa_ie_len
;
1561 memcpy(gen_ie
->ie_data
, priv
->wpa_ie
, gen_ie
->len
);
1563 mwifiex_set_gen_ie_helper(priv
, gen_ie
->ie_data
,
1567 case MWIFIEX_IE_TYPE_ARP_FILTER
:
1568 memset(adapter
->arp_filter
, 0, sizeof(adapter
->arp_filter
));
1569 if (gen_ie
->len
> ARP_FILTER_MAX_BUF_SIZE
) {
1570 adapter
->arp_filter_size
= 0;
1571 dev_err(adapter
->dev
, "invalid ARP filter size\n");
1574 memcpy(adapter
->arp_filter
, gen_ie
->ie_data
,
1576 adapter
->arp_filter_size
= gen_ie
->len
;
1580 dev_err(adapter
->dev
, "invalid IE type\n");
1587 * Sends IOCTL request to set a generic IE.
1589 * This function allocates the IOCTL request buffer, fills it
1590 * with requisite parameters and calls the IOCTL handler.
1593 mwifiex_set_gen_ie(struct mwifiex_private
*priv
, u8
*ie
, int ie_len
)
1595 struct mwifiex_ds_misc_gen_ie gen_ie
;
1597 if (ie_len
> IW_CUSTOM_MAX
)
1600 gen_ie
.type
= MWIFIEX_IE_TYPE_GEN_IE
;
1601 gen_ie
.len
= ie_len
;
1602 memcpy(gen_ie
.ie_data
, ie
, ie_len
);
1603 if (mwifiex_misc_ioctl_gen_ie(priv
, &gen_ie
, HostCmd_ACT_GEN_SET
))