2 * Marvell Wireless LAN device driver: major data structures and prototypes
4 * Copyright (C) 2011-2014, 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.
20 #ifndef _MWIFIEX_MAIN_H_
21 #define _MWIFIEX_MAIN_H_
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/sched.h>
26 #include <linux/semaphore.h>
28 #include <linux/skbuff.h>
29 #include <linux/if_arp.h>
30 #include <linux/etherdevice.h>
32 #include <net/lib80211.h>
33 #include <linux/vmalloc.h>
34 #include <linux/firmware.h>
35 #include <linux/ctype.h>
37 #include <linux/idr.h>
45 extern const char driver_version
[];
52 #define MWIFIEX_DRIVER_MODE_STA BIT(0)
53 #define MWIFIEX_DRIVER_MODE_UAP BIT(1)
54 #define MWIFIEX_DRIVER_MODE_P2P BIT(2)
55 #define MWIFIEX_DRIVER_MODE_BITMASK (BIT(0) | BIT(1) | BIT(2))
57 #define MWIFIEX_MAX_AP 64
59 #define MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT (5 * HZ)
61 #define MWIFIEX_TIMER_10S 10000
62 #define MWIFIEX_TIMER_1S 1000
64 #define MAX_TX_PENDING 100
65 #define LOW_TX_PENDING 80
67 #define HIGH_RX_PENDING 50
68 #define LOW_RX_PENDING 20
70 #define MWIFIEX_UPLD_SIZE (2312)
72 #define MAX_EVENT_SIZE 2048
74 #define ARP_FILTER_MAX_BUF_SIZE 68
76 #define MWIFIEX_KEY_BUFFER_SIZE 16
77 #define MWIFIEX_DEFAULT_LISTEN_INTERVAL 10
78 #define MWIFIEX_MAX_REGION_CODE 7
80 #define DEFAULT_BCN_AVG_FACTOR 8
81 #define DEFAULT_DATA_AVG_FACTOR 8
83 #define FIRST_VALID_CHANNEL 0xff
84 #define DEFAULT_AD_HOC_CHANNEL 6
85 #define DEFAULT_AD_HOC_CHANNEL_A 36
87 #define DEFAULT_BCN_MISS_TIMEOUT 5
89 #define MAX_SCAN_BEACON_BUFFER 8000
91 #define SCAN_BEACON_ENTRY_PAD 6
93 #define MWIFIEX_PASSIVE_SCAN_CHAN_TIME 110
94 #define MWIFIEX_ACTIVE_SCAN_CHAN_TIME 30
95 #define MWIFIEX_SPECIFIC_SCAN_CHAN_TIME 30
96 #define MWIFIEX_DEF_SCAN_CHAN_GAP_TIME 50
98 #define SCAN_RSSI(RSSI) (0x100 - ((u8)(RSSI)))
100 #define MWIFIEX_MAX_TOTAL_SCAN_TIME (MWIFIEX_TIMER_10S - MWIFIEX_TIMER_1S)
102 #define RSN_GTK_OUI_OFFSET 2
104 #define MWIFIEX_OUI_NOT_PRESENT 0
105 #define MWIFIEX_OUI_PRESENT 1
107 #define PKT_TYPE_MGMT 0xE5
110 * Do not check for data_received for USB, as data_received
111 * is handled in mwifiex_usb_recv for USB
113 #define IS_CARD_RX_RCVD(adapter) (adapter->cmd_resp_received || \
114 adapter->event_received || \
115 adapter->data_received)
117 #define MWIFIEX_TYPE_CMD 1
118 #define MWIFIEX_TYPE_DATA 0
119 #define MWIFIEX_TYPE_EVENT 3
121 #define MAX_BITMAP_RATES_SIZE 18
123 #define MAX_CHANNEL_BAND_BG 14
124 #define MAX_CHANNEL_BAND_A 165
126 #define MAX_FREQUENCY_BAND_BG 2484
128 #define MWIFIEX_EVENT_HEADER_LEN 4
129 #define MWIFIEX_UAP_EVENT_EXTRA_HEADER 2
131 #define MWIFIEX_TYPE_LEN 4
132 #define MWIFIEX_USB_TYPE_CMD 0xF00DFACE
133 #define MWIFIEX_USB_TYPE_DATA 0xBEADC0DE
134 #define MWIFIEX_USB_TYPE_EVENT 0xBEEFFACE
136 /* Threshold for tx_timeout_cnt before we trigger a card reset */
137 #define TX_TIMEOUT_THRESHOLD 6
140 u32 num_cmd_host_to_card_failure
;
141 u32 num_cmd_sleep_cfm_host_to_card_failure
;
142 u32 num_tx_host_to_card_failure
;
143 u32 num_event_deauth
;
144 u32 num_event_disassoc
;
145 u32 num_event_link_lost
;
147 u32 num_cmd_assoc_success
;
148 u32 num_cmd_assoc_failure
;
152 u16 last_cmd_id
[DBG_CMD_NUM
];
153 u16 last_cmd_act
[DBG_CMD_NUM
];
155 u16 last_cmd_resp_id
[DBG_CMD_NUM
];
156 u16 last_cmd_resp_index
;
157 u16 last_event
[DBG_CMD_NUM
];
158 u16 last_event_index
;
161 enum MWIFIEX_HARDWARE_STATUS
{
162 MWIFIEX_HW_STATUS_READY
,
163 MWIFIEX_HW_STATUS_INITIALIZING
,
164 MWIFIEX_HW_STATUS_FW_READY
,
165 MWIFIEX_HW_STATUS_INIT_DONE
,
166 MWIFIEX_HW_STATUS_RESET
,
167 MWIFIEX_HW_STATUS_CLOSING
,
168 MWIFIEX_HW_STATUS_NOT_READY
171 enum MWIFIEX_802_11_POWER_MODE
{
172 MWIFIEX_802_11_POWER_MODE_CAM
,
173 MWIFIEX_802_11_POWER_MODE_PSP
176 struct mwifiex_tx_param
{
180 enum MWIFIEX_PS_STATE
{
187 enum mwifiex_iface_type
{
193 struct mwifiex_add_ba_param
{
201 struct mwifiex_tx_aggr
{
207 struct mwifiex_ra_list_tbl
{
208 struct list_head list
;
209 struct sk_buff_head skb_head
;
219 struct mwifiex_tid_tbl
{
220 struct list_head ra_list
;
223 #define WMM_HIGHEST_PRIORITY 7
224 #define HIGH_PRIO_TID 7
225 #define LOW_PRIO_TID 0
227 struct mwifiex_wmm_desc
{
228 struct mwifiex_tid_tbl tid_tbl_ptr
[MAX_NUM_TID
];
229 u32 packets_out
[MAX_NUM_TID
];
230 /* spin lock to protect ra_list */
231 spinlock_t ra_list_spinlock
;
232 struct mwifiex_wmm_ac_status ac_status
[IEEE80211_NUM_ACS
];
233 enum mwifiex_wmm_ac_e ac_down_graded_vals
[IEEE80211_NUM_ACS
];
234 u32 drv_pkt_delay_max
;
235 u8 queue_priority
[IEEE80211_NUM_ACS
];
236 u32 user_pri_pkt_tx_ctrl
[WMM_HIGHEST_PRIORITY
+ 1]; /* UP: 0 to 7 */
237 /* Number of transmit packets queued */
238 atomic_t tx_pkts_queued
;
239 /* Tracks highest priority with a packet queued */
240 atomic_t highest_queued_prio
;
243 struct mwifiex_802_11_security
{
249 u32 authentication_mode
;
254 struct ieee_types_header
{
259 struct ieee_types_vendor_specific
{
260 struct ieee_types_vendor_header vend_hdr
;
261 u8 data
[IEEE_MAX_IE_SIZE
- sizeof(struct ieee_types_vendor_header
)];
264 struct ieee_types_generic
{
265 struct ieee_types_header ieee_hdr
;
266 u8 data
[IEEE_MAX_IE_SIZE
- sizeof(struct ieee_types_header
)];
269 struct ieee_types_bss_co_2040
{
270 struct ieee_types_header ieee_hdr
;
274 struct ieee_types_extcap
{
275 struct ieee_types_header ieee_hdr
;
279 struct ieee_types_vht_cap
{
280 struct ieee_types_header ieee_hdr
;
281 struct ieee80211_vht_cap vhtcap
;
284 struct ieee_types_vht_oper
{
285 struct ieee_types_header ieee_hdr
;
286 struct ieee80211_vht_operation vhtoper
;
289 struct ieee_types_aid
{
290 struct ieee_types_header ieee_hdr
;
294 struct mwifiex_bssdescriptor
{
295 u8 mac_address
[ETH_ALEN
];
296 struct cfg80211_ssid ssid
;
304 u8 supported_rates
[MWIFIEX_SUPPORTED_RATES
];
305 u8 data_rates
[MWIFIEX_SUPPORTED_RATES
];
307 * BAND_B(0x01): 'b' band
308 * BAND_G(0x02): 'g' band
309 * BAND_A(0X04): 'a' band
314 union ieee_types_phy_param_set phy_param_set
;
315 union ieee_types_ss_param_set ss_param_set
;
317 struct ieee_types_wmm_parameter wmm_ie
;
319 struct ieee80211_ht_cap
*bcn_ht_cap
;
321 struct ieee80211_ht_operation
*bcn_ht_oper
;
324 u16 bss_co_2040_offset
;
327 struct ieee80211_vht_cap
*bcn_vht_cap
;
329 struct ieee80211_vht_operation
*bcn_vht_oper
;
331 struct ieee_types_oper_mode_ntf
*oper_mode
;
332 u16 oper_mode_offset
;
334 struct ieee_types_vendor_specific
*bcn_wpa_ie
;
336 struct ieee_types_generic
*bcn_rsn_ie
;
338 struct ieee_types_generic
*bcn_wapi_ie
;
344 u8 chan_sw_ie_present
;
347 struct mwifiex_current_bss_params
{
348 struct mwifiex_bssdescriptor bss_descriptor
;
350 u8 wmm_uapsd_enabled
;
353 u8 data_rates
[MWIFIEX_SUPPORTED_RATES
];
356 struct mwifiex_sleep_params
{
365 struct mwifiex_sleep_period
{
370 struct mwifiex_wep_key
{
374 u8 key_material
[MWIFIEX_KEY_BUFFER_SIZE
];
377 #define MAX_REGION_CHANNEL_NUM 2
379 struct mwifiex_chan_freq_power
{
391 #define MWIFIEX_MAX_TRIPLET_802_11D 83
393 struct mwifiex_802_11d_domain_reg
{
394 u8 country_code
[IEEE80211_COUNTRY_STRING_LEN
];
396 struct ieee80211_country_ie_triplet
397 triplet
[MWIFIEX_MAX_TRIPLET_802_11D
];
400 struct mwifiex_vendor_spec_cfg_ie
{
403 u8 ie
[MWIFIEX_MAX_VSIE_LEN
];
410 struct mwifiex_roc_cfg
{
412 struct ieee80211_channel chan
;
415 #define MWIFIEX_FW_DUMP_IDX 0xff
416 #define FW_DUMP_MAX_NAME_LEN 8
417 #define FW_DUMP_HOST_READY 0xEE
418 #define FW_DUMP_DONE 0xFF
419 #define FW_DUMP_READ_DONE 0xFE
421 struct memory_type_mapping
{
422 u8 mem_name
[FW_DUMP_MAX_NAME_LEN
];
429 RDWR_STATUS_SUCCESS
= 0,
430 RDWR_STATUS_FAILURE
= 1,
434 enum mwifiex_iface_work_flags
{
435 MWIFIEX_IFACE_WORK_FW_DUMP
,
436 MWIFIEX_IFACE_WORK_CARD_RESET
,
439 struct mwifiex_adapter
;
440 struct mwifiex_private
;
442 struct mwifiex_private
{
443 struct mwifiex_adapter
*adapter
;
450 u8 curr_addr
[ETH_ALEN
];
453 /* track consecutive timeout */
455 struct net_device
*netdev
;
456 struct net_device_stats stats
;
461 u8 max_tx_power_level
;
462 u8 min_tx_power_level
;
468 u16 bitmap_rates
[MAX_BITMAP_RATES_SIZE
];
470 u8 is_data_rate_auto
;
481 struct mwifiex_bssdescriptor
*attempted_bss_desc
;
482 struct cfg80211_ssid prev_ssid
;
483 u8 prev_bssid
[ETH_ALEN
];
484 struct mwifiex_current_bss_params curr_bss_params
;
490 u8 adhoc_is_link_sensed
;
492 struct mwifiex_802_11_security sec_info
;
493 struct mwifiex_wep_key wep_key
[NUM_WEP_KEYS
];
494 u16 wep_key_curr_index
;
498 struct host_cmd_ds_802_11_key_material aes_key
;
499 struct host_cmd_ds_802_11_key_material_v2 aes_key_v2
;
507 struct mwifiex_wmm_desc wmm
;
508 atomic_t wmm_tx_pending
[IEEE80211_NUM_ACS
];
509 struct list_head sta_list
;
510 /* spin lock for associated station/TDLS peers list */
511 spinlock_t sta_list_spinlock
;
512 struct list_head auto_tdls_list
;
513 /* spin lock for auto TDLS peer list */
514 spinlock_t auto_tdls_lock
;
515 struct list_head tx_ba_stream_tbl_ptr
;
516 /* spin lock for tx_ba_stream_tbl_ptr queue */
517 spinlock_t tx_ba_stream_tbl_lock
;
518 struct mwifiex_tx_aggr aggr_prio_tbl
[MAX_NUM_TID
];
519 struct mwifiex_add_ba_param add_ba_param
;
520 u16 rx_seq
[MAX_NUM_TID
];
521 u8 tos_to_tid_inv
[MAX_NUM_TID
];
522 struct list_head rx_reorder_tbl_ptr
;
523 /* spin lock for rx_reorder_tbl_ptr queue */
524 spinlock_t rx_reorder_tbl_lock
;
525 /* spin lock for Rx packets */
526 spinlock_t rx_pkt_lock
;
528 #define MWIFIEX_ASSOC_RSP_BUF_SIZE 500
529 u8 assoc_rsp_buf
[MWIFIEX_ASSOC_RSP_BUF_SIZE
];
532 #define MWIFIEX_GENIE_BUF_SIZE 256
533 u8 gen_ie_buf
[MWIFIEX_GENIE_BUF_SIZE
];
536 struct mwifiex_vendor_spec_cfg_ie vs_ie
[MWIFIEX_MAX_VSIE_NUM
];
538 #define MWIFIEX_ASSOC_TLV_BUF_SIZE 256
539 u8 assoc_tlv_buf
[MWIFIEX_ASSOC_TLV_BUF_SIZE
];
540 u8 assoc_tlv_buf_len
;
544 /* spin lock for beacon buffer */
545 spinlock_t curr_bcn_buf_lock
;
546 struct wireless_dev
*wdev
;
547 struct mwifiex_chan_freq_power cfp
;
548 char version_str
[128];
549 #ifdef CONFIG_DEBUG_FS
550 struct dentry
*dfs_dev_dir
;
553 u16 current_key_index
;
554 struct semaphore async_sem
;
555 struct cfg80211_scan_request
*scan_request
;
561 u8 subsc_evt_rssi_state
;
562 struct mwifiex_ds_misc_subsc_evt async_subsc_evt_storage
;
563 struct mwifiex_ie mgmt_ie
[MAX_MGMT_IE_INDEX
];
571 struct mwifiex_roc_cfg roc_cfg
;
574 unsigned long csa_expire_time
;
577 struct station_parameters
*sta_params
;
578 struct sk_buff_head tdls_txq
;
580 struct timer_list auto_tdls_timer
;
581 bool auto_tdls_timer_active
;
582 struct idr ack_status_frames
;
583 /* spin lock for ack status */
584 spinlock_t ack_status_lock
;
587 enum mwifiex_ba_status
{
593 struct mwifiex_tx_ba_stream_tbl
{
594 struct list_head list
;
597 enum mwifiex_ba_status ba_status
;
601 struct mwifiex_rx_reorder_tbl
;
603 struct reorder_tmr_cnxt
{
604 struct timer_list timer
;
605 struct mwifiex_rx_reorder_tbl
*ptr
;
606 struct mwifiex_private
*priv
;
610 struct mwifiex_rx_reorder_tbl
{
611 struct list_head list
;
617 void **rx_reorder_ptr
;
618 struct reorder_tmr_cnxt timer_context
;
623 struct mwifiex_bss_prio_node
{
624 struct list_head list
;
625 struct mwifiex_private
*priv
;
628 struct mwifiex_bss_prio_tbl
{
629 struct list_head bss_prio_head
;
630 /* spin lock for bss priority */
631 spinlock_t bss_prio_lock
;
632 struct mwifiex_bss_prio_node
*bss_prio_cur
;
635 struct cmd_ctrl_node
{
636 struct list_head list
;
637 struct mwifiex_private
*priv
;
640 struct sk_buff
*cmd_skb
;
641 struct sk_buff
*resp_skb
;
649 struct mwifiex_bss_priv
{
654 struct mwifiex_tdls_capab
{
661 struct ieee80211_ht_cap ht_capb
;
662 struct ieee80211_ht_operation ht_oper
;
663 struct ieee_types_extcap extcap
;
664 struct ieee_types_generic rsn_ie
;
665 struct ieee80211_vht_cap vhtcap
;
666 struct ieee80211_vht_operation vhtoper
;
669 /* This is AP/TDLS specific structure which stores information
670 * about associated/peer STA
672 struct mwifiex_sta_node
{
673 struct list_head list
;
674 u8 mac_addr
[ETH_ALEN
];
678 u8 ampdu_sta
[MAX_NUM_TID
];
679 u16 rx_seq
[MAX_NUM_TID
];
682 struct mwifiex_tdls_capab tdls_cap
;
685 struct mwifiex_auto_tdls_peer
{
686 struct list_head list
;
687 u8 mac_addr
[ETH_ALEN
];
696 struct mwifiex_if_ops
{
697 int (*init_if
) (struct mwifiex_adapter
*);
698 void (*cleanup_if
) (struct mwifiex_adapter
*);
699 int (*check_fw_status
) (struct mwifiex_adapter
*, u32
);
700 int (*prog_fw
) (struct mwifiex_adapter
*, struct mwifiex_fw_image
*);
701 int (*register_dev
) (struct mwifiex_adapter
*);
702 void (*unregister_dev
) (struct mwifiex_adapter
*);
703 int (*enable_int
) (struct mwifiex_adapter
*);
704 void (*disable_int
) (struct mwifiex_adapter
*);
705 int (*process_int_status
) (struct mwifiex_adapter
*);
706 int (*host_to_card
) (struct mwifiex_adapter
*, u8
, struct sk_buff
*,
707 struct mwifiex_tx_param
*);
708 int (*wakeup
) (struct mwifiex_adapter
*);
709 int (*wakeup_complete
) (struct mwifiex_adapter
*);
711 /* Interface specific functions */
712 void (*update_mp_end_port
) (struct mwifiex_adapter
*, u16
);
713 void (*cleanup_mpa_buf
) (struct mwifiex_adapter
*);
714 int (*cmdrsp_complete
) (struct mwifiex_adapter
*, struct sk_buff
*);
715 int (*event_complete
) (struct mwifiex_adapter
*, struct sk_buff
*);
716 int (*init_fw_port
) (struct mwifiex_adapter
*);
717 int (*dnld_fw
) (struct mwifiex_adapter
*, struct mwifiex_fw_image
*);
718 void (*card_reset
) (struct mwifiex_adapter
*);
719 void (*fw_dump
)(struct mwifiex_adapter
*);
720 int (*clean_pcie_ring
) (struct mwifiex_adapter
*adapter
);
721 void (*iface_work
)(struct work_struct
*work
);
722 void (*submit_rem_rx_urbs
)(struct mwifiex_adapter
*adapter
);
725 struct mwifiex_adapter
{
727 struct mwifiex_private
*priv
[MWIFIEX_MAX_BSS_NUM
];
729 const struct firmware
*firmware
;
734 bool surprise_removed
;
735 u32 fw_release_number
;
736 u16 init_wait_q_woken
;
737 wait_queue_head_t init_wait_q
;
739 struct mwifiex_if_ops if_ops
;
742 atomic_t cmd_pending
;
743 struct workqueue_struct
*workqueue
;
744 struct work_struct main_work
;
745 struct workqueue_struct
*rx_workqueue
;
746 struct work_struct rx_work
;
747 bool rx_work_enabled
;
749 bool delay_main_work
;
751 struct mwifiex_bss_prio_tbl bss_prio_tbl
[MWIFIEX_MAX_BSS_NUM
];
752 /* spin lock for init/shutdown */
753 spinlock_t mwifiex_lock
;
754 /* spin lock for main process */
755 spinlock_t main_proc_lock
;
756 u32 mwifiex_processing
;
758 u16 curr_tx_buf_size
;
760 enum MWIFIEX_HARDWARE_STATUS hw_status
;
761 u16 number_of_antenna
;
763 /* spin lock for interrupt handling */
767 struct sk_buff
*event_skb
;
768 u8 upld_buf
[MWIFIEX_UPLD_SIZE
];
771 u8 cmd_resp_received
;
775 struct cmd_ctrl_node
*cmd_pool
;
776 struct cmd_ctrl_node
*curr_cmd
;
777 /* spin lock for command */
778 spinlock_t mwifiex_cmd_lock
;
781 struct timer_list cmd_timer
;
782 struct list_head cmd_free_q
;
783 /* spin lock for cmd_free_q */
784 spinlock_t cmd_free_q_lock
;
785 struct list_head cmd_pending_q
;
786 /* spin lock for cmd_pending_q */
787 spinlock_t cmd_pending_q_lock
;
788 struct list_head scan_pending_q
;
789 /* spin lock for scan_pending_q */
790 spinlock_t scan_pending_q_lock
;
791 /* spin lock for RX processing routine */
792 spinlock_t rx_proc_lock
;
795 struct mwifiex_802_11d_domain_reg domain_reg
;
798 u16 specific_scan_time
;
799 u16 active_scan_time
;
800 u16 passive_scan_time
;
801 u16 scan_chan_gap_time
;
805 struct mwifiex_chan_scan_param_set
*scan_channels
;
807 struct mwifiex_sleep_params sleep_params
;
808 struct mwifiex_sleep_period sleep_period
;
813 u16 local_listen_interval
;
814 u16 null_pkt_interval
;
815 struct sk_buff
*sleep_cfm
;
816 u16 bcn_miss_time_out
;
817 u16 adhoc_awake_period
;
821 u16 enhanced_ps_mode
;
822 u8 pm_wakeup_card_req
;
825 u32 pm_wakeup_fw_try
;
827 struct mwifiex_hs_config_param hs_cfg
;
829 u16 hs_activate_wait_q_woken
;
830 wait_queue_head_t hs_activate_wait_q
;
833 u8 event_body
[MAX_EVENT_SIZE
];
834 u32 hw_dot_11n_dev_cap
;
835 u8 hw_dev_mcs_support
;
836 u8 user_dev_mcs_support
;
837 u8 adhoc_11n_enabled
;
839 struct mwifiex_dbg dbg
;
840 u8 arp_filter
[ARP_FILTER_MAX_BUF_SIZE
];
842 struct mwifiex_wait_queue cmd_wait_q
;
843 u8 scan_wait_q_woken
;
844 spinlock_t queue_lock
; /* lock for tx queues */
845 u8 country_code
[IEEE80211_COUNTRY_STRING_LEN
];
846 u16 max_mgmt_ie_index
;
847 const struct firmware
*cal_data
;
848 struct device_node
*dt_node
;
851 u32 is_hw_11ac_capable
;
852 u32 hw_dot_11ac_dev_cap
;
853 u32 hw_dot_11ac_mcs_support
;
854 u32 usr_dot_11ac_dev_cap_bg
;
855 u32 usr_dot_11ac_dev_cap_a
;
856 u32 usr_dot_11ac_mcs_support
;
858 atomic_t pending_bridged_pkts
;
859 struct semaphore
*card_sem
;
862 u8 key_api_major_ver
, key_api_minor_ver
;
863 struct work_struct iface_work
;
864 unsigned long iface_work_flags
;
865 struct memory_type_mapping
*mem_type_mapping_tbl
;
868 bool scan_chan_gap_enabled
;
869 struct sk_buff_head rx_data_q
;
870 struct mwifiex_chan_stats
*chan_stats
;
871 u32 num_in_chan_stats
;
876 int mwifiex_init_lock_list(struct mwifiex_adapter
*adapter
);
878 void mwifiex_set_trans_start(struct net_device
*dev
);
880 void mwifiex_stop_net_dev_queue(struct net_device
*netdev
,
881 struct mwifiex_adapter
*adapter
);
883 void mwifiex_wake_up_net_dev_queue(struct net_device
*netdev
,
884 struct mwifiex_adapter
*adapter
);
886 int mwifiex_init_priv(struct mwifiex_private
*priv
);
887 void mwifiex_free_priv(struct mwifiex_private
*priv
);
889 int mwifiex_init_fw(struct mwifiex_adapter
*adapter
);
891 int mwifiex_init_fw_complete(struct mwifiex_adapter
*adapter
);
893 int mwifiex_shutdown_drv(struct mwifiex_adapter
*adapter
);
895 int mwifiex_shutdown_fw_complete(struct mwifiex_adapter
*adapter
);
897 int mwifiex_dnld_fw(struct mwifiex_adapter
*, struct mwifiex_fw_image
*);
899 int mwifiex_recv_packet(struct mwifiex_private
*priv
, struct sk_buff
*skb
);
901 int mwifiex_process_mgmt_packet(struct mwifiex_private
*priv
,
902 struct sk_buff
*skb
);
904 int mwifiex_process_event(struct mwifiex_adapter
*adapter
);
906 int mwifiex_complete_cmd(struct mwifiex_adapter
*adapter
,
907 struct cmd_ctrl_node
*cmd_node
);
909 int mwifiex_send_cmd(struct mwifiex_private
*priv
, u16 cmd_no
,
910 u16 cmd_action
, u32 cmd_oid
, void *data_buf
, bool sync
);
912 void mwifiex_cmd_timeout_func(unsigned long function_context
);
914 int mwifiex_get_debug_info(struct mwifiex_private
*,
915 struct mwifiex_debug_info
*);
917 int mwifiex_alloc_cmd_buffer(struct mwifiex_adapter
*adapter
);
918 int mwifiex_free_cmd_buffer(struct mwifiex_adapter
*adapter
);
919 void mwifiex_cancel_all_pending_cmd(struct mwifiex_adapter
*adapter
);
920 void mwifiex_cancel_pending_ioctl(struct mwifiex_adapter
*adapter
);
922 void mwifiex_insert_cmd_to_free_q(struct mwifiex_adapter
*adapter
,
923 struct cmd_ctrl_node
*cmd_node
);
924 void mwifiex_recycle_cmd_node(struct mwifiex_adapter
*adapter
,
925 struct cmd_ctrl_node
*cmd_node
);
927 void mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter
*adapter
,
928 struct cmd_ctrl_node
*cmd_node
,
931 int mwifiex_exec_next_cmd(struct mwifiex_adapter
*adapter
);
932 int mwifiex_process_cmdresp(struct mwifiex_adapter
*adapter
);
933 int mwifiex_handle_rx_packet(struct mwifiex_adapter
*adapter
,
934 struct sk_buff
*skb
);
935 int mwifiex_process_tx(struct mwifiex_private
*priv
, struct sk_buff
*skb
,
936 struct mwifiex_tx_param
*tx_param
);
937 int mwifiex_send_null_packet(struct mwifiex_private
*priv
, u8 flags
);
938 int mwifiex_write_data_complete(struct mwifiex_adapter
*adapter
,
939 struct sk_buff
*skb
, int aggr
, int status
);
940 void mwifiex_clean_txrx(struct mwifiex_private
*priv
);
941 u8
mwifiex_check_last_packet_indication(struct mwifiex_private
*priv
);
942 void mwifiex_check_ps_cond(struct mwifiex_adapter
*adapter
);
943 void mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter
*, u8
*,
945 int mwifiex_cmd_enh_power_mode(struct mwifiex_private
*priv
,
946 struct host_cmd_ds_command
*cmd
,
947 u16 cmd_action
, uint16_t ps_bitmap
,
948 struct mwifiex_ds_auto_ds
*auto_ds
);
949 int mwifiex_ret_enh_power_mode(struct mwifiex_private
*priv
,
950 struct host_cmd_ds_command
*resp
,
951 struct mwifiex_ds_pm_cfg
*pm_cfg
);
952 void mwifiex_process_hs_config(struct mwifiex_adapter
*adapter
);
953 void mwifiex_hs_activated_event(struct mwifiex_private
*priv
,
955 int mwifiex_set_hs_params(struct mwifiex_private
*priv
, u16 action
,
956 int cmd_type
, struct mwifiex_ds_hs_cfg
*hs_cfg
);
957 int mwifiex_ret_802_11_hs_cfg(struct mwifiex_private
*priv
,
958 struct host_cmd_ds_command
*resp
);
959 int mwifiex_process_rx_packet(struct mwifiex_private
*priv
,
960 struct sk_buff
*skb
);
961 int mwifiex_sta_prepare_cmd(struct mwifiex_private
*, uint16_t cmd_no
,
962 u16 cmd_action
, u32 cmd_oid
,
963 void *data_buf
, void *cmd_buf
);
964 int mwifiex_uap_prepare_cmd(struct mwifiex_private
*priv
, uint16_t cmd_no
,
965 u16 cmd_action
, u32 cmd_oid
,
966 void *data_buf
, void *cmd_buf
);
967 int mwifiex_process_sta_cmdresp(struct mwifiex_private
*, u16 cmdresp_no
,
968 struct host_cmd_ds_command
*resp
);
969 int mwifiex_process_sta_rx_packet(struct mwifiex_private
*,
970 struct sk_buff
*skb
);
971 int mwifiex_process_uap_rx_packet(struct mwifiex_private
*priv
,
972 struct sk_buff
*skb
);
973 int mwifiex_handle_uap_rx_forward(struct mwifiex_private
*priv
,
974 struct sk_buff
*skb
);
975 int mwifiex_process_sta_event(struct mwifiex_private
*);
976 int mwifiex_process_uap_event(struct mwifiex_private
*);
977 void mwifiex_delete_all_station_list(struct mwifiex_private
*priv
);
978 void mwifiex_wmm_del_peer_ra_list(struct mwifiex_private
*priv
,
980 void *mwifiex_process_sta_txpd(struct mwifiex_private
*, struct sk_buff
*skb
);
981 void *mwifiex_process_uap_txpd(struct mwifiex_private
*, struct sk_buff
*skb
);
982 int mwifiex_sta_init_cmd(struct mwifiex_private
*, u8 first_sta
);
983 int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command
*cmd
,
984 struct mwifiex_scan_cmd_config
*scan_cfg
);
985 void mwifiex_queue_scan_cmd(struct mwifiex_private
*priv
,
986 struct cmd_ctrl_node
*cmd_node
);
987 int mwifiex_ret_802_11_scan(struct mwifiex_private
*priv
,
988 struct host_cmd_ds_command
*resp
);
989 s32
mwifiex_ssid_cmp(struct cfg80211_ssid
*ssid1
, struct cfg80211_ssid
*ssid2
);
990 int mwifiex_associate(struct mwifiex_private
*priv
,
991 struct mwifiex_bssdescriptor
*bss_desc
);
992 int mwifiex_cmd_802_11_associate(struct mwifiex_private
*priv
,
993 struct host_cmd_ds_command
*cmd
,
994 struct mwifiex_bssdescriptor
*bss_desc
);
995 int mwifiex_ret_802_11_associate(struct mwifiex_private
*priv
,
996 struct host_cmd_ds_command
*resp
);
997 void mwifiex_reset_connect_state(struct mwifiex_private
*priv
, u16 reason
);
998 u8
mwifiex_band_to_radio_type(u8 band
);
999 int mwifiex_deauthenticate(struct mwifiex_private
*priv
, u8
*mac
);
1000 void mwifiex_deauthenticate_all(struct mwifiex_adapter
*adapter
);
1001 int mwifiex_adhoc_start(struct mwifiex_private
*priv
,
1002 struct cfg80211_ssid
*adhoc_ssid
);
1003 int mwifiex_adhoc_join(struct mwifiex_private
*priv
,
1004 struct mwifiex_bssdescriptor
*bss_desc
);
1005 int mwifiex_cmd_802_11_ad_hoc_start(struct mwifiex_private
*priv
,
1006 struct host_cmd_ds_command
*cmd
,
1007 struct cfg80211_ssid
*req_ssid
);
1008 int mwifiex_cmd_802_11_ad_hoc_join(struct mwifiex_private
*priv
,
1009 struct host_cmd_ds_command
*cmd
,
1010 struct mwifiex_bssdescriptor
*bss_desc
);
1011 int mwifiex_ret_802_11_ad_hoc(struct mwifiex_private
*priv
,
1012 struct host_cmd_ds_command
*resp
);
1013 int mwifiex_cmd_802_11_bg_scan_query(struct host_cmd_ds_command
*cmd
);
1014 struct mwifiex_chan_freq_power
*mwifiex_get_cfp(struct mwifiex_private
*priv
,
1015 u8 band
, u16 channel
, u32 freq
);
1016 u32
mwifiex_index_to_data_rate(struct mwifiex_private
*priv
,
1017 u8 index
, u8 ht_info
);
1018 u32
mwifiex_index_to_acs_data_rate(struct mwifiex_private
*priv
,
1019 u8 index
, u8 ht_info
);
1020 u32
mwifiex_find_freq_from_band_chan(u8
, u8
);
1021 int mwifiex_cmd_append_vsie_tlv(struct mwifiex_private
*priv
, u16 vsie_mask
,
1023 u32
mwifiex_get_active_data_rates(struct mwifiex_private
*priv
,
1025 u32
mwifiex_get_supported_rates(struct mwifiex_private
*priv
, u8
*rates
);
1026 u32
mwifiex_get_rates_from_cfg80211(struct mwifiex_private
*priv
,
1027 u8
*rates
, u8 radio_type
);
1028 u8
mwifiex_is_rate_auto(struct mwifiex_private
*priv
);
1029 extern u16 region_code_index
[MWIFIEX_MAX_REGION_CODE
];
1030 void mwifiex_save_curr_bcn(struct mwifiex_private
*priv
);
1031 void mwifiex_free_curr_bcn(struct mwifiex_private
*priv
);
1032 int mwifiex_cmd_get_hw_spec(struct mwifiex_private
*priv
,
1033 struct host_cmd_ds_command
*cmd
);
1034 int mwifiex_ret_get_hw_spec(struct mwifiex_private
*priv
,
1035 struct host_cmd_ds_command
*resp
);
1036 int is_command_pending(struct mwifiex_adapter
*adapter
);
1037 void mwifiex_init_priv_params(struct mwifiex_private
*priv
,
1038 struct net_device
*dev
);
1039 int mwifiex_set_secure_params(struct mwifiex_private
*priv
,
1040 struct mwifiex_uap_bss_param
*bss_config
,
1041 struct cfg80211_ap_settings
*params
);
1042 void mwifiex_set_ht_params(struct mwifiex_private
*priv
,
1043 struct mwifiex_uap_bss_param
*bss_cfg
,
1044 struct cfg80211_ap_settings
*params
);
1045 void mwifiex_set_vht_params(struct mwifiex_private
*priv
,
1046 struct mwifiex_uap_bss_param
*bss_cfg
,
1047 struct cfg80211_ap_settings
*params
);
1048 void mwifiex_set_uap_rates(struct mwifiex_uap_bss_param
*bss_cfg
,
1049 struct cfg80211_ap_settings
*params
);
1050 void mwifiex_set_vht_width(struct mwifiex_private
*priv
,
1051 enum nl80211_chan_width width
,
1052 bool ap_11ac_disable
);
1054 mwifiex_set_wmm_params(struct mwifiex_private
*priv
,
1055 struct mwifiex_uap_bss_param
*bss_cfg
,
1056 struct cfg80211_ap_settings
*params
);
1057 void mwifiex_set_ba_params(struct mwifiex_private
*priv
);
1058 void mwifiex_set_11ac_ba_params(struct mwifiex_private
*priv
);
1059 int mwifiex_cmd_802_11_scan_ext(struct mwifiex_private
*priv
,
1060 struct host_cmd_ds_command
*cmd
,
1062 int mwifiex_ret_802_11_scan_ext(struct mwifiex_private
*priv
,
1063 struct host_cmd_ds_command
*resp
);
1064 int mwifiex_handle_event_ext_scan_report(struct mwifiex_private
*priv
,
1068 * This function checks if the queuing is RA based or not.
1071 mwifiex_queuing_ra_based(struct mwifiex_private
*priv
)
1074 * Currently we assume if we are in Infra, then DA=RA. This might not be
1075 * true in the future
1077 if ((priv
->bss_mode
== NL80211_IFTYPE_STATION
) &&
1078 (GET_BSS_ROLE(priv
) == MWIFIEX_BSS_ROLE_STA
))
1085 * This function copies rates.
1088 mwifiex_copy_rates(u8
*dest
, u32 pos
, u8
*src
, int len
)
1092 for (i
= 0; i
< len
&& src
[i
]; i
++, pos
++) {
1093 if (pos
>= MWIFIEX_SUPPORTED_RATES
)
1102 * This function returns the correct private structure pointer based
1103 * upon the BSS type and BSS number.
1105 static inline struct mwifiex_private
*
1106 mwifiex_get_priv_by_id(struct mwifiex_adapter
*adapter
,
1107 u8 bss_num
, u8 bss_type
)
1111 for (i
= 0; i
< adapter
->priv_num
; i
++) {
1112 if (adapter
->priv
[i
]) {
1113 if ((adapter
->priv
[i
]->bss_num
== bss_num
) &&
1114 (adapter
->priv
[i
]->bss_type
== bss_type
))
1118 return ((i
< adapter
->priv_num
) ? adapter
->priv
[i
] : NULL
);
1122 * This function returns the first available private structure pointer
1123 * based upon the BSS role.
1125 static inline struct mwifiex_private
*
1126 mwifiex_get_priv(struct mwifiex_adapter
*adapter
,
1127 enum mwifiex_bss_role bss_role
)
1131 for (i
= 0; i
< adapter
->priv_num
; i
++) {
1132 if (adapter
->priv
[i
]) {
1133 if (bss_role
== MWIFIEX_BSS_ROLE_ANY
||
1134 GET_BSS_ROLE(adapter
->priv
[i
]) == bss_role
)
1139 return ((i
< adapter
->priv_num
) ? adapter
->priv
[i
] : NULL
);
1143 * This function returns the driver private structure of a network device.
1145 static inline struct mwifiex_private
*
1146 mwifiex_netdev_get_priv(struct net_device
*dev
)
1148 return (struct mwifiex_private
*) (*(unsigned long *) netdev_priv(dev
));
1152 * This function checks if a skb holds a management frame.
1154 static inline bool mwifiex_is_skb_mgmt_frame(struct sk_buff
*skb
)
1156 return (le32_to_cpu(*(__le32
*)skb
->data
) == PKT_TYPE_MGMT
);
1159 /* This function retrieves channel closed for operation by Channel
1160 * Switch Announcement.
1163 mwifiex_11h_get_csa_closed_channel(struct mwifiex_private
*priv
)
1165 if (!priv
->csa_chan
)
1168 /* Clear csa channel, if DFS channel move time has passed */
1169 if (time_after(jiffies
, priv
->csa_expire_time
)) {
1171 priv
->csa_expire_time
= 0;
1174 return priv
->csa_chan
;
1177 static inline u8
mwifiex_is_any_intf_active(struct mwifiex_private
*priv
)
1179 struct mwifiex_private
*priv_num
;
1182 for (i
= 0; i
< priv
->adapter
->priv_num
; i
++) {
1183 priv_num
= priv
->adapter
->priv
[i
];
1185 if ((GET_BSS_ROLE(priv_num
) == MWIFIEX_BSS_ROLE_UAP
&&
1186 priv_num
->bss_started
) ||
1187 (GET_BSS_ROLE(priv_num
) == MWIFIEX_BSS_ROLE_STA
&&
1188 priv_num
->media_connected
))
1196 int mwifiex_init_shutdown_fw(struct mwifiex_private
*priv
,
1197 u32 func_init_shutdown
);
1198 int mwifiex_add_card(void *, struct semaphore
*, struct mwifiex_if_ops
*, u8
);
1199 int mwifiex_remove_card(struct mwifiex_adapter
*, struct semaphore
*);
1201 void mwifiex_get_version(struct mwifiex_adapter
*adapter
, char *version
,
1203 int mwifiex_request_set_multicast_list(struct mwifiex_private
*priv
,
1204 struct mwifiex_multicast_list
*mcast_list
);
1205 int mwifiex_copy_mcast_addr(struct mwifiex_multicast_list
*mlist
,
1206 struct net_device
*dev
);
1207 int mwifiex_wait_queue_complete(struct mwifiex_adapter
*adapter
,
1208 struct cmd_ctrl_node
*cmd_queued
);
1209 int mwifiex_bss_start(struct mwifiex_private
*priv
, struct cfg80211_bss
*bss
,
1210 struct cfg80211_ssid
*req_ssid
);
1211 int mwifiex_cancel_hs(struct mwifiex_private
*priv
, int cmd_type
);
1212 int mwifiex_enable_hs(struct mwifiex_adapter
*adapter
);
1213 int mwifiex_disable_auto_ds(struct mwifiex_private
*priv
);
1214 int mwifiex_drv_get_data_rate(struct mwifiex_private
*priv
, u32
*rate
);
1215 int mwifiex_request_scan(struct mwifiex_private
*priv
,
1216 struct cfg80211_ssid
*req_ssid
);
1217 int mwifiex_scan_networks(struct mwifiex_private
*priv
,
1218 const struct mwifiex_user_scan_cfg
*user_scan_in
);
1219 int mwifiex_set_radio(struct mwifiex_private
*priv
, u8 option
);
1221 int mwifiex_set_encode(struct mwifiex_private
*priv
, struct key_params
*kp
,
1222 const u8
*key
, int key_len
, u8 key_index
,
1223 const u8
*mac_addr
, int disable
);
1225 int mwifiex_set_gen_ie(struct mwifiex_private
*priv
, const u8
*ie
, int ie_len
);
1227 int mwifiex_get_ver_ext(struct mwifiex_private
*priv
);
1229 int mwifiex_remain_on_chan_cfg(struct mwifiex_private
*priv
, u16 action
,
1230 struct ieee80211_channel
*chan
,
1231 unsigned int duration
);
1233 int mwifiex_set_bss_role(struct mwifiex_private
*priv
, u8 bss_role
);
1235 int mwifiex_get_stats_info(struct mwifiex_private
*priv
,
1236 struct mwifiex_ds_get_stats
*log
);
1238 int mwifiex_reg_write(struct mwifiex_private
*priv
, u32 reg_type
,
1239 u32 reg_offset
, u32 reg_value
);
1241 int mwifiex_reg_read(struct mwifiex_private
*priv
, u32 reg_type
,
1242 u32 reg_offset
, u32
*value
);
1244 int mwifiex_eeprom_read(struct mwifiex_private
*priv
, u16 offset
, u16 bytes
,
1247 int mwifiex_set_11n_httx_cfg(struct mwifiex_private
*priv
, int data
);
1249 int mwifiex_get_11n_httx_cfg(struct mwifiex_private
*priv
, int *data
);
1251 int mwifiex_set_tx_rate_cfg(struct mwifiex_private
*priv
, int tx_rate_index
);
1253 int mwifiex_get_tx_rate_cfg(struct mwifiex_private
*priv
, int *tx_rate_index
);
1255 int mwifiex_drv_set_power(struct mwifiex_private
*priv
, u32
*ps_mode
);
1257 int mwifiex_drv_get_driver_version(struct mwifiex_adapter
*adapter
,
1258 char *version
, int max_len
);
1260 int mwifiex_set_tx_power(struct mwifiex_private
*priv
,
1261 struct mwifiex_power_cfg
*power_cfg
);
1263 int mwifiex_main_process(struct mwifiex_adapter
*);
1265 int mwifiex_queue_tx_pkt(struct mwifiex_private
*priv
, struct sk_buff
*skb
);
1267 int mwifiex_get_bss_info(struct mwifiex_private
*,
1268 struct mwifiex_bss_info
*);
1269 int mwifiex_fill_new_bss_desc(struct mwifiex_private
*priv
,
1270 struct cfg80211_bss
*bss
,
1271 struct mwifiex_bssdescriptor
*bss_desc
);
1272 int mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter
*adapter
,
1273 struct mwifiex_bssdescriptor
*bss_entry
);
1274 int mwifiex_check_network_compatibility(struct mwifiex_private
*priv
,
1275 struct mwifiex_bssdescriptor
*bss_desc
);
1277 u8
mwifiex_chan_type_to_sec_chan_offset(enum nl80211_channel_type chan_type
);
1279 struct wireless_dev
*mwifiex_add_virtual_intf(struct wiphy
*wiphy
,
1281 enum nl80211_iftype type
,
1283 struct vif_params
*params
);
1284 int mwifiex_del_virtual_intf(struct wiphy
*wiphy
, struct wireless_dev
*wdev
);
1286 void mwifiex_set_sys_config_invalid_data(struct mwifiex_uap_bss_param
*config
);
1288 int mwifiex_add_wowlan_magic_pkt_filter(struct mwifiex_adapter
*adapter
);
1290 int mwifiex_set_mgmt_ies(struct mwifiex_private
*priv
,
1291 struct cfg80211_beacon_data
*data
);
1292 int mwifiex_del_mgmt_ies(struct mwifiex_private
*priv
);
1293 u8
*mwifiex_11d_code_2_region(u8 code
);
1294 void mwifiex_uap_del_sta_data(struct mwifiex_private
*priv
,
1295 struct mwifiex_sta_node
*node
);
1297 void mwifiex_11h_process_join(struct mwifiex_private
*priv
, u8
**buffer
,
1298 struct mwifiex_bssdescriptor
*bss_desc
);
1299 int mwifiex_11h_handle_event_chanswann(struct mwifiex_private
*priv
);
1300 int mwifiex_dnld_dt_cfgdata(struct mwifiex_private
*priv
,
1301 struct device_node
*node
, const char *prefix
);
1302 void mwifiex_dnld_txpwr_table(struct mwifiex_private
*priv
);
1304 extern const struct ethtool_ops mwifiex_ethtool_ops
;
1306 void mwifiex_del_all_sta_list(struct mwifiex_private
*priv
);
1307 void mwifiex_del_sta_entry(struct mwifiex_private
*priv
, const u8
*mac
);
1309 mwifiex_set_sta_ht_cap(struct mwifiex_private
*priv
, const u8
*ies
,
1310 int ies_len
, struct mwifiex_sta_node
*node
);
1311 struct mwifiex_sta_node
*
1312 mwifiex_add_sta_entry(struct mwifiex_private
*priv
, const u8
*mac
);
1313 struct mwifiex_sta_node
*
1314 mwifiex_get_sta_entry(struct mwifiex_private
*priv
, const u8
*mac
);
1315 int mwifiex_send_tdls_data_frame(struct mwifiex_private
*priv
, const u8
*peer
,
1316 u8 action_code
, u8 dialog_token
,
1317 u16 status_code
, const u8
*extra_ies
,
1318 size_t extra_ies_len
);
1319 int mwifiex_send_tdls_action_frame(struct mwifiex_private
*priv
, const u8
*peer
,
1320 u8 action_code
, u8 dialog_token
,
1321 u16 status_code
, const u8
*extra_ies
,
1322 size_t extra_ies_len
);
1323 void mwifiex_process_tdls_action_frame(struct mwifiex_private
*priv
,
1325 int mwifiex_tdls_oper(struct mwifiex_private
*priv
, const u8
*peer
, u8 action
);
1326 int mwifiex_get_tdls_link_status(struct mwifiex_private
*priv
, const u8
*mac
);
1327 void mwifiex_disable_all_tdls_links(struct mwifiex_private
*priv
);
1328 bool mwifiex_is_bss_in_11ac_mode(struct mwifiex_private
*priv
);
1329 u8
mwifiex_get_center_freq_index(struct mwifiex_private
*priv
, u8 band
,
1330 u32 pri_chan
, u8 chan_bw
);
1331 int mwifiex_init_channel_scan_gap(struct mwifiex_adapter
*adapter
);
1333 int mwifiex_tdls_check_tx(struct mwifiex_private
*priv
, struct sk_buff
*skb
);
1334 void mwifiex_flush_auto_tdls_list(struct mwifiex_private
*priv
);
1335 void mwifiex_auto_tdls_update_peer_status(struct mwifiex_private
*priv
,
1336 const u8
*mac
, u8 link_status
);
1337 void mwifiex_auto_tdls_update_peer_signal(struct mwifiex_private
*priv
,
1338 u8
*mac
, s8 snr
, s8 nflr
);
1339 void mwifiex_check_auto_tdls(unsigned long context
);
1340 void mwifiex_add_auto_tdls_peer(struct mwifiex_private
*priv
, const u8
*mac
);
1341 void mwifiex_setup_auto_tdls_timer(struct mwifiex_private
*priv
);
1342 void mwifiex_clean_auto_tdls(struct mwifiex_private
*priv
);
1344 void mwifiex_parse_tx_status_event(struct mwifiex_private
*priv
,
1348 mwifiex_clone_skb_for_tx_status(struct mwifiex_private
*priv
,
1349 struct sk_buff
*skb
, u8 flag
, u64
*cookie
);
1351 #ifdef CONFIG_DEBUG_FS
1352 void mwifiex_debugfs_init(void);
1353 void mwifiex_debugfs_remove(void);
1355 void mwifiex_dev_debugfs_init(struct mwifiex_private
*priv
);
1356 void mwifiex_dev_debugfs_remove(struct mwifiex_private
*priv
);
1358 #endif /* !_MWIFIEX_MAIN_H_ */