ath6kl: update ar6004 definitions
[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 /* Extra bytes for htc header alignment */
48 #define ATH6KL_HTC_ALIGN_BYTES 3
49
50 /* MAX_HI_COOKIE_NUM are reserved for high priority traffic */
51 #define MAX_DEF_COOKIE_NUM                180
52 #define MAX_HI_COOKIE_NUM                 18    /* 10% of MAX_COOKIE_NUM */
53 #define MAX_COOKIE_NUM                 (MAX_DEF_COOKIE_NUM + MAX_HI_COOKIE_NUM)
54
55 #define MAX_DEFAULT_SEND_QUEUE_DEPTH      (MAX_DEF_COOKIE_NUM / WMM_NUM_AC)
56
57 #define DISCON_TIMER_INTVAL               10000  /* in msec */
58 #define A_DEFAULT_LISTEN_INTERVAL         100
59 #define A_MAX_WOW_LISTEN_INTERVAL         1000
60
61 /* includes also the null byte */
62 #define ATH6KL_FIRMWARE_MAGIC               "QCA-ATH6KL"
63
64 enum ath6kl_fw_ie_type {
65         ATH6KL_FW_IE_FW_VERSION = 0,
66         ATH6KL_FW_IE_TIMESTAMP = 1,
67         ATH6KL_FW_IE_OTP_IMAGE = 2,
68         ATH6KL_FW_IE_FW_IMAGE = 3,
69         ATH6KL_FW_IE_PATCH_IMAGE = 4,
70         ATH6KL_FW_IE_RESERVED_RAM_SIZE = 5,
71         ATH6KL_FW_IE_CAPABILITIES = 6,
72         ATH6KL_FW_IE_PATCH_ADDR = 7,
73 };
74
75 enum ath6kl_fw_capability {
76         ATH6KL_FW_CAPABILITY_HOST_P2P = 0,
77
78         /* this needs to be last */
79         ATH6KL_FW_CAPABILITY_MAX,
80 };
81
82 #define ATH6KL_CAPABILITY_LEN (ALIGN(ATH6KL_FW_CAPABILITY_MAX, 32) / 32)
83
84 struct ath6kl_fw_ie {
85         __le32 id;
86         __le32 len;
87         u8 data[0];
88 };
89
90 /* AR6003 1.0 definitions */
91 #define AR6003_REV1_VERSION                 0x300002ba
92
93 /* AR6003 2.0 definitions */
94 #define AR6003_REV2_VERSION                 0x30000384
95 #define AR6003_REV2_PATCH_DOWNLOAD_ADDRESS  0x57e910
96 #define AR6003_REV2_OTP_FILE                "ath6k/AR6003/hw2.0/otp.bin.z77"
97 #define AR6003_REV2_FIRMWARE_FILE           "ath6k/AR6003/hw2.0/athwlan.bin.z77"
98 #define AR6003_REV2_TCMD_FIRMWARE_FILE      "ath6k/AR6003/hw2.0/athtcmd_ram.bin"
99 #define AR6003_REV2_PATCH_FILE              "ath6k/AR6003/hw2.0/data.patch.bin"
100 #define AR6003_REV2_FIRMWARE_2_FILE         "ath6k/AR6003/hw2.0/fw-2.bin"
101 #define AR6003_REV2_BOARD_DATA_FILE         "ath6k/AR6003/hw2.0/bdata.bin"
102 #define AR6003_REV2_DEFAULT_BOARD_DATA_FILE "ath6k/AR6003/hw2.0/bdata.SD31.bin"
103
104 /* AR6003 3.0 definitions */
105 #define AR6003_REV3_VERSION                 0x30000582
106 #define AR6003_REV3_OTP_FILE                "ath6k/AR6003/hw2.1.1/otp.bin"
107 #define AR6003_REV3_FIRMWARE_FILE           "ath6k/AR6003/hw2.1.1/athwlan.bin"
108 #define AR6003_REV3_TCMD_FIRMWARE_FILE    "ath6k/AR6003/hw2.1.1/athtcmd_ram.bin"
109 #define AR6003_REV3_PATCH_FILE            "ath6k/AR6003/hw2.1.1/data.patch.bin"
110 #define AR6003_REV3_FIRMWARE_2_FILE           "ath6k/AR6003/hw2.1.1/fw-2.bin"
111 #define AR6003_REV3_BOARD_DATA_FILE       "ath6k/AR6003/hw2.1.1/bdata.bin"
112 #define AR6003_REV3_DEFAULT_BOARD_DATA_FILE     \
113         "ath6k/AR6003/hw2.1.1/bdata.SD31.bin"
114
115 /* AR6004 1.0 definitions */
116 #define AR6004_REV1_VERSION                 0x30000623
117 #define AR6004_REV1_FIRMWARE_2_FILE         "ath6k/AR6004/hw1.0/fw-2.bin"
118 #define AR6004_REV1_FIRMWARE_FILE           "ath6k/AR6004/hw1.0/fw.ram.bin"
119 #define AR6004_REV1_BOARD_DATA_FILE         "ath6k/AR6004/hw1.0/bdata.bin"
120 #define AR6004_REV1_DEFAULT_BOARD_DATA_FILE \
121         "ath6k/AR6004/hw1.0/bdata.DB132.bin"
122
123 /* AR6004 1.1 definitions */
124 #define AR6004_REV2_VERSION                 0x30000001
125 #define AR6004_REV2_FIRMWARE_2_FILE         "ath6k/AR6004/hw1.1/fw-2.bin"
126 #define AR6004_REV2_FIRMWARE_FILE           "ath6k/AR6004/hw1.1/fw.ram.bin"
127 #define AR6004_REV2_BOARD_DATA_FILE         "ath6k/AR6004/hw1.1/bdata.bin"
128 #define AR6004_REV2_DEFAULT_BOARD_DATA_FILE \
129         "ath6k/AR6004/hw1.1/bdata.DB132.bin"
130
131 /* Per STA data, used in AP mode */
132 #define STA_PS_AWAKE            BIT(0)
133 #define STA_PS_SLEEP            BIT(1)
134 #define STA_PS_POLLED           BIT(2)
135
136 /* HTC TX packet tagging definitions */
137 #define ATH6KL_CONTROL_PKT_TAG    HTC_TX_PACKET_TAG_USER_DEFINED
138 #define ATH6KL_DATA_PKT_TAG       (ATH6KL_CONTROL_PKT_TAG + 1)
139
140 #define AR6003_CUST_DATA_SIZE 16
141
142 #define AGGR_WIN_IDX(x, y)          ((x) % (y))
143 #define AGGR_INCR_IDX(x, y)         AGGR_WIN_IDX(((x) + 1), (y))
144 #define AGGR_DCRM_IDX(x, y)         AGGR_WIN_IDX(((x) - 1), (y))
145 #define ATH6KL_MAX_SEQ_NO               0xFFF
146 #define ATH6KL_NEXT_SEQ_NO(x)           (((x) + 1) & ATH6KL_MAX_SEQ_NO)
147
148 #define NUM_OF_TIDS         8
149 #define AGGR_SZ_DEFAULT     8
150
151 #define AGGR_WIN_SZ_MIN     2
152 #define AGGR_WIN_SZ_MAX     8
153
154 #define TID_WINDOW_SZ(_x)   ((_x) << 1)
155
156 #define AGGR_NUM_OF_FREE_NETBUFS    16
157
158 #define AGGR_RX_TIMEOUT     400 /* in ms */
159
160 #define WMI_TIMEOUT (2 * HZ)
161
162 #define MBOX_YIELD_LIMIT 99
163
164 /* configuration lags */
165 /*
166  * ATH6KL_CONF_IGNORE_ERP_BARKER: Ignore the barker premable in
167  * ERP IE of beacon to determine the short premable support when
168  * sending (Re)Assoc req.
169  * ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN: Don't send the power
170  * module state transition failure events which happen during
171  * scan, to the host.
172  */
173 #define ATH6KL_CONF_IGNORE_ERP_BARKER           BIT(0)
174 #define ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN  BIT(1)
175 #define ATH6KL_CONF_ENABLE_11N                  BIT(2)
176 #define ATH6KL_CONF_ENABLE_TX_BURST             BIT(3)
177 #define ATH6KL_CONF_SUSPEND_CUTPOWER            BIT(4)
178
179 enum wlan_low_pwr_state {
180         WLAN_POWER_STATE_ON,
181         WLAN_POWER_STATE_CUT_PWR,
182         WLAN_POWER_STATE_DEEP_SLEEP,
183         WLAN_POWER_STATE_WOW
184 };
185
186 enum sme_state {
187         SME_DISCONNECTED,
188         SME_CONNECTING,
189         SME_CONNECTED
190 };
191
192 struct skb_hold_q {
193         struct sk_buff *skb;
194         bool is_amsdu;
195         u16 seq_no;
196 };
197
198 struct rxtid {
199         bool aggr;
200         bool progress;
201         bool timer_mon;
202         u16 win_sz;
203         u16 seq_next;
204         u32 hold_q_sz;
205         struct skb_hold_q *hold_q;
206         struct sk_buff_head q;
207         spinlock_t lock;
208 };
209
210 struct rxtid_stats {
211         u32 num_into_aggr;
212         u32 num_dups;
213         u32 num_oow;
214         u32 num_mpdu;
215         u32 num_amsdu;
216         u32 num_delivered;
217         u32 num_timeouts;
218         u32 num_hole;
219         u32 num_bar;
220 };
221
222 struct aggr_info {
223         u8 aggr_sz;
224         u8 timer_scheduled;
225         struct timer_list timer;
226         struct net_device *dev;
227         struct rxtid rx_tid[NUM_OF_TIDS];
228         struct sk_buff_head free_q;
229         struct rxtid_stats stat[NUM_OF_TIDS];
230 };
231
232 struct ath6kl_wep_key {
233         u8 key_index;
234         u8 key_len;
235         u8 key[64];
236 };
237
238 #define ATH6KL_KEY_SEQ_LEN 8
239
240 struct ath6kl_key {
241         u8 key[WLAN_MAX_KEY_LEN];
242         u8 key_len;
243         u8 seq[ATH6KL_KEY_SEQ_LEN];
244         u8 seq_len;
245         u32 cipher;
246 };
247
248 struct ath6kl_node_mapping {
249         u8 mac_addr[ETH_ALEN];
250         u8 ep_id;
251         u8 tx_pend;
252 };
253
254 struct ath6kl_cookie {
255         struct sk_buff *skb;
256         u32 map_no;
257         struct htc_packet htc_pkt;
258         struct ath6kl_cookie *arc_list_next;
259 };
260
261 struct ath6kl_sta {
262         u16 sta_flags;
263         u8 mac[ETH_ALEN];
264         u8 aid;
265         u8 keymgmt;
266         u8 ucipher;
267         u8 auth;
268         u8 wpa_ie[ATH6KL_MAX_IE];
269         struct sk_buff_head psq;
270         spinlock_t psq_lock;
271 };
272
273 struct ath6kl_version {
274         u32 target_ver;
275         u32 wlan_ver;
276         u32 abi_ver;
277 };
278
279 struct ath6kl_bmi {
280         u32 cmd_credits;
281         bool done_sent;
282         u8 *cmd_buf;
283         u32 max_data_size;
284         u32 max_cmd_size;
285 };
286
287 struct target_stats {
288         u64 tx_pkt;
289         u64 tx_byte;
290         u64 tx_ucast_pkt;
291         u64 tx_ucast_byte;
292         u64 tx_mcast_pkt;
293         u64 tx_mcast_byte;
294         u64 tx_bcast_pkt;
295         u64 tx_bcast_byte;
296         u64 tx_rts_success_cnt;
297         u64 tx_pkt_per_ac[4];
298
299         u64 tx_err;
300         u64 tx_fail_cnt;
301         u64 tx_retry_cnt;
302         u64 tx_mult_retry_cnt;
303         u64 tx_rts_fail_cnt;
304
305         u64 rx_pkt;
306         u64 rx_byte;
307         u64 rx_ucast_pkt;
308         u64 rx_ucast_byte;
309         u64 rx_mcast_pkt;
310         u64 rx_mcast_byte;
311         u64 rx_bcast_pkt;
312         u64 rx_bcast_byte;
313         u64 rx_frgment_pkt;
314
315         u64 rx_err;
316         u64 rx_crc_err;
317         u64 rx_key_cache_miss;
318         u64 rx_decrypt_err;
319         u64 rx_dupl_frame;
320
321         u64 tkip_local_mic_fail;
322         u64 tkip_cnter_measures_invoked;
323         u64 tkip_replays;
324         u64 tkip_fmt_err;
325         u64 ccmp_fmt_err;
326         u64 ccmp_replays;
327
328         u64 pwr_save_fail_cnt;
329
330         u64 cs_bmiss_cnt;
331         u64 cs_low_rssi_cnt;
332         u64 cs_connect_cnt;
333         u64 cs_discon_cnt;
334
335         s32 tx_ucast_rate;
336         s32 rx_ucast_rate;
337
338         u32 lq_val;
339
340         u32 wow_pkt_dropped;
341         u16 wow_evt_discarded;
342
343         s16 noise_floor_calib;
344         s16 cs_rssi;
345         s16 cs_ave_beacon_rssi;
346         u8 cs_ave_beacon_snr;
347         u8 cs_last_roam_msec;
348         u8 cs_snr;
349
350         u8 wow_host_pkt_wakeups;
351         u8 wow_host_evt_wakeups;
352
353         u32 arp_received;
354         u32 arp_matched;
355         u32 arp_replied;
356 };
357
358 struct ath6kl_mbox_info {
359         u32 htc_addr;
360         u32 htc_ext_addr;
361         u32 htc_ext_sz;
362
363         u32 block_size;
364
365         u32 gmbox_addr;
366
367         u32 gmbox_sz;
368 };
369
370 /*
371  * 802.11i defines an extended IV for use with non-WEP ciphers.
372  * When the EXTIV bit is set in the key id byte an additional
373  * 4 bytes immediately follow the IV for TKIP.  For CCMP the
374  * EXTIV bit is likewise set but the 8 bytes represent the
375  * CCMP header rather than IV+extended-IV.
376  */
377
378 #define ATH6KL_KEYBUF_SIZE 16
379 #define ATH6KL_MICBUF_SIZE (8+8)        /* space for both tx and rx */
380
381 #define ATH6KL_KEY_XMIT  0x01
382 #define ATH6KL_KEY_RECV  0x02
383 #define ATH6KL_KEY_DEFAULT   0x80       /* default xmit key */
384
385 /* Initial group key for AP mode */
386 struct ath6kl_req_key {
387         bool valid;
388         u8 key_index;
389         int key_type;
390         u8 key[WLAN_MAX_KEY_LEN];
391         u8 key_len;
392 };
393
394 #define MAX_NUM_VIF     1
395
396 /* vif flags info */
397 enum ath6kl_vif_state {
398         CONNECTED,
399         CONNECT_PEND,
400         WMM_ENABLED,
401         NETQ_STOPPED,
402         DTIM_EXPIRED,
403         NETDEV_REGISTERED,
404         CLEAR_BSSFILTER_ON_BEACON,
405         DTIM_PERIOD_AVAIL,
406         WLAN_ENABLED,
407         STATS_UPDATE_PEND,
408 };
409
410 struct ath6kl_vif {
411         struct list_head list;
412         struct wireless_dev wdev;
413         struct net_device *ndev;
414         struct ath6kl *ar;
415         /* Lock to protect vif specific net_stats and flags */
416         spinlock_t if_lock;
417         u8 fw_vif_idx;
418         unsigned long flags;
419         int ssid_len;
420         u8 ssid[IEEE80211_MAX_SSID_LEN];
421         u8 dot11_auth_mode;
422         u8 auth_mode;
423         u8 prwise_crypto;
424         u8 prwise_crypto_len;
425         u8 grp_crypto;
426         u8 grp_crypto_len;
427         u8 def_txkey_index;
428         u8 next_mode;
429         u8 nw_type;
430         u8 bssid[ETH_ALEN];
431         u8 req_bssid[ETH_ALEN];
432         u16 ch_hint;
433         u16 bss_ch;
434         struct ath6kl_wep_key wep_key_list[WMI_MAX_KEY_INDEX + 1];
435         struct ath6kl_key keys[WMI_MAX_KEY_INDEX + 1];
436         struct aggr_info *aggr_cntxt;
437         struct timer_list disconnect_timer;
438         struct cfg80211_scan_request *scan_req;
439         enum sme_state sme_state;
440         int reconnect_flag;
441         u32 last_roc_id;
442         u32 last_cancel_roc_id;
443         u32 send_action_id;
444         bool probe_req_report;
445         u16 next_chan;
446         u16 assoc_bss_beacon_int;
447         u8 assoc_bss_dtim_period;
448         struct net_device_stats net_stats;
449         struct target_stats target_stats;
450 };
451
452 #define WOW_LIST_ID             0
453 #define WOW_HOST_REQ_DELAY      500 /* ms */
454
455 /* Flag info */
456 enum ath6kl_dev_state {
457         WMI_ENABLED,
458         WMI_READY,
459         WMI_CTRL_EP_FULL,
460         TESTMODE,
461         DESTROY_IN_PROGRESS,
462         SKIP_SCAN,
463         ROAM_TBL_PEND,
464         FIRST_BOOT,
465 };
466
467 enum ath6kl_state {
468         ATH6KL_STATE_OFF,
469         ATH6KL_STATE_ON,
470         ATH6KL_STATE_DEEPSLEEP,
471         ATH6KL_STATE_CUTPOWER,
472         ATH6KL_STATE_WOW,
473 };
474
475 struct ath6kl {
476         struct device *dev;
477         struct wiphy *wiphy;
478
479         enum ath6kl_state state;
480
481         struct ath6kl_bmi bmi;
482         const struct ath6kl_hif_ops *hif_ops;
483         struct wmi *wmi;
484         int tx_pending[ENDPOINT_MAX];
485         int total_tx_data_pend;
486         struct htc_target *htc_target;
487         void *hif_priv;
488         struct list_head vif_list;
489         /* Lock to avoid race in vif_list entries among add/del/traverse */
490         spinlock_t list_lock;
491         u8 num_vif;
492         u8 max_norm_iface;
493         u8 avail_idx_map;
494         spinlock_t lock;
495         struct semaphore sem;
496         u16 listen_intvl_b;
497         u16 listen_intvl_t;
498         u8 lrssi_roam_threshold;
499         struct ath6kl_version version;
500         u32 target_type;
501         u8 tx_pwr;
502         struct ath6kl_node_mapping node_map[MAX_NODE_NUM];
503         u8 ibss_ps_enable;
504         bool ibss_if_active;
505         u8 node_num;
506         u8 next_ep_id;
507         struct ath6kl_cookie *cookie_list;
508         u32 cookie_count;
509         enum htc_endpoint_id ac2ep_map[WMM_NUM_AC];
510         bool ac_stream_active[WMM_NUM_AC];
511         u8 ac_stream_pri_map[WMM_NUM_AC];
512         u8 hiac_stream_active_pri;
513         u8 ep2ac_map[ENDPOINT_MAX];
514         enum htc_endpoint_id ctrl_ep;
515         struct ath6kl_htc_credit_info credit_state_info;
516         u32 connect_ctrl_flags;
517         u32 user_key_ctrl;
518         u8 usr_bss_filter;
519         struct ath6kl_sta sta_list[AP_MAX_NUM_STA];
520         u8 sta_list_index;
521         struct ath6kl_req_key ap_mode_bkey;
522         struct sk_buff_head mcastpsq;
523         spinlock_t mcastpsq_lock;
524         u8 intra_bss;
525         struct wmi_ap_mode_stat ap_stats;
526         u8 ap_country_code[3];
527         struct list_head amsdu_rx_buffer_queue;
528         u8 rx_meta_ver;
529         enum wlan_low_pwr_state wlan_pwr_state;
530         struct wmi_scan_params_cmd sc_params;
531         u8 mac_addr[ETH_ALEN];
532 #define AR_MCAST_FILTER_MAC_ADDR_SIZE  4
533         struct {
534                 void *rx_report;
535                 size_t rx_report_len;
536         } tm;
537
538         struct {
539                 u32 dataset_patch_addr;
540                 u32 app_load_addr;
541                 u32 app_start_override_addr;
542                 u32 board_ext_data_addr;
543                 u32 reserved_ram_size;
544         } hw;
545
546         u16 conf_flags;
547         wait_queue_head_t event_wq;
548         struct ath6kl_mbox_info mbox_info;
549
550         struct ath6kl_cookie cookie_mem[MAX_COOKIE_NUM];
551         unsigned long flag;
552
553         u8 *fw_board;
554         size_t fw_board_len;
555
556         u8 *fw_otp;
557         size_t fw_otp_len;
558
559         u8 *fw;
560         size_t fw_len;
561
562         u8 *fw_patch;
563         size_t fw_patch_len;
564
565         unsigned long fw_capabilities[ATH6KL_CAPABILITY_LEN];
566
567         struct workqueue_struct *ath6kl_wq;
568
569         struct dentry *debugfs_phy;
570
571         bool p2p;
572
573 #ifdef CONFIG_ATH6KL_DEBUG
574         struct {
575                 struct circ_buf fwlog_buf;
576                 spinlock_t fwlog_lock;
577                 void *fwlog_tmp;
578                 u32 fwlog_mask;
579                 unsigned int dbgfs_diag_reg;
580                 u32 diag_reg_addr_wr;
581                 u32 diag_reg_val_wr;
582
583                 struct {
584                         unsigned int invalid_rate;
585                 } war_stats;
586
587                 u8 *roam_tbl;
588                 unsigned int roam_tbl_len;
589
590                 u8 keepalive;
591                 u8 disc_timeout;
592         } debug;
593 #endif /* CONFIG_ATH6KL_DEBUG */
594 };
595
596 static inline void *ath6kl_priv(struct net_device *dev)
597 {
598         return ((struct ath6kl_vif *) netdev_priv(dev))->ar;
599 }
600
601 static inline u32 ath6kl_get_hi_item_addr(struct ath6kl *ar,
602                                           u32 item_offset)
603 {
604         u32 addr = 0;
605
606         if (ar->target_type == TARGET_TYPE_AR6003)
607                 addr = ATH6KL_AR6003_HI_START_ADDR + item_offset;
608         else if (ar->target_type == TARGET_TYPE_AR6004)
609                 addr = ATH6KL_AR6004_HI_START_ADDR + item_offset;
610
611         return addr;
612 }
613
614 int ath6kl_configure_target(struct ath6kl *ar);
615 void ath6kl_detect_error(unsigned long ptr);
616 void disconnect_timer_handler(unsigned long ptr);
617 void init_netdev(struct net_device *dev);
618 void ath6kl_cookie_init(struct ath6kl *ar);
619 void ath6kl_cookie_cleanup(struct ath6kl *ar);
620 void ath6kl_rx(struct htc_target *target, struct htc_packet *packet);
621 void ath6kl_tx_complete(void *context, struct list_head *packet_queue);
622 enum htc_send_full_action ath6kl_tx_queue_full(struct htc_target *target,
623                                                struct htc_packet *packet);
624 void ath6kl_stop_txrx(struct ath6kl *ar);
625 void ath6kl_cleanup_amsdu_rxbufs(struct ath6kl *ar);
626 int ath6kl_diag_write32(struct ath6kl *ar, u32 address, __le32 value);
627 int ath6kl_diag_write(struct ath6kl *ar, u32 address, void *data, u32 length);
628 int ath6kl_diag_read32(struct ath6kl *ar, u32 address, u32 *value);
629 int ath6kl_diag_read(struct ath6kl *ar, u32 address, void *data, u32 length);
630 int ath6kl_read_fwlogs(struct ath6kl *ar);
631 void ath6kl_init_profile_info(struct ath6kl_vif *vif);
632 void ath6kl_tx_data_cleanup(struct ath6kl *ar);
633
634 struct ath6kl_cookie *ath6kl_alloc_cookie(struct ath6kl *ar);
635 void ath6kl_free_cookie(struct ath6kl *ar, struct ath6kl_cookie *cookie);
636 int ath6kl_data_tx(struct sk_buff *skb, struct net_device *dev);
637
638 struct aggr_info *aggr_init(struct net_device *dev);
639 void ath6kl_rx_refill(struct htc_target *target,
640                       enum htc_endpoint_id endpoint);
641 void ath6kl_refill_amsdu_rxbufs(struct ath6kl *ar, int count);
642 struct htc_packet *ath6kl_alloc_amsdu_rxbuf(struct htc_target *target,
643                                             enum htc_endpoint_id endpoint,
644                                             int len);
645 void aggr_module_destroy(struct aggr_info *aggr_info);
646 void aggr_reset_state(struct aggr_info *aggr_info);
647
648 struct ath6kl_sta *ath6kl_find_sta(struct ath6kl_vif *vif, u8 * node_addr);
649 struct ath6kl_sta *ath6kl_find_sta_by_aid(struct ath6kl *ar, u8 aid);
650
651 void ath6kl_ready_event(void *devt, u8 * datap, u32 sw_ver, u32 abi_ver);
652 int ath6kl_control_tx(void *devt, struct sk_buff *skb,
653                       enum htc_endpoint_id eid);
654 void ath6kl_connect_event(struct ath6kl_vif *vif, u16 channel,
655                           u8 *bssid, u16 listen_int,
656                           u16 beacon_int, enum network_type net_type,
657                           u8 beacon_ie_len, u8 assoc_req_len,
658                           u8 assoc_resp_len, u8 *assoc_info);
659 void ath6kl_connect_ap_mode_bss(struct ath6kl_vif *vif, u16 channel);
660 void ath6kl_connect_ap_mode_sta(struct ath6kl_vif *vif, u16 aid, u8 *mac_addr,
661                                 u8 keymgmt, u8 ucipher, u8 auth,
662                                 u8 assoc_req_len, u8 *assoc_info);
663 void ath6kl_disconnect_event(struct ath6kl_vif *vif, u8 reason,
664                              u8 *bssid, u8 assoc_resp_len,
665                              u8 *assoc_info, u16 prot_reason_status);
666 void ath6kl_tkip_micerr_event(struct ath6kl_vif *vif, u8 keyid, bool ismcast);
667 void ath6kl_txpwr_rx_evt(void *devt, u8 tx_pwr);
668 void ath6kl_scan_complete_evt(struct ath6kl_vif *vif, int status);
669 void ath6kl_tgt_stats_event(struct ath6kl_vif *vif, u8 *ptr, u32 len);
670 void ath6kl_indicate_tx_activity(void *devt, u8 traffic_class, bool active);
671 enum htc_endpoint_id ath6kl_ac2_endpoint_id(void *devt, u8 ac);
672
673 void ath6kl_pspoll_event(struct ath6kl_vif *vif, u8 aid);
674
675 void ath6kl_dtimexpiry_event(struct ath6kl_vif *vif);
676 void ath6kl_disconnect(struct ath6kl_vif *vif);
677 void aggr_recv_delba_req_evt(struct ath6kl_vif *vif, u8 tid);
678 void aggr_recv_addba_req_evt(struct ath6kl_vif *vif, u8 tid, u16 seq_no,
679                              u8 win_sz);
680 void ath6kl_wakeup_event(void *dev);
681
682 void ath6kl_reset_device(struct ath6kl *ar, u32 target_type,
683                          bool wait_fot_compltn, bool cold_reset);
684 void ath6kl_init_control_info(struct ath6kl_vif *vif);
685 void ath6kl_deinit_if_data(struct ath6kl_vif *vif);
686 void ath6kl_core_free(struct ath6kl *ar);
687 struct ath6kl_vif *ath6kl_vif_first(struct ath6kl *ar);
688 void ath6kl_cleanup_vif(struct ath6kl_vif *vif, bool wmi_ready);
689 int ath6kl_init_hw_start(struct ath6kl *ar);
690 int ath6kl_init_hw_stop(struct ath6kl *ar);
691 void ath6kl_check_wow_status(struct ath6kl *ar);
692
693 #endif /* CORE_H */