ath6kl: rename vif init and cleanup functions
[cascardo/linux.git] / drivers / net / wireless / ath / ath6kl / core.h
1 /*
2  * Copyright (c) 2010-2011 Atheros Communications Inc.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #ifndef CORE_H
18 #define CORE_H
19
20 #include <linux/etherdevice.h>
21 #include <linux/rtnetlink.h>
22 #include <linux/firmware.h>
23 #include <linux/sched.h>
24 #include <linux/circ_buf.h>
25 #include <net/cfg80211.h>
26 #include "htc.h"
27 #include "wmi.h"
28 #include "bmi.h"
29 #include "target.h"
30
31 #define MAX_ATH6KL                        1
32 #define ATH6KL_MAX_RX_BUFFERS             16
33 #define ATH6KL_BUFFER_SIZE                1664
34 #define ATH6KL_MAX_AMSDU_RX_BUFFERS       4
35 #define ATH6KL_AMSDU_REFILL_THRESHOLD     3
36 #define ATH6KL_AMSDU_BUFFER_SIZE     (WMI_MAX_AMSDU_RX_DATA_FRAME_LENGTH + 128)
37 #define MAX_MSDU_SUBFRAME_PAYLOAD_LEN   1508
38 #define MIN_MSDU_SUBFRAME_PAYLOAD_LEN   46
39
40 #define USER_SAVEDKEYS_STAT_INIT     0
41 #define USER_SAVEDKEYS_STAT_RUN      1
42
43 #define ATH6KL_TX_TIMEOUT      10
44 #define ATH6KL_MAX_ENDPOINTS   4
45 #define MAX_NODE_NUM           15
46
47 #define ATH6KL_APSD_ALL_FRAME           0xFFFF
48 #define ATH6KL_APSD_NUM_OF_AC           0x4
49 #define ATH6KL_APSD_FRAME_MASK          0xF
50
51 /* Extra bytes for htc header alignment */
52 #define ATH6KL_HTC_ALIGN_BYTES 3
53
54 /* MAX_HI_COOKIE_NUM are reserved for high priority traffic */
55 #define MAX_DEF_COOKIE_NUM                180
56 #define MAX_HI_COOKIE_NUM                 18    /* 10% of MAX_COOKIE_NUM */
57 #define MAX_COOKIE_NUM                 (MAX_DEF_COOKIE_NUM + MAX_HI_COOKIE_NUM)
58
59 #define MAX_DEFAULT_SEND_QUEUE_DEPTH      (MAX_DEF_COOKIE_NUM / WMM_NUM_AC)
60
61 #define DISCON_TIMER_INTVAL               10000  /* in msec */
62 #define A_DEFAULT_LISTEN_INTERVAL         1      /* beacon intervals */
63 #define A_MAX_WOW_LISTEN_INTERVAL         1000
64
65 /* includes also the null byte */
66 #define ATH6KL_FIRMWARE_MAGIC               "QCA-ATH6KL"
67
68 enum ath6kl_fw_ie_type {
69         ATH6KL_FW_IE_FW_VERSION = 0,
70         ATH6KL_FW_IE_TIMESTAMP = 1,
71         ATH6KL_FW_IE_OTP_IMAGE = 2,
72         ATH6KL_FW_IE_FW_IMAGE = 3,
73         ATH6KL_FW_IE_PATCH_IMAGE = 4,
74         ATH6KL_FW_IE_RESERVED_RAM_SIZE = 5,
75         ATH6KL_FW_IE_CAPABILITIES = 6,
76         ATH6KL_FW_IE_PATCH_ADDR = 7,
77         ATH6KL_FW_IE_BOARD_ADDR = 8,
78         ATH6KL_FW_IE_VIF_MAX = 9,
79 };
80
81 enum ath6kl_fw_capability {
82         ATH6KL_FW_CAPABILITY_HOST_P2P = 0,
83         ATH6KL_FW_CAPABILITY_SCHED_SCAN = 1,
84
85         /*
86          * Firmware is capable of supporting P2P mgmt operations on a
87          * station interface. After group formation, the station
88          * interface will become a P2P client/GO interface as the case may be
89          */
90         ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX,
91
92         /* this needs to be last */
93         ATH6KL_FW_CAPABILITY_MAX,
94 };
95
96 #define ATH6KL_CAPABILITY_LEN (ALIGN(ATH6KL_FW_CAPABILITY_MAX, 32) / 32)
97
98 struct ath6kl_fw_ie {
99         __le32 id;
100         __le32 len;
101         u8 data[0];
102 };
103
104 #define ATH6KL_FW_API2_FILE "fw-2.bin"
105 #define ATH6KL_FW_API3_FILE "fw-3.bin"
106
107 /* AR6003 1.0 definitions */
108 #define AR6003_HW_1_0_VERSION                 0x300002ba
109
110 /* AR6003 2.0 definitions */
111 #define AR6003_HW_2_0_VERSION                 0x30000384
112 #define AR6003_HW_2_0_PATCH_DOWNLOAD_ADDRESS  0x57e910
113 #define AR6003_HW_2_0_FW_DIR                    "ath6k/AR6003/hw2.0"
114 #define AR6003_HW_2_0_OTP_FILE                  "otp.bin.z77"
115 #define AR6003_HW_2_0_FIRMWARE_FILE             "athwlan.bin.z77"
116 #define AR6003_HW_2_0_TCMD_FIRMWARE_FILE        "athtcmd_ram.bin"
117 #define AR6003_HW_2_0_PATCH_FILE                "data.patch.bin"
118 #define AR6003_HW_2_0_BOARD_DATA_FILE "ath6k/AR6003/hw2.0/bdata.bin"
119 #define AR6003_HW_2_0_DEFAULT_BOARD_DATA_FILE \
120                         "ath6k/AR6003/hw2.0/bdata.SD31.bin"
121
122 /* AR6003 3.0 definitions */
123 #define AR6003_HW_2_1_1_VERSION                 0x30000582
124 #define AR6003_HW_2_1_1_FW_DIR                  "ath6k/AR6003/hw2.1.1"
125 #define AR6003_HW_2_1_1_OTP_FILE                "otp.bin"
126 #define AR6003_HW_2_1_1_FIRMWARE_FILE           "athwlan.bin"
127 #define AR6003_HW_2_1_1_TCMD_FIRMWARE_FILE      "athtcmd_ram.bin"
128 #define AR6003_HW_2_1_1_UTF_FIRMWARE_FILE       "utf.bin"
129 #define AR6003_HW_2_1_1_TESTSCRIPT_FILE "nullTestFlow.bin"
130 #define AR6003_HW_2_1_1_PATCH_FILE              "data.patch.bin"
131 #define AR6003_HW_2_1_1_BOARD_DATA_FILE "ath6k/AR6003/hw2.1.1/bdata.bin"
132 #define AR6003_HW_2_1_1_DEFAULT_BOARD_DATA_FILE \
133                         "ath6k/AR6003/hw2.1.1/bdata.SD31.bin"
134
135 /* AR6004 1.0 definitions */
136 #define AR6004_HW_1_0_VERSION                 0x30000623
137 #define AR6004_HW_1_0_FW_DIR                    "ath6k/AR6004/hw1.0"
138 #define AR6004_HW_1_0_FIRMWARE_FILE             "fw.ram.bin"
139 #define AR6004_HW_1_0_BOARD_DATA_FILE         "ath6k/AR6004/hw1.0/bdata.bin"
140 #define AR6004_HW_1_0_DEFAULT_BOARD_DATA_FILE \
141         "ath6k/AR6004/hw1.0/bdata.DB132.bin"
142
143 /* AR6004 1.1 definitions */
144 #define AR6004_HW_1_1_VERSION                 0x30000001
145 #define AR6004_HW_1_1_FW_DIR                    "ath6k/AR6004/hw1.1"
146 #define AR6004_HW_1_1_FIRMWARE_FILE             "fw.ram.bin"
147 #define AR6004_HW_1_1_BOARD_DATA_FILE         "ath6k/AR6004/hw1.1/bdata.bin"
148 #define AR6004_HW_1_1_DEFAULT_BOARD_DATA_FILE \
149         "ath6k/AR6004/hw1.1/bdata.DB132.bin"
150
151 /* Per STA data, used in AP mode */
152 #define STA_PS_AWAKE            BIT(0)
153 #define STA_PS_SLEEP            BIT(1)
154 #define STA_PS_POLLED           BIT(2)
155 #define STA_PS_APSD_TRIGGER     BIT(3)
156 #define STA_PS_APSD_EOSP        BIT(4)
157
158 /* HTC TX packet tagging definitions */
159 #define ATH6KL_CONTROL_PKT_TAG    HTC_TX_PACKET_TAG_USER_DEFINED
160 #define ATH6KL_DATA_PKT_TAG       (ATH6KL_CONTROL_PKT_TAG + 1)
161
162 #define AR6003_CUST_DATA_SIZE 16
163
164 #define AGGR_WIN_IDX(x, y)          ((x) % (y))
165 #define AGGR_INCR_IDX(x, y)         AGGR_WIN_IDX(((x) + 1), (y))
166 #define AGGR_DCRM_IDX(x, y)         AGGR_WIN_IDX(((x) - 1), (y))
167 #define ATH6KL_MAX_SEQ_NO               0xFFF
168 #define ATH6KL_NEXT_SEQ_NO(x)           (((x) + 1) & ATH6KL_MAX_SEQ_NO)
169
170 #define NUM_OF_TIDS         8
171 #define AGGR_SZ_DEFAULT     8
172
173 #define AGGR_WIN_SZ_MIN     2
174 #define AGGR_WIN_SZ_MAX     8
175
176 #define TID_WINDOW_SZ(_x)   ((_x) << 1)
177
178 #define AGGR_NUM_OF_FREE_NETBUFS    16
179
180 #define AGGR_RX_TIMEOUT     400 /* in ms */
181
182 #define WMI_TIMEOUT (2 * HZ)
183
184 #define MBOX_YIELD_LIMIT 99
185
186 /* configuration lags */
187 /*
188  * ATH6KL_CONF_IGNORE_ERP_BARKER: Ignore the barker premable in
189  * ERP IE of beacon to determine the short premable support when
190  * sending (Re)Assoc req.
191  * ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN: Don't send the power
192  * module state transition failure events which happen during
193  * scan, to the host.
194  */
195 #define ATH6KL_CONF_IGNORE_ERP_BARKER           BIT(0)
196 #define ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN  BIT(1)
197 #define ATH6KL_CONF_ENABLE_11N                  BIT(2)
198 #define ATH6KL_CONF_ENABLE_TX_BURST             BIT(3)
199 #define ATH6KL_CONF_SUSPEND_CUTPOWER            BIT(4)
200
201 enum wlan_low_pwr_state {
202         WLAN_POWER_STATE_ON,
203         WLAN_POWER_STATE_CUT_PWR,
204         WLAN_POWER_STATE_DEEP_SLEEP,
205         WLAN_POWER_STATE_WOW
206 };
207
208 enum sme_state {
209         SME_DISCONNECTED,
210         SME_CONNECTING,
211         SME_CONNECTED
212 };
213
214 struct skb_hold_q {
215         struct sk_buff *skb;
216         bool is_amsdu;
217         u16 seq_no;
218 };
219
220 struct rxtid {
221         bool aggr;
222         bool progress;
223         bool timer_mon;
224         u16 win_sz;
225         u16 seq_next;
226         u32 hold_q_sz;
227         struct skb_hold_q *hold_q;
228         struct sk_buff_head q;
229         spinlock_t lock;
230 };
231
232 struct rxtid_stats {
233         u32 num_into_aggr;
234         u32 num_dups;
235         u32 num_oow;
236         u32 num_mpdu;
237         u32 num_amsdu;
238         u32 num_delivered;
239         u32 num_timeouts;
240         u32 num_hole;
241         u32 num_bar;
242 };
243
244 struct aggr_info {
245         u8 aggr_sz;
246         u8 timer_scheduled;
247         struct timer_list timer;
248         struct net_device *dev;
249         struct rxtid rx_tid[NUM_OF_TIDS];
250         struct sk_buff_head free_q;
251         struct rxtid_stats stat[NUM_OF_TIDS];
252 };
253
254 struct ath6kl_wep_key {
255         u8 key_index;
256         u8 key_len;
257         u8 key[64];
258 };
259
260 #define ATH6KL_KEY_SEQ_LEN 8
261
262 struct ath6kl_key {
263         u8 key[WLAN_MAX_KEY_LEN];
264         u8 key_len;
265         u8 seq[ATH6KL_KEY_SEQ_LEN];
266         u8 seq_len;
267         u32 cipher;
268 };
269
270 struct ath6kl_node_mapping {
271         u8 mac_addr[ETH_ALEN];
272         u8 ep_id;
273         u8 tx_pend;
274 };
275
276 struct ath6kl_cookie {
277         struct sk_buff *skb;
278         u32 map_no;
279         struct htc_packet htc_pkt;
280         struct ath6kl_cookie *arc_list_next;
281 };
282
283 struct ath6kl_sta {
284         u16 sta_flags;
285         u8 mac[ETH_ALEN];
286         u8 aid;
287         u8 keymgmt;
288         u8 ucipher;
289         u8 auth;
290         u8 wpa_ie[ATH6KL_MAX_IE];
291         struct sk_buff_head psq;
292         spinlock_t psq_lock;
293         u8 apsd_info;
294         struct sk_buff_head apsdq;
295 };
296
297 struct ath6kl_version {
298         u32 target_ver;
299         u32 wlan_ver;
300         u32 abi_ver;
301 };
302
303 struct ath6kl_bmi {
304         u32 cmd_credits;
305         bool done_sent;
306         u8 *cmd_buf;
307         u32 max_data_size;
308         u32 max_cmd_size;
309 };
310
311 struct target_stats {
312         u64 tx_pkt;
313         u64 tx_byte;
314         u64 tx_ucast_pkt;
315         u64 tx_ucast_byte;
316         u64 tx_mcast_pkt;
317         u64 tx_mcast_byte;
318         u64 tx_bcast_pkt;
319         u64 tx_bcast_byte;
320         u64 tx_rts_success_cnt;
321         u64 tx_pkt_per_ac[4];
322
323         u64 tx_err;
324         u64 tx_fail_cnt;
325         u64 tx_retry_cnt;
326         u64 tx_mult_retry_cnt;
327         u64 tx_rts_fail_cnt;
328
329         u64 rx_pkt;
330         u64 rx_byte;
331         u64 rx_ucast_pkt;
332         u64 rx_ucast_byte;
333         u64 rx_mcast_pkt;
334         u64 rx_mcast_byte;
335         u64 rx_bcast_pkt;
336         u64 rx_bcast_byte;
337         u64 rx_frgment_pkt;
338
339         u64 rx_err;
340         u64 rx_crc_err;
341         u64 rx_key_cache_miss;
342         u64 rx_decrypt_err;
343         u64 rx_dupl_frame;
344
345         u64 tkip_local_mic_fail;
346         u64 tkip_cnter_measures_invoked;
347         u64 tkip_replays;
348         u64 tkip_fmt_err;
349         u64 ccmp_fmt_err;
350         u64 ccmp_replays;
351
352         u64 pwr_save_fail_cnt;
353
354         u64 cs_bmiss_cnt;
355         u64 cs_low_rssi_cnt;
356         u64 cs_connect_cnt;
357         u64 cs_discon_cnt;
358
359         s32 tx_ucast_rate;
360         s32 rx_ucast_rate;
361
362         u32 lq_val;
363
364         u32 wow_pkt_dropped;
365         u16 wow_evt_discarded;
366
367         s16 noise_floor_calib;
368         s16 cs_rssi;
369         s16 cs_ave_beacon_rssi;
370         u8 cs_ave_beacon_snr;
371         u8 cs_last_roam_msec;
372         u8 cs_snr;
373
374         u8 wow_host_pkt_wakeups;
375         u8 wow_host_evt_wakeups;
376
377         u32 arp_received;
378         u32 arp_matched;
379         u32 arp_replied;
380 };
381
382 struct ath6kl_mbox_info {
383         u32 htc_addr;
384         u32 htc_ext_addr;
385         u32 htc_ext_sz;
386
387         u32 block_size;
388
389         u32 gmbox_addr;
390
391         u32 gmbox_sz;
392 };
393
394 /*
395  * 802.11i defines an extended IV for use with non-WEP ciphers.
396  * When the EXTIV bit is set in the key id byte an additional
397  * 4 bytes immediately follow the IV for TKIP.  For CCMP the
398  * EXTIV bit is likewise set but the 8 bytes represent the
399  * CCMP header rather than IV+extended-IV.
400  */
401
402 #define ATH6KL_KEYBUF_SIZE 16
403 #define ATH6KL_MICBUF_SIZE (8+8)        /* space for both tx and rx */
404
405 #define ATH6KL_KEY_XMIT  0x01
406 #define ATH6KL_KEY_RECV  0x02
407 #define ATH6KL_KEY_DEFAULT   0x80       /* default xmit key */
408
409 /* Initial group key for AP mode */
410 struct ath6kl_req_key {
411         bool valid;
412         u8 key_index;
413         int key_type;
414         u8 key[WLAN_MAX_KEY_LEN];
415         u8 key_len;
416 };
417
418 enum ath6kl_hif_type {
419         ATH6KL_HIF_TYPE_SDIO,
420         ATH6KL_HIF_TYPE_USB,
421 };
422
423 /* Max number of filters that hw supports */
424 #define ATH6K_MAX_MC_FILTERS_PER_LIST 7
425 struct ath6kl_mc_filter {
426         struct list_head list;
427         char hw_addr[ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE];
428 };
429
430 /*
431  * Driver's maximum limit, note that some firmwares support only one vif
432  * and the runtime (current) limit must be checked from ar->vif_max.
433  */
434 #define ATH6KL_VIF_MAX  3
435
436 /* vif flags info */
437 enum ath6kl_vif_state {
438         CONNECTED,
439         CONNECT_PEND,
440         WMM_ENABLED,
441         NETQ_STOPPED,
442         DTIM_EXPIRED,
443         NETDEV_REGISTERED,
444         CLEAR_BSSFILTER_ON_BEACON,
445         DTIM_PERIOD_AVAIL,
446         WLAN_ENABLED,
447         STATS_UPDATE_PEND,
448 };
449
450 struct ath6kl_vif {
451         struct list_head list;
452         struct wireless_dev wdev;
453         struct net_device *ndev;
454         struct ath6kl *ar;
455         /* Lock to protect vif specific net_stats and flags */
456         spinlock_t if_lock;
457         u8 fw_vif_idx;
458         unsigned long flags;
459         int ssid_len;
460         u8 ssid[IEEE80211_MAX_SSID_LEN];
461         u8 dot11_auth_mode;
462         u8 auth_mode;
463         u8 prwise_crypto;
464         u8 prwise_crypto_len;
465         u8 grp_crypto;
466         u8 grp_crypto_len;
467         u8 def_txkey_index;
468         u8 next_mode;
469         u8 nw_type;
470         u8 bssid[ETH_ALEN];
471         u8 req_bssid[ETH_ALEN];
472         u16 ch_hint;
473         u16 bss_ch;
474         struct ath6kl_wep_key wep_key_list[WMI_MAX_KEY_INDEX + 1];
475         struct ath6kl_key keys[WMI_MAX_KEY_INDEX + 1];
476         struct aggr_info *aggr_cntxt;
477
478         struct timer_list disconnect_timer;
479         struct timer_list sched_scan_timer;
480
481         struct cfg80211_scan_request *scan_req;
482         enum sme_state sme_state;
483         int reconnect_flag;
484         u32 last_roc_id;
485         u32 last_cancel_roc_id;
486         u32 send_action_id;
487         bool probe_req_report;
488         u16 next_chan;
489         u16 assoc_bss_beacon_int;
490         u8 assoc_bss_dtim_period;
491         struct net_device_stats net_stats;
492         struct target_stats target_stats;
493
494         struct list_head mc_filter;
495 };
496
497 #define WOW_LIST_ID             0
498 #define WOW_HOST_REQ_DELAY      500 /* ms */
499
500 #define ATH6KL_SCHED_SCAN_RESULT_DELAY 5000 /* ms */
501
502 /* Flag info */
503 enum ath6kl_dev_state {
504         WMI_ENABLED,
505         WMI_READY,
506         WMI_CTRL_EP_FULL,
507         TESTMODE,
508         DESTROY_IN_PROGRESS,
509         SKIP_SCAN,
510         ROAM_TBL_PEND,
511         FIRST_BOOT,
512 };
513
514 enum ath6kl_state {
515         ATH6KL_STATE_OFF,
516         ATH6KL_STATE_ON,
517         ATH6KL_STATE_DEEPSLEEP,
518         ATH6KL_STATE_CUTPOWER,
519         ATH6KL_STATE_WOW,
520         ATH6KL_STATE_SCHED_SCAN,
521 };
522
523 struct ath6kl {
524         struct device *dev;
525         struct wiphy *wiphy;
526
527         enum ath6kl_state state;
528
529         struct ath6kl_bmi bmi;
530         const struct ath6kl_hif_ops *hif_ops;
531         struct wmi *wmi;
532         int tx_pending[ENDPOINT_MAX];
533         int total_tx_data_pend;
534         struct htc_target *htc_target;
535         enum ath6kl_hif_type hif_type;
536         void *hif_priv;
537         struct list_head vif_list;
538         /* Lock to avoid race in vif_list entries among add/del/traverse */
539         spinlock_t list_lock;
540         u8 num_vif;
541         unsigned int vif_max;
542         u8 max_norm_iface;
543         u8 avail_idx_map;
544         spinlock_t lock;
545         struct semaphore sem;
546         u16 listen_intvl_b;
547         u8 lrssi_roam_threshold;
548         struct ath6kl_version version;
549         u32 target_type;
550         u8 tx_pwr;
551         struct ath6kl_node_mapping node_map[MAX_NODE_NUM];
552         u8 ibss_ps_enable;
553         bool ibss_if_active;
554         u8 node_num;
555         u8 next_ep_id;
556         struct ath6kl_cookie *cookie_list;
557         u32 cookie_count;
558         enum htc_endpoint_id ac2ep_map[WMM_NUM_AC];
559         bool ac_stream_active[WMM_NUM_AC];
560         u8 ac_stream_pri_map[WMM_NUM_AC];
561         u8 hiac_stream_active_pri;
562         u8 ep2ac_map[ENDPOINT_MAX];
563         enum htc_endpoint_id ctrl_ep;
564         struct ath6kl_htc_credit_info credit_state_info;
565         u32 connect_ctrl_flags;
566         u32 user_key_ctrl;
567         u8 usr_bss_filter;
568         struct ath6kl_sta sta_list[AP_MAX_NUM_STA];
569         u8 sta_list_index;
570         struct ath6kl_req_key ap_mode_bkey;
571         struct sk_buff_head mcastpsq;
572         spinlock_t mcastpsq_lock;
573         u8 intra_bss;
574         struct wmi_ap_mode_stat ap_stats;
575         u8 ap_country_code[3];
576         struct list_head amsdu_rx_buffer_queue;
577         u8 rx_meta_ver;
578         enum wlan_low_pwr_state wlan_pwr_state;
579         u8 mac_addr[ETH_ALEN];
580 #define AR_MCAST_FILTER_MAC_ADDR_SIZE  4
581         struct {
582                 void *rx_report;
583                 size_t rx_report_len;
584         } tm;
585
586         struct ath6kl_hw {
587                 u32 id;
588                 const char *name;
589                 u32 dataset_patch_addr;
590                 u32 app_load_addr;
591                 u32 app_start_override_addr;
592                 u32 board_ext_data_addr;
593                 u32 reserved_ram_size;
594                 u32 board_addr;
595                 u32 refclk_hz;
596                 u32 uarttx_pin;
597                 u32 testscript_addr;
598
599                 struct ath6kl_hw_fw {
600                         const char *dir;
601                         const char *otp;
602                         const char *fw;
603                         const char *tcmd;
604                         const char *patch;
605                         const char *utf;
606                         const char *testscript;
607                 } fw;
608
609                 const char *fw_board;
610                 const char *fw_default_board;
611         } hw;
612
613         u16 conf_flags;
614         wait_queue_head_t event_wq;
615         struct ath6kl_mbox_info mbox_info;
616
617         struct ath6kl_cookie cookie_mem[MAX_COOKIE_NUM];
618         unsigned long flag;
619
620         u8 *fw_board;
621         size_t fw_board_len;
622
623         u8 *fw_otp;
624         size_t fw_otp_len;
625
626         u8 *fw;
627         size_t fw_len;
628
629         u8 *fw_patch;
630         size_t fw_patch_len;
631
632         u8 *fw_testscript;
633         size_t fw_testscript_len;
634
635         unsigned int fw_api;
636         unsigned long fw_capabilities[ATH6KL_CAPABILITY_LEN];
637
638         struct workqueue_struct *ath6kl_wq;
639
640         struct dentry *debugfs_phy;
641
642         bool p2p;
643
644 #ifdef CONFIG_ATH6KL_DEBUG
645         struct {
646                 struct circ_buf fwlog_buf;
647                 spinlock_t fwlog_lock;
648                 void *fwlog_tmp;
649                 u32 fwlog_mask;
650                 unsigned int dbgfs_diag_reg;
651                 u32 diag_reg_addr_wr;
652                 u32 diag_reg_val_wr;
653
654                 struct {
655                         unsigned int invalid_rate;
656                 } war_stats;
657
658                 u8 *roam_tbl;
659                 unsigned int roam_tbl_len;
660
661                 u8 keepalive;
662                 u8 disc_timeout;
663         } debug;
664 #endif /* CONFIG_ATH6KL_DEBUG */
665 };
666
667 static inline struct ath6kl *ath6kl_priv(struct net_device *dev)
668 {
669         return ((struct ath6kl_vif *) netdev_priv(dev))->ar;
670 }
671
672 static inline u32 ath6kl_get_hi_item_addr(struct ath6kl *ar,
673                                           u32 item_offset)
674 {
675         u32 addr = 0;
676
677         if (ar->target_type == TARGET_TYPE_AR6003)
678                 addr = ATH6KL_AR6003_HI_START_ADDR + item_offset;
679         else if (ar->target_type == TARGET_TYPE_AR6004)
680                 addr = ATH6KL_AR6004_HI_START_ADDR + item_offset;
681
682         return addr;
683 }
684
685 int ath6kl_configure_target(struct ath6kl *ar);
686 void ath6kl_detect_error(unsigned long ptr);
687 void disconnect_timer_handler(unsigned long ptr);
688 void init_netdev(struct net_device *dev);
689 void ath6kl_cookie_init(struct ath6kl *ar);
690 void ath6kl_cookie_cleanup(struct ath6kl *ar);
691 void ath6kl_rx(struct htc_target *target, struct htc_packet *packet);
692 void ath6kl_tx_complete(void *context, struct list_head *packet_queue);
693 enum htc_send_full_action ath6kl_tx_queue_full(struct htc_target *target,
694                                                struct htc_packet *packet);
695 void ath6kl_stop_txrx(struct ath6kl *ar);
696 void ath6kl_cleanup_amsdu_rxbufs(struct ath6kl *ar);
697 int ath6kl_diag_write32(struct ath6kl *ar, u32 address, __le32 value);
698 int ath6kl_diag_write(struct ath6kl *ar, u32 address, void *data, u32 length);
699 int ath6kl_diag_read32(struct ath6kl *ar, u32 address, u32 *value);
700 int ath6kl_diag_read(struct ath6kl *ar, u32 address, void *data, u32 length);
701 int ath6kl_read_fwlogs(struct ath6kl *ar);
702 void ath6kl_init_profile_info(struct ath6kl_vif *vif);
703 void ath6kl_tx_data_cleanup(struct ath6kl *ar);
704
705 struct ath6kl_cookie *ath6kl_alloc_cookie(struct ath6kl *ar);
706 void ath6kl_free_cookie(struct ath6kl *ar, struct ath6kl_cookie *cookie);
707 int ath6kl_data_tx(struct sk_buff *skb, struct net_device *dev);
708
709 struct aggr_info *aggr_init(struct net_device *dev);
710 void ath6kl_rx_refill(struct htc_target *target,
711                       enum htc_endpoint_id endpoint);
712 void ath6kl_refill_amsdu_rxbufs(struct ath6kl *ar, int count);
713 struct htc_packet *ath6kl_alloc_amsdu_rxbuf(struct htc_target *target,
714                                             enum htc_endpoint_id endpoint,
715                                             int len);
716 void aggr_module_destroy(struct aggr_info *aggr_info);
717 void aggr_reset_state(struct aggr_info *aggr_info);
718
719 struct ath6kl_sta *ath6kl_find_sta(struct ath6kl_vif *vif, u8 * node_addr);
720 struct ath6kl_sta *ath6kl_find_sta_by_aid(struct ath6kl *ar, u8 aid);
721
722 void ath6kl_ready_event(void *devt, u8 * datap, u32 sw_ver, u32 abi_ver);
723 int ath6kl_control_tx(void *devt, struct sk_buff *skb,
724                       enum htc_endpoint_id eid);
725 void ath6kl_connect_event(struct ath6kl_vif *vif, u16 channel,
726                           u8 *bssid, u16 listen_int,
727                           u16 beacon_int, enum network_type net_type,
728                           u8 beacon_ie_len, u8 assoc_req_len,
729                           u8 assoc_resp_len, u8 *assoc_info);
730 void ath6kl_connect_ap_mode_bss(struct ath6kl_vif *vif, u16 channel);
731 void ath6kl_connect_ap_mode_sta(struct ath6kl_vif *vif, u16 aid, u8 *mac_addr,
732                                 u8 keymgmt, u8 ucipher, u8 auth,
733                                 u8 assoc_req_len, u8 *assoc_info, u8 apsd_info);
734 void ath6kl_disconnect_event(struct ath6kl_vif *vif, u8 reason,
735                              u8 *bssid, u8 assoc_resp_len,
736                              u8 *assoc_info, u16 prot_reason_status);
737 void ath6kl_tkip_micerr_event(struct ath6kl_vif *vif, u8 keyid, bool ismcast);
738 void ath6kl_txpwr_rx_evt(void *devt, u8 tx_pwr);
739 void ath6kl_scan_complete_evt(struct ath6kl_vif *vif, int status);
740 void ath6kl_tgt_stats_event(struct ath6kl_vif *vif, u8 *ptr, u32 len);
741 void ath6kl_indicate_tx_activity(void *devt, u8 traffic_class, bool active);
742 enum htc_endpoint_id ath6kl_ac2_endpoint_id(void *devt, u8 ac);
743
744 void ath6kl_pspoll_event(struct ath6kl_vif *vif, u8 aid);
745
746 void ath6kl_dtimexpiry_event(struct ath6kl_vif *vif);
747 void ath6kl_disconnect(struct ath6kl_vif *vif);
748 void aggr_recv_delba_req_evt(struct ath6kl_vif *vif, u8 tid);
749 void aggr_recv_addba_req_evt(struct ath6kl_vif *vif, u8 tid, u16 seq_no,
750                              u8 win_sz);
751 void ath6kl_wakeup_event(void *dev);
752
753 void ath6kl_reset_device(struct ath6kl *ar, u32 target_type,
754                          bool wait_fot_compltn, bool cold_reset);
755 void ath6kl_init_control_info(struct ath6kl_vif *vif);
756 void ath6kl_core_free(struct ath6kl *ar);
757 struct ath6kl_vif *ath6kl_vif_first(struct ath6kl *ar);
758 void ath6kl_cleanup_vif(struct ath6kl_vif *vif, bool wmi_ready);
759 int ath6kl_init_hw_start(struct ath6kl *ar);
760 int ath6kl_init_hw_stop(struct ath6kl *ar);
761 void ath6kl_check_wow_status(struct ath6kl *ar);
762
763 #endif /* CORE_H */