2 * Copyright (c) 2008 Atheros Communications Inc.
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.
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.
20 #include <linux/version.h>
21 #include <linux/autoconf.h>
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/spinlock.h>
25 #include <linux/errno.h>
26 #include <linux/skbuff.h>
27 #include <linux/netdevice.h>
28 #include <linux/etherdevice.h>
30 #include <linux/tcp.h>
32 #include <linux/delay.h>
33 #include <linux/wait.h>
34 #include <linux/pci.h>
35 #include <linux/interrupt.h>
36 #include <linux/sched.h>
37 #include <linux/list.h>
38 #include <asm/byteorder.h>
39 #include <linux/scatterlist.h>
41 #include <net/mac80211.h>
42 #include <linux/leds.h>
43 #include <linux/rfkill.h>
54 /* Macro to expand scalars to 64-bit objects */
56 #define ito64(x) (sizeof(x) == 8) ? \
57 (((unsigned long long int)(x)) & (0xff)) : \
59 (((unsigned long long int)(x)) & 0xffff) : \
60 ((sizeof(x) == 32) ? \
61 (((unsigned long long int)(x)) & 0xffffffff) : \
62 (unsigned long long int)(x))
64 /* increment with wrap-around */
65 #define INCR(_l, _sz) do { \
67 (_l) &= ((_sz) - 1); \
70 /* decrement with wrap-around */
71 #define DECR(_l, _sz) do { \
73 (_l) &= ((_sz) - 1); \
76 #define A_MAX(a, b) ((a) > (b) ? (a) : (b))
78 #define ASSERT(exp) do { \
79 if (unlikely(!(exp))) { \
84 #define TSF_TO_TU(_h,_l) \
85 ((((u32)(_h)) << 22) | (((u32)(_l)) >> 10))
87 #define ATH9K_BH_STATUS_INTACT 0
88 #define ATH9K_BH_STATUS_CHANGE 1
90 #define ATH_TXQ_SETUP(sc, i) ((sc)->sc_txqsetup & (1<<i))
92 static inline unsigned long get_timestamp(void)
94 return ((jiffies / HZ) * 1000) + (jiffies % HZ) * (1000 / HZ);
97 static const u8 ath_bcast_mac[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
104 ATH_DBG_RESET = 0x00000001,
105 ATH_DBG_PHY_IO = 0x00000002,
106 ATH_DBG_REG_IO = 0x00000004,
107 ATH_DBG_QUEUE = 0x00000008,
108 ATH_DBG_EEPROM = 0x00000010,
109 ATH_DBG_NF_CAL = 0x00000020,
110 ATH_DBG_CALIBRATE = 0x00000040,
111 ATH_DBG_CHANNEL = 0x00000080,
112 ATH_DBG_INTERRUPT = 0x00000100,
113 ATH_DBG_REGULATORY = 0x00000200,
114 ATH_DBG_ANI = 0x00000400,
115 ATH_DBG_POWER_MGMT = 0x00000800,
116 ATH_DBG_XMIT = 0x00001000,
117 ATH_DBG_BEACON = 0x00002000,
118 ATH_DBG_RATE = 0x00004000,
119 ATH_DBG_CONFIG = 0x00008000,
120 ATH_DBG_KEYCACHE = 0x00010000,
121 ATH_DBG_AGGR = 0x00020000,
122 ATH_DBG_FATAL = 0x00040000,
123 ATH_DBG_ANY = 0xffffffff
126 #define DBG_DEFAULT (ATH_DBG_FATAL)
128 #define DPRINTF(sc, _m, _fmt, ...) do { \
129 if (sc->sc_debug & (_m)) \
130 printk(_fmt , ##__VA_ARGS__); \
133 /***************************/
134 /* Load-time Configuration */
135 /***************************/
137 /* Per-instance load-time (note: NOT run-time) configurations
138 * for Atheros Device */
142 u16 txpowlimit_override;
143 u8 cabqReadytime; /* Cabq Readytime % */
144 u8 swBeaconProcess; /* Process received beacons in SW (vs HW) */
147 /***********************/
148 /* Chainmask Selection */
149 /***********************/
151 #define ATH_CHAINMASK_SEL_TIMEOUT 6000
152 /* Default - Number of last RSSI values that is used for
153 * chainmask selection */
154 #define ATH_CHAINMASK_SEL_RSSI_CNT 10
155 /* Means use 3x3 chainmask instead of configured chainmask */
156 #define ATH_CHAINMASK_SEL_3X3 7
157 /* Default - Rssi threshold below which we have to switch to 3x3 */
158 #define ATH_CHAINMASK_SEL_UP_RSSI_THRES 20
159 /* Default - Rssi threshold above which we have to switch to
160 * user configured values */
161 #define ATH_CHAINMASK_SEL_DOWN_RSSI_THRES 35
162 /* Struct to store the chainmask select related info */
163 struct ath_chainmask_sel {
164 struct timer_list timer;
165 int cur_tx_mask; /* user configured or 3x3 */
166 int cur_rx_mask; /* user configured or 3x3 */
168 u8 switch_allowed:1, /* timer will set this */
172 int ath_chainmask_sel_logic(struct ath_softc *sc, struct ath_node *an);
173 void ath_update_chainmask(struct ath_softc *sc, int is_ht);
175 /*************************/
176 /* Descriptor Management */
177 /*************************/
179 #define ATH_TXBUF_RESET(_bf) do { \
180 (_bf)->bf_status = 0; \
181 (_bf)->bf_lastbf = NULL; \
182 (_bf)->bf_lastfrm = NULL; \
183 (_bf)->bf_next = NULL; \
184 memset(&((_bf)->bf_state), 0, \
185 sizeof(struct ath_buf_state)); \
195 BUF_SHORT_PREAMBLE = BIT(6),
198 BUF_AGGR_BURST = BIT(9),
199 BUF_CALC_AIRTIME = BIT(10),
202 struct ath_buf_state {
203 int bfs_nframes; /* # frames in aggregate */
204 u16 bfs_al; /* length of aggregate */
205 u16 bfs_frmlen; /* length of frame */
206 int bfs_seqno; /* sequence number */
207 int bfs_tidno; /* tid of this frame */
208 int bfs_retries; /* current retries */
209 struct ath_rc_series bfs_rcs[4]; /* rate series */
210 u32 bf_type; /* BUF_* (enum buffer_type) */
211 /* key type use to encrypt this frame */
212 enum ath9k_key_type bfs_keytype;
215 #define bf_nframes bf_state.bfs_nframes
216 #define bf_al bf_state.bfs_al
217 #define bf_frmlen bf_state.bfs_frmlen
218 #define bf_retries bf_state.bfs_retries
219 #define bf_seqno bf_state.bfs_seqno
220 #define bf_tidno bf_state.bfs_tidno
221 #define bf_rcs bf_state.bfs_rcs
222 #define bf_keytype bf_state.bfs_keytype
223 #define bf_isdata(bf) (bf->bf_state.bf_type & BUF_DATA)
224 #define bf_isaggr(bf) (bf->bf_state.bf_type & BUF_AGGR)
225 #define bf_isampdu(bf) (bf->bf_state.bf_type & BUF_AMPDU)
226 #define bf_isht(bf) (bf->bf_state.bf_type & BUF_HT)
227 #define bf_isretried(bf) (bf->bf_state.bf_type & BUF_RETRY)
228 #define bf_isxretried(bf) (bf->bf_state.bf_type & BUF_XRETRY)
229 #define bf_isshpreamble(bf) (bf->bf_state.bf_type & BUF_SHORT_PREAMBLE)
230 #define bf_isbar(bf) (bf->bf_state.bf_type & BUF_BAR)
231 #define bf_ispspoll(bf) (bf->bf_state.bf_type & BUF_PSPOLL)
232 #define bf_isaggrburst(bf) (bf->bf_state.bf_type & BUF_AGGR_BURST)
235 * Abstraction of a contiguous buffer to transmit/receive. There is only
236 * a single hw descriptor encapsulated here.
239 struct list_head list;
240 struct list_head *last;
241 struct ath_buf *bf_lastbf; /* last buf of this unit (a frame or
243 struct ath_buf *bf_lastfrm; /* last buf of this frame */
244 struct ath_buf *bf_next; /* next subframe in the aggregate */
245 struct ath_buf *bf_rifslast; /* last buf for RIFS burst */
246 void *bf_mpdu; /* enclosing frame structure */
247 void *bf_node; /* pointer to the node */
248 struct ath_desc *bf_desc; /* virtual addr of desc */
249 dma_addr_t bf_daddr; /* physical addr of desc */
250 dma_addr_t bf_buf_addr; /* physical addr of data buffer */
252 u16 bf_flags; /* tx descriptor flags */
253 struct ath_buf_state bf_state; /* buffer state */
254 dma_addr_t bf_dmacontext;
258 * reset the rx buffer.
259 * any new fields added to the athbuf and require
260 * reset need to be added to this macro.
261 * currently bf_status is the only one requires that
264 #define ATH_RXBUF_RESET(_bf) ((_bf)->bf_status = 0)
266 /* hw processing complete, desc processed by hal */
267 #define ATH_BUFSTATUS_DONE 0x00000001
268 /* hw processing complete, desc hold for hw */
269 #define ATH_BUFSTATUS_STALE 0x00000002
270 /* Rx-only: OS is done with this packet and it's ok to queued it to hw */
271 #define ATH_BUFSTATUS_FREE 0x00000004
273 /* DMA state for tx/rx descriptors */
277 struct ath_desc *dd_desc; /* descriptors */
278 dma_addr_t dd_desc_paddr; /* physical addr of dd_desc */
279 u32 dd_desc_len; /* size of dd_desc */
280 struct ath_buf *dd_bufptr; /* associated buffers */
281 dma_addr_t dd_dmacontext;
284 /* Abstraction of a received RX MPDU/MMPDU, or a RX fragment */
286 struct ath_rx_context {
287 struct ath_buf *ctx_rxbuf; /* associated ath_buf for rx */
289 #define ATH_RX_CONTEXT(skb) ((struct ath_rx_context *)skb->cb)
291 int ath_descdma_setup(struct ath_softc *sc,
292 struct ath_descdma *dd,
293 struct list_head *head,
297 int ath_desc_alloc(struct ath_softc *sc);
298 void ath_desc_free(struct ath_softc *sc);
299 void ath_descdma_cleanup(struct ath_softc *sc,
300 struct ath_descdma *dd,
301 struct list_head *head);
307 #define ATH_MAX_ANTENNA 3
308 #define ATH_RXBUF 512
309 #define ATH_RX_TIMEOUT 40 /* 40 milliseconds */
310 #define WME_NUM_TID 16
311 #define IEEE80211_BAR_CTL_TID_M 0xF000 /* tid mask */
312 #define IEEE80211_BAR_CTL_TID_S 12 /* tid shift */
315 ATH_RX_NON_CONSUMED = 0,
319 /* per frame rx status block */
320 struct ath_recv_status {
321 u64 tsf; /* mac tsf */
322 int8_t rssi; /* RSSI (noise floor ajusted) */
323 int8_t rssictl[ATH_MAX_ANTENNA]; /* RSSI (noise floor ajusted) */
324 int8_t rssiextn[ATH_MAX_ANTENNA]; /* RSSI (noise floor ajusted) */
325 int8_t abs_rssi; /* absolute RSSI */
326 u8 rateieee; /* data rate received (IEEE rate code) */
327 u8 ratecode; /* phy rate code */
328 int rateKbps; /* data rate received (Kbps) */
329 int antenna; /* rx antenna */
330 int flags; /* status of associated skb */
331 #define ATH_RX_FCS_ERROR 0x01
332 #define ATH_RX_MIC_ERROR 0x02
333 #define ATH_RX_DECRYPT_ERROR 0x04
334 #define ATH_RX_RSSI_VALID 0x08
335 /* if any of ctl,extn chainrssis are valid */
336 #define ATH_RX_CHAIN_RSSI_VALID 0x10
337 /* if extn chain rssis are valid */
338 #define ATH_RX_RSSI_EXTN_VALID 0x20
339 /* set if 40Mhz, clear if 20Mhz */
340 #define ATH_RX_40MHZ 0x40
341 /* set if short GI, clear if full GI */
342 #define ATH_RX_SHORT_GI 0x80
346 struct sk_buff *rx_wbuf;
347 unsigned long rx_time; /* system time when received */
348 struct ath_recv_status rx_status; /* cached rx status */
351 /* Per-TID aggregate receiver state for a node */
354 struct ath_rxbuf *rxbuf; /* re-ordering buffer */
355 struct timer_list timer;
357 int baw_head; /* seq_next at head */
358 int baw_tail; /* tail of block-ack window */
359 int seq_reset; /* need to reset start sequence */
360 int addba_exchangecomplete;
361 u16 seq_next; /* next expected sequence */
362 u16 baw_size; /* block-ack window size */
365 /* Per-node receiver aggregate state */
367 struct ath_arx_tid tid[WME_NUM_TID];
370 int ath_startrecv(struct ath_softc *sc);
371 bool ath_stoprecv(struct ath_softc *sc);
372 void ath_flushrecv(struct ath_softc *sc);
373 u32 ath_calcrxfilter(struct ath_softc *sc);
374 void ath_rx_node_init(struct ath_softc *sc, struct ath_node *an);
375 void ath_rx_node_free(struct ath_softc *sc, struct ath_node *an);
376 void ath_rx_node_cleanup(struct ath_softc *sc, struct ath_node *an);
377 void ath_handle_rx_intr(struct ath_softc *sc);
378 int ath_rx_init(struct ath_softc *sc, int nbufs);
379 void ath_rx_cleanup(struct ath_softc *sc);
380 int ath_rx_tasklet(struct ath_softc *sc, int flush);
381 int ath_rx_input(struct ath_softc *sc,
382 struct ath_node *node,
384 struct ath_recv_status *rx_status,
385 enum ATH_RX_TYPE *status);
386 int _ath_rx_indicate(struct ath_softc *sc,
388 struct ath_recv_status *status,
390 int ath_rx_subframe(struct ath_node *an, struct sk_buff *skb,
391 struct ath_recv_status *status);
397 #define ATH_TXBUF 512
398 /* max number of transmit attempts (tries) */
399 #define ATH_TXMAXTRY 13
400 /* max number of 11n transmit attempts (tries) */
401 #define ATH_11N_TXMAXTRY 10
402 /* max number of tries for management and control frames */
403 #define ATH_MGT_TXMAXTRY 4
404 #define WME_BA_BMP_SIZE 64
405 #define WME_MAX_BA WME_BA_BMP_SIZE
406 #define ATH_TID_MAX_BUFS (2 * WME_MAX_BA)
407 #define TID_TO_WME_AC(_tid) \
408 ((((_tid) == 0) || ((_tid) == 3)) ? WME_AC_BE : \
409 (((_tid) == 1) || ((_tid) == 2)) ? WME_AC_BK : \
410 (((_tid) == 4) || ((_tid) == 5)) ? WME_AC_VI : \
414 /* Wireless Multimedia Extension Defines */
415 #define WME_AC_BE 0 /* best effort */
416 #define WME_AC_BK 1 /* background */
417 #define WME_AC_VI 2 /* video */
418 #define WME_AC_VO 3 /* voice */
423 ATH_SM_PWRSAV_STATIC,
424 ATH_SM_PWRSAV_DYNAMIC,
428 * Data transmit queue state. One of these exists for each
429 * hardware transmit queue. Packets sent to us from above
430 * are assigned to queues based on their priority. Not all
431 * devices support a complete set of hardware transmit queues.
432 * For those devices the array sc_ac2q will map multiple
433 * priorities to fewer hardware queues (typically all to one
437 u32 axq_qnum; /* hardware q number */
438 u32 *axq_link; /* link ptr in last TX desc */
439 struct list_head axq_q; /* transmit queue */
441 unsigned long axq_lockflags; /* intr state when must cli */
442 u32 axq_depth; /* queue depth */
443 u8 axq_aggr_depth; /* aggregates queued */
444 u32 axq_totalqueued; /* total ever queued */
446 bool stopped; /* Is mac80211 queue stopped ? */
447 struct ath_buf *axq_linkbuf; /* virtual addr of last buffer*/
449 /* first desc of the last descriptor that contains CTS */
450 struct ath_desc *axq_lastdsWithCTS;
452 /* final desc of the gating desc that determines whether
453 lastdsWithCTS has been DMA'ed or not */
454 struct ath_desc *axq_gatingds;
456 struct list_head axq_acq;
459 /* per TID aggregate tx state for a destination */
461 struct list_head list; /* round-robin tid entry */
462 struct list_head buf_q; /* pending buffers */
464 struct ath_atx_ac *ac;
465 struct ath_buf *tx_buf[ATH_TID_MAX_BUFS]; /* active tx frames */
470 int baw_head; /* first un-acked tx buffer */
471 int baw_tail; /* next unused tx buffer slot */
474 int cleanup_inprogress;
475 u32 addba_exchangecomplete:1;
476 int32_t addba_exchangeinprogress;
477 int addba_exchangeattempts;
480 /* per access-category aggregate tx state for a destination */
482 int sched; /* dest-ac is scheduled */
483 int qnum; /* H/W queue number associated
485 struct list_head list; /* round-robin txq entry */
486 struct list_head tid_q; /* queue of TIDs with buffers */
489 /* per dest tx state */
491 struct ath_atx_tid tid[WME_NUM_TID];
492 struct ath_atx_ac ac[WME_NUM_AC];
495 /* per-frame tx control block */
496 struct ath_tx_control {
503 enum ath9k_pkt_type atype;
504 enum ath9k_key_type keytype;
513 struct ath_softc *dev;
514 dma_addr_t dmacontext;
517 /* per frame tx status block */
518 struct ath_xmit_status {
519 int retries; /* number of retries to successufully
520 transmit this frame */
521 int flags; /* status of transmit */
522 #define ATH_TX_ERROR 0x01
523 #define ATH_TX_XRETRY 0x02
524 #define ATH_TX_BAR 0x04
528 int rssi; /* RSSI (noise floor ajusted) */
529 int rssictl[ATH_MAX_ANTENNA]; /* RSSI (noise floor ajusted) */
530 int rssiextn[ATH_MAX_ANTENNA]; /* RSSI (noise floor ajusted) */
531 int rateieee; /* data rate xmitted (IEEE rate code) */
532 int rateKbps; /* data rate xmitted (Kbps) */
533 int ratecode; /* phy rate code */
534 int flags; /* validity flags */
535 /* if any of ctl,extn chain rssis are valid */
536 #define ATH_TX_CHAIN_RSSI_VALID 0x01
537 /* if extn chain rssis are valid */
538 #define ATH_TX_RSSI_EXTN_VALID 0x02
539 u32 airtime; /* time on air per final tx rate */
542 struct ath_txq *ath_txq_setup(struct ath_softc *sc, int qtype, int subtype);
543 void ath_tx_cleanupq(struct ath_softc *sc, struct ath_txq *txq);
544 int ath_tx_setup(struct ath_softc *sc, int haltype);
545 void ath_draintxq(struct ath_softc *sc, bool retry_tx);
546 void ath_tx_draintxq(struct ath_softc *sc,
547 struct ath_txq *txq, bool retry_tx);
548 void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an);
549 void ath_tx_node_cleanup(struct ath_softc *sc,
550 struct ath_node *an, bool bh_flag);
551 void ath_tx_node_free(struct ath_softc *sc, struct ath_node *an);
552 void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq);
553 int ath_tx_init(struct ath_softc *sc, int nbufs);
554 int ath_tx_cleanup(struct ath_softc *sc);
555 int ath_tx_get_qnum(struct ath_softc *sc, int qtype, int haltype);
556 int ath_txq_update(struct ath_softc *sc, int qnum,
557 struct ath9k_tx_queue_info *q);
558 int ath_tx_start(struct ath_softc *sc, struct sk_buff *skb);
559 void ath_tx_tasklet(struct ath_softc *sc);
560 u32 ath_txq_depth(struct ath_softc *sc, int qnum);
561 u32 ath_txq_aggr_depth(struct ath_softc *sc, int qnum);
562 void ath_notify_txq_status(struct ath_softc *sc, u16 queue_depth);
563 void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
564 struct ath_xmit_status *tx_status, struct ath_node *an);
565 void ath_tx_cabq(struct ath_softc *sc, struct sk_buff *skb);
567 /**********************/
568 /* Node / Aggregation */
569 /**********************/
571 /* indicates the node is clened up */
572 #define ATH_NODE_CLEAN 0x1
573 /* indicates the node is 80211 power save */
574 #define ATH_NODE_PWRSAVE 0x2
576 #define ADDBA_EXCHANGE_ATTEMPTS 10
577 #define ATH_AGGR_DELIM_SZ 4 /* delimiter size */
578 #define ATH_AGGR_MINPLEN 256 /* in bytes, minimum packet length */
579 /* number of delimiters for encryption padding */
580 #define ATH_AGGR_ENCRYPTDELIM 10
581 /* minimum h/w qdepth to be sustained to maximize aggregation */
582 #define ATH_AGGR_MIN_QDEPTH 2
583 #define ATH_AMPDU_SUBFRAME_DEFAULT 32
584 #define IEEE80211_SEQ_SEQ_SHIFT 4
585 #define IEEE80211_SEQ_MAX 4096
586 #define IEEE80211_MIN_AMPDU_BUF 0x8
588 /* return whether a bit at index _n in bitmap _bm is set
589 * _sz is the size of the bitmap */
590 #define ATH_BA_ISSET(_bm, _n) (((_n) < (WME_BA_BMP_SIZE)) && \
591 ((_bm)[(_n) >> 5] & (1 << ((_n) & 31))))
593 /* return block-ack bitmap index given sequence and starting sequence */
594 #define ATH_BA_INDEX(_st, _seq) (((_seq) - (_st)) & (IEEE80211_SEQ_MAX - 1))
596 /* returns delimiter padding required given the packet length */
597 #define ATH_AGGR_GET_NDELIM(_len) \
598 (((((_len) + ATH_AGGR_DELIM_SZ) < ATH_AGGR_MINPLEN) ? \
599 (ATH_AGGR_MINPLEN - (_len) - ATH_AGGR_DELIM_SZ) : 0) >> 2)
601 #define BAW_WITHIN(_start, _bawsz, _seqno) \
602 ((((_seqno) - (_start)) & 4095) < (_bawsz))
604 #define ATH_DS_BA_SEQ(_ds) ((_ds)->ds_us.tx.ts_seqnum)
605 #define ATH_DS_BA_BITMAP(_ds) (&(_ds)->ds_us.tx.ba_low)
606 #define ATH_DS_TX_BA(_ds) ((_ds)->ds_us.tx.ts_flags & ATH9K_TX_BA)
607 #define ATH_AN_2_TID(_an, _tidno) (&(_an)->an_aggr.tx.tid[(_tidno)])
609 enum ATH_AGGR_STATUS {
617 enum ATH_AGGR_CHECK {
620 AGGR_CLEANUP_PROGRESS,
621 AGGR_EXCHANGE_PROGRESS,
625 struct aggr_rifs_param {
626 int param_max_frames;
630 struct ath_rc_series *param_rcs;
633 /* Per-node aggregation state */
634 struct ath_node_aggr {
635 struct ath_atx tx; /* node transmit state */
636 struct ath_arx rx; /* node receive state */
639 /* driver-specific node state */
641 struct list_head list;
642 struct ath_softc *an_sc;
644 struct ath_chainmask_sel an_chainmask_sel;
645 struct ath_node_aggr an_aggr;
646 u8 an_smmode; /* SM Power save mode */
648 u8 an_addr[ETH_ALEN];
654 void ath_tx_resume_tid(struct ath_softc *sc,
655 struct ath_atx_tid *tid);
656 enum ATH_AGGR_CHECK ath_tx_aggr_check(struct ath_softc *sc,
657 struct ath_node *an, u8 tidno);
658 void ath_tx_aggr_teardown(struct ath_softc *sc,
659 struct ath_node *an, u8 tidno);
660 void ath_rx_aggr_teardown(struct ath_softc *sc,
661 struct ath_node *an, u8 tidno);
662 int ath_rx_aggr_start(struct ath_softc *sc,
666 int ath_rx_aggr_stop(struct ath_softc *sc,
669 int ath_tx_aggr_start(struct ath_softc *sc,
673 int ath_tx_aggr_stop(struct ath_softc *sc,
676 void ath_newassoc(struct ath_softc *sc,
677 struct ath_node *node, int isnew, int isuapsd);
678 struct ath_node *ath_node_attach(struct ath_softc *sc,
679 u8 addr[ETH_ALEN], int if_id);
680 void ath_node_detach(struct ath_softc *sc, struct ath_node *an, bool bh_flag);
681 struct ath_node *ath_node_get(struct ath_softc *sc, u8 addr[ETH_ALEN]);
682 void ath_node_put(struct ath_softc *sc, struct ath_node *an, bool bh_flag);
683 struct ath_node *ath_node_find(struct ath_softc *sc, u8 *addr);
685 /*******************/
686 /* Beacon Handling */
687 /*******************/
690 * Regardless of the number of beacons we stagger, (i.e. regardless of the
691 * number of BSSIDs) if a given beacon does not go out even after waiting this
692 * number of beacon intervals, the game's up.
694 #define BSTUCK_THRESH (9 * ATH_BCBUF)
695 #define ATH_BCBUF 4 /* number of beacon buffers */
696 #define ATH_DEFAULT_BINTVAL 100 /* default beacon interval in TU */
697 #define ATH_DEFAULT_BMISS_LIMIT 10
698 #define IEEE80211_MS_TO_TU(x) (((x) * 1000) / 1024)
700 /* beacon configuration */
701 struct ath_beacon_config {
711 } u; /* last received beacon/probe response timestamp of this BSS. */
714 void ath9k_beacon_tasklet(unsigned long data);
715 void ath_beacon_config(struct ath_softc *sc, int if_id);
716 int ath_beaconq_setup(struct ath_hal *ah);
717 int ath_beacon_alloc(struct ath_softc *sc, int if_id);
718 void ath_bstuck_process(struct ath_softc *sc);
719 void ath_beacon_return(struct ath_softc *sc, struct ath_vap *avp);
720 void ath_beacon_sync(struct ath_softc *sc, int if_id);
721 void ath_get_beaconconfig(struct ath_softc *sc,
723 struct ath_beacon_config *conf);
729 * Define the scheme that we select MAC address for multiple
730 * BSS on the same radio. The very first VAP will just use the MAC
731 * address from the EEPROM. For the next 3 VAPs, we set the
732 * U/L bit (bit 1) in MAC address, and use the next two bits as the
736 #define ATH_SET_VAP_BSSID_MASK(bssid_mask) \
737 ((bssid_mask)[0] &= ~(((ATH_BCBUF-1)<<2)|0x02))
739 /* VAP configuration (from protocol layer) */
740 struct ath_vap_config {
741 u32 av_fixed_rateset;
742 u32 av_fixed_retryset;
745 /* driver-specific vap state */
747 struct ieee80211_vif *av_if_data;
748 enum ath9k_opmode av_opmode; /* VAP operational mode */
749 struct ath_buf *av_bcbuf; /* beacon buffer */
750 struct ath_tx_control av_btxctl; /* txctl information for beacon */
751 int av_bslot; /* beacon slot index */
752 struct ath_vap_config av_config;/* vap configuration parameters*/
753 struct ath_rate_node *rc_node;
756 int ath_vap_attach(struct ath_softc *sc,
758 struct ieee80211_vif *if_data,
759 enum ath9k_opmode opmode);
760 int ath_vap_detach(struct ath_softc *sc, int if_id);
761 int ath_vap_config(struct ath_softc *sc,
762 int if_id, struct ath_vap_config *if_config);
764 /*********************/
765 /* Antenna diversity */
766 /*********************/
768 #define ATH_ANT_DIV_MAX_CFG 2
769 #define ATH_ANT_DIV_MIN_IDLE_US 1000000 /* us */
770 #define ATH_ANT_DIV_MIN_SCAN_US 50000 /* us */
772 enum ATH_ANT_DIV_STATE{
774 ATH_ANT_DIV_SCAN, /* evaluating antenna */
778 struct ath_softc *antdiv_sc;
780 enum ATH_ANT_DIV_STATE antdiv_state;
781 u8 antdiv_num_antcfg;
784 int32_t antdivf_rssitrig;
785 int32_t antdiv_lastbrssi[ATH_ANT_DIV_MAX_CFG];
786 u64 antdiv_lastbtsf[ATH_ANT_DIV_MAX_CFG];
787 u64 antdiv_laststatetsf;
788 u8 antdiv_bssid[ETH_ALEN];
791 void ath_slow_ant_div_init(struct ath_antdiv *antdiv,
792 struct ath_softc *sc, int32_t rssitrig);
793 void ath_slow_ant_div_start(struct ath_antdiv *antdiv,
796 void ath_slow_ant_div_stop(struct ath_antdiv *antdiv);
797 void ath_slow_ant_div(struct ath_antdiv *antdiv,
798 struct ieee80211_hdr *wh,
799 struct ath_rx_status *rx_stats);
800 void ath_setdefantenna(void *sc, u32 antenna);
806 /* ANI values for STA only.
807 FIXME: Add appropriate values for AP later */
809 #define ATH_ANI_POLLINTERVAL 100 /* 100 milliseconds between ANI poll */
810 #define ATH_SHORT_CALINTERVAL 1000 /* 1 second between calibrations */
811 #define ATH_LONG_CALINTERVAL 30000 /* 30 seconds between calibrations */
812 #define ATH_RESTART_CALINTERVAL 1200000 /* 20 minutes between calibrations */
816 int16_t sc_noise_floor;
817 unsigned int sc_longcal_timer;
818 unsigned int sc_shortcal_timer;
819 unsigned int sc_resetcal_timer;
820 unsigned int sc_checkani_timer;
821 struct timer_list timer;
824 /********************/
826 /********************/
828 #define ATH_LED_PIN 1
838 struct ath_softc *sc;
839 struct led_classdev led_cdev;
840 enum ath_led_type led_type;
846 #define ATH_RFKILL_POLL_INTERVAL 2000 /* msecs */
849 struct rfkill *rfkill;
850 struct delayed_work rfkill_poll;
851 char rfkill_name[32];
854 /********************/
855 /* Main driver core */
856 /********************/
859 * Default cache line size, in bytes.
860 * Used when PCI device not fully initialized by bootrom/BIOS
862 #define DEFAULT_CACHELINE 32
863 #define ATH_DEFAULT_NOISE_FLOOR -95
864 #define ATH_REGCLASSIDS_MAX 10
865 #define ATH_CABQ_READY_TIME 80 /* % of beacon interval */
866 #define ATH_MAX_SW_RETRIES 10
867 #define ATH_CHAN_MAX 255
868 #define IEEE80211_WEP_NKID 4 /* number of key ids */
869 #define IEEE80211_RATE_VAL 0x7f
871 * The key cache is used for h/w cipher state and also for
872 * tracking station state such as the current tx antenna.
873 * We also setup a mapping table between key cache slot indices
874 * and station state to short-circuit node lookups on rx.
875 * Different parts have different size key caches. We handle
876 * up to ATH_KEYMAX entries (could dynamically allocate state).
878 #define ATH_KEYMAX 128 /* max key cache size we handle */
880 #define ATH_IF_ID_ANY 0xff
881 #define ATH_TXPOWER_MAX 100 /* .5 dBm units */
883 #define RSSI_LPF_THRESHOLD -20
884 #define ATH_RSSI_EP_MULTIPLIER (1<<7) /* pow2 to optimize out * and / */
885 #define ATH_RATE_DUMMY_MARKER 0
886 #define ATH_RSSI_LPF_LEN 10
887 #define ATH_RSSI_DUMMY_MARKER 0x127
889 #define ATH_EP_MUL(x, mul) ((x) * (mul))
890 #define ATH_EP_RND(x, mul) \
891 ((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
892 #define ATH_RSSI_OUT(x) \
893 (((x) != ATH_RSSI_DUMMY_MARKER) ? \
894 (ATH_EP_RND((x), ATH_RSSI_EP_MULTIPLIER)) : ATH_RSSI_DUMMY_MARKER)
895 #define ATH_RSSI_IN(x) \
896 (ATH_EP_MUL((x), ATH_RSSI_EP_MULTIPLIER))
897 #define ATH_LPF_RSSI(x, y, len) \
898 ((x != ATH_RSSI_DUMMY_MARKER) ? \
899 (((x) * ((len) - 1) + (y)) / (len)) : (y))
900 #define ATH_RSSI_LPF(x, y) do { \
901 if ((y) >= RSSI_LPF_THRESHOLD) \
902 x = ATH_LPF_RSSI((x), \
903 ATH_RSSI_IN((y)), ATH_RSSI_LPF_LEN); \
920 enum ath9k_ht_macmode tx_chan_width;
924 #define SC_OP_INVALID BIT(0)
925 #define SC_OP_BEACONS BIT(1)
926 #define SC_OP_RXAGGR BIT(2)
927 #define SC_OP_TXAGGR BIT(3)
928 #define SC_OP_CHAINMASK_UPDATE BIT(4)
929 #define SC_OP_FULL_RESET BIT(5)
930 #define SC_OP_NO_RESET BIT(6)
931 #define SC_OP_PREAMBLE_SHORT BIT(7)
932 #define SC_OP_PROTECT_ENABLE BIT(8)
933 #define SC_OP_RXFLUSH BIT(9)
934 #define SC_OP_LED_ASSOCIATED BIT(10)
935 #define SC_OP_RFKILL_REGISTERED BIT(11)
936 #define SC_OP_RFKILL_SW_BLOCKED BIT(12)
937 #define SC_OP_RFKILL_HW_BLOCKED BIT(13)
940 struct ieee80211_hw *hw;
941 struct pci_dev *pdev;
942 struct tasklet_struct intr_tq;
943 struct tasklet_struct bcon_tasklet;
944 struct ath_config sc_config;
945 struct ath_hal *sc_ah;
946 struct ath_rate_softc *sc_rc;
949 u8 sc_curbssid[ETH_ALEN];
950 u8 sc_myaddr[ETH_ALEN];
951 u8 sc_bssidmask[ETH_ALEN];
955 u32 sc_flags; /* SC_OP_* */
956 unsigned int rx_filter;
960 int sc_slotupdate; /* slot to next advance fsm */
962 int sc_bslot[ATH_BCBUF];
965 enum ath9k_int sc_imask;
966 enum wireless_mode sc_curmode; /* current phy mode */
967 enum PROT_MODE sc_protmode;
969 u8 sc_nbcnvaps; /* # of vaps sending beacons */
970 u16 sc_nvaps; /* # of active virtual ap's */
971 struct ath_vap *sc_vaps[ATH_BCBUF];
974 u8 sc_defant; /* current default antenna */
975 u8 sc_rxotherant; /* rx's on non-default antenna */
977 struct ath9k_node_stats sc_halstats; /* station-mode rssi stats */
978 struct list_head node_list;
979 struct ath_ht_info sc_ht_info;
980 enum ath9k_ht_extprotspacing sc_ht_extprotspacing;
982 #ifdef CONFIG_SLOW_ANT_DIV
983 struct ath_antdiv sc_antdiv;
986 OK, /* no change needed */
987 UPDATE, /* update pending */
988 COMMIT /* beacon sent, commit change */
989 } sc_updateslot; /* slot time update fsm */
992 u32 sc_keymax; /* size of key cache */
993 DECLARE_BITMAP(sc_keymap, ATH_KEYMAX); /* key use bit map */
994 u8 sc_splitmic; /* split TKIP MIC keys */
997 struct list_head sc_rxbuf;
998 struct ath_descdma sc_rxdma;
999 int sc_rxbufsize; /* rx size based on mtu */
1000 u32 *sc_rxlink; /* link ptr in last RX desc */
1003 struct list_head sc_txbuf;
1004 struct ath_txq sc_txq[ATH9K_NUM_TX_QUEUES];
1005 struct ath_descdma sc_txdma;
1007 int sc_haltype2q[ATH9K_WME_AC_VO+1]; /* HAL WME AC -> h/w qnum */
1008 u16 seq_no; /* TX sequence number */
1011 struct ath9k_tx_queue_info sc_beacon_qi;
1012 struct ath_descdma sc_bdma;
1013 struct ath_txq *sc_cabq;
1014 struct list_head sc_bbuf;
1017 u32 ast_be_xmit; /* beacons transmitted */
1021 struct ieee80211_rate rates[IEEE80211_NUM_BANDS][ATH_RATE_MAX];
1022 const struct ath9k_rate_table *sc_currates;
1023 u8 sc_rixmap[256]; /* IEEE to h/w rate table ix */
1024 u8 sc_protrix; /* protection rate index */
1026 u32 rateKbps; /* transfer rate in kbs */
1027 u8 ieeerate; /* IEEE rate */
1028 } sc_hwmap[256]; /* h/w rate ix mappings */
1031 struct ieee80211_channel channels[IEEE80211_NUM_BANDS][ATH_CHAN_MAX];
1032 struct ieee80211_supported_band sbands[IEEE80211_NUM_BANDS];
1035 spinlock_t sc_rxflushlock;
1036 spinlock_t sc_rxbuflock;
1037 spinlock_t sc_txbuflock;
1038 spinlock_t sc_resetlock;
1039 spinlock_t node_lock;
1042 struct ath_led radio_led;
1043 struct ath_led assoc_led;
1044 struct ath_led tx_led;
1045 struct ath_led rx_led;
1048 struct ath_rfkill rf_kill;
1051 struct ath_ani sc_ani;
1054 int ath_init(u16 devid, struct ath_softc *sc);
1055 void ath_deinit(struct ath_softc *sc);
1056 int ath_open(struct ath_softc *sc, struct ath9k_channel *initial_chan);
1057 int ath_suspend(struct ath_softc *sc);
1058 irqreturn_t ath_isr(int irq, void *dev);
1059 int ath_reset(struct ath_softc *sc, bool retry_tx);
1060 int ath_set_channel(struct ath_softc *sc, struct ath9k_channel *hchan);
1062 /*********************/
1063 /* Utility Functions */
1064 /*********************/
1066 void ath_key_reset(struct ath_softc *sc, u16 keyix, int freeslot);
1067 int ath_keyset(struct ath_softc *sc,
1069 struct ath9k_keyval *hk,
1070 const u8 mac[ETH_ALEN]);
1071 int ath_get_hal_qnum(u16 queue, struct ath_softc *sc);
1072 int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc);
1073 void ath_setslottime(struct ath_softc *sc);
1074 void ath_update_txpow(struct ath_softc *sc);
1075 int ath_cabq_update(struct ath_softc *);
1076 void ath_get_currentCountry(struct ath_softc *sc,
1077 struct ath9k_country_entry *ctry);
1078 u64 ath_extend_tsf(struct ath_softc *sc, u32 rstamp);