2 * Marvell Wireless LAN device driver: major data structures and prototypes
4 * Copyright (C) 2011, Marvell International Ltd.
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
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/firmware.h>
34 #include <linux/ctype.h>
42 extern const char driver_version
[];
49 #define MWIFIEX_MAX_AP 64
51 #define MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT (5 * HZ)
53 #define MWIFIEX_TIMER_10S 10000
54 #define MWIFIEX_TIMER_1S 1000
56 #define MAX_TX_PENDING 100
57 #define LOW_TX_PENDING 80
59 #define MWIFIEX_UPLD_SIZE (2312)
61 #define MAX_EVENT_SIZE 1024
63 #define ARP_FILTER_MAX_BUF_SIZE 68
65 #define MWIFIEX_KEY_BUFFER_SIZE 16
66 #define MWIFIEX_DEFAULT_LISTEN_INTERVAL 10
67 #define MWIFIEX_MAX_REGION_CODE 7
69 #define DEFAULT_BCN_AVG_FACTOR 8
70 #define DEFAULT_DATA_AVG_FACTOR 8
72 #define FIRST_VALID_CHANNEL 0xff
73 #define DEFAULT_AD_HOC_CHANNEL 6
74 #define DEFAULT_AD_HOC_CHANNEL_A 36
76 #define DEFAULT_BCN_MISS_TIMEOUT 5
78 #define MAX_SCAN_BEACON_BUFFER 8000
80 #define SCAN_BEACON_ENTRY_PAD 6
82 #define MWIFIEX_PASSIVE_SCAN_CHAN_TIME 200
83 #define MWIFIEX_ACTIVE_SCAN_CHAN_TIME 200
84 #define MWIFIEX_SPECIFIC_SCAN_CHAN_TIME 110
86 #define SCAN_RSSI(RSSI) (0x100 - ((u8)(RSSI)))
88 #define MWIFIEX_MAX_TOTAL_SCAN_TIME (MWIFIEX_TIMER_10S - MWIFIEX_TIMER_1S)
90 #define RSN_GTK_OUI_OFFSET 2
92 #define MWIFIEX_OUI_NOT_PRESENT 0
93 #define MWIFIEX_OUI_PRESENT 1
95 #define IS_CARD_RX_RCVD(adapter) (adapter->cmd_resp_received || \
96 adapter->event_received || \
97 adapter->data_received)
99 #define MWIFIEX_TYPE_CMD 1
100 #define MWIFIEX_TYPE_DATA 0
101 #define MWIFIEX_TYPE_EVENT 3
103 #define DBG_CMD_NUM 5
105 #define MAX_BITMAP_RATES_SIZE 10
107 #define MAX_CHANNEL_BAND_BG 14
109 #define MAX_FREQUENCY_BAND_BG 2484
111 #define MWIFIEX_EVENT_HEADER_LEN 4
114 u32 num_cmd_host_to_card_failure
;
115 u32 num_cmd_sleep_cfm_host_to_card_failure
;
116 u32 num_tx_host_to_card_failure
;
117 u32 num_event_deauth
;
118 u32 num_event_disassoc
;
119 u32 num_event_link_lost
;
121 u32 num_cmd_assoc_success
;
122 u32 num_cmd_assoc_failure
;
127 u16 last_cmd_id
[DBG_CMD_NUM
];
128 u16 last_cmd_act
[DBG_CMD_NUM
];
130 u16 last_cmd_resp_id
[DBG_CMD_NUM
];
131 u16 last_cmd_resp_index
;
132 u16 last_event
[DBG_CMD_NUM
];
133 u16 last_event_index
;
136 enum MWIFIEX_HARDWARE_STATUS
{
137 MWIFIEX_HW_STATUS_READY
,
138 MWIFIEX_HW_STATUS_INITIALIZING
,
139 MWIFIEX_HW_STATUS_FW_READY
,
140 MWIFIEX_HW_STATUS_INIT_DONE
,
141 MWIFIEX_HW_STATUS_RESET
,
142 MWIFIEX_HW_STATUS_CLOSING
,
143 MWIFIEX_HW_STATUS_NOT_READY
146 enum MWIFIEX_802_11_POWER_MODE
{
147 MWIFIEX_802_11_POWER_MODE_CAM
,
148 MWIFIEX_802_11_POWER_MODE_PSP
151 struct mwifiex_tx_param
{
155 enum MWIFIEX_PS_STATE
{
162 enum mwifiex_iface_type
{
167 struct mwifiex_add_ba_param
{
173 struct mwifiex_tx_aggr
{
179 struct mwifiex_ra_list_tbl
{
180 struct list_head list
;
181 struct sk_buff_head skb_head
;
187 struct mwifiex_tid_tbl
{
188 struct list_head ra_list
;
189 /* spin lock for tid table */
190 spinlock_t tid_tbl_lock
;
191 struct mwifiex_ra_list_tbl
*ra_list_curr
;
194 #define WMM_HIGHEST_PRIORITY 7
195 #define HIGH_PRIO_TID 7
196 #define LOW_PRIO_TID 0
197 #define NO_PKT_PRIO_TID (-1)
199 struct mwifiex_wmm_desc
{
200 struct mwifiex_tid_tbl tid_tbl_ptr
[MAX_NUM_TID
];
201 u32 packets_out
[MAX_NUM_TID
];
202 /* spin lock to protect ra_list */
203 spinlock_t ra_list_spinlock
;
204 struct mwifiex_wmm_ac_status ac_status
[IEEE80211_MAX_QUEUES
];
205 enum mwifiex_wmm_ac_e ac_down_graded_vals
[IEEE80211_MAX_QUEUES
];
206 u32 drv_pkt_delay_max
;
207 u8 queue_priority
[IEEE80211_MAX_QUEUES
];
208 u32 user_pri_pkt_tx_ctrl
[WMM_HIGHEST_PRIORITY
+ 1]; /* UP: 0 to 7 */
209 /* Number of transmit packets queued */
210 atomic_t tx_pkts_queued
;
211 /* Tracks highest priority with a packet queued */
212 atomic_t highest_queued_prio
;
215 struct mwifiex_802_11_security
{
220 enum MWIFIEX_802_11_WEP_STATUS wep_status
;
221 u32 authentication_mode
;
225 struct ieee_types_header
{
230 #define MWIFIEX_SUPPORTED_RATES 14
232 #define MWIFIEX_SUPPORTED_RATES_EXT 32
234 struct ieee_types_vendor_specific
{
235 struct ieee_types_vendor_header vend_hdr
;
236 u8 data
[IEEE_MAX_IE_SIZE
- sizeof(struct ieee_types_vendor_header
)];
239 struct ieee_types_generic
{
240 struct ieee_types_header ieee_hdr
;
241 u8 data
[IEEE_MAX_IE_SIZE
- sizeof(struct ieee_types_header
)];
244 struct mwifiex_bssdescriptor
{
245 u8 mac_address
[ETH_ALEN
];
246 struct mwifiex_802_11_ssid ssid
;
254 u8 supported_rates
[MWIFIEX_SUPPORTED_RATES
];
255 u8 data_rates
[MWIFIEX_SUPPORTED_RATES
];
257 * BAND_B(0x01): 'b' band
258 * BAND_G(0x02): 'g' band
259 * BAND_A(0X04): 'a' band
264 union ieee_types_phy_param_set phy_param_set
;
265 union ieee_types_ss_param_set ss_param_set
;
267 struct ieee_types_wmm_parameter wmm_ie
;
269 struct ieee80211_ht_cap
*bcn_ht_cap
;
271 struct ieee80211_ht_info
*bcn_ht_info
;
274 u16 bss_co_2040_offset
;
277 struct ieee_types_vendor_specific
*bcn_wpa_ie
;
279 struct ieee_types_generic
*bcn_rsn_ie
;
281 struct ieee_types_generic
*bcn_wapi_ie
;
287 struct mwifiex_current_bss_params
{
288 struct mwifiex_bssdescriptor bss_descriptor
;
290 u8 wmm_uapsd_enabled
;
293 u8 data_rates
[MWIFIEX_SUPPORTED_RATES
];
296 struct mwifiex_sleep_params
{
305 struct mwifiex_sleep_period
{
310 struct mwifiex_wep_key
{
314 u8 key_material
[MWIFIEX_KEY_BUFFER_SIZE
];
317 #define MAX_REGION_CHANNEL_NUM 2
319 struct mwifiex_chan_freq_power
{
331 #define MWIFIEX_MAX_TRIPLET_802_11D 83
333 struct mwifiex_802_11d_domain_reg
{
334 u8 country_code
[IEEE80211_COUNTRY_STRING_LEN
];
336 struct ieee80211_country_ie_triplet
337 triplet
[MWIFIEX_MAX_TRIPLET_802_11D
];
340 struct mwifiex_vendor_spec_cfg_ie
{
343 u8 ie
[MWIFIEX_MAX_VSIE_LEN
];
350 struct mwifiex_adapter
;
351 struct mwifiex_private
;
353 struct mwifiex_private
{
354 struct mwifiex_adapter
*adapter
;
361 u8 curr_addr
[ETH_ALEN
];
364 struct net_device
*netdev
;
365 struct net_device_stats stats
;
370 u8 max_tx_power_level
;
371 u8 min_tx_power_level
;
377 u16 bitmap_rates
[MAX_BITMAP_RATES_SIZE
];
379 u8 is_data_rate_auto
;
390 struct mwifiex_bssdescriptor
*attempted_bss_desc
;
391 struct mwifiex_802_11_ssid prev_ssid
;
392 u8 prev_bssid
[ETH_ALEN
];
393 struct mwifiex_current_bss_params curr_bss_params
;
398 u8 adhoc_is_link_sensed
;
400 struct mwifiex_802_11_security sec_info
;
401 struct mwifiex_wep_key wep_key
[NUM_WEP_KEYS
];
402 u16 wep_key_curr_index
;
406 struct host_cmd_ds_802_11_key_material aes_key
;
412 struct mwifiex_wmm_desc wmm
;
413 struct list_head tx_ba_stream_tbl_ptr
;
414 /* spin lock for tx_ba_stream_tbl_ptr queue */
415 spinlock_t tx_ba_stream_tbl_lock
;
416 struct mwifiex_tx_aggr aggr_prio_tbl
[MAX_NUM_TID
];
417 struct mwifiex_add_ba_param add_ba_param
;
418 u16 rx_seq
[MAX_NUM_TID
];
419 struct list_head rx_reorder_tbl_ptr
;
420 /* spin lock for rx_reorder_tbl_ptr queue */
421 spinlock_t rx_reorder_tbl_lock
;
422 /* spin lock for Rx packets */
423 spinlock_t rx_pkt_lock
;
425 #define MWIFIEX_ASSOC_RSP_BUF_SIZE 500
426 u8 assoc_rsp_buf
[MWIFIEX_ASSOC_RSP_BUF_SIZE
];
429 #define MWIFIEX_GENIE_BUF_SIZE 256
430 u8 gen_ie_buf
[MWIFIEX_GENIE_BUF_SIZE
];
433 struct mwifiex_vendor_spec_cfg_ie vs_ie
[MWIFIEX_MAX_VSIE_NUM
];
435 #define MWIFIEX_ASSOC_TLV_BUF_SIZE 256
436 u8 assoc_tlv_buf
[MWIFIEX_ASSOC_TLV_BUF_SIZE
];
437 u8 assoc_tlv_buf_len
;
441 /* spin lock for beacon buffer */
442 spinlock_t curr_bcn_buf_lock
;
443 struct wireless_dev
*wdev
;
444 struct mwifiex_chan_freq_power cfp
;
445 char version_str
[128];
446 #ifdef CONFIG_DEBUG_FS
447 struct dentry
*dfs_dev_dir
;
450 u8 qual_level
, qual_noise
;
451 u16 current_key_index
;
452 struct semaphore async_sem
;
453 u8 scan_pending_on_block
;
454 u8 report_scan_result
;
455 struct cfg80211_scan_request
*scan_request
;
456 struct mwifiex_user_scan_cfg
*user_scan_cfg
;
458 u8 country_code
[IEEE80211_COUNTRY_STRING_LEN
];
463 enum mwifiex_ba_status
{
464 BA_STREAM_NOT_SETUP
= 0,
465 BA_STREAM_SETUP_INPROGRESS
,
466 BA_STREAM_SETUP_COMPLETE
469 struct mwifiex_tx_ba_stream_tbl
{
470 struct list_head list
;
473 enum mwifiex_ba_status ba_status
;
476 struct mwifiex_rx_reorder_tbl
;
478 struct reorder_tmr_cnxt
{
479 struct timer_list timer
;
480 struct mwifiex_rx_reorder_tbl
*ptr
;
481 struct mwifiex_private
*priv
;
484 struct mwifiex_rx_reorder_tbl
{
485 struct list_head list
;
490 void **rx_reorder_ptr
;
491 struct reorder_tmr_cnxt timer_context
;
494 struct mwifiex_bss_prio_node
{
495 struct list_head list
;
496 struct mwifiex_private
*priv
;
499 struct mwifiex_bss_prio_tbl
{
500 struct list_head bss_prio_head
;
501 /* spin lock for bss priority */
502 spinlock_t bss_prio_lock
;
503 struct mwifiex_bss_prio_node
*bss_prio_cur
;
506 struct cmd_ctrl_node
{
507 struct list_head list
;
508 struct mwifiex_private
*priv
;
511 struct sk_buff
*cmd_skb
;
512 struct sk_buff
*resp_skb
;
520 struct mwifiex_if_ops
{
521 int (*init_if
) (struct mwifiex_adapter
*);
522 void (*cleanup_if
) (struct mwifiex_adapter
*);
523 int (*check_fw_status
) (struct mwifiex_adapter
*, u32
);
524 int (*prog_fw
) (struct mwifiex_adapter
*, struct mwifiex_fw_image
*);
525 int (*register_dev
) (struct mwifiex_adapter
*);
526 void (*unregister_dev
) (struct mwifiex_adapter
*);
527 int (*enable_int
) (struct mwifiex_adapter
*);
528 int (*process_int_status
) (struct mwifiex_adapter
*);
529 int (*host_to_card
) (struct mwifiex_adapter
*, u8
, struct sk_buff
*,
530 struct mwifiex_tx_param
*);
531 int (*wakeup
) (struct mwifiex_adapter
*);
532 int (*wakeup_complete
) (struct mwifiex_adapter
*);
534 /* Interface specific functions */
535 void (*update_mp_end_port
) (struct mwifiex_adapter
*, u16
);
536 void (*cleanup_mpa_buf
) (struct mwifiex_adapter
*);
537 int (*cmdrsp_complete
) (struct mwifiex_adapter
*, struct sk_buff
*);
538 int (*event_complete
) (struct mwifiex_adapter
*, struct sk_buff
*);
541 struct mwifiex_adapter
{
543 struct mwifiex_private
*priv
[MWIFIEX_MAX_BSS_NUM
];
545 const struct firmware
*firmware
;
549 bool surprise_removed
;
550 u32 fw_release_number
;
551 u16 init_wait_q_woken
;
552 wait_queue_head_t init_wait_q
;
554 struct mwifiex_if_ops if_ops
;
557 atomic_t cmd_pending
;
558 struct workqueue_struct
*workqueue
;
559 struct work_struct main_work
;
560 struct mwifiex_bss_prio_tbl bss_prio_tbl
[MWIFIEX_MAX_BSS_NUM
];
561 /* spin lock for init/shutdown */
562 spinlock_t mwifiex_lock
;
563 /* spin lock for main process */
564 spinlock_t main_proc_lock
;
565 u32 mwifiex_processing
;
568 u16 curr_tx_buf_size
;
570 enum MWIFIEX_HARDWARE_STATUS hw_status
;
571 u16 number_of_antenna
;
573 /* spin lock for interrupt handling */
577 struct sk_buff
*event_skb
;
578 u8 upld_buf
[MWIFIEX_UPLD_SIZE
];
581 u8 cmd_resp_received
;
585 struct cmd_ctrl_node
*cmd_pool
;
586 struct cmd_ctrl_node
*curr_cmd
;
587 /* spin lock for command */
588 spinlock_t mwifiex_cmd_lock
;
591 struct timer_list cmd_timer
;
592 struct list_head cmd_free_q
;
593 /* spin lock for cmd_free_q */
594 spinlock_t cmd_free_q_lock
;
595 struct list_head cmd_pending_q
;
596 /* spin lock for cmd_pending_q */
597 spinlock_t cmd_pending_q_lock
;
598 struct list_head scan_pending_q
;
599 /* spin lock for scan_pending_q */
600 spinlock_t scan_pending_q_lock
;
603 struct mwifiex_802_11d_domain_reg domain_reg
;
606 u16 specific_scan_time
;
607 u16 active_scan_time
;
608 u16 passive_scan_time
;
612 struct mwifiex_chan_scan_param_set
*scan_channels
;
614 struct mwifiex_sleep_params sleep_params
;
615 struct mwifiex_sleep_period sleep_period
;
620 u16 local_listen_interval
;
621 u16 null_pkt_interval
;
622 struct sk_buff
*sleep_cfm
;
623 u16 bcn_miss_time_out
;
624 u16 adhoc_awake_period
;
628 u16 enhanced_ps_mode
;
629 u8 pm_wakeup_card_req
;
632 u32 pm_wakeup_fw_try
;
634 struct mwifiex_hs_config_param hs_cfg
;
636 u16 hs_activate_wait_q_woken
;
637 wait_queue_head_t hs_activate_wait_q
;
639 u8 event_body
[MAX_EVENT_SIZE
];
640 u32 hw_dot_11n_dev_cap
;
641 u8 hw_dev_mcs_support
;
642 u8 adhoc_11n_enabled
;
644 enum nl80211_channel_type channel_type
;
645 struct mwifiex_dbg dbg
;
646 u8 arp_filter
[ARP_FILTER_MAX_BUF_SIZE
];
648 u16 cmd_wait_q_required
;
649 struct mwifiex_wait_queue cmd_wait_q
;
650 u8 scan_wait_q_woken
;
651 struct cmd_ctrl_node
*cmd_queued
;
652 spinlock_t queue_lock
; /* lock for tx queues */
655 int mwifiex_init_lock_list(struct mwifiex_adapter
*adapter
);
657 void mwifiex_set_trans_start(struct net_device
*dev
);
659 void mwifiex_stop_net_dev_queue(struct net_device
*netdev
,
660 struct mwifiex_adapter
*adapter
);
662 void mwifiex_wake_up_net_dev_queue(struct net_device
*netdev
,
663 struct mwifiex_adapter
*adapter
);
665 int mwifiex_init_fw(struct mwifiex_adapter
*adapter
);
667 int mwifiex_init_fw_complete(struct mwifiex_adapter
*adapter
);
669 int mwifiex_shutdown_drv(struct mwifiex_adapter
*adapter
);
671 int mwifiex_shutdown_fw_complete(struct mwifiex_adapter
*adapter
);
673 int mwifiex_dnld_fw(struct mwifiex_adapter
*, struct mwifiex_fw_image
*);
675 int mwifiex_recv_packet(struct mwifiex_adapter
*, struct sk_buff
*skb
);
677 int mwifiex_process_event(struct mwifiex_adapter
*adapter
);
679 int mwifiex_complete_cmd(struct mwifiex_adapter
*adapter
,
680 struct cmd_ctrl_node
*cmd_node
);
682 int mwifiex_send_cmd_async(struct mwifiex_private
*priv
, uint16_t cmd_no
,
683 u16 cmd_action
, u32 cmd_oid
, void *data_buf
);
685 int mwifiex_send_cmd_sync(struct mwifiex_private
*priv
, uint16_t cmd_no
,
686 u16 cmd_action
, u32 cmd_oid
, void *data_buf
);
688 void mwifiex_cmd_timeout_func(unsigned long function_context
);
690 int mwifiex_get_debug_info(struct mwifiex_private
*,
691 struct mwifiex_debug_info
*);
693 int mwifiex_alloc_cmd_buffer(struct mwifiex_adapter
*adapter
);
694 int mwifiex_free_cmd_buffer(struct mwifiex_adapter
*adapter
);
695 void mwifiex_cancel_all_pending_cmd(struct mwifiex_adapter
*adapter
);
696 void mwifiex_cancel_pending_ioctl(struct mwifiex_adapter
*adapter
);
698 void mwifiex_insert_cmd_to_free_q(struct mwifiex_adapter
*adapter
,
699 struct cmd_ctrl_node
*cmd_node
);
701 void mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter
*adapter
,
702 struct cmd_ctrl_node
*cmd_node
,
705 int mwifiex_exec_next_cmd(struct mwifiex_adapter
*adapter
);
706 int mwifiex_process_cmdresp(struct mwifiex_adapter
*adapter
);
707 int mwifiex_handle_rx_packet(struct mwifiex_adapter
*adapter
,
708 struct sk_buff
*skb
);
709 int mwifiex_process_tx(struct mwifiex_private
*priv
, struct sk_buff
*skb
,
710 struct mwifiex_tx_param
*tx_param
);
711 int mwifiex_send_null_packet(struct mwifiex_private
*priv
, u8 flags
);
712 int mwifiex_write_data_complete(struct mwifiex_adapter
*adapter
,
713 struct sk_buff
*skb
, int status
);
714 void mwifiex_clean_txrx(struct mwifiex_private
*priv
);
715 u8
mwifiex_check_last_packet_indication(struct mwifiex_private
*priv
);
716 void mwifiex_check_ps_cond(struct mwifiex_adapter
*adapter
);
717 void mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter
*, u8
*,
719 int mwifiex_cmd_enh_power_mode(struct mwifiex_private
*priv
,
720 struct host_cmd_ds_command
*cmd
,
721 u16 cmd_action
, uint16_t ps_bitmap
,
722 struct mwifiex_ds_auto_ds
*auto_ds
);
723 int mwifiex_ret_enh_power_mode(struct mwifiex_private
*priv
,
724 struct host_cmd_ds_command
*resp
,
725 struct mwifiex_ds_pm_cfg
*pm_cfg
);
726 void mwifiex_process_hs_config(struct mwifiex_adapter
*adapter
);
727 void mwifiex_hs_activated_event(struct mwifiex_private
*priv
,
729 int mwifiex_ret_802_11_hs_cfg(struct mwifiex_private
*priv
,
730 struct host_cmd_ds_command
*resp
);
731 int mwifiex_process_rx_packet(struct mwifiex_adapter
*adapter
,
732 struct sk_buff
*skb
);
733 int mwifiex_sta_prepare_cmd(struct mwifiex_private
*, uint16_t cmd_no
,
734 u16 cmd_action
, u32 cmd_oid
,
735 void *data_buf
, void *cmd_buf
);
736 int mwifiex_process_sta_cmdresp(struct mwifiex_private
*, u16 cmdresp_no
,
737 struct host_cmd_ds_command
*resp
);
738 int mwifiex_process_sta_rx_packet(struct mwifiex_adapter
*,
739 struct sk_buff
*skb
);
740 int mwifiex_process_sta_event(struct mwifiex_private
*);
741 void *mwifiex_process_sta_txpd(struct mwifiex_private
*, struct sk_buff
*skb
);
742 int mwifiex_sta_init_cmd(struct mwifiex_private
*, u8 first_sta
);
743 int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command
*cmd
,
744 struct mwifiex_scan_cmd_config
*scan_cfg
);
745 void mwifiex_queue_scan_cmd(struct mwifiex_private
*priv
,
746 struct cmd_ctrl_node
*cmd_node
);
747 int mwifiex_ret_802_11_scan(struct mwifiex_private
*priv
,
748 struct host_cmd_ds_command
*resp
);
749 s32
mwifiex_ssid_cmp(struct mwifiex_802_11_ssid
*ssid1
,
750 struct mwifiex_802_11_ssid
*ssid2
);
751 int mwifiex_associate(struct mwifiex_private
*priv
,
752 struct mwifiex_bssdescriptor
*bss_desc
);
753 int mwifiex_cmd_802_11_associate(struct mwifiex_private
*priv
,
754 struct host_cmd_ds_command
*cmd
,
755 struct mwifiex_bssdescriptor
*bss_desc
);
756 int mwifiex_ret_802_11_associate(struct mwifiex_private
*priv
,
757 struct host_cmd_ds_command
*resp
);
758 void mwifiex_reset_connect_state(struct mwifiex_private
*priv
);
759 u8
mwifiex_band_to_radio_type(u8 band
);
760 int mwifiex_deauthenticate(struct mwifiex_private
*priv
, u8
*mac
);
761 int mwifiex_adhoc_start(struct mwifiex_private
*priv
,
762 struct mwifiex_802_11_ssid
*adhoc_ssid
);
763 int mwifiex_adhoc_join(struct mwifiex_private
*priv
,
764 struct mwifiex_bssdescriptor
*bss_desc
);
765 int mwifiex_cmd_802_11_ad_hoc_start(struct mwifiex_private
*priv
,
766 struct host_cmd_ds_command
*cmd
,
767 struct mwifiex_802_11_ssid
*req_ssid
);
768 int mwifiex_cmd_802_11_ad_hoc_join(struct mwifiex_private
*priv
,
769 struct host_cmd_ds_command
*cmd
,
770 struct mwifiex_bssdescriptor
*bss_desc
);
771 int mwifiex_ret_802_11_ad_hoc(struct mwifiex_private
*priv
,
772 struct host_cmd_ds_command
*resp
);
773 int mwifiex_cmd_802_11_bg_scan_query(struct host_cmd_ds_command
*cmd
);
774 struct mwifiex_chan_freq_power
*
775 mwifiex_get_cfp_by_band_and_channel_from_cfg80211(
776 struct mwifiex_private
*priv
,
777 u8 band
, u16 channel
);
778 struct mwifiex_chan_freq_power
*mwifiex_get_cfp_by_band_and_freq_from_cfg80211(
779 struct mwifiex_private
*priv
,
781 u32
mwifiex_index_to_data_rate(struct mwifiex_private
*priv
, u8 index
,
783 u32
mwifiex_find_freq_from_band_chan(u8
, u8
);
784 int mwifiex_cmd_append_vsie_tlv(struct mwifiex_private
*priv
, u16 vsie_mask
,
786 u32
mwifiex_get_active_data_rates(struct mwifiex_private
*priv
,
788 u32
mwifiex_get_supported_rates(struct mwifiex_private
*priv
, u8
*rates
);
789 u8
mwifiex_data_rate_to_index(u32 rate
);
790 u8
mwifiex_is_rate_auto(struct mwifiex_private
*priv
);
791 int mwifiex_get_rate_index(u16
*rateBitmap
, int size
);
792 extern u16 region_code_index
[MWIFIEX_MAX_REGION_CODE
];
793 void mwifiex_save_curr_bcn(struct mwifiex_private
*priv
);
794 void mwifiex_free_curr_bcn(struct mwifiex_private
*priv
);
795 int mwifiex_cmd_get_hw_spec(struct mwifiex_private
*priv
,
796 struct host_cmd_ds_command
*cmd
);
797 int mwifiex_ret_get_hw_spec(struct mwifiex_private
*priv
,
798 struct host_cmd_ds_command
*resp
);
799 int is_command_pending(struct mwifiex_adapter
*adapter
);
800 void mwifiex_init_priv_params(struct mwifiex_private
*priv
,
801 struct net_device
*dev
);
804 * This function checks if the queuing is RA based or not.
807 mwifiex_queuing_ra_based(struct mwifiex_private
*priv
)
810 * Currently we assume if we are in Infra, then DA=RA. This might not be
813 if ((priv
->bss_mode
== NL80211_IFTYPE_STATION
) &&
814 (GET_BSS_ROLE(priv
) == MWIFIEX_BSS_ROLE_STA
))
821 * This function copies rates.
824 mwifiex_copy_rates(u8
*dest
, u32 pos
, u8
*src
, int len
)
828 for (i
= 0; i
< len
&& src
[i
]; i
++, pos
++) {
829 if (pos
>= MWIFIEX_SUPPORTED_RATES
)
838 * This function returns the correct private structure pointer based
839 * upon the BSS type and BSS number.
841 static inline struct mwifiex_private
*
842 mwifiex_get_priv_by_id(struct mwifiex_adapter
*adapter
,
843 u8 bss_num
, u8 bss_type
)
847 for (i
= 0; i
< adapter
->priv_num
; i
++) {
848 if (adapter
->priv
[i
]) {
849 if ((adapter
->priv
[i
]->bss_num
== bss_num
)
850 && (adapter
->priv
[i
]->bss_type
== bss_type
))
854 return ((i
< adapter
->priv_num
) ? adapter
->priv
[i
] : NULL
);
858 * This function returns the first available private structure pointer
859 * based upon the BSS role.
861 static inline struct mwifiex_private
*
862 mwifiex_get_priv(struct mwifiex_adapter
*adapter
,
863 enum mwifiex_bss_role bss_role
)
867 for (i
= 0; i
< adapter
->priv_num
; i
++) {
868 if (adapter
->priv
[i
]) {
869 if (bss_role
== MWIFIEX_BSS_ROLE_ANY
||
870 GET_BSS_ROLE(adapter
->priv
[i
]) == bss_role
)
875 return ((i
< adapter
->priv_num
) ? adapter
->priv
[i
] : NULL
);
879 * This function returns the driver private structure of a network device.
881 static inline struct mwifiex_private
*
882 mwifiex_netdev_get_priv(struct net_device
*dev
)
884 return (struct mwifiex_private
*) (*(unsigned long *) netdev_priv(dev
));
887 struct mwifiex_private
*mwifiex_bss_index_to_priv(struct mwifiex_adapter
888 *adapter
, u8 bss_index
);
889 int mwifiex_init_shutdown_fw(struct mwifiex_private
*priv
,
890 u32 func_init_shutdown
);
891 int mwifiex_add_card(void *, struct semaphore
*, struct mwifiex_if_ops
*, u8
);
892 int mwifiex_remove_card(struct mwifiex_adapter
*, struct semaphore
*);
894 void mwifiex_get_version(struct mwifiex_adapter
*adapter
, char *version
,
896 int mwifiex_request_set_multicast_list(struct mwifiex_private
*priv
,
897 struct mwifiex_multicast_list
*mcast_list
);
898 int mwifiex_copy_mcast_addr(struct mwifiex_multicast_list
*mlist
,
899 struct net_device
*dev
);
900 int mwifiex_wait_queue_complete(struct mwifiex_adapter
*adapter
);
901 int mwifiex_bss_start(struct mwifiex_private
*priv
, struct cfg80211_bss
*bss
,
902 struct mwifiex_802_11_ssid
*req_ssid
);
903 int mwifiex_cancel_hs(struct mwifiex_private
*priv
, int cmd_type
);
904 int mwifiex_enable_hs(struct mwifiex_adapter
*adapter
);
905 int mwifiex_disable_auto_ds(struct mwifiex_private
*priv
);
906 int mwifiex_get_signal_info(struct mwifiex_private
*priv
,
907 struct mwifiex_ds_get_signal
*signal
);
908 int mwifiex_drv_get_data_rate(struct mwifiex_private
*priv
,
909 struct mwifiex_rate_cfg
*rate
);
910 int mwifiex_request_scan(struct mwifiex_private
*priv
,
911 struct mwifiex_802_11_ssid
*req_ssid
);
912 int mwifiex_set_user_scan_ioctl(struct mwifiex_private
*priv
,
913 struct mwifiex_user_scan_cfg
*scan_req
);
914 int mwifiex_change_adhoc_chan(struct mwifiex_private
*priv
, int channel
);
915 int mwifiex_set_radio(struct mwifiex_private
*priv
, u8 option
);
917 int mwifiex_drv_change_adhoc_chan(struct mwifiex_private
*priv
, int channel
);
919 int mwifiex_set_encode(struct mwifiex_private
*priv
, const u8
*key
,
920 int key_len
, u8 key_index
, int disable
);
922 int mwifiex_set_gen_ie(struct mwifiex_private
*priv
, u8
*ie
, int ie_len
);
924 int mwifiex_get_ver_ext(struct mwifiex_private
*priv
);
926 int mwifiex_get_stats_info(struct mwifiex_private
*priv
,
927 struct mwifiex_ds_get_stats
*log
);
929 int mwifiex_reg_write(struct mwifiex_private
*priv
, u32 reg_type
,
930 u32 reg_offset
, u32 reg_value
);
932 int mwifiex_reg_read(struct mwifiex_private
*priv
, u32 reg_type
,
933 u32 reg_offset
, u32
*value
);
935 int mwifiex_eeprom_read(struct mwifiex_private
*priv
, u16 offset
, u16 bytes
,
938 int mwifiex_set_11n_httx_cfg(struct mwifiex_private
*priv
, int data
);
940 int mwifiex_get_11n_httx_cfg(struct mwifiex_private
*priv
, int *data
);
942 int mwifiex_set_tx_rate_cfg(struct mwifiex_private
*priv
, int tx_rate_index
);
944 int mwifiex_get_tx_rate_cfg(struct mwifiex_private
*priv
, int *tx_rate_index
);
946 int mwifiex_drv_set_power(struct mwifiex_private
*priv
, u32
*ps_mode
);
948 int mwifiex_drv_get_driver_version(struct mwifiex_adapter
*adapter
,
949 char *version
, int max_len
);
951 int mwifiex_set_tx_power(struct mwifiex_private
*priv
,
952 struct mwifiex_power_cfg
*power_cfg
);
954 int mwifiex_main_process(struct mwifiex_adapter
*);
956 int mwifiex_bss_set_channel(struct mwifiex_private
*,
957 struct mwifiex_chan_freq_power
*cfp
);
958 int mwifiex_get_bss_info(struct mwifiex_private
*,
959 struct mwifiex_bss_info
*);
960 int mwifiex_fill_new_bss_desc(struct mwifiex_private
*priv
,
961 u8
*bssid
, s32 rssi
, u8
*ie_buf
,
962 size_t ie_len
, u16 beacon_period
,
963 u16 cap_info_bitmap
, u8 band
,
964 struct mwifiex_bssdescriptor
*bss_desc
);
965 int mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter
*adapter
,
966 struct mwifiex_bssdescriptor
*bss_entry
,
967 u8
*ie_buf
, u32 ie_len
);
968 int mwifiex_check_network_compatibility(struct mwifiex_private
*priv
,
969 struct mwifiex_bssdescriptor
*bss_desc
);
971 struct net_device
*mwifiex_add_virtual_intf(struct wiphy
*wiphy
,
972 char *name
, enum nl80211_iftype type
,
973 u32
*flags
, struct vif_params
*params
);
974 int mwifiex_del_virtual_intf(struct wiphy
*wiphy
, struct net_device
*dev
);
977 #ifdef CONFIG_DEBUG_FS
978 void mwifiex_debugfs_init(void);
979 void mwifiex_debugfs_remove(void);
981 void mwifiex_dev_debugfs_init(struct mwifiex_private
*priv
);
982 void mwifiex_dev_debugfs_remove(struct mwifiex_private
*priv
);
984 #endif /* !_MWIFIEX_MAIN_H_ */