blob: cc5d0a4b9da217b54fbe4589c38e8e61523a8562 [file] [log] [blame]
Sujithfb9987d2010-03-17 14:25:25 +05301/*
2 * Copyright (c) 2010 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 HTC_H
18#define HTC_H
19
20#include <linux/module.h>
21#include <linux/usb.h>
22#include <linux/firmware.h>
23#include <linux/skbuff.h>
24#include <linux/netdevice.h>
25#include <linux/leds.h>
Tejun Heo617f3d02010-03-30 02:52:38 +090026#include <linux/slab.h>
Sujithfb9987d2010-03-17 14:25:25 +053027#include <net/mac80211.h>
28
29#include "common.h"
30#include "htc_hst.h"
31#include "hif_usb.h"
32#include "wmi.h"
33
34#define ATH_STA_SHORT_CALINTERVAL 1000 /* 1 second */
Sujith Manoharana2362542011-02-21 07:49:38 +053035#define ATH_AP_SHORT_CALINTERVAL 100 /* 100 ms */
Sujithfb9987d2010-03-17 14:25:25 +053036#define ATH_ANI_POLLINTERVAL 100 /* 100 ms */
37#define ATH_LONG_CALINTERVAL 30000 /* 30 seconds */
38#define ATH_RESTART_CALINTERVAL 1200000 /* 20 minutes */
39
40#define ATH_DEFAULT_BMISS_LIMIT 10
41#define IEEE80211_MS_TO_TU(x) (((x) * 1000) / 1024)
42#define TSF_TO_TU(_h, _l) \
43 ((((u32)(_h)) << 22) | (((u32)(_l)) >> 10))
44
45extern struct ieee80211_ops ath9k_htc_ops;
Sujithe1572c52010-03-24 13:42:13 +053046extern int htc_modparam_nohwcrypt;
Sujithfb9987d2010-03-17 14:25:25 +053047
48enum htc_phymode {
49 HTC_MODE_AUTO = 0,
50 HTC_MODE_11A = 1,
51 HTC_MODE_11B = 2,
52 HTC_MODE_11G = 3,
53 HTC_MODE_FH = 4,
54 HTC_MODE_TURBO_A = 5,
55 HTC_MODE_TURBO_G = 6,
56 HTC_MODE_11NA = 7,
57 HTC_MODE_11NG = 8
58};
59
60enum htc_opmode {
61 HTC_M_STA = 1,
62 HTC_M_IBSS = 0,
63 HTC_M_AHDEMO = 3,
64 HTC_M_HOSTAP = 6,
65 HTC_M_MONITOR = 8,
66 HTC_M_WDS = 2
67};
68
69#define ATH9K_HTC_HDRSPACE sizeof(struct htc_frame_hdr)
Sujith Manoharan40dc9e42011-04-13 11:24:31 +053070
71#define ATH9K_HTC_AMPDU 1
Sujithfb9987d2010-03-17 14:25:25 +053072#define ATH9K_HTC_NORMAL 2
Sujith Manoharan40dc9e42011-04-13 11:24:31 +053073#define ATH9K_HTC_BEACON 3
74#define ATH9K_HTC_MGMT 4
Sujithfb9987d2010-03-17 14:25:25 +053075
76#define ATH9K_HTC_TX_CTSONLY 0x1
77#define ATH9K_HTC_TX_RTSCTS 0x2
78#define ATH9K_HTC_TX_USE_MIN_RATE 0x100
79
80struct tx_frame_hdr {
81 u8 data_type;
82 u8 node_idx;
83 u8 vif_idx;
84 u8 tidno;
Rajkumar Manoharandc738cb2011-01-16 10:56:37 +053085 __be32 flags; /* ATH9K_HTC_TX_* */
Sujithfb9987d2010-03-17 14:25:25 +053086 u8 key_type;
87 u8 keyix;
Sujith Manoharane8e38602011-04-13 11:25:12 +053088 u8 cookie;
89 u8 pad;
Sujithfb9987d2010-03-17 14:25:25 +053090} __packed;
91
92struct tx_mgmt_hdr {
93 u8 node_idx;
94 u8 vif_idx;
95 u8 tidno;
96 u8 flags;
97 u8 key_type;
98 u8 keyix;
Sujith Manoharane8e38602011-04-13 11:25:12 +053099 u8 cookie;
100 u8 pad;
Sujithfb9987d2010-03-17 14:25:25 +0530101} __packed;
102
103struct tx_beacon_header {
Sujithfb9987d2010-03-17 14:25:25 +0530104 u8 vif_index;
Sujith Manoharan1c165c92011-04-13 11:22:59 +0530105 u8 len_changed;
Sujithfb9987d2010-03-17 14:25:25 +0530106 u16 rev;
107} __packed;
108
Sujithfb9987d2010-03-17 14:25:25 +0530109struct ath9k_htc_cap_target {
110 u32 flags;
111 u32 flags_ext;
112 u32 ampdu_limit;
113 u8 ampdu_subframes;
114 u8 tx_chainmask;
115 u8 tx_chainmask_legacy;
116 u8 rtscts_ratecode;
117 u8 protmode;
Sujith Manoharan0a8579f2011-04-13 11:24:49 +0530118 u8 pad;
Sujithfb9987d2010-03-17 14:25:25 +0530119} __packed;
120
121struct ath9k_htc_target_vif {
122 u8 index;
Sujith Manoharane4c62502011-04-13 11:24:43 +0530123 u8 opmode;
Sujithfb9987d2010-03-17 14:25:25 +0530124 u8 myaddr[ETH_ALEN];
Sujithfb9987d2010-03-17 14:25:25 +0530125 u8 ath_cap;
Sujith Manoharane4c62502011-04-13 11:24:43 +0530126 __be16 rtsthreshold;
127 u8 pad;
Sujithfb9987d2010-03-17 14:25:25 +0530128} __packed;
129
130#define ATH_HTC_STA_AUTH 0x0001
131#define ATH_HTC_STA_QOS 0x0002
132#define ATH_HTC_STA_ERP 0x0004
133#define ATH_HTC_STA_HT 0x0008
134
Sujithfb9987d2010-03-17 14:25:25 +0530135struct ath9k_htc_target_sta {
Sujithfb9987d2010-03-17 14:25:25 +0530136 u8 macaddr[ETH_ALEN];
137 u8 bssid[ETH_ALEN];
138 u8 sta_index;
139 u8 vif_index;
Sujithfb9987d2010-03-17 14:25:25 +0530140 u8 is_vif_sta;
Sujith Manoharanb97c57f2011-04-13 11:24:37 +0530141 __be16 flags; /* ATH_HTC_STA_* */
142 __be16 htcap;
143 __be16 maxampdu;
144 u8 pad;
Sujithfb9987d2010-03-17 14:25:25 +0530145} __packed;
146
147struct ath9k_htc_target_aggr {
148 u8 sta_index;
149 u8 tidno;
150 u8 aggr_enable;
151 u8 padding;
152} __packed;
153
154#define ATH_HTC_RATE_MAX 30
155
156#define WLAN_RC_DS_FLAG 0x01
157#define WLAN_RC_40_FLAG 0x02
158#define WLAN_RC_SGI_FLAG 0x04
159#define WLAN_RC_HT_FLAG 0x08
160
161struct ath9k_htc_rateset {
162 u8 rs_nrates;
163 u8 rs_rates[ATH_HTC_RATE_MAX];
164};
165
166struct ath9k_htc_rate {
167 struct ath9k_htc_rateset legacy_rates;
168 struct ath9k_htc_rateset ht_rates;
169} __packed;
170
171struct ath9k_htc_target_rate {
172 u8 sta_index;
173 u8 isnew;
Sujith7f1f5a02010-04-16 11:54:03 +0530174 __be32 capflags;
Sujithfb9987d2010-03-17 14:25:25 +0530175 struct ath9k_htc_rate rates;
176};
177
Sujith Manoharanfbc29d62011-04-13 11:26:58 +0530178struct ath9k_htc_target_int_stats {
179 __be32 rx;
180 __be32 rxorn;
181 __be32 rxeol;
182 __be32 txurn;
183 __be32 txto;
184 __be32 cst;
185} __packed;
186
187struct ath9k_htc_target_tx_stats {
188 __be32 xretries;
189 __be32 fifoerr;
190 __be32 filtered;
191 __be32 timer_exp;
192 __be32 shortretries;
193 __be32 longretries;
194 __be32 qnull;
195 __be32 encap_fail;
196 __be32 nobuf;
197} __packed;
198
199struct ath9k_htc_target_rx_stats {
200 __be32 nobuf;
201 __be32 host_send;
202 __be32 host_done;
Sujithfb9987d2010-03-17 14:25:25 +0530203} __packed;
204
Sujith Manoharana97b4782011-02-21 07:48:00 +0530205#define ATH9K_HTC_MAX_VIF 2
Sujith Manoharanda8d9d92011-02-21 07:49:23 +0530206#define ATH9K_HTC_MAX_BCN_VIF 2
Sujith Manoharana97b4782011-02-21 07:48:00 +0530207
Sujith Manoharan0df83592011-02-21 07:49:15 +0530208#define INC_VIF(_priv, _type) do { \
209 switch (_type) { \
210 case NL80211_IFTYPE_STATION: \
211 _priv->num_sta_vif++; \
212 break; \
213 case NL80211_IFTYPE_ADHOC: \
214 _priv->num_ibss_vif++; \
215 break; \
Sujith Manoharanda8d9d92011-02-21 07:49:23 +0530216 case NL80211_IFTYPE_AP: \
217 _priv->num_ap_vif++; \
218 break; \
Sujith Manoharan0df83592011-02-21 07:49:15 +0530219 default: \
220 break; \
221 } \
222 } while (0)
223
224#define DEC_VIF(_priv, _type) do { \
225 switch (_type) { \
226 case NL80211_IFTYPE_STATION: \
227 _priv->num_sta_vif--; \
228 break; \
229 case NL80211_IFTYPE_ADHOC: \
230 _priv->num_ibss_vif--; \
231 break; \
Sujith Manoharanda8d9d92011-02-21 07:49:23 +0530232 case NL80211_IFTYPE_AP: \
233 _priv->num_ap_vif--; \
234 break; \
Sujith Manoharan0df83592011-02-21 07:49:15 +0530235 default: \
236 break; \
237 } \
238 } while (0)
239
Sujithfb9987d2010-03-17 14:25:25 +0530240struct ath9k_htc_vif {
241 u8 index;
Sujith Manoharan9a3d0252011-02-21 07:48:53 +0530242 u16 seq_no;
Sujith Manoharane7a2a4f2011-02-27 09:20:40 +0530243 bool beacon_configured;
Sujith Manoharan832f6a12011-04-13 11:23:08 +0530244 int bslot;
Sujith Manoharan9b674a02011-04-13 11:23:17 +0530245 __le64 tsfadjust;
Sujithfb9987d2010-03-17 14:25:25 +0530246};
247
Sujith Manoharan585895c2011-02-21 07:48:46 +0530248struct ath9k_vif_iter_data {
249 const u8 *hw_macaddr;
250 u8 mask[ETH_ALEN];
251};
252
Sujithfb9987d2010-03-17 14:25:25 +0530253#define ATH9K_HTC_MAX_STA 8
254#define ATH9K_HTC_MAX_TID 8
255
256enum tid_aggr_state {
257 AGGR_STOP = 0,
258 AGGR_PROGRESS,
259 AGGR_START,
260 AGGR_OPERATIONAL
261};
262
263struct ath9k_htc_sta {
264 u8 index;
265 enum tid_aggr_state tid_state[ATH9K_HTC_MAX_TID];
266};
267
Sujithfb9987d2010-03-17 14:25:25 +0530268#define ATH9K_HTC_RXBUF 256
269#define HTC_RX_FRAME_HEADER_SIZE 40
270
271struct ath9k_htc_rxbuf {
272 bool in_process;
273 struct sk_buff *skb;
274 struct ath_htc_rx_status rxstatus;
275 struct list_head list;
276};
277
278struct ath9k_htc_rx {
279 int last_rssi; /* FIXME: per-STA */
280 struct list_head rxbuf;
281 spinlock_t rxbuflock;
282};
283
Sujith Manoharan859c3ca2011-04-13 11:26:39 +0530284#define ATH9K_HTC_TX_CLEANUP_INTERVAL 50 /* ms */
285#define ATH9K_HTC_TX_TIMEOUT_INTERVAL 2500 /* ms */
286#define ATH9K_HTC_TX_RESERVE 10
287#define ATH9K_HTC_TX_TIMEOUT_COUNT 20
Sujith Manoharan8e86a542011-04-13 11:25:29 +0530288#define ATH9K_HTC_TX_THRESHOLD (MAX_TX_BUF_NUM - ATH9K_HTC_TX_RESERVE)
Sujith Manoharan658ef042011-04-13 11:25:00 +0530289
Sujith Manoharan8e86a542011-04-13 11:25:29 +0530290#define ATH9K_HTC_OP_TX_QUEUES_STOP BIT(0)
Sujith Manoharan27876a22011-04-13 11:26:18 +0530291#define ATH9K_HTC_OP_TX_DRAIN BIT(1)
Sujith Manoharan8e86a542011-04-13 11:25:29 +0530292
293struct ath9k_htc_tx {
294 u8 flags;
295 int queued_cnt;
Sujith Manoharan27876a22011-04-13 11:26:18 +0530296 struct sk_buff_head mgmt_ep_queue;
297 struct sk_buff_head cab_ep_queue;
298 struct sk_buff_head data_be_queue;
299 struct sk_buff_head data_bk_queue;
300 struct sk_buff_head data_vi_queue;
301 struct sk_buff_head data_vo_queue;
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530302 struct sk_buff_head tx_failed;
Sujith Manoharan2c5d57f2011-04-13 11:25:47 +0530303 DECLARE_BITMAP(tx_slot, MAX_TX_BUF_NUM);
Sujith Manoharan859c3ca2011-04-13 11:26:39 +0530304 struct timer_list cleanup_timer;
Sujith Manoharan8e86a542011-04-13 11:25:29 +0530305 spinlock_t tx_lock;
Sujith Manoharan658ef042011-04-13 11:25:00 +0530306};
307
Sujithfb9987d2010-03-17 14:25:25 +0530308struct ath9k_htc_tx_ctl {
309 u8 type; /* ATH9K_HTC_* */
Sujith Manoharand67ee532011-04-13 11:25:35 +0530310 u8 epid;
Sujith Manoharan729bd3a2011-04-13 11:25:41 +0530311 u8 txok;
Sujith Manoharan84c9e1642011-04-13 11:26:11 +0530312 u8 sta_idx;
Sujith Manoharan859c3ca2011-04-13 11:26:39 +0530313 unsigned long timestamp;
Sujithfb9987d2010-03-17 14:25:25 +0530314};
315
Sujith Manoharan40dc9e42011-04-13 11:24:31 +0530316static inline struct ath9k_htc_tx_ctl *HTC_SKB_CB(struct sk_buff *skb)
317{
318 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
319
320 BUILD_BUG_ON(sizeof(struct ath9k_htc_tx_ctl) >
321 IEEE80211_TX_INFO_DRIVER_DATA_SIZE);
322 return (struct ath9k_htc_tx_ctl *) &tx_info->driver_data;
323}
324
Sujithfb9987d2010-03-17 14:25:25 +0530325#ifdef CONFIG_ATH9K_HTC_DEBUGFS
326
327#define TX_STAT_INC(c) (hif_dev->htc_handle->drv_priv->debug.tx_stats.c++)
328#define RX_STAT_INC(c) (hif_dev->htc_handle->drv_priv->debug.rx_stats.c++)
Sujith Manoharan7d547eb2011-04-13 11:23:34 +0530329#define CAB_STAT_INC priv->debug.tx_stats.cab_queued++
Sujithfb9987d2010-03-17 14:25:25 +0530330
Sujith2edb4582010-05-14 11:18:54 +0530331#define TX_QSTAT_INC(q) (priv->debug.tx_stats.queue_stats[q]++)
332
Sujith Manoharan719c4cf2011-04-13 11:24:10 +0530333void ath9k_htc_err_stat_rx(struct ath9k_htc_priv *priv,
334 struct ath_htc_rx_status *rxs);
335
Sujithfb9987d2010-03-17 14:25:25 +0530336struct ath_tx_stats {
337 u32 buf_queued;
338 u32 buf_completed;
339 u32 skb_queued;
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530340 u32 skb_success;
341 u32 skb_failed;
Sujith Manoharan7d547eb2011-04-13 11:23:34 +0530342 u32 cab_queued;
Sujith2edb4582010-05-14 11:18:54 +0530343 u32 queue_stats[WME_NUM_AC];
Sujithfb9987d2010-03-17 14:25:25 +0530344};
345
346struct ath_rx_stats {
347 u32 skb_allocated;
348 u32 skb_completed;
349 u32 skb_dropped;
Sujith Manoharan719c4cf2011-04-13 11:24:10 +0530350 u32 err_crc;
351 u32 err_decrypt_crc;
352 u32 err_mic;
353 u32 err_pre_delim;
354 u32 err_post_delim;
355 u32 err_decrypt_busy;
356 u32 err_phy;
357 u32 err_phy_stats[ATH9K_PHYERR_MAX];
Sujithfb9987d2010-03-17 14:25:25 +0530358};
359
360struct ath9k_debug {
361 struct dentry *debugfs_phy;
Sujith Manoharanfbc29d62011-04-13 11:26:58 +0530362 struct dentry *debugfs_tgt_int_stats;
363 struct dentry *debugfs_tgt_tx_stats;
364 struct dentry *debugfs_tgt_rx_stats;
Sujithfb9987d2010-03-17 14:25:25 +0530365 struct dentry *debugfs_xmit;
366 struct dentry *debugfs_recv;
Sujith Manoharan01f684d2011-04-13 11:26:26 +0530367 struct dentry *debugfs_slot;
Sujith Manoharanc4d04182011-04-13 11:26:31 +0530368 struct dentry *debugfs_queue;
Sujithfb9987d2010-03-17 14:25:25 +0530369 struct ath_tx_stats tx_stats;
370 struct ath_rx_stats rx_stats;
Sujithfb9987d2010-03-17 14:25:25 +0530371};
372
373#else
374
375#define TX_STAT_INC(c) do { } while (0)
376#define RX_STAT_INC(c) do { } while (0)
Sujith Manoharan7d547eb2011-04-13 11:23:34 +0530377#define CAB_STAT_INC do { } while (0)
Sujithfb9987d2010-03-17 14:25:25 +0530378
John W. Linvilleed3305b2010-06-02 16:53:58 -0400379#define TX_QSTAT_INC(c) do { } while (0)
380
Sujith Manoharan719c4cf2011-04-13 11:24:10 +0530381static inline void ath9k_htc_err_stat_rx(struct ath9k_htc_priv *priv,
382 struct ath_htc_rx_status *rxs)
383{
384}
385
Sujithfb9987d2010-03-17 14:25:25 +0530386#endif /* CONFIG_ATH9K_HTC_DEBUGFS */
387
388#define ATH_LED_PIN_DEF 1
Rajkumar Manoharan6d64ab72011-03-15 19:55:35 +0530389#define ATH_LED_PIN_9287 10
Sujithfb9987d2010-03-17 14:25:25 +0530390#define ATH_LED_PIN_9271 15
Sujith88c1f4f2010-06-30 14:46:31 +0530391#define ATH_LED_PIN_7010 12
Sujithfb9987d2010-03-17 14:25:25 +0530392#define ATH_LED_ON_DURATION_IDLE 350 /* in msecs */
393#define ATH_LED_OFF_DURATION_IDLE 250 /* in msecs */
394
395enum ath_led_type {
396 ATH_LED_RADIO,
397 ATH_LED_ASSOC,
398 ATH_LED_TX,
399 ATH_LED_RX
400};
401
402struct ath_led {
403 struct ath9k_htc_priv *priv;
404 struct led_classdev led_cdev;
405 enum ath_led_type led_type;
406 struct delayed_work brightness_work;
407 char name[32];
408 bool registered;
409 int brightness;
410};
411
Sujith Manoharan832f6a12011-04-13 11:23:08 +0530412#define BSTUCK_THRESHOLD 10
413
Sujith Manoharanb0a6ba92011-04-13 11:23:44 +0530414/*
415 * Adjust these when the max. no of beaconing interfaces is
416 * increased.
417 */
418#define DEFAULT_SWBA_RESPONSE 40 /* in TUs */
419#define MIN_SWBA_RESPONSE 10 /* in TUs */
420
Vivek Natarajan1c3652a2010-04-05 14:48:06 +0530421struct htc_beacon_config {
Sujith Manoharan832f6a12011-04-13 11:23:08 +0530422 struct ieee80211_vif *bslot[ATH9K_HTC_MAX_BCN_VIF];
Vivek Natarajan1c3652a2010-04-05 14:48:06 +0530423 u16 beacon_interval;
Vivek Natarajan1c3652a2010-04-05 14:48:06 +0530424 u16 dtim_period;
425 u16 bmiss_timeout;
Sujith Manoharan832f6a12011-04-13 11:23:08 +0530426 u32 bmiss_cnt;
Vivek Natarajan1c3652a2010-04-05 14:48:06 +0530427};
428
Vivek Natarajan21cb9872010-08-18 19:57:49 +0530429struct ath_btcoex {
430 u32 bt_priority_cnt;
431 unsigned long bt_priority_time;
432 int bt_stomp_type; /* Types of BT stomping */
433 u32 btcoex_no_stomp;
434 u32 btcoex_period;
435 u32 btscan_no_stomp;
436};
437
438void ath_htc_init_btcoex_work(struct ath9k_htc_priv *priv);
439void ath_htc_resume_btcoex_work(struct ath9k_htc_priv *priv);
440void ath_htc_cancel_btcoex_work(struct ath9k_htc_priv *priv);
441
442#define OP_INVALID BIT(0)
443#define OP_SCANNING BIT(1)
Sujith Manoharan039a0722010-12-28 14:28:37 +0530444#define OP_LED_ASSOCIATED BIT(2)
445#define OP_LED_ON BIT(3)
Sujith Manoharan7c277342011-02-21 07:48:39 +0530446#define OP_ENABLE_BEACON BIT(4)
447#define OP_LED_DEINIT BIT(5)
448#define OP_BT_PRIORITY_DETECTED BIT(6)
449#define OP_BT_SCAN BIT(7)
Sujith Manoharana2362542011-02-21 07:49:38 +0530450#define OP_ANI_RUNNING BIT(8)
Sujith Manoharana5fae372011-02-21 07:49:53 +0530451#define OP_TSF_RESET BIT(9)
Sujithfb9987d2010-03-17 14:25:25 +0530452
453struct ath9k_htc_priv {
454 struct device *dev;
455 struct ieee80211_hw *hw;
456 struct ath_hw *ah;
457 struct htc_target *htc;
458 struct wmi *wmi;
459
Sujith Manoharan29bbfb22011-04-13 11:22:51 +0530460 u16 fw_version_major;
461 u16 fw_version_minor;
462
Sujithfb9987d2010-03-17 14:25:25 +0530463 enum htc_endpoint_id wmi_cmd_ep;
464 enum htc_endpoint_id beacon_ep;
465 enum htc_endpoint_id cab_ep;
466 enum htc_endpoint_id uapsd_ep;
467 enum htc_endpoint_id mgmt_ep;
468 enum htc_endpoint_id data_be_ep;
469 enum htc_endpoint_id data_bk_ep;
470 enum htc_endpoint_id data_vi_ep;
471 enum htc_endpoint_id data_vo_ep;
472
Sujith Manoharana97b4782011-02-21 07:48:00 +0530473 u8 vif_slot;
474 u8 mon_vif_idx;
475 u8 sta_slot;
476 u8 vif_sta_pos[ATH9K_HTC_MAX_VIF];
Sujith Manoharan0df83592011-02-21 07:49:15 +0530477 u8 num_ibss_vif;
478 u8 num_sta_vif;
Sujith Manoharanda8d9d92011-02-21 07:49:23 +0530479 u8 num_ap_vif;
Sujith Manoharana97b4782011-02-21 07:48:00 +0530480
Sujithfb9987d2010-03-17 14:25:25 +0530481 u16 op_flags;
482 u16 curtxpow;
483 u16 txpowlimit;
484 u16 nvifs;
485 u16 nstations;
Sujith Manoharan7c277342011-02-21 07:48:39 +0530486 bool rearm_ani;
487 bool reconfig_beacon;
Sujith Manoharan658ef042011-04-13 11:25:00 +0530488 unsigned int rxfilter;
Sujithfb9987d2010-03-17 14:25:25 +0530489
Rajkumar Manoharan4e3ae382011-01-15 01:33:28 +0530490 struct ath9k_hw_cal_data caldata;
Sujith Manoharan658ef042011-04-13 11:25:00 +0530491 struct ieee80211_supported_band sbands[IEEE80211_NUM_BANDS];
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200492
Sujithfb9987d2010-03-17 14:25:25 +0530493 spinlock_t beacon_lock;
Vivek Natarajan1c3652a2010-04-05 14:48:06 +0530494 struct htc_beacon_config cur_beacon_conf;
Sujith Manoharan658ef042011-04-13 11:25:00 +0530495
496 struct ath9k_htc_rx rx;
497 struct ath9k_htc_tx tx;
498
Sujith Manoharan73908672010-12-28 14:28:27 +0530499 struct tasklet_struct swba_tasklet;
Sujithfb9987d2010-03-17 14:25:25 +0530500 struct tasklet_struct rx_tasklet;
Sujith Manoharana2362542011-02-21 07:49:38 +0530501 struct delayed_work ani_work;
Sujith Manoharan27876a22011-04-13 11:26:18 +0530502 struct tasklet_struct tx_failed_tasklet;
Vivek Natarajanbde748a2010-04-05 14:48:05 +0530503 struct work_struct ps_work;
Sujith Manoharan73908672010-12-28 14:28:27 +0530504 struct work_struct fatal_work;
Vivek Natarajanbde748a2010-04-05 14:48:05 +0530505
506 struct mutex htc_pm_lock;
507 unsigned long ps_usecount;
508 bool ps_enabled;
Vivek Natarajan8a8572a2010-04-27 13:05:37 +0530509 bool ps_idle;
Sujithfb9987d2010-03-17 14:25:25 +0530510
511 struct ath_led radio_led;
512 struct ath_led assoc_led;
513 struct ath_led tx_led;
514 struct ath_led rx_led;
515 struct delayed_work ath9k_led_blink_work;
516 int led_on_duration;
517 int led_off_duration;
518 int led_on_cnt;
519 int led_off_cnt;
Sujithca74b832010-05-14 11:18:56 +0530520
521 int beaconq;
522 int cabq;
Felix Fietkaue8c35a72010-06-12 00:33:50 -0400523 int hwq_map[WME_NUM_AC];
Sujithfb9987d2010-03-17 14:25:25 +0530524
Vivek Natarajan21cb9872010-08-18 19:57:49 +0530525 struct ath_btcoex btcoex;
526 struct delayed_work coex_period_work;
527 struct delayed_work duty_cycle_work;
Sujithfb9987d2010-03-17 14:25:25 +0530528#ifdef CONFIG_ATH9K_HTC_DEBUGFS
529 struct ath9k_debug debug;
530#endif
Sujithfb9987d2010-03-17 14:25:25 +0530531 struct mutex mutex;
532};
533
534static inline void ath_read_cachesize(struct ath_common *common, int *csz)
535{
536 common->bus_ops->read_cachesize(common, csz);
537}
538
Sujith Manoharan73908672010-12-28 14:28:27 +0530539void ath9k_htc_reset(struct ath9k_htc_priv *priv);
540
Sujith Manoharan832f6a12011-04-13 11:23:08 +0530541void ath9k_htc_assign_bslot(struct ath9k_htc_priv *priv,
542 struct ieee80211_vif *vif);
543void ath9k_htc_remove_bslot(struct ath9k_htc_priv *priv,
544 struct ieee80211_vif *vif);
Sujith Manoharan9b674a02011-04-13 11:23:17 +0530545void ath9k_htc_set_tsfadjust(struct ath9k_htc_priv *priv,
546 struct ieee80211_vif *vif);
Sujith764580f2010-06-01 15:14:19 +0530547void ath9k_htc_beaconq_config(struct ath9k_htc_priv *priv);
Sujithfb9987d2010-03-17 14:25:25 +0530548void ath9k_htc_beacon_config(struct ath9k_htc_priv *priv,
Vivek Natarajan1c3652a2010-04-05 14:48:06 +0530549 struct ieee80211_vif *vif);
Sujith Manoharan7c277342011-02-21 07:48:39 +0530550void ath9k_htc_beacon_reconfig(struct ath9k_htc_priv *priv);
Sujith Manoharanf4c88992011-04-13 11:23:52 +0530551void ath9k_htc_swba(struct ath9k_htc_priv *priv,
552 struct wmi_event_swba *swba);
Sujithfb9987d2010-03-17 14:25:25 +0530553
554void ath9k_htc_rxep(void *priv, struct sk_buff *skb,
555 enum htc_endpoint_id ep_id);
556void ath9k_htc_txep(void *priv, struct sk_buff *skb, enum htc_endpoint_id ep_id,
557 bool txok);
Sujith9c6dda42010-05-06 14:45:47 +0530558void ath9k_htc_beaconep(void *drv_priv, struct sk_buff *skb,
559 enum htc_endpoint_id ep_id, bool txok);
Sujithfb9987d2010-03-17 14:25:25 +0530560
Sujith Manoharan55de80d2011-01-05 01:06:21 +0530561int ath9k_htc_update_cap_target(struct ath9k_htc_priv *priv);
Sujithfb9987d2010-03-17 14:25:25 +0530562void ath9k_htc_station_work(struct work_struct *work);
563void ath9k_htc_aggr_work(struct work_struct *work);
Sujith Manoharana2362542011-02-21 07:49:38 +0530564void ath9k_htc_ani_work(struct work_struct *work);
565void ath9k_htc_start_ani(struct ath9k_htc_priv *priv);
566void ath9k_htc_stop_ani(struct ath9k_htc_priv *priv);
Sujithfb9987d2010-03-17 14:25:25 +0530567
568int ath9k_tx_init(struct ath9k_htc_priv *priv);
Sujith Manoharan7d547eb2011-04-13 11:23:34 +0530569int ath9k_htc_tx_start(struct ath9k_htc_priv *priv,
Sujith Manoharan2c5d57f2011-04-13 11:25:47 +0530570 struct sk_buff *skb, u8 slot, bool is_cab);
Sujithfb9987d2010-03-17 14:25:25 +0530571void ath9k_tx_cleanup(struct ath9k_htc_priv *priv);
Felix Fietkaue8c35a72010-06-12 00:33:50 -0400572bool ath9k_htc_txq_setup(struct ath9k_htc_priv *priv, int subtype);
Sujithca74b832010-05-14 11:18:56 +0530573int ath9k_htc_cabq_setup(struct ath9k_htc_priv *priv);
Sujithfb9987d2010-03-17 14:25:25 +0530574int get_hw_qnum(u16 queue, int *hwq_map);
Sujithe1572c52010-03-24 13:42:13 +0530575int ath_htc_txq_update(struct ath9k_htc_priv *priv, int qnum,
576 struct ath9k_tx_queue_info *qinfo);
Sujith Manoharan8e86a542011-04-13 11:25:29 +0530577void ath9k_htc_check_stop_queues(struct ath9k_htc_priv *priv);
578void ath9k_htc_check_wake_queues(struct ath9k_htc_priv *priv);
Sujith Manoharan2c5d57f2011-04-13 11:25:47 +0530579int ath9k_htc_tx_get_slot(struct ath9k_htc_priv *priv);
580void ath9k_htc_tx_clear_slot(struct ath9k_htc_priv *priv, int slot);
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530581void ath9k_htc_tx_drain(struct ath9k_htc_priv *priv);
Sujith Manoharan27876a22011-04-13 11:26:18 +0530582void ath9k_htc_txstatus(struct ath9k_htc_priv *priv, void *wmi_event);
583void ath9k_htc_tx_failed(struct ath9k_htc_priv *priv);
584void ath9k_tx_failed_tasklet(unsigned long data);
Sujith Manoharan859c3ca2011-04-13 11:26:39 +0530585void ath9k_htc_tx_cleanup_timer(unsigned long data);
Sujithfb9987d2010-03-17 14:25:25 +0530586
587int ath9k_rx_init(struct ath9k_htc_priv *priv);
588void ath9k_rx_cleanup(struct ath9k_htc_priv *priv);
589void ath9k_host_rx_init(struct ath9k_htc_priv *priv);
590void ath9k_rx_tasklet(unsigned long data);
Sujith0995d112010-03-29 16:07:09 +0530591u32 ath9k_htc_calcrxfilter(struct ath9k_htc_priv *priv);
Sujithfb9987d2010-03-17 14:25:25 +0530592
Vivek Natarajanbde748a2010-04-05 14:48:05 +0530593void ath9k_htc_ps_wakeup(struct ath9k_htc_priv *priv);
594void ath9k_htc_ps_restore(struct ath9k_htc_priv *priv);
595void ath9k_ps_work(struct work_struct *work);
Sujith Manoharanf933ebe2010-12-01 12:30:27 +0530596bool ath9k_htc_setpower(struct ath9k_htc_priv *priv,
597 enum ath9k_power_mode mode);
Vivek Natarajanbde748a2010-04-05 14:48:05 +0530598
Sujithfb9987d2010-03-17 14:25:25 +0530599void ath9k_start_rfkill_poll(struct ath9k_htc_priv *priv);
Sujith Manoharan1e1f4ad2010-12-28 14:28:52 +0530600void ath9k_htc_rfkill_poll_state(struct ieee80211_hw *hw);
601void ath9k_htc_radio_enable(struct ieee80211_hw *hw);
602void ath9k_htc_radio_disable(struct ieee80211_hw *hw);
603void ath9k_led_stop_brightness(struct ath9k_htc_priv *priv);
Sujithfb9987d2010-03-17 14:25:25 +0530604void ath9k_init_leds(struct ath9k_htc_priv *priv);
605void ath9k_deinit_leds(struct ath9k_htc_priv *priv);
606
607int ath9k_htc_probe_device(struct htc_target *htc_handle, struct device *dev,
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +0530608 u16 devid, char *product, u32 drv_info);
Sujithfb9987d2010-03-17 14:25:25 +0530609void ath9k_htc_disconnect_device(struct htc_target *htc_handle, bool hotunplug);
610#ifdef CONFIG_PM
Sujith Manoharanf933ebe2010-12-01 12:30:27 +0530611void ath9k_htc_suspend(struct htc_target *htc_handle);
Sujithfb9987d2010-03-17 14:25:25 +0530612int ath9k_htc_resume(struct htc_target *htc_handle);
613#endif
614#ifdef CONFIG_ATH9K_HTC_DEBUGFS
Sujithe1572c52010-03-24 13:42:13 +0530615int ath9k_htc_debug_create_root(void);
616void ath9k_htc_debug_remove_root(void);
617int ath9k_htc_init_debug(struct ath_hw *ah);
618void ath9k_htc_exit_debug(struct ath_hw *ah);
Sujithfb9987d2010-03-17 14:25:25 +0530619#else
Sujithe1572c52010-03-24 13:42:13 +0530620static inline int ath9k_htc_debug_create_root(void) { return 0; };
621static inline void ath9k_htc_debug_remove_root(void) {};
622static inline int ath9k_htc_init_debug(struct ath_hw *ah) { return 0; };
623static inline void ath9k_htc_exit_debug(struct ath_hw *ah) {};
Sujithfb9987d2010-03-17 14:25:25 +0530624#endif /* CONFIG_ATH9K_HTC_DEBUGFS */
625
626#endif /* HTC_H */