Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * NXP Wireless LAN device driver: major data structures and prototypes
0004  *
0005  * Copyright 2011-2020 NXP
0006  */
0007 
0008 #ifndef _MWIFIEX_MAIN_H_
0009 #define _MWIFIEX_MAIN_H_
0010 
0011 #include <linux/completion.h>
0012 #include <linux/kernel.h>
0013 #include <linux/module.h>
0014 #include <linux/sched.h>
0015 #include <linux/semaphore.h>
0016 #include <linux/ip.h>
0017 #include <linux/skbuff.h>
0018 #include <linux/if_arp.h>
0019 #include <linux/etherdevice.h>
0020 #include <net/sock.h>
0021 #include <net/lib80211.h>
0022 #include <linux/vmalloc.h>
0023 #include <linux/firmware.h>
0024 #include <linux/ctype.h>
0025 #include <linux/of.h>
0026 #include <linux/idr.h>
0027 #include <linux/inetdevice.h>
0028 #include <linux/devcoredump.h>
0029 #include <linux/err.h>
0030 #include <linux/gpio.h>
0031 #include <linux/gfp.h>
0032 #include <linux/interrupt.h>
0033 #include <linux/io.h>
0034 #include <linux/of_gpio.h>
0035 #include <linux/of_platform.h>
0036 #include <linux/platform_device.h>
0037 #include <linux/pm_runtime.h>
0038 #include <linux/slab.h>
0039 #include <linux/of_irq.h>
0040 
0041 #include "decl.h"
0042 #include "ioctl.h"
0043 #include "util.h"
0044 #include "fw.h"
0045 #include "pcie.h"
0046 #include "usb.h"
0047 #include "sdio.h"
0048 
0049 extern const char driver_version[];
0050 extern bool mfg_mode;
0051 extern bool aggr_ctrl;
0052 
0053 struct mwifiex_adapter;
0054 struct mwifiex_private;
0055 
0056 enum {
0057     MWIFIEX_ASYNC_CMD,
0058     MWIFIEX_SYNC_CMD
0059 };
0060 
0061 #define MWIFIEX_DRIVER_MODE_STA         BIT(0)
0062 #define MWIFIEX_DRIVER_MODE_UAP         BIT(1)
0063 #define MWIFIEX_DRIVER_MODE_P2P         BIT(2)
0064 #define MWIFIEX_DRIVER_MODE_BITMASK     (BIT(0) | BIT(1) | BIT(2))
0065 
0066 #define MWIFIEX_MAX_AP              64
0067 
0068 #define MWIFIEX_MAX_PKTS_TXQ            16
0069 
0070 #define MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT    (5 * HZ)
0071 
0072 #define MWIFIEX_TIMER_10S           10000
0073 #define MWIFIEX_TIMER_1S            1000
0074 
0075 #define MAX_TX_PENDING      400
0076 #define LOW_TX_PENDING      380
0077 
0078 #define HIGH_RX_PENDING     50
0079 #define LOW_RX_PENDING      20
0080 
0081 #define MWIFIEX_UPLD_SIZE               (2312)
0082 
0083 #define MAX_EVENT_SIZE                  2048
0084 
0085 #define MWIFIEX_FW_DUMP_SIZE       (2 * 1024 * 1024)
0086 
0087 #define ARP_FILTER_MAX_BUF_SIZE         68
0088 
0089 #define MWIFIEX_KEY_BUFFER_SIZE         16
0090 #define MWIFIEX_DEFAULT_LISTEN_INTERVAL 10
0091 #define MWIFIEX_MAX_REGION_CODE         9
0092 
0093 #define DEFAULT_BCN_AVG_FACTOR          8
0094 #define DEFAULT_DATA_AVG_FACTOR         8
0095 
0096 #define FIRST_VALID_CHANNEL             0xff
0097 #define DEFAULT_AD_HOC_CHANNEL          6
0098 #define DEFAULT_AD_HOC_CHANNEL_A        36
0099 
0100 #define DEFAULT_BCN_MISS_TIMEOUT        5
0101 
0102 #define MAX_SCAN_BEACON_BUFFER          8000
0103 
0104 #define SCAN_BEACON_ENTRY_PAD           6
0105 
0106 #define MWIFIEX_PASSIVE_SCAN_CHAN_TIME  110
0107 #define MWIFIEX_ACTIVE_SCAN_CHAN_TIME   40
0108 #define MWIFIEX_SPECIFIC_SCAN_CHAN_TIME 40
0109 #define MWIFIEX_DEF_SCAN_CHAN_GAP_TIME  50
0110 
0111 #define SCAN_RSSI(RSSI)                 (0x100 - ((u8)(RSSI)))
0112 
0113 #define MWIFIEX_MAX_TOTAL_SCAN_TIME (MWIFIEX_TIMER_10S - MWIFIEX_TIMER_1S)
0114 
0115 #define WPA_GTK_OUI_OFFSET              2
0116 #define RSN_GTK_OUI_OFFSET              2
0117 
0118 #define MWIFIEX_OUI_NOT_PRESENT         0
0119 #define MWIFIEX_OUI_PRESENT             1
0120 
0121 #define PKT_TYPE_MGMT   0xE5
0122 
0123 /*
0124  * Do not check for data_received for USB, as data_received
0125  * is handled in mwifiex_usb_recv for USB
0126  */
0127 #define IS_CARD_RX_RCVD(adapter) (adapter->cmd_resp_received || \
0128                 adapter->event_received || \
0129                 adapter->data_received)
0130 
0131 #define MWIFIEX_TYPE_CMD                1
0132 #define MWIFIEX_TYPE_DATA               0
0133 #define MWIFIEX_TYPE_AGGR_DATA              10
0134 #define MWIFIEX_TYPE_EVENT              3
0135 
0136 #define MAX_BITMAP_RATES_SIZE           18
0137 
0138 #define MAX_CHANNEL_BAND_BG     14
0139 #define MAX_CHANNEL_BAND_A      165
0140 
0141 #define MAX_FREQUENCY_BAND_BG   2484
0142 
0143 #define MWIFIEX_EVENT_HEADER_LEN           4
0144 #define MWIFIEX_UAP_EVENT_EXTRA_HEADER     2
0145 
0146 #define MWIFIEX_TYPE_LEN            4
0147 #define MWIFIEX_USB_TYPE_CMD            0xF00DFACE
0148 #define MWIFIEX_USB_TYPE_DATA           0xBEADC0DE
0149 #define MWIFIEX_USB_TYPE_EVENT          0xBEEFFACE
0150 
0151 /* Threshold for tx_timeout_cnt before we trigger a card reset */
0152 #define TX_TIMEOUT_THRESHOLD    6
0153 
0154 #define MWIFIEX_DRV_INFO_SIZE_MAX 0x40000
0155 
0156 /* Address alignment */
0157 #define MWIFIEX_ALIGN_ADDR(p, a) (((long)(p) + (a) - 1) & ~((a) - 1))
0158 
0159 #define MWIFIEX_MAC_LOCAL_ADMIN_BIT     41
0160 
0161 /**
0162  *enum mwifiex_debug_level  -  marvell wifi debug level
0163  */
0164 enum MWIFIEX_DEBUG_LEVEL {
0165     MWIFIEX_DBG_MSG     = 0x00000001,
0166     MWIFIEX_DBG_FATAL   = 0x00000002,
0167     MWIFIEX_DBG_ERROR   = 0x00000004,
0168     MWIFIEX_DBG_DATA    = 0x00000008,
0169     MWIFIEX_DBG_CMD     = 0x00000010,
0170     MWIFIEX_DBG_EVENT   = 0x00000020,
0171     MWIFIEX_DBG_INTR    = 0x00000040,
0172     MWIFIEX_DBG_IOCTL   = 0x00000080,
0173 
0174     MWIFIEX_DBG_MPA_D   = 0x00008000,
0175     MWIFIEX_DBG_DAT_D   = 0x00010000,
0176     MWIFIEX_DBG_CMD_D   = 0x00020000,
0177     MWIFIEX_DBG_EVT_D   = 0x00040000,
0178     MWIFIEX_DBG_FW_D    = 0x00080000,
0179     MWIFIEX_DBG_IF_D    = 0x00100000,
0180 
0181     MWIFIEX_DBG_ENTRY   = 0x10000000,
0182     MWIFIEX_DBG_WARN    = 0x20000000,
0183     MWIFIEX_DBG_INFO    = 0x40000000,
0184     MWIFIEX_DBG_DUMP    = 0x80000000,
0185 
0186     MWIFIEX_DBG_ANY     = 0xffffffff
0187 };
0188 
0189 #define MWIFIEX_DEFAULT_DEBUG_MASK  (MWIFIEX_DBG_MSG | \
0190                     MWIFIEX_DBG_FATAL | \
0191                     MWIFIEX_DBG_ERROR)
0192 
0193 __printf(3, 4)
0194 void _mwifiex_dbg(const struct mwifiex_adapter *adapter, int mask,
0195           const char *fmt, ...);
0196 #define mwifiex_dbg(adapter, mask, fmt, ...)                \
0197     _mwifiex_dbg(adapter, MWIFIEX_DBG_##mask, fmt, ##__VA_ARGS__)
0198 
0199 #define DEBUG_DUMP_DATA_MAX_LEN     128
0200 #define mwifiex_dbg_dump(adapter, dbg_mask, str, buf, len)  \
0201 do {                                \
0202     if ((adapter)->debug_mask & MWIFIEX_DBG_##dbg_mask) \
0203         print_hex_dump(KERN_DEBUG, str,         \
0204                    DUMP_PREFIX_OFFSET, 16, 1,   \
0205                    buf, len, false);        \
0206 } while (0)
0207 
0208 /** Min BGSCAN interval 15 second */
0209 #define MWIFIEX_BGSCAN_INTERVAL 15000
0210 /** default repeat count */
0211 #define MWIFIEX_BGSCAN_REPEAT_COUNT 6
0212 
0213 struct mwifiex_dbg {
0214     u32 num_cmd_host_to_card_failure;
0215     u32 num_cmd_sleep_cfm_host_to_card_failure;
0216     u32 num_tx_host_to_card_failure;
0217     u32 num_event_deauth;
0218     u32 num_event_disassoc;
0219     u32 num_event_link_lost;
0220     u32 num_cmd_deauth;
0221     u32 num_cmd_assoc_success;
0222     u32 num_cmd_assoc_failure;
0223     u32 num_tx_timeout;
0224     u16 timeout_cmd_id;
0225     u16 timeout_cmd_act;
0226     u16 last_cmd_id[DBG_CMD_NUM];
0227     u16 last_cmd_act[DBG_CMD_NUM];
0228     u16 last_cmd_index;
0229     u16 last_cmd_resp_id[DBG_CMD_NUM];
0230     u16 last_cmd_resp_index;
0231     u16 last_event[DBG_CMD_NUM];
0232     u16 last_event_index;
0233     u32 last_mp_wr_bitmap[MWIFIEX_DBG_SDIO_MP_NUM];
0234     u32 last_mp_wr_ports[MWIFIEX_DBG_SDIO_MP_NUM];
0235     u32 last_mp_wr_len[MWIFIEX_DBG_SDIO_MP_NUM];
0236     u32 last_mp_curr_wr_port[MWIFIEX_DBG_SDIO_MP_NUM];
0237     u8 last_sdio_mp_index;
0238 };
0239 
0240 enum MWIFIEX_HARDWARE_STATUS {
0241     MWIFIEX_HW_STATUS_READY,
0242     MWIFIEX_HW_STATUS_INITIALIZING,
0243     MWIFIEX_HW_STATUS_INIT_DONE,
0244     MWIFIEX_HW_STATUS_RESET,
0245     MWIFIEX_HW_STATUS_NOT_READY
0246 };
0247 
0248 enum MWIFIEX_802_11_POWER_MODE {
0249     MWIFIEX_802_11_POWER_MODE_CAM,
0250     MWIFIEX_802_11_POWER_MODE_PSP
0251 };
0252 
0253 struct mwifiex_tx_param {
0254     u32 next_pkt_len;
0255 };
0256 
0257 enum MWIFIEX_PS_STATE {
0258     PS_STATE_AWAKE,
0259     PS_STATE_PRE_SLEEP,
0260     PS_STATE_SLEEP_CFM,
0261     PS_STATE_SLEEP
0262 };
0263 
0264 enum mwifiex_iface_type {
0265     MWIFIEX_SDIO,
0266     MWIFIEX_PCIE,
0267     MWIFIEX_USB
0268 };
0269 
0270 struct mwifiex_add_ba_param {
0271     u32 tx_win_size;
0272     u32 rx_win_size;
0273     u32 timeout;
0274     u8 tx_amsdu;
0275     u8 rx_amsdu;
0276 };
0277 
0278 struct mwifiex_tx_aggr {
0279     u8 ampdu_user;
0280     u8 ampdu_ap;
0281     u8 amsdu;
0282 };
0283 
0284 enum mwifiex_ba_status {
0285     BA_SETUP_NONE = 0,
0286     BA_SETUP_INPROGRESS,
0287     BA_SETUP_COMPLETE
0288 };
0289 
0290 struct mwifiex_ra_list_tbl {
0291     struct list_head list;
0292     struct sk_buff_head skb_head;
0293     u8 ra[ETH_ALEN];
0294     u32 is_11n_enabled;
0295     u16 max_amsdu;
0296     u16 ba_pkt_count;
0297     u8 ba_packet_thr;
0298     enum mwifiex_ba_status ba_status;
0299     u8 amsdu_in_ampdu;
0300     u16 total_pkt_count;
0301     bool tdls_link;
0302     bool tx_paused;
0303 };
0304 
0305 struct mwifiex_tid_tbl {
0306     struct list_head ra_list;
0307 };
0308 
0309 #define WMM_HIGHEST_PRIORITY        7
0310 #define HIGH_PRIO_TID               7
0311 #define LOW_PRIO_TID                0
0312 #define NO_PKT_PRIO_TID             -1
0313 #define MWIFIEX_WMM_DRV_DELAY_MAX 510
0314 
0315 struct mwifiex_wmm_desc {
0316     struct mwifiex_tid_tbl tid_tbl_ptr[MAX_NUM_TID];
0317     u32 packets_out[MAX_NUM_TID];
0318     u32 pkts_paused[MAX_NUM_TID];
0319     /* spin lock to protect ra_list */
0320     spinlock_t ra_list_spinlock;
0321     struct mwifiex_wmm_ac_status ac_status[IEEE80211_NUM_ACS];
0322     enum mwifiex_wmm_ac_e ac_down_graded_vals[IEEE80211_NUM_ACS];
0323     u32 drv_pkt_delay_max;
0324     u8 queue_priority[IEEE80211_NUM_ACS];
0325     u32 user_pri_pkt_tx_ctrl[WMM_HIGHEST_PRIORITY + 1]; /* UP: 0 to 7 */
0326     /* Number of transmit packets queued */
0327     atomic_t tx_pkts_queued;
0328     /* Tracks highest priority with a packet queued */
0329     atomic_t highest_queued_prio;
0330 };
0331 
0332 struct mwifiex_802_11_security {
0333     u8 wpa_enabled;
0334     u8 wpa2_enabled;
0335     u8 wapi_enabled;
0336     u8 wapi_key_on;
0337     u8 wep_enabled;
0338     u32 authentication_mode;
0339     u8 is_authtype_auto;
0340     u32 encryption_mode;
0341 };
0342 
0343 struct ieee_types_header {
0344     u8 element_id;
0345     u8 len;
0346 } __packed;
0347 
0348 struct ieee_types_vendor_specific {
0349     struct ieee_types_vendor_header vend_hdr;
0350     u8 data[IEEE_MAX_IE_SIZE - sizeof(struct ieee_types_vendor_header)];
0351 } __packed;
0352 
0353 struct ieee_types_generic {
0354     struct ieee_types_header ieee_hdr;
0355     u8 data[IEEE_MAX_IE_SIZE - sizeof(struct ieee_types_header)];
0356 } __packed;
0357 
0358 struct ieee_types_bss_co_2040 {
0359     struct ieee_types_header ieee_hdr;
0360     u8 bss_2040co;
0361 } __packed;
0362 
0363 struct ieee_types_extcap {
0364     struct ieee_types_header ieee_hdr;
0365     u8 ext_capab[8];
0366 } __packed;
0367 
0368 struct ieee_types_vht_cap {
0369     struct ieee_types_header ieee_hdr;
0370     struct ieee80211_vht_cap vhtcap;
0371 } __packed;
0372 
0373 struct ieee_types_vht_oper {
0374     struct ieee_types_header ieee_hdr;
0375     struct ieee80211_vht_operation vhtoper;
0376 } __packed;
0377 
0378 struct ieee_types_aid {
0379     struct ieee_types_header ieee_hdr;
0380     u16 aid;
0381 } __packed;
0382 
0383 struct mwifiex_bssdescriptor {
0384     u8 mac_address[ETH_ALEN];
0385     struct cfg80211_ssid ssid;
0386     u32 privacy;
0387     s32 rssi;
0388     u32 channel;
0389     u32 freq;
0390     u16 beacon_period;
0391     u8 erp_flags;
0392     u32 bss_mode;
0393     u8 supported_rates[MWIFIEX_SUPPORTED_RATES];
0394     u8 data_rates[MWIFIEX_SUPPORTED_RATES];
0395     /* Network band.
0396      * BAND_B(0x01): 'b' band
0397      * BAND_G(0x02): 'g' band
0398      * BAND_A(0X04): 'a' band
0399      */
0400     u16 bss_band;
0401     u64 fw_tsf;
0402     u64 timestamp;
0403     union ieee_types_phy_param_set phy_param_set;
0404     union ieee_types_ss_param_set ss_param_set;
0405     u16 cap_info_bitmap;
0406     struct ieee_types_wmm_parameter wmm_ie;
0407     u8  disable_11n;
0408     struct ieee80211_ht_cap *bcn_ht_cap;
0409     u16 ht_cap_offset;
0410     struct ieee80211_ht_operation *bcn_ht_oper;
0411     u16 ht_info_offset;
0412     u8 *bcn_bss_co_2040;
0413     u16 bss_co_2040_offset;
0414     u8 *bcn_ext_cap;
0415     u16 ext_cap_offset;
0416     struct ieee80211_vht_cap *bcn_vht_cap;
0417     u16 vht_cap_offset;
0418     struct ieee80211_vht_operation *bcn_vht_oper;
0419     u16 vht_info_offset;
0420     struct ieee_types_oper_mode_ntf *oper_mode;
0421     u16 oper_mode_offset;
0422     u8 disable_11ac;
0423     struct ieee_types_vendor_specific *bcn_wpa_ie;
0424     u16 wpa_offset;
0425     struct ieee_types_generic *bcn_rsn_ie;
0426     u16 rsn_offset;
0427     struct ieee_types_generic *bcn_wapi_ie;
0428     u16 wapi_offset;
0429     u8 *beacon_buf;
0430     u32 beacon_buf_size;
0431     u8 sensed_11h;
0432     u8 local_constraint;
0433     u8 chan_sw_ie_present;
0434 };
0435 
0436 struct mwifiex_current_bss_params {
0437     struct mwifiex_bssdescriptor bss_descriptor;
0438     u8 wmm_enabled;
0439     u8 wmm_uapsd_enabled;
0440     u8 band;
0441     u32 num_of_rates;
0442     u8 data_rates[MWIFIEX_SUPPORTED_RATES];
0443 };
0444 
0445 struct mwifiex_sleep_params {
0446     u16 sp_error;
0447     u16 sp_offset;
0448     u16 sp_stable_time;
0449     u8 sp_cal_control;
0450     u8 sp_ext_sleep_clk;
0451     u16 sp_reserved;
0452 };
0453 
0454 struct mwifiex_sleep_period {
0455     u16 period;
0456     u16 reserved;
0457 };
0458 
0459 struct mwifiex_wep_key {
0460     u32 length;
0461     u32 key_index;
0462     u32 key_length;
0463     u8 key_material[MWIFIEX_KEY_BUFFER_SIZE];
0464 };
0465 
0466 #define MAX_REGION_CHANNEL_NUM  2
0467 
0468 struct mwifiex_chan_freq_power {
0469     u16 channel;
0470     u32 freq;
0471     u16 max_tx_power;
0472     u8 unsupported;
0473 };
0474 
0475 enum state_11d_t {
0476     DISABLE_11D = 0,
0477     ENABLE_11D = 1,
0478 };
0479 
0480 #define MWIFIEX_MAX_TRIPLET_802_11D     83
0481 
0482 struct mwifiex_802_11d_domain_reg {
0483     u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
0484     u8 no_of_triplet;
0485     struct ieee80211_country_ie_triplet
0486         triplet[MWIFIEX_MAX_TRIPLET_802_11D];
0487 };
0488 
0489 struct mwifiex_vendor_spec_cfg_ie {
0490     u16 mask;
0491     u16 flag;
0492     u8 ie[MWIFIEX_MAX_VSIE_LEN];
0493 };
0494 
0495 struct wps {
0496     u8 session_enable;
0497 };
0498 
0499 struct mwifiex_roc_cfg {
0500     u64 cookie;
0501     struct ieee80211_channel chan;
0502 };
0503 
0504 enum mwifiex_iface_work_flags {
0505     MWIFIEX_IFACE_WORK_DEVICE_DUMP,
0506     MWIFIEX_IFACE_WORK_CARD_RESET,
0507 };
0508 
0509 enum mwifiex_adapter_work_flags {
0510     MWIFIEX_SURPRISE_REMOVED,
0511     MWIFIEX_IS_CMD_TIMEDOUT,
0512     MWIFIEX_IS_SUSPENDED,
0513     MWIFIEX_IS_HS_CONFIGURED,
0514     MWIFIEX_IS_HS_ENABLING,
0515     MWIFIEX_IS_REQUESTING_FW_VEREXT,
0516 };
0517 
0518 struct mwifiex_band_config {
0519     u8 chan_band:2;
0520     u8 chan_width:2;
0521     u8 chan2_offset:2;
0522     u8 scan_mode:2;
0523 } __packed;
0524 
0525 struct mwifiex_channel_band {
0526     struct mwifiex_band_config band_config;
0527     u8 channel;
0528 };
0529 
0530 struct mwifiex_private {
0531     struct mwifiex_adapter *adapter;
0532     u8 bss_type;
0533     u8 bss_role;
0534     u8 bss_priority;
0535     u8 bss_num;
0536     u8 bss_started;
0537     u8 frame_type;
0538     u8 curr_addr[ETH_ALEN];
0539     u8 media_connected;
0540     u8 port_open;
0541     u8 usb_port;
0542     u32 num_tx_timeout;
0543     /* track consecutive timeout */
0544     u8 tx_timeout_cnt;
0545     struct net_device *netdev;
0546     struct net_device_stats stats;
0547     u32 curr_pkt_filter;
0548     u32 bss_mode;
0549     u32 pkt_tx_ctrl;
0550     u16 tx_power_level;
0551     u8 max_tx_power_level;
0552     u8 min_tx_power_level;
0553     u32 tx_ant;
0554     u32 rx_ant;
0555     u8 tx_rate;
0556     u8 tx_htinfo;
0557     u8 rxpd_htinfo;
0558     u8 rxpd_rate;
0559     u16 rate_bitmap;
0560     u16 bitmap_rates[MAX_BITMAP_RATES_SIZE];
0561     u32 data_rate;
0562     u8 is_data_rate_auto;
0563     u16 bcn_avg_factor;
0564     u16 data_avg_factor;
0565     s16 data_rssi_last;
0566     s16 data_nf_last;
0567     s16 data_rssi_avg;
0568     s16 data_nf_avg;
0569     s16 bcn_rssi_last;
0570     s16 bcn_nf_last;
0571     s16 bcn_rssi_avg;
0572     s16 bcn_nf_avg;
0573     struct mwifiex_bssdescriptor *attempted_bss_desc;
0574     struct cfg80211_ssid prev_ssid;
0575     u8 prev_bssid[ETH_ALEN];
0576     struct mwifiex_current_bss_params curr_bss_params;
0577     u16 beacon_period;
0578     u8 dtim_period;
0579     u16 listen_interval;
0580     u16 atim_window;
0581     u8 adhoc_channel;
0582     u8 adhoc_is_link_sensed;
0583     u8 adhoc_state;
0584     struct mwifiex_802_11_security sec_info;
0585     struct mwifiex_wep_key wep_key[NUM_WEP_KEYS];
0586     u16 wep_key_curr_index;
0587     u8 wpa_ie[256];
0588     u16 wpa_ie_len;
0589     u8 wpa_is_gtk_set;
0590     struct host_cmd_ds_802_11_key_material aes_key;
0591     struct host_cmd_ds_802_11_key_material_v2 aes_key_v2;
0592     u8 wapi_ie[256];
0593     u16 wapi_ie_len;
0594     u8 *wps_ie;
0595     u16 wps_ie_len;
0596     u8 wmm_required;
0597     u8 wmm_enabled;
0598     u8 wmm_qosinfo;
0599     struct mwifiex_wmm_desc wmm;
0600     atomic_t wmm_tx_pending[IEEE80211_NUM_ACS];
0601     struct list_head sta_list;
0602     /* spin lock for associated station/TDLS peers list */
0603     spinlock_t sta_list_spinlock;
0604     struct list_head auto_tdls_list;
0605     /* spin lock for auto TDLS peer list */
0606     spinlock_t auto_tdls_lock;
0607     struct list_head tx_ba_stream_tbl_ptr;
0608     /* spin lock for tx_ba_stream_tbl_ptr queue */
0609     spinlock_t tx_ba_stream_tbl_lock;
0610     struct mwifiex_tx_aggr aggr_prio_tbl[MAX_NUM_TID];
0611     struct mwifiex_add_ba_param add_ba_param;
0612     u16 rx_seq[MAX_NUM_TID];
0613     u8 tos_to_tid_inv[MAX_NUM_TID];
0614     struct list_head rx_reorder_tbl_ptr;
0615     /* spin lock for rx_reorder_tbl_ptr queue */
0616     spinlock_t rx_reorder_tbl_lock;
0617 #define MWIFIEX_ASSOC_RSP_BUF_SIZE  500
0618     u8 assoc_rsp_buf[MWIFIEX_ASSOC_RSP_BUF_SIZE];
0619     u32 assoc_rsp_size;
0620 
0621 #define MWIFIEX_GENIE_BUF_SIZE      256
0622     u8 gen_ie_buf[MWIFIEX_GENIE_BUF_SIZE];
0623     u8 gen_ie_buf_len;
0624 
0625     struct mwifiex_vendor_spec_cfg_ie vs_ie[MWIFIEX_MAX_VSIE_NUM];
0626 
0627 #define MWIFIEX_ASSOC_TLV_BUF_SIZE  256
0628     u8 assoc_tlv_buf[MWIFIEX_ASSOC_TLV_BUF_SIZE];
0629     u8 assoc_tlv_buf_len;
0630 
0631     u8 *curr_bcn_buf;
0632     u32 curr_bcn_size;
0633     /* spin lock for beacon buffer */
0634     spinlock_t curr_bcn_buf_lock;
0635     struct wireless_dev wdev;
0636     struct mwifiex_chan_freq_power cfp;
0637     u32 versionstrsel;
0638     char version_str[MWIFIEX_VERSION_STR_LENGTH];
0639 #ifdef CONFIG_DEBUG_FS
0640     struct dentry *dfs_dev_dir;
0641 #endif
0642     u16 current_key_index;
0643     struct mutex async_mutex;
0644     struct cfg80211_scan_request *scan_request;
0645     u8 cfg_bssid[6];
0646     struct wps wps;
0647     u8 scan_block;
0648     s32 cqm_rssi_thold;
0649     u32 cqm_rssi_hyst;
0650     u8 subsc_evt_rssi_state;
0651     struct mwifiex_ds_misc_subsc_evt async_subsc_evt_storage;
0652     struct mwifiex_ie mgmt_ie[MAX_MGMT_IE_INDEX];
0653     u16 beacon_idx;
0654     u16 proberesp_idx;
0655     u16 assocresp_idx;
0656     u16 gen_idx;
0657     u8 ap_11n_enabled;
0658     u8 ap_11ac_enabled;
0659     u32 mgmt_frame_mask;
0660     struct mwifiex_roc_cfg roc_cfg;
0661     bool scan_aborting;
0662     u8 sched_scanning;
0663     u8 csa_chan;
0664     unsigned long csa_expire_time;
0665     u8 del_list_idx;
0666     bool hs2_enabled;
0667     struct mwifiex_uap_bss_param bss_cfg;
0668     struct cfg80211_chan_def bss_chandef;
0669     struct station_parameters *sta_params;
0670     struct sk_buff_head tdls_txq;
0671     u8 check_tdls_tx;
0672     struct timer_list auto_tdls_timer;
0673     bool auto_tdls_timer_active;
0674     struct idr ack_status_frames;
0675     /* spin lock for ack status */
0676     spinlock_t ack_status_lock;
0677     /** rx histogram data */
0678     struct mwifiex_histogram_data *hist_data;
0679     struct cfg80211_chan_def dfs_chandef;
0680     struct workqueue_struct *dfs_cac_workqueue;
0681     struct delayed_work dfs_cac_work;
0682     struct timer_list dfs_chan_switch_timer;
0683     struct workqueue_struct *dfs_chan_sw_workqueue;
0684     struct delayed_work dfs_chan_sw_work;
0685     struct cfg80211_beacon_data beacon_after;
0686     struct mwifiex_11h_intf_state state_11h;
0687     struct mwifiex_ds_mem_rw mem_rw;
0688     struct sk_buff_head bypass_txq;
0689     struct mwifiex_user_scan_chan hidden_chan[MWIFIEX_USER_SCAN_CHAN_MAX];
0690     u8 assoc_resp_ht_param;
0691     bool ht_param_present;
0692 };
0693 
0694 
0695 struct mwifiex_tx_ba_stream_tbl {
0696     struct list_head list;
0697     int tid;
0698     u8 ra[ETH_ALEN];
0699     enum mwifiex_ba_status ba_status;
0700     u8 amsdu;
0701 };
0702 
0703 struct mwifiex_rx_reorder_tbl;
0704 
0705 struct reorder_tmr_cnxt {
0706     struct timer_list timer;
0707     struct mwifiex_rx_reorder_tbl *ptr;
0708     struct mwifiex_private *priv;
0709     u8 timer_is_set;
0710 };
0711 
0712 struct mwifiex_rx_reorder_tbl {
0713     struct list_head list;
0714     int tid;
0715     u8 ta[ETH_ALEN];
0716     int init_win;
0717     int start_win;
0718     int win_size;
0719     void **rx_reorder_ptr;
0720     struct reorder_tmr_cnxt timer_context;
0721     u8 amsdu;
0722     u8 flags;
0723 };
0724 
0725 struct mwifiex_bss_prio_node {
0726     struct list_head list;
0727     struct mwifiex_private *priv;
0728 };
0729 
0730 struct mwifiex_bss_prio_tbl {
0731     struct list_head bss_prio_head;
0732     /* spin lock for bss priority  */
0733     spinlock_t bss_prio_lock;
0734     struct mwifiex_bss_prio_node *bss_prio_cur;
0735 };
0736 
0737 struct cmd_ctrl_node {
0738     struct list_head list;
0739     struct mwifiex_private *priv;
0740     u32 cmd_no;
0741     u32 cmd_flag;
0742     struct sk_buff *cmd_skb;
0743     struct sk_buff *resp_skb;
0744     void *data_buf;
0745     u32 wait_q_enabled;
0746     struct sk_buff *skb;
0747     u8 *condition;
0748     u8 cmd_wait_q_woken;
0749 };
0750 
0751 struct mwifiex_bss_priv {
0752     u8 band;
0753     u64 fw_tsf;
0754 };
0755 
0756 struct mwifiex_tdls_capab {
0757     __le16 capab;
0758     u8 rates[32];
0759     u8 rates_len;
0760     u8 qos_info;
0761     u8 coex_2040;
0762     u16 aid;
0763     struct ieee80211_ht_cap ht_capb;
0764     struct ieee80211_ht_operation ht_oper;
0765     struct ieee_types_extcap extcap;
0766     struct ieee_types_generic rsn_ie;
0767     struct ieee80211_vht_cap vhtcap;
0768     struct ieee80211_vht_operation vhtoper;
0769 };
0770 
0771 struct mwifiex_station_stats {
0772     u64 last_rx;
0773     s8 rssi;
0774     u64 rx_bytes;
0775     u64 tx_bytes;
0776     u32 rx_packets;
0777     u32 tx_packets;
0778     u32 tx_failed;
0779     u8 last_tx_rate;
0780     u8 last_tx_htinfo;
0781 };
0782 
0783 /* This is AP/TDLS specific structure which stores information
0784  * about associated/peer STA
0785  */
0786 struct mwifiex_sta_node {
0787     struct list_head list;
0788     u8 mac_addr[ETH_ALEN];
0789     u8 is_wmm_enabled;
0790     u8 is_11n_enabled;
0791     u8 is_11ac_enabled;
0792     u8 ampdu_sta[MAX_NUM_TID];
0793     u16 rx_seq[MAX_NUM_TID];
0794     u16 max_amsdu;
0795     u8 tdls_status;
0796     struct mwifiex_tdls_capab tdls_cap;
0797     struct mwifiex_station_stats stats;
0798     u8 tx_pause;
0799 };
0800 
0801 struct mwifiex_auto_tdls_peer {
0802     struct list_head list;
0803     u8 mac_addr[ETH_ALEN];
0804     u8 tdls_status;
0805     int rssi;
0806     long rssi_jiffies;
0807     u8 failure_count;
0808     u8 do_discover;
0809     u8 do_setup;
0810 };
0811 
0812 #define MWIFIEX_TYPE_AGGR_DATA_V2 11
0813 #define MWIFIEX_BUS_AGGR_MODE_LEN_V2 (2)
0814 #define MWIFIEX_BUS_AGGR_MAX_LEN 16000
0815 #define MWIFIEX_BUS_AGGR_MAX_NUM 10
0816 struct bus_aggr_params {
0817     u16 enable;
0818     u16 mode;
0819     u16 tx_aggr_max_size;
0820     u16 tx_aggr_max_num;
0821     u16 tx_aggr_align;
0822 };
0823 
0824 struct mwifiex_if_ops {
0825     int (*init_if) (struct mwifiex_adapter *);
0826     void (*cleanup_if) (struct mwifiex_adapter *);
0827     int (*check_fw_status) (struct mwifiex_adapter *, u32);
0828     int (*check_winner_status)(struct mwifiex_adapter *);
0829     int (*prog_fw) (struct mwifiex_adapter *, struct mwifiex_fw_image *);
0830     int (*register_dev) (struct mwifiex_adapter *);
0831     void (*unregister_dev) (struct mwifiex_adapter *);
0832     int (*enable_int) (struct mwifiex_adapter *);
0833     void (*disable_int) (struct mwifiex_adapter *);
0834     int (*process_int_status) (struct mwifiex_adapter *);
0835     int (*host_to_card) (struct mwifiex_adapter *, u8, struct sk_buff *,
0836                  struct mwifiex_tx_param *);
0837     int (*wakeup) (struct mwifiex_adapter *);
0838     int (*wakeup_complete) (struct mwifiex_adapter *);
0839 
0840     /* Interface specific functions */
0841     void (*update_mp_end_port) (struct mwifiex_adapter *, u16);
0842     void (*cleanup_mpa_buf) (struct mwifiex_adapter *);
0843     int (*cmdrsp_complete) (struct mwifiex_adapter *, struct sk_buff *);
0844     int (*event_complete) (struct mwifiex_adapter *, struct sk_buff *);
0845     int (*init_fw_port) (struct mwifiex_adapter *);
0846     int (*dnld_fw) (struct mwifiex_adapter *, struct mwifiex_fw_image *);
0847     void (*card_reset) (struct mwifiex_adapter *);
0848     int (*reg_dump)(struct mwifiex_adapter *, char *);
0849     void (*device_dump)(struct mwifiex_adapter *);
0850     int (*clean_pcie_ring) (struct mwifiex_adapter *adapter);
0851     void (*iface_work)(struct work_struct *work);
0852     void (*submit_rem_rx_urbs)(struct mwifiex_adapter *adapter);
0853     void (*deaggr_pkt)(struct mwifiex_adapter *, struct sk_buff *);
0854     void (*multi_port_resync)(struct mwifiex_adapter *);
0855     bool (*is_port_ready)(struct mwifiex_private *);
0856     void (*down_dev)(struct mwifiex_adapter *);
0857     void (*up_dev)(struct mwifiex_adapter *);
0858 };
0859 
0860 struct mwifiex_adapter {
0861     u8 iface_type;
0862     unsigned int debug_mask;
0863     struct mwifiex_iface_comb iface_limit;
0864     struct mwifiex_iface_comb curr_iface_comb;
0865     struct mwifiex_private *priv[MWIFIEX_MAX_BSS_NUM];
0866     u8 priv_num;
0867     const struct firmware *firmware;
0868     char fw_name[32];
0869     int winner;
0870     struct device *dev;
0871     struct wiphy *wiphy;
0872     u8 perm_addr[ETH_ALEN];
0873     unsigned long work_flags;
0874     u32 fw_release_number;
0875     u8 intf_hdr_len;
0876     u16 init_wait_q_woken;
0877     wait_queue_head_t init_wait_q;
0878     void *card;
0879     struct mwifiex_if_ops if_ops;
0880     atomic_t bypass_tx_pending;
0881     atomic_t rx_pending;
0882     atomic_t tx_pending;
0883     atomic_t cmd_pending;
0884     atomic_t tx_hw_pending;
0885     struct workqueue_struct *workqueue;
0886     struct work_struct main_work;
0887     struct workqueue_struct *rx_workqueue;
0888     struct work_struct rx_work;
0889     struct workqueue_struct *dfs_workqueue;
0890     struct work_struct dfs_work;
0891     bool rx_work_enabled;
0892     bool rx_processing;
0893     bool delay_main_work;
0894     bool rx_locked;
0895     bool main_locked;
0896     struct mwifiex_bss_prio_tbl bss_prio_tbl[MWIFIEX_MAX_BSS_NUM];
0897     /* spin lock for main process */
0898     spinlock_t main_proc_lock;
0899     u32 mwifiex_processing;
0900     u8 more_task_flag;
0901     u16 tx_buf_size;
0902     u16 curr_tx_buf_size;
0903     /* sdio single port rx aggregation capability */
0904     bool host_disable_sdio_rx_aggr;
0905     bool sdio_rx_aggr_enable;
0906     u16 sdio_rx_block_size;
0907     u32 ioport;
0908     enum MWIFIEX_HARDWARE_STATUS hw_status;
0909     u16 number_of_antenna;
0910     u32 fw_cap_info;
0911     /* spin lock for interrupt handling */
0912     spinlock_t int_lock;
0913     u8 int_status;
0914     u32 event_cause;
0915     struct sk_buff *event_skb;
0916     u8 upld_buf[MWIFIEX_UPLD_SIZE];
0917     u8 data_sent;
0918     u8 cmd_sent;
0919     u8 cmd_resp_received;
0920     u8 event_received;
0921     u8 data_received;
0922     u16 seq_num;
0923     struct cmd_ctrl_node *cmd_pool;
0924     struct cmd_ctrl_node *curr_cmd;
0925     /* spin lock for command */
0926     spinlock_t mwifiex_cmd_lock;
0927     u16 last_init_cmd;
0928     struct timer_list cmd_timer;
0929     struct list_head cmd_free_q;
0930     /* spin lock for cmd_free_q */
0931     spinlock_t cmd_free_q_lock;
0932     struct list_head cmd_pending_q;
0933     /* spin lock for cmd_pending_q */
0934     spinlock_t cmd_pending_q_lock;
0935     struct list_head scan_pending_q;
0936     /* spin lock for scan_pending_q */
0937     spinlock_t scan_pending_q_lock;
0938     /* spin lock for RX processing routine */
0939     spinlock_t rx_proc_lock;
0940     struct sk_buff_head tx_data_q;
0941     atomic_t tx_queued;
0942     u32 scan_processing;
0943     u16 region_code;
0944     struct mwifiex_802_11d_domain_reg domain_reg;
0945     u16 scan_probes;
0946     u32 scan_mode;
0947     u16 specific_scan_time;
0948     u16 active_scan_time;
0949     u16 passive_scan_time;
0950     u16 scan_chan_gap_time;
0951     u8 fw_bands;
0952     u8 adhoc_start_band;
0953     u8 config_bands;
0954     struct mwifiex_chan_scan_param_set *scan_channels;
0955     u8 tx_lock_flag;
0956     struct mwifiex_sleep_params sleep_params;
0957     struct mwifiex_sleep_period sleep_period;
0958     u16 ps_mode;
0959     u32 ps_state;
0960     u8 need_to_wakeup;
0961     u16 multiple_dtim;
0962     u16 local_listen_interval;
0963     u16 null_pkt_interval;
0964     struct sk_buff *sleep_cfm;
0965     u16 bcn_miss_time_out;
0966     u16 adhoc_awake_period;
0967     u8 is_deep_sleep;
0968     u8 delay_null_pkt;
0969     u16 delay_to_ps;
0970     u16 enhanced_ps_mode;
0971     u8 pm_wakeup_card_req;
0972     u16 gen_null_pkt;
0973     u16 pps_uapsd_mode;
0974     u32 pm_wakeup_fw_try;
0975     struct timer_list wakeup_timer;
0976     struct mwifiex_hs_config_param hs_cfg;
0977     u8 hs_activated;
0978     u8 hs_activated_manually;
0979     u16 hs_activate_wait_q_woken;
0980     wait_queue_head_t hs_activate_wait_q;
0981     u8 event_body[MAX_EVENT_SIZE];
0982     u32 hw_dot_11n_dev_cap;
0983     u8 hw_dev_mcs_support;
0984     u8 user_dev_mcs_support;
0985     u8 adhoc_11n_enabled;
0986     u8 sec_chan_offset;
0987     struct mwifiex_dbg dbg;
0988     u8 arp_filter[ARP_FILTER_MAX_BUF_SIZE];
0989     u32 arp_filter_size;
0990     struct mwifiex_wait_queue cmd_wait_q;
0991     u8 scan_wait_q_woken;
0992     spinlock_t queue_lock;      /* lock for tx queues */
0993     u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
0994     u16 max_mgmt_ie_index;
0995     const struct firmware *cal_data;
0996     struct device_node *dt_node;
0997 
0998     /* 11AC */
0999     u32 is_hw_11ac_capable;
1000     u32 hw_dot_11ac_dev_cap;
1001     u32 hw_dot_11ac_mcs_support;
1002     u32 usr_dot_11ac_dev_cap_bg;
1003     u32 usr_dot_11ac_dev_cap_a;
1004     u32 usr_dot_11ac_mcs_support;
1005 
1006     atomic_t pending_bridged_pkts;
1007 
1008     /* For synchronizing FW initialization with device lifecycle. */
1009     struct completion *fw_done;
1010     bool is_up;
1011 
1012     bool ext_scan;
1013     u8 fw_api_ver;
1014     u8 key_api_major_ver, key_api_minor_ver;
1015     u8 max_p2p_conn, max_sta_conn;
1016     struct memory_type_mapping *mem_type_mapping_tbl;
1017     u8 num_mem_types;
1018     bool scan_chan_gap_enabled;
1019     struct sk_buff_head rx_data_q;
1020     bool mfg_mode;
1021     struct mwifiex_chan_stats *chan_stats;
1022     u32 num_in_chan_stats;
1023     int survey_idx;
1024     bool auto_tdls;
1025     u8 coex_scan;
1026     u8 coex_min_scan_time;
1027     u8 coex_max_scan_time;
1028     u8 coex_win_size;
1029     u8 coex_tx_win_size;
1030     u8 coex_rx_win_size;
1031     bool drcs_enabled;
1032     u8 active_scan_triggered;
1033     bool usb_mc_status;
1034     bool usb_mc_setup;
1035     struct cfg80211_wowlan_nd_info *nd_info;
1036     struct ieee80211_regdomain *regd;
1037 
1038     /* Wake-on-WLAN (WoWLAN) */
1039     int irq_wakeup;
1040     bool wake_by_wifi;
1041     /* Aggregation parameters*/
1042     struct bus_aggr_params bus_aggr;
1043     /* Device dump data/length */
1044     void *devdump_data;
1045     int devdump_len;
1046     struct timer_list devdump_timer;
1047 
1048     bool ignore_btcoex_events;
1049 };
1050 
1051 void mwifiex_process_tx_queue(struct mwifiex_adapter *adapter);
1052 
1053 int mwifiex_init_lock_list(struct mwifiex_adapter *adapter);
1054 
1055 void mwifiex_set_trans_start(struct net_device *dev);
1056 
1057 void mwifiex_stop_net_dev_queue(struct net_device *netdev,
1058         struct mwifiex_adapter *adapter);
1059 
1060 void mwifiex_wake_up_net_dev_queue(struct net_device *netdev,
1061         struct mwifiex_adapter *adapter);
1062 
1063 int mwifiex_init_priv(struct mwifiex_private *priv);
1064 void mwifiex_free_priv(struct mwifiex_private *priv);
1065 
1066 int mwifiex_init_fw(struct mwifiex_adapter *adapter);
1067 
1068 int mwifiex_init_fw_complete(struct mwifiex_adapter *adapter);
1069 
1070 void mwifiex_shutdown_drv(struct mwifiex_adapter *adapter);
1071 
1072 int mwifiex_dnld_fw(struct mwifiex_adapter *, struct mwifiex_fw_image *);
1073 
1074 int mwifiex_recv_packet(struct mwifiex_private *priv, struct sk_buff *skb);
1075 int mwifiex_uap_recv_packet(struct mwifiex_private *priv,
1076                 struct sk_buff *skb);
1077 
1078 int mwifiex_process_mgmt_packet(struct mwifiex_private *priv,
1079                 struct sk_buff *skb);
1080 
1081 int mwifiex_process_event(struct mwifiex_adapter *adapter);
1082 
1083 int mwifiex_complete_cmd(struct mwifiex_adapter *adapter,
1084              struct cmd_ctrl_node *cmd_node);
1085 
1086 int mwifiex_send_cmd(struct mwifiex_private *priv, u16 cmd_no,
1087              u16 cmd_action, u32 cmd_oid, void *data_buf, bool sync);
1088 
1089 void mwifiex_cmd_timeout_func(struct timer_list *t);
1090 
1091 int mwifiex_get_debug_info(struct mwifiex_private *,
1092                struct mwifiex_debug_info *);
1093 
1094 int mwifiex_alloc_cmd_buffer(struct mwifiex_adapter *adapter);
1095 void mwifiex_free_cmd_buffer(struct mwifiex_adapter *adapter);
1096 void mwifiex_free_cmd_buffers(struct mwifiex_adapter *adapter);
1097 void mwifiex_cancel_all_pending_cmd(struct mwifiex_adapter *adapter);
1098 void mwifiex_cancel_pending_scan_cmd(struct mwifiex_adapter *adapter);
1099 void mwifiex_cancel_scan(struct mwifiex_adapter *adapter);
1100 
1101 void mwifiex_recycle_cmd_node(struct mwifiex_adapter *adapter,
1102                   struct cmd_ctrl_node *cmd_node);
1103 
1104 void mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter *adapter,
1105                      struct cmd_ctrl_node *cmd_node);
1106 
1107 int mwifiex_exec_next_cmd(struct mwifiex_adapter *adapter);
1108 int mwifiex_process_cmdresp(struct mwifiex_adapter *adapter);
1109 int mwifiex_handle_rx_packet(struct mwifiex_adapter *adapter,
1110                  struct sk_buff *skb);
1111 int mwifiex_process_tx(struct mwifiex_private *priv, struct sk_buff *skb,
1112                struct mwifiex_tx_param *tx_param);
1113 int mwifiex_send_null_packet(struct mwifiex_private *priv, u8 flags);
1114 int mwifiex_write_data_complete(struct mwifiex_adapter *adapter,
1115                 struct sk_buff *skb, int aggr, int status);
1116 void mwifiex_clean_txrx(struct mwifiex_private *priv);
1117 u8 mwifiex_check_last_packet_indication(struct mwifiex_private *priv);
1118 void mwifiex_check_ps_cond(struct mwifiex_adapter *adapter);
1119 void mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter *, u8 *,
1120                     u32);
1121 int mwifiex_cmd_enh_power_mode(struct mwifiex_private *priv,
1122                    struct host_cmd_ds_command *cmd,
1123                    u16 cmd_action, uint16_t ps_bitmap,
1124                    struct mwifiex_ds_auto_ds *auto_ds);
1125 int mwifiex_ret_enh_power_mode(struct mwifiex_private *priv,
1126                    struct host_cmd_ds_command *resp,
1127                    struct mwifiex_ds_pm_cfg *pm_cfg);
1128 void mwifiex_process_hs_config(struct mwifiex_adapter *adapter);
1129 void mwifiex_hs_activated_event(struct mwifiex_private *priv,
1130                     u8 activated);
1131 int mwifiex_set_hs_params(struct mwifiex_private *priv, u16 action,
1132               int cmd_type, struct mwifiex_ds_hs_cfg *hs_cfg);
1133 int mwifiex_ret_802_11_hs_cfg(struct mwifiex_private *priv,
1134                   struct host_cmd_ds_command *resp);
1135 int mwifiex_process_rx_packet(struct mwifiex_private *priv,
1136                   struct sk_buff *skb);
1137 int mwifiex_sta_prepare_cmd(struct mwifiex_private *, uint16_t cmd_no,
1138                 u16 cmd_action, u32 cmd_oid,
1139                 void *data_buf, void *cmd_buf);
1140 int mwifiex_uap_prepare_cmd(struct mwifiex_private *priv, uint16_t cmd_no,
1141                 u16 cmd_action, u32 cmd_oid,
1142                 void *data_buf, void *cmd_buf);
1143 int mwifiex_process_sta_cmdresp(struct mwifiex_private *, u16 cmdresp_no,
1144                 struct host_cmd_ds_command *resp);
1145 int mwifiex_process_sta_rx_packet(struct mwifiex_private *,
1146                   struct sk_buff *skb);
1147 int mwifiex_process_uap_rx_packet(struct mwifiex_private *priv,
1148                   struct sk_buff *skb);
1149 int mwifiex_handle_uap_rx_forward(struct mwifiex_private *priv,
1150                   struct sk_buff *skb);
1151 int mwifiex_process_sta_event(struct mwifiex_private *);
1152 int mwifiex_process_uap_event(struct mwifiex_private *);
1153 void mwifiex_delete_all_station_list(struct mwifiex_private *priv);
1154 void mwifiex_wmm_del_peer_ra_list(struct mwifiex_private *priv,
1155                   const u8 *ra_addr);
1156 void *mwifiex_process_sta_txpd(struct mwifiex_private *, struct sk_buff *skb);
1157 void *mwifiex_process_uap_txpd(struct mwifiex_private *, struct sk_buff *skb);
1158 int mwifiex_sta_init_cmd(struct mwifiex_private *, u8 first_sta, bool init);
1159 int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command *cmd,
1160                 struct mwifiex_scan_cmd_config *scan_cfg);
1161 void mwifiex_queue_scan_cmd(struct mwifiex_private *priv,
1162                 struct cmd_ctrl_node *cmd_node);
1163 int mwifiex_ret_802_11_scan(struct mwifiex_private *priv,
1164                 struct host_cmd_ds_command *resp);
1165 s32 mwifiex_ssid_cmp(struct cfg80211_ssid *ssid1, struct cfg80211_ssid *ssid2);
1166 int mwifiex_associate(struct mwifiex_private *priv,
1167               struct mwifiex_bssdescriptor *bss_desc);
1168 int mwifiex_cmd_802_11_associate(struct mwifiex_private *priv,
1169                  struct host_cmd_ds_command *cmd,
1170                  struct mwifiex_bssdescriptor *bss_desc);
1171 int mwifiex_ret_802_11_associate(struct mwifiex_private *priv,
1172                  struct host_cmd_ds_command *resp);
1173 void mwifiex_reset_connect_state(struct mwifiex_private *priv, u16 reason,
1174                  bool from_ap);
1175 u8 mwifiex_band_to_radio_type(u8 band);
1176 int mwifiex_deauthenticate(struct mwifiex_private *priv, u8 *mac);
1177 void mwifiex_deauthenticate_all(struct mwifiex_adapter *adapter);
1178 int mwifiex_adhoc_start(struct mwifiex_private *priv,
1179             struct cfg80211_ssid *adhoc_ssid);
1180 int mwifiex_adhoc_join(struct mwifiex_private *priv,
1181                struct mwifiex_bssdescriptor *bss_desc);
1182 int mwifiex_cmd_802_11_ad_hoc_start(struct mwifiex_private *priv,
1183                     struct host_cmd_ds_command *cmd,
1184                     struct cfg80211_ssid *req_ssid);
1185 int mwifiex_cmd_802_11_ad_hoc_join(struct mwifiex_private *priv,
1186                    struct host_cmd_ds_command *cmd,
1187                    struct mwifiex_bssdescriptor *bss_desc);
1188 int mwifiex_ret_802_11_ad_hoc(struct mwifiex_private *priv,
1189                   struct host_cmd_ds_command *resp);
1190 int mwifiex_cmd_802_11_bg_scan_query(struct host_cmd_ds_command *cmd);
1191 struct mwifiex_chan_freq_power *mwifiex_get_cfp(struct mwifiex_private *priv,
1192                         u8 band, u16 channel, u32 freq);
1193 u32 mwifiex_index_to_data_rate(struct mwifiex_private *priv,
1194                    u8 index, u8 ht_info);
1195 u32 mwifiex_index_to_acs_data_rate(struct mwifiex_private *priv,
1196                    u8 index, u8 ht_info);
1197 u32 mwifiex_find_freq_from_band_chan(u8, u8);
1198 int mwifiex_cmd_append_vsie_tlv(struct mwifiex_private *priv, u16 vsie_mask,
1199                 u8 **buffer);
1200 u32 mwifiex_get_active_data_rates(struct mwifiex_private *priv,
1201                     u8 *rates);
1202 u32 mwifiex_get_supported_rates(struct mwifiex_private *priv, u8 *rates);
1203 u32 mwifiex_get_rates_from_cfg80211(struct mwifiex_private *priv,
1204                     u8 *rates, u8 radio_type);
1205 u8 mwifiex_is_rate_auto(struct mwifiex_private *priv);
1206 extern u16 region_code_index[MWIFIEX_MAX_REGION_CODE];
1207 void mwifiex_save_curr_bcn(struct mwifiex_private *priv);
1208 void mwifiex_free_curr_bcn(struct mwifiex_private *priv);
1209 int mwifiex_cmd_get_hw_spec(struct mwifiex_private *priv,
1210                 struct host_cmd_ds_command *cmd);
1211 int mwifiex_ret_get_hw_spec(struct mwifiex_private *priv,
1212                 struct host_cmd_ds_command *resp);
1213 int is_command_pending(struct mwifiex_adapter *adapter);
1214 void mwifiex_init_priv_params(struct mwifiex_private *priv,
1215                         struct net_device *dev);
1216 int mwifiex_set_secure_params(struct mwifiex_private *priv,
1217                   struct mwifiex_uap_bss_param *bss_config,
1218                   struct cfg80211_ap_settings *params);
1219 void mwifiex_set_ht_params(struct mwifiex_private *priv,
1220                struct mwifiex_uap_bss_param *bss_cfg,
1221                struct cfg80211_ap_settings *params);
1222 void mwifiex_set_vht_params(struct mwifiex_private *priv,
1223                 struct mwifiex_uap_bss_param *bss_cfg,
1224                 struct cfg80211_ap_settings *params);
1225 void mwifiex_set_tpc_params(struct mwifiex_private *priv,
1226                 struct mwifiex_uap_bss_param *bss_cfg,
1227                 struct cfg80211_ap_settings *params);
1228 void mwifiex_set_uap_rates(struct mwifiex_uap_bss_param *bss_cfg,
1229                struct cfg80211_ap_settings *params);
1230 void mwifiex_set_vht_width(struct mwifiex_private *priv,
1231                enum nl80211_chan_width width,
1232                bool ap_11ac_disable);
1233 void
1234 mwifiex_set_wmm_params(struct mwifiex_private *priv,
1235                struct mwifiex_uap_bss_param *bss_cfg,
1236                struct cfg80211_ap_settings *params);
1237 void mwifiex_set_ba_params(struct mwifiex_private *priv);
1238 
1239 void mwifiex_update_ampdu_txwinsize(struct mwifiex_adapter *pmadapter);
1240 void mwifiex_bt_coex_wlan_param_update_event(struct mwifiex_private *priv,
1241                          struct sk_buff *event_skb);
1242 
1243 void mwifiex_set_11ac_ba_params(struct mwifiex_private *priv);
1244 int mwifiex_cmd_802_11_scan_ext(struct mwifiex_private *priv,
1245                 struct host_cmd_ds_command *cmd,
1246                 void *data_buf);
1247 int mwifiex_ret_802_11_scan_ext(struct mwifiex_private *priv,
1248                 struct host_cmd_ds_command *resp);
1249 int mwifiex_handle_event_ext_scan_report(struct mwifiex_private *priv,
1250                      void *buf);
1251 int mwifiex_cmd_802_11_bg_scan_config(struct mwifiex_private *priv,
1252                       struct host_cmd_ds_command *cmd,
1253                       void *data_buf);
1254 int mwifiex_stop_bg_scan(struct mwifiex_private *priv);
1255 
1256 /*
1257  * This function checks if the queuing is RA based or not.
1258  */
1259 static inline u8
1260 mwifiex_queuing_ra_based(struct mwifiex_private *priv)
1261 {
1262     /*
1263      * Currently we assume if we are in Infra, then DA=RA. This might not be
1264      * true in the future
1265      */
1266     if ((priv->bss_mode == NL80211_IFTYPE_STATION ||
1267          priv->bss_mode == NL80211_IFTYPE_P2P_CLIENT) &&
1268         (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA))
1269         return false;
1270 
1271     return true;
1272 }
1273 
1274 /*
1275  * This function copies rates.
1276  */
1277 static inline u32
1278 mwifiex_copy_rates(u8 *dest, u32 pos, u8 *src, int len)
1279 {
1280     int i;
1281 
1282     for (i = 0; i < len && src[i]; i++, pos++) {
1283         if (pos >= MWIFIEX_SUPPORTED_RATES)
1284             break;
1285         dest[pos] = src[i];
1286     }
1287 
1288     return pos;
1289 }
1290 
1291 /*
1292  * This function returns the correct private structure pointer based
1293  * upon the BSS type and BSS number.
1294  */
1295 static inline struct mwifiex_private *
1296 mwifiex_get_priv_by_id(struct mwifiex_adapter *adapter,
1297                u8 bss_num, u8 bss_type)
1298 {
1299     int i;
1300 
1301     for (i = 0; i < adapter->priv_num; i++) {
1302         if (adapter->priv[i]) {
1303             if ((adapter->priv[i]->bss_num == bss_num) &&
1304                 (adapter->priv[i]->bss_type == bss_type))
1305                 break;
1306         }
1307     }
1308     return ((i < adapter->priv_num) ? adapter->priv[i] : NULL);
1309 }
1310 
1311 /*
1312  * This function returns the first available private structure pointer
1313  * based upon the BSS role.
1314  */
1315 static inline struct mwifiex_private *
1316 mwifiex_get_priv(struct mwifiex_adapter *adapter,
1317          enum mwifiex_bss_role bss_role)
1318 {
1319     int i;
1320 
1321     for (i = 0; i < adapter->priv_num; i++) {
1322         if (adapter->priv[i]) {
1323             if (bss_role == MWIFIEX_BSS_ROLE_ANY ||
1324                 GET_BSS_ROLE(adapter->priv[i]) == bss_role)
1325                 break;
1326         }
1327     }
1328 
1329     return ((i < adapter->priv_num) ? adapter->priv[i] : NULL);
1330 }
1331 
1332 /*
1333  * This function checks available bss_num when adding new interface or
1334  * changing interface type.
1335  */
1336 static inline u8
1337 mwifiex_get_unused_bss_num(struct mwifiex_adapter *adapter, u8 bss_type)
1338 {
1339     u8 i, j;
1340     int index[MWIFIEX_MAX_BSS_NUM];
1341 
1342     memset(index, 0, sizeof(index));
1343     for (i = 0; i < adapter->priv_num; i++)
1344         if (adapter->priv[i]) {
1345             if (adapter->priv[i]->bss_type == bss_type &&
1346                 !(adapter->priv[i]->bss_mode ==
1347                   NL80211_IFTYPE_UNSPECIFIED)) {
1348                 index[adapter->priv[i]->bss_num] = 1;
1349             }
1350         }
1351     for (j = 0; j < MWIFIEX_MAX_BSS_NUM; j++)
1352         if (!index[j])
1353             return j;
1354     return -1;
1355 }
1356 
1357 /*
1358  * This function returns the first available unused private structure pointer.
1359  */
1360 static inline struct mwifiex_private *
1361 mwifiex_get_unused_priv_by_bss_type(struct mwifiex_adapter *adapter,
1362                     u8 bss_type)
1363 {
1364     u8 i;
1365 
1366     for (i = 0; i < adapter->priv_num; i++)
1367         if (adapter->priv[i]->bss_mode ==
1368            NL80211_IFTYPE_UNSPECIFIED) {
1369             adapter->priv[i]->bss_num =
1370             mwifiex_get_unused_bss_num(adapter, bss_type);
1371             break;
1372         }
1373 
1374     return ((i < adapter->priv_num) ? adapter->priv[i] : NULL);
1375 }
1376 
1377 /*
1378  * This function returns the driver private structure of a network device.
1379  */
1380 static inline struct mwifiex_private *
1381 mwifiex_netdev_get_priv(struct net_device *dev)
1382 {
1383     return (struct mwifiex_private *) (*(unsigned long *) netdev_priv(dev));
1384 }
1385 
1386 /*
1387  * This function checks if a skb holds a management frame.
1388  */
1389 static inline bool mwifiex_is_skb_mgmt_frame(struct sk_buff *skb)
1390 {
1391     return (get_unaligned_le32(skb->data) == PKT_TYPE_MGMT);
1392 }
1393 
1394 /* This function retrieves channel closed for operation by Channel
1395  * Switch Announcement.
1396  */
1397 static inline u8
1398 mwifiex_11h_get_csa_closed_channel(struct mwifiex_private *priv)
1399 {
1400     if (!priv->csa_chan)
1401         return 0;
1402 
1403     /* Clear csa channel, if DFS channel move time has passed */
1404     if (time_after(jiffies, priv->csa_expire_time)) {
1405         priv->csa_chan = 0;
1406         priv->csa_expire_time = 0;
1407     }
1408 
1409     return priv->csa_chan;
1410 }
1411 
1412 static inline u8 mwifiex_is_any_intf_active(struct mwifiex_private *priv)
1413 {
1414     struct mwifiex_private *priv_num;
1415     int i;
1416 
1417     for (i = 0; i < priv->adapter->priv_num; i++) {
1418         priv_num = priv->adapter->priv[i];
1419         if (priv_num) {
1420             if ((GET_BSS_ROLE(priv_num) == MWIFIEX_BSS_ROLE_UAP &&
1421                  priv_num->bss_started) ||
1422                 (GET_BSS_ROLE(priv_num) == MWIFIEX_BSS_ROLE_STA &&
1423                  priv_num->media_connected))
1424                 return 1;
1425         }
1426     }
1427 
1428     return 0;
1429 }
1430 
1431 static inline u8 mwifiex_is_tdls_link_setup(u8 status)
1432 {
1433     switch (status) {
1434     case TDLS_SETUP_COMPLETE:
1435     case TDLS_CHAN_SWITCHING:
1436     case TDLS_IN_BASE_CHAN:
1437     case TDLS_IN_OFF_CHAN:
1438         return true;
1439     default:
1440         break;
1441     }
1442 
1443     return false;
1444 }
1445 
1446 /* Disable platform specific wakeup interrupt */
1447 static inline void mwifiex_disable_wake(struct mwifiex_adapter *adapter)
1448 {
1449     if (adapter->irq_wakeup >= 0) {
1450         disable_irq_wake(adapter->irq_wakeup);
1451         disable_irq(adapter->irq_wakeup);
1452         if (adapter->wake_by_wifi)
1453             /* Undo our disable, since interrupt handler already
1454              * did this.
1455              */
1456             enable_irq(adapter->irq_wakeup);
1457 
1458     }
1459 }
1460 
1461 /* Enable platform specific wakeup interrupt */
1462 static inline void mwifiex_enable_wake(struct mwifiex_adapter *adapter)
1463 {
1464     /* Enable platform specific wakeup interrupt */
1465     if (adapter->irq_wakeup >= 0) {
1466         adapter->wake_by_wifi = false;
1467         enable_irq(adapter->irq_wakeup);
1468         enable_irq_wake(adapter->irq_wakeup);
1469     }
1470 }
1471 
1472 int mwifiex_init_shutdown_fw(struct mwifiex_private *priv,
1473                  u32 func_init_shutdown);
1474 
1475 int mwifiex_add_card(void *card, struct completion *fw_done,
1476              struct mwifiex_if_ops *if_ops, u8 iface_type,
1477              struct device *dev);
1478 int mwifiex_remove_card(struct mwifiex_adapter *adapter);
1479 
1480 void mwifiex_get_version(struct mwifiex_adapter *adapter, char *version,
1481              int maxlen);
1482 int mwifiex_request_set_multicast_list(struct mwifiex_private *priv,
1483             struct mwifiex_multicast_list *mcast_list);
1484 int mwifiex_copy_mcast_addr(struct mwifiex_multicast_list *mlist,
1485                 struct net_device *dev);
1486 int mwifiex_wait_queue_complete(struct mwifiex_adapter *adapter,
1487                 struct cmd_ctrl_node *cmd_queued);
1488 int mwifiex_bss_start(struct mwifiex_private *priv, struct cfg80211_bss *bss,
1489               struct cfg80211_ssid *req_ssid);
1490 int mwifiex_cancel_hs(struct mwifiex_private *priv, int cmd_type);
1491 int mwifiex_enable_hs(struct mwifiex_adapter *adapter);
1492 int mwifiex_disable_auto_ds(struct mwifiex_private *priv);
1493 int mwifiex_drv_get_data_rate(struct mwifiex_private *priv, u32 *rate);
1494 int mwifiex_request_scan(struct mwifiex_private *priv,
1495              struct cfg80211_ssid *req_ssid);
1496 int mwifiex_scan_networks(struct mwifiex_private *priv,
1497               const struct mwifiex_user_scan_cfg *user_scan_in);
1498 int mwifiex_set_radio(struct mwifiex_private *priv, u8 option);
1499 
1500 int mwifiex_set_encode(struct mwifiex_private *priv, struct key_params *kp,
1501                const u8 *key, int key_len, u8 key_index,
1502                const u8 *mac_addr, int disable);
1503 
1504 int mwifiex_set_gen_ie(struct mwifiex_private *priv, const u8 *ie, int ie_len);
1505 
1506 int mwifiex_get_ver_ext(struct mwifiex_private *priv, u32 version_str_sel);
1507 
1508 int mwifiex_remain_on_chan_cfg(struct mwifiex_private *priv, u16 action,
1509                    struct ieee80211_channel *chan,
1510                    unsigned int duration);
1511 
1512 int mwifiex_get_stats_info(struct mwifiex_private *priv,
1513                struct mwifiex_ds_get_stats *log);
1514 
1515 int mwifiex_reg_write(struct mwifiex_private *priv, u32 reg_type,
1516               u32 reg_offset, u32 reg_value);
1517 
1518 int mwifiex_reg_read(struct mwifiex_private *priv, u32 reg_type,
1519              u32 reg_offset, u32 *value);
1520 
1521 int mwifiex_eeprom_read(struct mwifiex_private *priv, u16 offset, u16 bytes,
1522             u8 *value);
1523 
1524 int mwifiex_set_11n_httx_cfg(struct mwifiex_private *priv, int data);
1525 
1526 int mwifiex_get_11n_httx_cfg(struct mwifiex_private *priv, int *data);
1527 
1528 int mwifiex_set_tx_rate_cfg(struct mwifiex_private *priv, int tx_rate_index);
1529 
1530 int mwifiex_get_tx_rate_cfg(struct mwifiex_private *priv, int *tx_rate_index);
1531 
1532 int mwifiex_drv_set_power(struct mwifiex_private *priv, u32 *ps_mode);
1533 
1534 int mwifiex_drv_get_driver_version(struct mwifiex_adapter *adapter,
1535                    char *version, int max_len);
1536 
1537 int mwifiex_set_tx_power(struct mwifiex_private *priv,
1538              struct mwifiex_power_cfg *power_cfg);
1539 
1540 int mwifiex_main_process(struct mwifiex_adapter *);
1541 
1542 int mwifiex_queue_tx_pkt(struct mwifiex_private *priv, struct sk_buff *skb);
1543 
1544 int mwifiex_get_bss_info(struct mwifiex_private *,
1545              struct mwifiex_bss_info *);
1546 int mwifiex_fill_new_bss_desc(struct mwifiex_private *priv,
1547                   struct cfg80211_bss *bss,
1548                   struct mwifiex_bssdescriptor *bss_desc);
1549 int mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter *adapter,
1550                     struct mwifiex_bssdescriptor *bss_entry);
1551 int mwifiex_check_network_compatibility(struct mwifiex_private *priv,
1552                     struct mwifiex_bssdescriptor *bss_desc);
1553 
1554 u8 mwifiex_chan_type_to_sec_chan_offset(enum nl80211_channel_type chan_type);
1555 u8 mwifiex_get_chan_type(struct mwifiex_private *priv);
1556 
1557 struct wireless_dev *mwifiex_add_virtual_intf(struct wiphy *wiphy,
1558                           const char *name,
1559                           unsigned char name_assign_type,
1560                           enum nl80211_iftype type,
1561                           struct vif_params *params);
1562 int mwifiex_del_virtual_intf(struct wiphy *wiphy, struct wireless_dev *wdev);
1563 
1564 void mwifiex_set_sys_config_invalid_data(struct mwifiex_uap_bss_param *config);
1565 
1566 int mwifiex_add_wowlan_magic_pkt_filter(struct mwifiex_adapter *adapter);
1567 
1568 int mwifiex_set_mgmt_ies(struct mwifiex_private *priv,
1569              struct cfg80211_beacon_data *data);
1570 int mwifiex_del_mgmt_ies(struct mwifiex_private *priv);
1571 u8 *mwifiex_11d_code_2_region(u8 code);
1572 void mwifiex_uap_set_channel(struct mwifiex_private *priv,
1573                  struct mwifiex_uap_bss_param *bss_cfg,
1574                  struct cfg80211_chan_def chandef);
1575 int mwifiex_config_start_uap(struct mwifiex_private *priv,
1576                  struct mwifiex_uap_bss_param *bss_cfg);
1577 void mwifiex_uap_del_sta_data(struct mwifiex_private *priv,
1578                   struct mwifiex_sta_node *node);
1579 
1580 void mwifiex_config_uap_11d(struct mwifiex_private *priv,
1581                 struct cfg80211_beacon_data *beacon_data);
1582 
1583 void mwifiex_init_11h_params(struct mwifiex_private *priv);
1584 int mwifiex_is_11h_active(struct mwifiex_private *priv);
1585 int mwifiex_11h_activate(struct mwifiex_private *priv, bool flag);
1586 
1587 void mwifiex_11h_process_join(struct mwifiex_private *priv, u8 **buffer,
1588                   struct mwifiex_bssdescriptor *bss_desc);
1589 int mwifiex_11h_handle_event_chanswann(struct mwifiex_private *priv);
1590 int mwifiex_dnld_dt_cfgdata(struct mwifiex_private *priv,
1591                 struct device_node *node, const char *prefix);
1592 void mwifiex_dnld_txpwr_table(struct mwifiex_private *priv);
1593 
1594 extern const struct ethtool_ops mwifiex_ethtool_ops;
1595 
1596 void mwifiex_del_all_sta_list(struct mwifiex_private *priv);
1597 void mwifiex_del_sta_entry(struct mwifiex_private *priv, const u8 *mac);
1598 void
1599 mwifiex_set_sta_ht_cap(struct mwifiex_private *priv, const u8 *ies,
1600                int ies_len, struct mwifiex_sta_node *node);
1601 struct mwifiex_sta_node *
1602 mwifiex_add_sta_entry(struct mwifiex_private *priv, const u8 *mac);
1603 struct mwifiex_sta_node *
1604 mwifiex_get_sta_entry(struct mwifiex_private *priv, const u8 *mac);
1605 u8 mwifiex_is_tdls_chan_switching(struct mwifiex_private *priv);
1606 u8 mwifiex_is_tdls_off_chan(struct mwifiex_private *priv);
1607 u8 mwifiex_is_send_cmd_allowed(struct mwifiex_private *priv);
1608 int mwifiex_send_tdls_data_frame(struct mwifiex_private *priv, const u8 *peer,
1609                  u8 action_code, u8 dialog_token,
1610                  u16 status_code, const u8 *extra_ies,
1611                  size_t extra_ies_len);
1612 int mwifiex_send_tdls_action_frame(struct mwifiex_private *priv, const u8 *peer,
1613                    u8 action_code, u8 dialog_token,
1614                    u16 status_code, const u8 *extra_ies,
1615                    size_t extra_ies_len);
1616 void mwifiex_process_tdls_action_frame(struct mwifiex_private *priv,
1617                        u8 *buf, int len);
1618 int mwifiex_tdls_oper(struct mwifiex_private *priv, const u8 *peer, u8 action);
1619 int mwifiex_get_tdls_link_status(struct mwifiex_private *priv, const u8 *mac);
1620 int mwifiex_get_tdls_list(struct mwifiex_private *priv,
1621               struct tdls_peer_info *buf);
1622 void mwifiex_disable_all_tdls_links(struct mwifiex_private *priv);
1623 bool mwifiex_is_bss_in_11ac_mode(struct mwifiex_private *priv);
1624 u8 mwifiex_get_center_freq_index(struct mwifiex_private *priv, u8 band,
1625                  u32 pri_chan, u8 chan_bw);
1626 int mwifiex_init_channel_scan_gap(struct mwifiex_adapter *adapter);
1627 
1628 int mwifiex_tdls_check_tx(struct mwifiex_private *priv, struct sk_buff *skb);
1629 void mwifiex_flush_auto_tdls_list(struct mwifiex_private *priv);
1630 void mwifiex_auto_tdls_update_peer_status(struct mwifiex_private *priv,
1631                       const u8 *mac, u8 link_status);
1632 void mwifiex_auto_tdls_update_peer_signal(struct mwifiex_private *priv,
1633                       u8 *mac, s8 snr, s8 nflr);
1634 void mwifiex_check_auto_tdls(struct timer_list *t);
1635 void mwifiex_add_auto_tdls_peer(struct mwifiex_private *priv, const u8 *mac);
1636 void mwifiex_setup_auto_tdls_timer(struct mwifiex_private *priv);
1637 void mwifiex_clean_auto_tdls(struct mwifiex_private *priv);
1638 int mwifiex_config_tdls_enable(struct mwifiex_private *priv);
1639 int mwifiex_config_tdls_disable(struct mwifiex_private *priv);
1640 int mwifiex_config_tdls_cs_params(struct mwifiex_private *priv);
1641 int mwifiex_stop_tdls_cs(struct mwifiex_private *priv, const u8 *peer_mac);
1642 int mwifiex_start_tdls_cs(struct mwifiex_private *priv, const u8 *peer_mac,
1643               u8 primary_chan, u8 second_chan_offset, u8 band);
1644 
1645 int mwifiex_cmd_issue_chan_report_request(struct mwifiex_private *priv,
1646                       struct host_cmd_ds_command *cmd,
1647                       void *data_buf);
1648 int mwifiex_11h_handle_chanrpt_ready(struct mwifiex_private *priv,
1649                      struct sk_buff *skb);
1650 
1651 void mwifiex_parse_tx_status_event(struct mwifiex_private *priv,
1652                    void *event_body);
1653 
1654 struct sk_buff *
1655 mwifiex_clone_skb_for_tx_status(struct mwifiex_private *priv,
1656                 struct sk_buff *skb, u8 flag, u64 *cookie);
1657 void mwifiex_dfs_cac_work_queue(struct work_struct *work);
1658 void mwifiex_dfs_chan_sw_work_queue(struct work_struct *work);
1659 void mwifiex_abort_cac(struct mwifiex_private *priv);
1660 int mwifiex_stop_radar_detection(struct mwifiex_private *priv,
1661                  struct cfg80211_chan_def *chandef);
1662 int mwifiex_11h_handle_radar_detected(struct mwifiex_private *priv,
1663                       struct sk_buff *skb);
1664 
1665 void mwifiex_hist_data_set(struct mwifiex_private *priv, u8 rx_rate, s8 snr,
1666                s8 nflr);
1667 void mwifiex_hist_data_reset(struct mwifiex_private *priv);
1668 void mwifiex_hist_data_add(struct mwifiex_private *priv,
1669                u8 rx_rate, s8 snr, s8 nflr);
1670 u8 mwifiex_adjust_data_rate(struct mwifiex_private *priv,
1671                 u8 rx_rate, u8 ht_info);
1672 
1673 void mwifiex_drv_info_dump(struct mwifiex_adapter *adapter);
1674 void mwifiex_prepare_fw_dump_info(struct mwifiex_adapter *adapter);
1675 void mwifiex_upload_device_dump(struct mwifiex_adapter *adapter);
1676 void *mwifiex_alloc_dma_align_buf(int rx_len, gfp_t flags);
1677 void mwifiex_fw_dump_event(struct mwifiex_private *priv);
1678 void mwifiex_queue_main_work(struct mwifiex_adapter *adapter);
1679 int mwifiex_get_wakeup_reason(struct mwifiex_private *priv, u16 action,
1680                   int cmd_type,
1681                   struct mwifiex_ds_wakeup_reason *wakeup_reason);
1682 int mwifiex_get_chan_info(struct mwifiex_private *priv,
1683               struct mwifiex_channel_band *channel_band);
1684 int mwifiex_ret_wakeup_reason(struct mwifiex_private *priv,
1685                   struct host_cmd_ds_command *resp,
1686                   struct host_cmd_ds_wakeup_reason *wakeup_reason);
1687 void mwifiex_coex_ampdu_rxwinsize(struct mwifiex_adapter *adapter);
1688 void mwifiex_11n_delba(struct mwifiex_private *priv, int tid);
1689 int mwifiex_send_domain_info_cmd_fw(struct wiphy *wiphy);
1690 void mwifiex_process_tx_pause_event(struct mwifiex_private *priv,
1691                     struct sk_buff *event);
1692 void mwifiex_process_multi_chan_event(struct mwifiex_private *priv,
1693                       struct sk_buff *event_skb);
1694 void mwifiex_multi_chan_resync(struct mwifiex_adapter *adapter);
1695 int mwifiex_set_mac_address(struct mwifiex_private *priv,
1696                 struct net_device *dev,
1697                 bool external, u8 *new_mac);
1698 void mwifiex_devdump_tmo_func(unsigned long function_context);
1699 
1700 #ifdef CONFIG_DEBUG_FS
1701 void mwifiex_debugfs_init(void);
1702 void mwifiex_debugfs_remove(void);
1703 
1704 void mwifiex_dev_debugfs_init(struct mwifiex_private *priv);
1705 void mwifiex_dev_debugfs_remove(struct mwifiex_private *priv);
1706 #endif
1707 int mwifiex_reinit_sw(struct mwifiex_adapter *adapter);
1708 int mwifiex_shutdown_sw(struct mwifiex_adapter *adapter);
1709 #endif /* !_MWIFIEX_MAIN_H_ */