blob: 7705da1103f486f603e0179fe2f43d4fcbc3dacb [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
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 ATH9K_H
18#define ATH9K_H
19
Sujith394cf0a2009-02-09 13:26:54 +053020#include <linux/etherdevice.h>
21#include <linux/device.h>
22#include <net/mac80211.h>
23#include <linux/leds.h>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070024
Sujith394cf0a2009-02-09 13:26:54 +053025#include "hw.h"
26#include "rc.h"
27#include "debug.h"
Luis R. Rodriguezd15dd3e2009-08-12 09:56:59 -070028#include "../ath.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070029
Sujith394cf0a2009-02-09 13:26:54 +053030struct ath_node;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070031
Sujith394cf0a2009-02-09 13:26:54 +053032/* Macro to expand scalars to 64-bit objects */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070033
Sujith394cf0a2009-02-09 13:26:54 +053034#define ito64(x) (sizeof(x) == 8) ? \
35 (((unsigned long long int)(x)) & (0xff)) : \
36 (sizeof(x) == 16) ? \
37 (((unsigned long long int)(x)) & 0xffff) : \
38 ((sizeof(x) == 32) ? \
39 (((unsigned long long int)(x)) & 0xffffffff) : \
40 (unsigned long long int)(x))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070041
Sujith394cf0a2009-02-09 13:26:54 +053042/* increment with wrap-around */
43#define INCR(_l, _sz) do { \
44 (_l)++; \
45 (_l) &= ((_sz) - 1); \
46 } while (0)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070047
Sujith394cf0a2009-02-09 13:26:54 +053048/* decrement with wrap-around */
49#define DECR(_l, _sz) do { \
50 (_l)--; \
51 (_l) &= ((_sz) - 1); \
52 } while (0)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070053
Sujith394cf0a2009-02-09 13:26:54 +053054#define A_MAX(a, b) ((a) > (b) ? (a) : (b))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070055
Alexander Beregalov0ee904c2009-04-11 14:50:23 +000056#define ASSERT(exp) BUG_ON(!(exp))
Sujith394cf0a2009-02-09 13:26:54 +053057
58#define TSF_TO_TU(_h,_l) \
59 ((((u32)(_h)) << 22) | (((u32)(_l)) >> 10))
60
61#define ATH_TXQ_SETUP(sc, i) ((sc)->tx.txqsetup & (1<<i))
62
63static const u8 ath_bcast_mac[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
64
65struct ath_config {
66 u32 ath_aggr_prot;
67 u16 txpowlimit;
68 u8 cabqReadytime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070069};
70
Sujith394cf0a2009-02-09 13:26:54 +053071/*************************/
72/* Descriptor Management */
73/*************************/
74
75#define ATH_TXBUF_RESET(_bf) do { \
Sujitha119cc42009-03-30 15:28:38 +053076 (_bf)->bf_stale = false; \
Sujith394cf0a2009-02-09 13:26:54 +053077 (_bf)->bf_lastbf = NULL; \
78 (_bf)->bf_next = NULL; \
79 memset(&((_bf)->bf_state), 0, \
80 sizeof(struct ath_buf_state)); \
81 } while (0)
82
Sujitha119cc42009-03-30 15:28:38 +053083#define ATH_RXBUF_RESET(_bf) do { \
84 (_bf)->bf_stale = false; \
85 } while (0)
86
Sujith394cf0a2009-02-09 13:26:54 +053087/**
88 * enum buffer_type - Buffer type flags
89 *
90 * @BUF_HT: Send this buffer using HT capabilities
91 * @BUF_AMPDU: This buffer is an ampdu, as part of an aggregate (during TX)
92 * @BUF_AGGR: Indicates whether the buffer can be aggregated
93 * (used in aggregation scheduling)
94 * @BUF_RETRY: Indicates whether the buffer is retried
95 * @BUF_XRETRY: To denote excessive retries of the buffer
96 */
97enum buffer_type {
98 BUF_HT = BIT(1),
99 BUF_AMPDU = BIT(2),
100 BUF_AGGR = BIT(3),
101 BUF_RETRY = BIT(4),
102 BUF_XRETRY = BIT(5),
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700103};
104
Sujith394cf0a2009-02-09 13:26:54 +0530105struct ath_buf_state {
Sujith17d79042009-02-09 13:27:03 +0530106 int bfs_nframes;
107 u16 bfs_al;
108 u16 bfs_frmlen;
109 int bfs_seqno;
110 int bfs_tidno;
111 int bfs_retries;
Sujitha119cc42009-03-30 15:28:38 +0530112 u8 bf_type;
Sujith394cf0a2009-02-09 13:26:54 +0530113 u32 bfs_keyix;
114 enum ath9k_key_type bfs_keytype;
115};
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700116
Sujith394cf0a2009-02-09 13:26:54 +0530117#define bf_nframes bf_state.bfs_nframes
118#define bf_al bf_state.bfs_al
119#define bf_frmlen bf_state.bfs_frmlen
120#define bf_retries bf_state.bfs_retries
121#define bf_seqno bf_state.bfs_seqno
122#define bf_tidno bf_state.bfs_tidno
123#define bf_keyix bf_state.bfs_keyix
124#define bf_keytype bf_state.bfs_keytype
125#define bf_isht(bf) (bf->bf_state.bf_type & BUF_HT)
126#define bf_isampdu(bf) (bf->bf_state.bf_type & BUF_AMPDU)
127#define bf_isaggr(bf) (bf->bf_state.bf_type & BUF_AGGR)
128#define bf_isretried(bf) (bf->bf_state.bf_type & BUF_RETRY)
129#define bf_isxretried(bf) (bf->bf_state.bf_type & BUF_XRETRY)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700130
Sujith394cf0a2009-02-09 13:26:54 +0530131struct ath_buf {
132 struct list_head list;
133 struct ath_buf *bf_lastbf; /* last buf of this unit (a frame or
134 an aggregate) */
135 struct ath_buf *bf_next; /* next subframe in the aggregate */
Sujitha22be222009-03-30 15:28:36 +0530136 struct sk_buff *bf_mpdu; /* enclosing frame structure */
Sujith394cf0a2009-02-09 13:26:54 +0530137 struct ath_desc *bf_desc; /* virtual addr of desc */
138 dma_addr_t bf_daddr; /* physical addr of desc */
139 dma_addr_t bf_buf_addr; /* physical addr of data buffer */
Sujitha119cc42009-03-30 15:28:38 +0530140 bool bf_stale;
Sujith17d79042009-02-09 13:27:03 +0530141 u16 bf_flags;
142 struct ath_buf_state bf_state;
Sujith394cf0a2009-02-09 13:26:54 +0530143 dma_addr_t bf_dmacontext;
144};
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700145
Sujith394cf0a2009-02-09 13:26:54 +0530146struct ath_descdma {
Sujith17d79042009-02-09 13:27:03 +0530147 struct ath_desc *dd_desc;
148 dma_addr_t dd_desc_paddr;
149 u32 dd_desc_len;
150 struct ath_buf *dd_bufptr;
Sujith394cf0a2009-02-09 13:26:54 +0530151};
152
153int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
154 struct list_head *head, const char *name,
155 int nbuf, int ndesc);
156void ath_descdma_cleanup(struct ath_softc *sc, struct ath_descdma *dd,
157 struct list_head *head);
158
159/***********/
160/* RX / TX */
161/***********/
162
163#define ATH_MAX_ANTENNA 3
164#define ATH_RXBUF 512
165#define WME_NUM_TID 16
166#define ATH_TXBUF 512
167#define ATH_TXMAXTRY 13
Sujith394cf0a2009-02-09 13:26:54 +0530168#define ATH_MGT_TXMAXTRY 4
169#define WME_BA_BMP_SIZE 64
170#define WME_MAX_BA WME_BA_BMP_SIZE
171#define ATH_TID_MAX_BUFS (2 * WME_MAX_BA)
172
173#define TID_TO_WME_AC(_tid) \
174 ((((_tid) == 0) || ((_tid) == 3)) ? WME_AC_BE : \
175 (((_tid) == 1) || ((_tid) == 2)) ? WME_AC_BK : \
176 (((_tid) == 4) || ((_tid) == 5)) ? WME_AC_VI : \
177 WME_AC_VO)
178
179#define WME_AC_BE 0
180#define WME_AC_BK 1
181#define WME_AC_VI 2
182#define WME_AC_VO 3
183#define WME_NUM_AC 4
184
185#define ADDBA_EXCHANGE_ATTEMPTS 10
186#define ATH_AGGR_DELIM_SZ 4
187#define ATH_AGGR_MINPLEN 256 /* in bytes, minimum packet length */
188/* number of delimiters for encryption padding */
189#define ATH_AGGR_ENCRYPTDELIM 10
190/* minimum h/w qdepth to be sustained to maximize aggregation */
191#define ATH_AGGR_MIN_QDEPTH 2
192#define ATH_AMPDU_SUBFRAME_DEFAULT 32
193#define ATH_AMPDU_LIMIT_MAX (64 * 1024 - 1)
Sujith394cf0a2009-02-09 13:26:54 +0530194
195#define IEEE80211_SEQ_SEQ_SHIFT 4
196#define IEEE80211_SEQ_MAX 4096
Sujith394cf0a2009-02-09 13:26:54 +0530197#define IEEE80211_WEP_IVLEN 3
198#define IEEE80211_WEP_KIDLEN 1
199#define IEEE80211_WEP_CRCLEN 4
200#define IEEE80211_MAX_MPDU_LEN (3840 + FCS_LEN + \
201 (IEEE80211_WEP_IVLEN + \
202 IEEE80211_WEP_KIDLEN + \
203 IEEE80211_WEP_CRCLEN))
204
205/* return whether a bit at index _n in bitmap _bm is set
206 * _sz is the size of the bitmap */
207#define ATH_BA_ISSET(_bm, _n) (((_n) < (WME_BA_BMP_SIZE)) && \
208 ((_bm)[(_n) >> 5] & (1 << ((_n) & 31))))
209
210/* return block-ack bitmap index given sequence and starting sequence */
211#define ATH_BA_INDEX(_st, _seq) (((_seq) - (_st)) & (IEEE80211_SEQ_MAX - 1))
212
213/* returns delimiter padding required given the packet length */
214#define ATH_AGGR_GET_NDELIM(_len) \
215 (((((_len) + ATH_AGGR_DELIM_SZ) < ATH_AGGR_MINPLEN) ? \
216 (ATH_AGGR_MINPLEN - (_len) - ATH_AGGR_DELIM_SZ) : 0) >> 2)
217
218#define BAW_WITHIN(_start, _bawsz, _seqno) \
219 ((((_seqno) - (_start)) & 4095) < (_bawsz))
220
221#define ATH_DS_BA_SEQ(_ds) ((_ds)->ds_us.tx.ts_seqnum)
222#define ATH_DS_BA_BITMAP(_ds) (&(_ds)->ds_us.tx.ba_low)
223#define ATH_DS_TX_BA(_ds) ((_ds)->ds_us.tx.ts_flags & ATH9K_TX_BA)
224#define ATH_AN_2_TID(_an, _tidno) (&(_an)->tid[(_tidno)])
225
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400226#define ATH_TX_COMPLETE_POLL_INT 1000
227
Sujith394cf0a2009-02-09 13:26:54 +0530228enum ATH_AGGR_STATUS {
229 ATH_AGGR_DONE,
230 ATH_AGGR_BAW_CLOSED,
231 ATH_AGGR_LIMITED,
232};
233
234struct ath_txq {
Sujith17d79042009-02-09 13:27:03 +0530235 u32 axq_qnum;
236 u32 *axq_link;
237 struct list_head axq_q;
Sujith394cf0a2009-02-09 13:26:54 +0530238 spinlock_t axq_lock;
Sujith17d79042009-02-09 13:27:03 +0530239 u32 axq_depth;
240 u8 axq_aggr_depth;
Sujith17d79042009-02-09 13:27:03 +0530241 bool stopped;
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400242 bool axq_tx_inprogress;
Sujith17d79042009-02-09 13:27:03 +0530243 struct ath_buf *axq_linkbuf;
Sujith394cf0a2009-02-09 13:26:54 +0530244
245 /* first desc of the last descriptor that contains CTS */
246 struct ath_desc *axq_lastdsWithCTS;
247
248 /* final desc of the gating desc that determines whether
249 lastdsWithCTS has been DMA'ed or not */
250 struct ath_desc *axq_gatingds;
251
252 struct list_head axq_acq;
253};
254
255#define AGGR_CLEANUP BIT(1)
256#define AGGR_ADDBA_COMPLETE BIT(2)
257#define AGGR_ADDBA_PROGRESS BIT(3)
258
Sujith394cf0a2009-02-09 13:26:54 +0530259struct ath_atx_tid {
Sujith17d79042009-02-09 13:27:03 +0530260 struct list_head list;
261 struct list_head buf_q;
Sujith394cf0a2009-02-09 13:26:54 +0530262 struct ath_node *an;
263 struct ath_atx_ac *ac;
Sujith17d79042009-02-09 13:27:03 +0530264 struct ath_buf *tx_buf[ATH_TID_MAX_BUFS];
Sujith394cf0a2009-02-09 13:26:54 +0530265 u16 seq_start;
266 u16 seq_next;
267 u16 baw_size;
268 int tidno;
Sujith17d79042009-02-09 13:27:03 +0530269 int baw_head; /* first un-acked tx buffer */
270 int baw_tail; /* next unused tx buffer slot */
Sujith394cf0a2009-02-09 13:26:54 +0530271 int sched;
272 int paused;
273 u8 state;
Sujith394cf0a2009-02-09 13:26:54 +0530274};
275
Sujith394cf0a2009-02-09 13:26:54 +0530276struct ath_atx_ac {
Sujith17d79042009-02-09 13:27:03 +0530277 int sched;
278 int qnum;
279 struct list_head list;
280 struct list_head tid_q;
Sujith394cf0a2009-02-09 13:26:54 +0530281};
282
Sujith394cf0a2009-02-09 13:26:54 +0530283struct ath_tx_control {
284 struct ath_txq *txq;
285 int if_id;
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200286 enum ath9k_internal_frame_type frame_type;
Sujith394cf0a2009-02-09 13:26:54 +0530287};
288
Sujith394cf0a2009-02-09 13:26:54 +0530289#define ATH_TX_ERROR 0x01
290#define ATH_TX_XRETRY 0x02
291#define ATH_TX_BAR 0x04
Sujith394cf0a2009-02-09 13:26:54 +0530292
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400293#define ATH_RSSI_LPF_LEN 10
294#define RSSI_LPF_THRESHOLD -20
295#define ATH9K_RSSI_BAD 0x80
296#define ATH_RSSI_EP_MULTIPLIER (1<<7)
297#define ATH_EP_MUL(x, mul) ((x) * (mul))
298#define ATH_RSSI_IN(x) (ATH_EP_MUL((x), ATH_RSSI_EP_MULTIPLIER))
299#define ATH_LPF_RSSI(x, y, len) \
300 ((x != ATH_RSSI_DUMMY_MARKER) ? (((x) * ((len) - 1) + (y)) / (len)) : (y))
301#define ATH_RSSI_LPF(x, y) do { \
302 if ((y) >= RSSI_LPF_THRESHOLD) \
303 x = ATH_LPF_RSSI((x), ATH_RSSI_IN((y)), ATH_RSSI_LPF_LEN); \
304} while (0)
305#define ATH_EP_RND(x, mul) \
306 ((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
307
Sujith394cf0a2009-02-09 13:26:54 +0530308struct ath_node {
309 struct ath_softc *an_sc;
310 struct ath_atx_tid tid[WME_NUM_TID];
311 struct ath_atx_ac ac[WME_NUM_AC];
312 u16 maxampdu;
313 u8 mpdudensity;
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400314 int last_rssi;
Sujith394cf0a2009-02-09 13:26:54 +0530315};
316
317struct ath_tx {
318 u16 seq_no;
319 u32 txqsetup;
320 int hwq_map[ATH9K_WME_AC_VO+1];
321 spinlock_t txbuflock;
322 struct list_head txbuf;
323 struct ath_txq txq[ATH9K_NUM_TX_QUEUES];
324 struct ath_descdma txdma;
325};
326
327struct ath_rx {
328 u8 defant;
329 u8 rxotherant;
330 u32 *rxlink;
331 int bufsize;
332 unsigned int rxfilter;
333 spinlock_t rxflushlock;
334 spinlock_t rxbuflock;
335 struct list_head rxbuf;
336 struct ath_descdma rxdma;
337};
338
339int ath_startrecv(struct ath_softc *sc);
340bool ath_stoprecv(struct ath_softc *sc);
341void ath_flushrecv(struct ath_softc *sc);
342u32 ath_calcrxfilter(struct ath_softc *sc);
343int ath_rx_init(struct ath_softc *sc, int nbufs);
344void ath_rx_cleanup(struct ath_softc *sc);
345int ath_rx_tasklet(struct ath_softc *sc, int flush);
346struct ath_txq *ath_txq_setup(struct ath_softc *sc, int qtype, int subtype);
347void ath_tx_cleanupq(struct ath_softc *sc, struct ath_txq *txq);
348int ath_tx_setup(struct ath_softc *sc, int haltype);
349void ath_drain_all_txq(struct ath_softc *sc, bool retry_tx);
350void ath_draintxq(struct ath_softc *sc,
351 struct ath_txq *txq, bool retry_tx);
352void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an);
353void ath_tx_node_cleanup(struct ath_softc *sc, struct ath_node *an);
354void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq);
355int ath_tx_init(struct ath_softc *sc, int nbufs);
Sujith797fe5cb2009-03-30 15:28:45 +0530356void ath_tx_cleanup(struct ath_softc *sc);
Sujith394cf0a2009-02-09 13:26:54 +0530357struct ath_txq *ath_test_get_txq(struct ath_softc *sc, struct sk_buff *skb);
358int ath_txq_update(struct ath_softc *sc, int qnum,
359 struct ath9k_tx_queue_info *q);
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200360int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb,
Sujith394cf0a2009-02-09 13:26:54 +0530361 struct ath_tx_control *txctl);
362void ath_tx_tasklet(struct ath_softc *sc);
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200363void ath_tx_cabq(struct ieee80211_hw *hw, struct sk_buff *skb);
Sujith394cf0a2009-02-09 13:26:54 +0530364bool ath_tx_aggr_check(struct ath_softc *sc, struct ath_node *an, u8 tidno);
Sujithf83da962009-07-23 15:32:37 +0530365void ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta,
366 u16 tid, u16 *ssn);
367void ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid);
Sujith394cf0a2009-02-09 13:26:54 +0530368void ath_tx_aggr_resume(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid);
369
370/********/
Sujith17d79042009-02-09 13:27:03 +0530371/* VIFs */
Sujith394cf0a2009-02-09 13:26:54 +0530372/********/
373
Sujith17d79042009-02-09 13:27:03 +0530374struct ath_vif {
Sujith394cf0a2009-02-09 13:26:54 +0530375 int av_bslot;
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200376 __le64 tsf_adjust; /* TSF adjustment for staggered beacons */
Sujith394cf0a2009-02-09 13:26:54 +0530377 enum nl80211_iftype av_opmode;
378 struct ath_buf *av_bcbuf;
379 struct ath_tx_control av_btxctl;
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200380 u8 bssid[ETH_ALEN]; /* current BSSID from config_interface */
Sujith394cf0a2009-02-09 13:26:54 +0530381};
382
383/*******************/
384/* Beacon Handling */
385/*******************/
386
387/*
388 * Regardless of the number of beacons we stagger, (i.e. regardless of the
389 * number of BSSIDs) if a given beacon does not go out even after waiting this
390 * number of beacon intervals, the game's up.
391 */
392#define BSTUCK_THRESH (9 * ATH_BCBUF)
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200393#define ATH_BCBUF 4
Sujith394cf0a2009-02-09 13:26:54 +0530394#define ATH_DEFAULT_BINTVAL 100 /* TU */
395#define ATH_DEFAULT_BMISS_LIMIT 10
396#define IEEE80211_MS_TO_TU(x) (((x) * 1000) / 1024)
397
398struct ath_beacon_config {
399 u16 beacon_interval;
400 u16 listen_interval;
401 u16 dtim_period;
402 u16 bmiss_timeout;
403 u8 dtim_count;
Sujith86b89ee2008-08-07 10:54:57 +0530404};
405
Sujith394cf0a2009-02-09 13:26:54 +0530406struct ath_beacon {
407 enum {
408 OK, /* no change needed */
409 UPDATE, /* update pending */
410 COMMIT /* beacon sent, commit change */
411 } updateslot; /* slot time update fsm */
412
413 u32 beaconq;
414 u32 bmisscnt;
415 u32 ast_be_xmit;
416 u64 bc_tstamp;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200417 struct ieee80211_vif *bslot[ATH_BCBUF];
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200418 struct ath_wiphy *bslot_aphy[ATH_BCBUF];
Sujith394cf0a2009-02-09 13:26:54 +0530419 int slottime;
420 int slotupdate;
421 struct ath9k_tx_queue_info beacon_qi;
422 struct ath_descdma bdma;
423 struct ath_txq *cabq;
424 struct list_head bbuf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700425};
426
Sujith9fc9ab02009-03-03 10:16:51 +0530427void ath_beacon_tasklet(unsigned long data);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200428void ath_beacon_config(struct ath_softc *sc, struct ieee80211_vif *vif);
Sujithcbe61d82009-02-09 13:27:12 +0530429int ath_beaconq_setup(struct ath_hw *ah);
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200430int ath_beacon_alloc(struct ath_wiphy *aphy, struct ieee80211_vif *vif);
Sujith17d79042009-02-09 13:27:03 +0530431void ath_beacon_return(struct ath_softc *sc, struct ath_vif *avp);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700432
Sujith394cf0a2009-02-09 13:26:54 +0530433/*******/
Sujithf1dc5602008-10-29 10:16:30 +0530434/* ANI */
Sujith394cf0a2009-02-09 13:26:54 +0530435/*******/
Sujithf1dc5602008-10-29 10:16:30 +0530436
Sujith20977d32009-02-20 15:13:28 +0530437#define ATH_STA_SHORT_CALINTERVAL 1000 /* 1 second */
438#define ATH_AP_SHORT_CALINTERVAL 100 /* 100 ms */
439#define ATH_ANI_POLLINTERVAL 100 /* 100 ms */
440#define ATH_LONG_CALINTERVAL 30000 /* 30 seconds */
441#define ATH_RESTART_CALINTERVAL 1200000 /* 20 minutes */
Sujithf1dc5602008-10-29 10:16:30 +0530442
Sujith394cf0a2009-02-09 13:26:54 +0530443struct ath_ani {
Sujith17d79042009-02-09 13:27:03 +0530444 bool caldone;
445 int16_t noise_floor;
446 unsigned int longcal_timer;
447 unsigned int shortcal_timer;
448 unsigned int resetcal_timer;
449 unsigned int checkani_timer;
Sujith394cf0a2009-02-09 13:26:54 +0530450 struct timer_list timer;
451};
Sujithf1dc5602008-10-29 10:16:30 +0530452
Sujith394cf0a2009-02-09 13:26:54 +0530453/********************/
454/* LED Control */
455/********************/
Sujithf1dc5602008-10-29 10:16:30 +0530456
Vivek Natarajan08fc5c12009-08-14 11:30:52 +0530457#define ATH_LED_PIN_DEF 1
458#define ATH_LED_PIN_9287 8
Sujith394cf0a2009-02-09 13:26:54 +0530459#define ATH_LED_ON_DURATION_IDLE 350 /* in msecs */
460#define ATH_LED_OFF_DURATION_IDLE 250 /* in msecs */
Sujithf1dc5602008-10-29 10:16:30 +0530461
Sujith394cf0a2009-02-09 13:26:54 +0530462enum ath_led_type {
463 ATH_LED_RADIO,
464 ATH_LED_ASSOC,
465 ATH_LED_TX,
466 ATH_LED_RX
467};
Sujithf1dc5602008-10-29 10:16:30 +0530468
Sujith394cf0a2009-02-09 13:26:54 +0530469struct ath_led {
470 struct ath_softc *sc;
471 struct led_classdev led_cdev;
472 enum ath_led_type led_type;
473 char name[32];
474 bool registered;
475};
Sujithf1dc5602008-10-29 10:16:30 +0530476
Sujith394cf0a2009-02-09 13:26:54 +0530477/********************/
478/* Main driver core */
479/********************/
Sujithf1dc5602008-10-29 10:16:30 +0530480
Sujith394cf0a2009-02-09 13:26:54 +0530481/*
482 * Default cache line size, in bytes.
483 * Used when PCI device not fully initialized by bootrom/BIOS
484*/
485#define DEFAULT_CACHELINE 32
486#define ATH_DEFAULT_NOISE_FLOOR -95
487#define ATH_REGCLASSIDS_MAX 10
488#define ATH_CABQ_READY_TIME 80 /* % of beacon interval */
489#define ATH_MAX_SW_RETRIES 10
490#define ATH_CHAN_MAX 255
491#define IEEE80211_WEP_NKID 4 /* number of key ids */
492
493/*
494 * The key cache is used for h/w cipher state and also for
495 * tracking station state such as the current tx antenna.
496 * We also setup a mapping table between key cache slot indices
497 * and station state to short-circuit node lookups on rx.
498 * Different parts have different size key caches. We handle
499 * up to ATH_KEYMAX entries (could dynamically allocate state).
500 */
501#define ATH_KEYMAX 128 /* max key cache size we handle */
502
Sujith394cf0a2009-02-09 13:26:54 +0530503#define ATH_TXPOWER_MAX 100 /* .5 dBm units */
504#define ATH_RSSI_DUMMY_MARKER 0x127
505#define ATH_RATE_DUMMY_MARKER 0
506
Sujithb238e902009-03-03 10:16:56 +0530507#define SC_OP_INVALID BIT(0)
508#define SC_OP_BEACONS BIT(1)
509#define SC_OP_RXAGGR BIT(2)
510#define SC_OP_TXAGGR BIT(3)
Sujithbdbdf462009-03-30 15:28:22 +0530511#define SC_OP_FULL_RESET BIT(4)
512#define SC_OP_PREAMBLE_SHORT BIT(5)
513#define SC_OP_PROTECT_ENABLE BIT(6)
514#define SC_OP_RXFLUSH BIT(7)
515#define SC_OP_LED_ASSOCIATED BIT(8)
Sujithbdbdf462009-03-30 15:28:22 +0530516#define SC_OP_WAIT_FOR_BEACON BIT(12)
517#define SC_OP_LED_ON BIT(13)
518#define SC_OP_SCANNING BIT(14)
519#define SC_OP_TSF_RESET BIT(15)
Jouni Malinencc659652009-05-14 21:28:48 +0300520#define SC_OP_WAIT_FOR_CAB BIT(16)
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300521#define SC_OP_WAIT_FOR_PSPOLL_DATA BIT(17)
522#define SC_OP_WAIT_FOR_TX_ACK BIT(18)
Jouni Malinenccdfeab2009-05-20 21:59:08 +0300523#define SC_OP_BEACON_SYNC BIT(19)
Sujith394cf0a2009-02-09 13:26:54 +0530524
525struct ath_bus_ops {
526 void (*read_cachesize)(struct ath_softc *sc, int *csz);
527 void (*cleanup)(struct ath_softc *sc);
Sujithcbe61d82009-02-09 13:27:12 +0530528 bool (*eeprom_read)(struct ath_hw *ah, u32 off, u16 *data);
Sujith394cf0a2009-02-09 13:26:54 +0530529};
530
Jouni Malinenbce048d2009-03-03 19:23:28 +0200531struct ath_wiphy;
532
Sujith394cf0a2009-02-09 13:26:54 +0530533struct ath_softc {
534 struct ieee80211_hw *hw;
535 struct device *dev;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200536
Luis R. Rodriguezd15dd3e2009-08-12 09:56:59 -0700537 struct ath_common common;
538
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200539 spinlock_t wiphy_lock; /* spinlock to protect ath_wiphy data */
Jouni Malinenbce048d2009-03-03 19:23:28 +0200540 struct ath_wiphy *pri_wiphy;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200541 struct ath_wiphy **sec_wiphy; /* secondary wiphys (virtual radios); may
542 * have NULL entries */
543 int num_sec_wiphy; /* number of sec_wiphy pointers in the array */
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200544 int chan_idx;
545 int chan_is_ht;
546 struct ath_wiphy *next_wiphy;
547 struct work_struct chan_work;
Jouni Malinen7ec3e512009-03-03 19:23:37 +0200548 int wiphy_select_failures;
549 unsigned long wiphy_select_first_fail;
Jouni Malinenf98c3bd2009-03-03 19:23:39 +0200550 struct delayed_work wiphy_work;
551 unsigned long wiphy_scheduler_int;
552 int wiphy_scheduler_index;
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200553
Sujith394cf0a2009-02-09 13:26:54 +0530554 struct tasklet_struct intr_tq;
555 struct tasklet_struct bcon_tasklet;
Sujithcbe61d82009-02-09 13:27:12 +0530556 struct ath_hw *sc_ah;
Sujith394cf0a2009-02-09 13:26:54 +0530557 void __iomem *mem;
558 int irq;
559 spinlock_t sc_resetlock;
David S. Miller2d6a5e92009-03-17 15:01:30 -0700560 spinlock_t sc_serial_rw;
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +0530561 spinlock_t ani_lock;
Gabor Juhos04717cc2009-07-14 20:17:13 -0400562 spinlock_t sc_pm_lock;
Sujith394cf0a2009-02-09 13:26:54 +0530563 struct mutex mutex;
564
Sujith17d79042009-02-09 13:27:03 +0530565 u8 curbssid[ETH_ALEN];
Sujith17d79042009-02-09 13:27:03 +0530566 u8 bssidmask[ETH_ALEN];
567 u32 intrstatus;
Sujith394cf0a2009-02-09 13:26:54 +0530568 u32 sc_flags; /* SC_OP_* */
Sujith17d79042009-02-09 13:27:03 +0530569 u16 curtxpow;
570 u16 curaid;
Sujith17d79042009-02-09 13:27:03 +0530571 u8 nbcnvifs;
572 u16 nvifs;
573 u8 tx_chainmask;
574 u8 rx_chainmask;
575 u32 keymax;
576 DECLARE_BITMAP(keymap, ATH_KEYMAX);
577 u8 splitmic;
Gabor Juhos96148322009-07-24 17:27:21 +0200578 bool ps_enabled;
Gabor Juhos709ade92009-07-14 20:17:15 -0400579 unsigned long ps_usecount;
Sujith17d79042009-02-09 13:27:03 +0530580 enum ath9k_int imask;
581 enum ath9k_ht_extprotspacing ht_extprotspacing;
Sujith394cf0a2009-02-09 13:26:54 +0530582 enum ath9k_ht_macmode tx_chan_width;
583
Sujith17d79042009-02-09 13:27:03 +0530584 struct ath_config config;
Sujith394cf0a2009-02-09 13:26:54 +0530585 struct ath_rx rx;
586 struct ath_tx tx;
587 struct ath_beacon beacon;
Sujith394cf0a2009-02-09 13:26:54 +0530588 struct ieee80211_rate rates[IEEE80211_NUM_BANDS][ATH_RATE_MAX];
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -0400589 const struct ath_rate_table *hw_rate_table[ATH9K_MODE_MAX];
590 const struct ath_rate_table *cur_rate_table;
Sujith394cf0a2009-02-09 13:26:54 +0530591 struct ieee80211_supported_band sbands[IEEE80211_NUM_BANDS];
592
593 struct ath_led radio_led;
594 struct ath_led assoc_led;
595 struct ath_led tx_led;
596 struct ath_led rx_led;
597 struct delayed_work ath_led_blink_work;
598 int led_on_duration;
599 int led_off_duration;
600 int led_on_cnt;
601 int led_off_cnt;
602
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200603 int beacon_interval;
604
Sujith17d79042009-02-09 13:27:03 +0530605 struct ath_ani ani;
Sujith394cf0a2009-02-09 13:26:54 +0530606#ifdef CONFIG_ATH9K_DEBUG
Sujith17d79042009-02-09 13:27:03 +0530607 struct ath9k_debug debug;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700608#endif
Sujith394cf0a2009-02-09 13:26:54 +0530609 struct ath_bus_ops *bus_ops;
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530610 struct ath_beacon_config cur_beacon_conf;
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400611 struct delayed_work tx_complete_work;
Sujith394cf0a2009-02-09 13:26:54 +0530612};
613
Jouni Malinenbce048d2009-03-03 19:23:28 +0200614struct ath_wiphy {
615 struct ath_softc *sc; /* shared for all virtual wiphys */
616 struct ieee80211_hw *hw;
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200617 enum ath_wiphy_state {
Jouni Malinen9580a222009-03-03 19:23:33 +0200618 ATH_WIPHY_INACTIVE,
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200619 ATH_WIPHY_ACTIVE,
620 ATH_WIPHY_PAUSING,
621 ATH_WIPHY_PAUSED,
Jouni Malinen8089cc42009-03-03 19:23:38 +0200622 ATH_WIPHY_SCAN,
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200623 } state;
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200624 int chan_idx;
625 int chan_is_ht;
Jouni Malinenbce048d2009-03-03 19:23:28 +0200626};
627
Sujith394cf0a2009-02-09 13:26:54 +0530628int ath_reset(struct ath_softc *sc, bool retry_tx);
629int ath_get_hal_qnum(u16 queue, struct ath_softc *sc);
630int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc);
631int ath_cabq_update(struct ath_softc *);
632
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700633static inline struct ath_common *ath9k_hw_common(struct ath_hw *ah)
634{
635 return &ah->ah_sc->common;
636}
637
638static inline struct ath_regulatory *ath9k_hw_regulatory(struct ath_hw *ah)
639{
640 return &(ath9k_hw_common(ah)->regulatory);
641}
642
Sujith394cf0a2009-02-09 13:26:54 +0530643static inline void ath_read_cachesize(struct ath_softc *sc, int *csz)
644{
645 sc->bus_ops->read_cachesize(sc, csz);
646}
647
648static inline void ath_bus_cleanup(struct ath_softc *sc)
649{
650 sc->bus_ops->cleanup(sc);
651}
652
653extern struct ieee80211_ops ath9k_ops;
654
655irqreturn_t ath_isr(int irq, void *dev);
656void ath_cleanup(struct ath_softc *sc);
Luis R. Rodriguez1e40bcf2009-08-03 12:24:47 -0700657int ath_init_device(u16 devid, struct ath_softc *sc);
Sujith394cf0a2009-02-09 13:26:54 +0530658void ath_detach(struct ath_softc *sc);
659const char *ath_mac_bb_name(u32 mac_bb_version);
660const char *ath_rf_name(u16 rf_version);
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200661void ath_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw);
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200662void ath9k_update_ichannel(struct ath_softc *sc, struct ieee80211_hw *hw,
663 struct ath9k_channel *ichan);
664void ath_update_chainmask(struct ath_softc *sc, int is_ht);
665int ath_set_channel(struct ath_softc *sc, struct ieee80211_hw *hw,
666 struct ath9k_channel *hchan);
Jouni Malinen7ec3e512009-03-03 19:23:37 +0200667void ath_radio_enable(struct ath_softc *sc);
668void ath_radio_disable(struct ath_softc *sc);
Sujith394cf0a2009-02-09 13:26:54 +0530669
670#ifdef CONFIG_PCI
671int ath_pci_init(void);
672void ath_pci_exit(void);
673#else
674static inline int ath_pci_init(void) { return 0; };
675static inline void ath_pci_exit(void) {};
676#endif
677
678#ifdef CONFIG_ATHEROS_AR71XX
679int ath_ahb_init(void);
680void ath_ahb_exit(void);
681#else
682static inline int ath_ahb_init(void) { return 0; };
683static inline void ath_ahb_exit(void) {};
684#endif
685
Gabor Juhos0bc07982009-07-14 20:17:14 -0400686void ath9k_ps_wakeup(struct ath_softc *sc);
687void ath9k_ps_restore(struct ath_softc *sc);
Jouni Malinen8ca21f02009-03-03 19:23:27 +0200688
689void ath9k_set_bssid_mask(struct ieee80211_hw *hw);
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200690int ath9k_wiphy_add(struct ath_softc *sc);
691int ath9k_wiphy_del(struct ath_wiphy *aphy);
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200692void ath9k_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb);
693int ath9k_wiphy_pause(struct ath_wiphy *aphy);
694int ath9k_wiphy_unpause(struct ath_wiphy *aphy);
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200695int ath9k_wiphy_select(struct ath_wiphy *aphy);
Jouni Malinenf98c3bd2009-03-03 19:23:39 +0200696void ath9k_wiphy_set_scheduler(struct ath_softc *sc, unsigned int msec_int);
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200697void ath9k_wiphy_chan_work(struct work_struct *work);
Jouni Malinen9580a222009-03-03 19:23:33 +0200698bool ath9k_wiphy_started(struct ath_softc *sc);
Jouni Malinen18eb62f2009-03-03 19:23:35 +0200699void ath9k_wiphy_pause_all_forced(struct ath_softc *sc,
700 struct ath_wiphy *selected);
Jouni Malinen8089cc42009-03-03 19:23:38 +0200701bool ath9k_wiphy_scanning(struct ath_softc *sc);
Jouni Malinenf98c3bd2009-03-03 19:23:39 +0200702void ath9k_wiphy_work(struct work_struct *work);
Luis R. Rodriguez64839172009-07-14 20:22:53 -0400703bool ath9k_all_wiphys_idle(struct ath_softc *sc);
Jouni Malinen8ca21f02009-03-03 19:23:27 +0200704
Gabor Juhosfb4a3d32009-04-29 13:01:58 +0200705void ath9k_iowrite32(struct ath_hw *ah, u32 reg_offset, u32 val);
706unsigned int ath9k_ioread32(struct ath_hw *ah, u32 reg_offset);
David S. Miller2d6a5e92009-03-17 15:01:30 -0700707
Sujith394cf0a2009-02-09 13:26:54 +0530708#endif /* ATH9K_H */