mirror of
https://github.com/nxp-imx/mwifiex.git
synced 2024-11-01 05:25:21 +00:00
a036032a76
Driver Bug Fixes: ----------------- 1. LF-6972: Updated the License to GPL-2.0 2. Incremented the driver version Signed-off-by: Sherry Sun <sherry.sun@nxp.com>
56 lines
2.2 KiB
C
56 lines
2.2 KiB
C
/** @file mlan_11ac.h
|
|
*
|
|
* @brief This file contains the functions for station ioctl.
|
|
*
|
|
*
|
|
* Copyright 2011-2021 NXP
|
|
*
|
|
* This software file (the File) is distributed by NXP
|
|
* under the terms of the GNU General Public License Version 2, June 1991
|
|
* (the License). You may use, redistribute and/or modify the File in
|
|
* accordance with the terms and conditions of the License, a copy of which
|
|
* is available by writing to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
|
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
|
*
|
|
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
|
* this warranty disclaimer.
|
|
*
|
|
*/
|
|
|
|
#ifndef _MLAN_11AC_H_
|
|
#define _MLAN_11AC_H_
|
|
|
|
#include "mlan_11n_aggr.h"
|
|
#include "mlan_11n_rxreorder.h"
|
|
#include "mlan_wmm.h"
|
|
|
|
void wlan_show_dot11acdevcap(pmlan_adapter pmadapter, t_u32 cap);
|
|
void wlan_show_dot11acmcssupport(pmlan_adapter pmadapter, t_u32 support);
|
|
t_u16 wlan_convert_mcsmap_to_maxrate(mlan_private *priv, t_u16 bands,
|
|
t_u16 mcs_map);
|
|
void wlan_fill_vht_cap_tlv(mlan_private *priv, MrvlIETypes_VHTCap_t *pvht_cap,
|
|
t_u16 bands, t_u8 flag, t_u8 bw_80p80);
|
|
void wlan_fill_vht_cap_ie(mlan_private *priv, IEEEtypes_VHTCap_t *pvht_cap,
|
|
t_u16 bands);
|
|
void wlan_fill_tdls_vht_oprat_ie(mlan_private *priv,
|
|
IEEEtypes_VHTOprat_t *vht_oprat,
|
|
sta_node *sta_ptr);
|
|
t_u8 wlan_is_ap_in_11ac_mode(mlan_private *priv);
|
|
int wlan_cmd_append_11ac_tlv(mlan_private *pmpriv, BSSDescriptor_t *pbss_desc,
|
|
t_u8 **ppbuffer);
|
|
mlan_status wlan_11ac_cfg_ioctl(pmlan_adapter pmadapter,
|
|
pmlan_ioctl_req pioctl_req);
|
|
void wlan_update_11ac_cap(mlan_private *pmpriv);
|
|
t_u8 wlan_11ac_bandconfig_allowed(mlan_private *pmpriv, t_u16 bss_band);
|
|
t_u8 wlan_is_80_80_support(mlan_private *pmpriv, BSSDescriptor_t *pbss_desc);
|
|
|
|
mlan_status wlan_cmd_11ac_cfg(pmlan_private pmpriv, HostCmd_DS_COMMAND *cmd,
|
|
t_u16 cmd_action, t_void *pdata_buf);
|
|
|
|
mlan_status wlan_ret_11ac_cfg(pmlan_private pmpriv, HostCmd_DS_COMMAND *resp,
|
|
mlan_ioctl_req *pioctl_buf);
|
|
|
|
#endif /* _MLAN_11AC_H_ */
|