mirror of
https://github.com/nxp-imx/mwifiex.git
synced 2024-11-15 03:25:35 +00:00
59 lines
2.4 KiB
C
59 lines
2.4 KiB
C
|
/** @file mlan_11ax.h
|
||
|
*
|
||
|
* @brief This file contains the functions for station ioctl.
|
||
|
*
|
||
|
*
|
||
|
* Copyright 2014-2020 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_11AX_H_
|
||
|
#define _MLAN_11AX_H_
|
||
|
|
||
|
/** device support 2.4G 40MHZ*/
|
||
|
#define AX_2G_40MHZ_SUPPORT MBIT(1)
|
||
|
/** device support 2.4G 242 tone RUs */
|
||
|
#define AX_2G_20MHZ_SUPPORT MBIT(5)
|
||
|
|
||
|
t_u8 wlan_check_11ax_twt_supported(mlan_private *pmpriv,
|
||
|
BSSDescriptor_t *pbss_desc);
|
||
|
mlan_status wlan_11ax_ioctl_twtcfg(pmlan_adapter pmadapter,
|
||
|
pmlan_ioctl_req pioctl_req);
|
||
|
mlan_status wlan_cmd_twt_cfg(pmlan_private pmpriv, HostCmd_DS_COMMAND *cmd,
|
||
|
t_u16 cmd_action, t_void *pdata_buf);
|
||
|
t_u16 wlan_fill_he_cap_tlv(mlan_private *pmpriv, t_u8 band,
|
||
|
MrvlIEtypes_Extension_t *phe_cap, t_u8 flag);
|
||
|
void wlan_update_11ax_cap(mlan_adapter *pmadapter,
|
||
|
MrvlIEtypes_Extension_t *hw_he_cap);
|
||
|
int wlan_cmd_append_11ax_tlv(mlan_private *pmpriv, BSSDescriptor_t *pbss_desc,
|
||
|
t_u8 **ppbuffer);
|
||
|
t_u16 wlan_11ax_bandconfig_allowed(mlan_private *pmpriv, t_u16 bss_band);
|
||
|
mlan_status wlan_11ax_cfg_ioctl(pmlan_adapter pmadapter,
|
||
|
pmlan_ioctl_req pioctl_req);
|
||
|
mlan_status wlan_11ax_ioctl_cmd(pmlan_adapter pmadapter,
|
||
|
pmlan_ioctl_req pioctl_req);
|
||
|
|
||
|
mlan_status wlan_cmd_11ax_cfg(pmlan_private pmpriv, HostCmd_DS_COMMAND *cmd,
|
||
|
t_u16 cmd_action, t_void *pdata_buf);
|
||
|
mlan_status wlan_ret_11ax_cfg(pmlan_private pmpriv, HostCmd_DS_COMMAND *resp,
|
||
|
mlan_ioctl_req *pioctl_buf);
|
||
|
mlan_status wlan_cmd_11ax_cmd(pmlan_private pmpriv, HostCmd_DS_COMMAND *cmd,
|
||
|
t_u16 cmd_action, t_void *pdata_buf);
|
||
|
mlan_status wlan_ret_11ax_cmd(pmlan_private pmpriv, HostCmd_DS_COMMAND *resp,
|
||
|
mlan_ioctl_req *pioctl_buf);
|
||
|
|
||
|
#endif /* _MLAN_11AX_H_ */
|