blob: 852b2c189fd8293f9f674b29491262478f767bdc [file] [log] [blame]
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001/*-
2 * Copyright (c) 2002-2007 Sam Leffler, Errno Consulting
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer,
10 * without modification.
11 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12 * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13 * redistribution must be conditioned upon including a substantially
14 * similar Disclaimer requirement for further binary redistribution.
15 * 3. Neither the names of the above-listed copyright holders nor the names
16 * of any contributors may be used to endorse or promote products derived
17 * from this software without specific prior written permission.
18 *
19 * Alternatively, this software may be distributed under the terms of the
20 * GNU General Public License ("GPL") version 2 as published by the Free
21 * Software Foundation.
22 *
23 * NO WARRANTY
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
27 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
28 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
29 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
32 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
34 * THE POSSIBILITY OF SUCH DAMAGES.
35 *
36 */
37
38/*
39 * Defintions for the Atheros Wireless LAN controller driver.
40 */
41#ifndef _DEV_ATH_ATHVAR_H
42#define _DEV_ATH_ATHVAR_H
43
44#include <linux/interrupt.h>
45#include <linux/list.h>
46#include <linux/wireless.h>
47#include <linux/if_ether.h>
Bob Copeland3a078872008-06-25 22:35:28 -040048#include <linux/leds.h>
Jiri Slabyfa1c1142007-08-12 17:33:16 +020049
50#include "ath5k.h"
51#include "debug.h"
52
53#define ATH_RXBUF 40 /* number of RX buffers */
54#define ATH_TXBUF 200 /* number of TX buffers */
55#define ATH_BCBUF 1 /* number of beacon buffers */
56
57struct ath5k_buf {
58 struct list_head list;
Jiri Slabyfa1c1142007-08-12 17:33:16 +020059 struct ath5k_desc *desc; /* virtual addr of desc */
60 dma_addr_t daddr; /* physical addr of desc */
61 struct sk_buff *skb; /* skbuff for buf */
62 dma_addr_t skbaddr;/* physical addr of skb data */
Jiri Slabyfa1c1142007-08-12 17:33:16 +020063};
64
65/*
66 * Data transmit queue state. One of these exists for each
67 * hardware transmit queue. Packets sent to us from above
68 * are assigned to queues based on their priority. Not all
69 * devices support a complete set of hardware transmit queues.
70 * For those devices the array sc_ac2q will map multiple
71 * priorities to fewer hardware queues (typically all to one
72 * hardware queue).
73 */
74struct ath5k_txq {
75 unsigned int qnum; /* hardware q number */
76 u32 *link; /* link ptr in last TX desc */
77 struct list_head q; /* transmit queue */
78 spinlock_t lock; /* lock on q and link */
79 bool setup;
80};
81
Bob Copeland3a078872008-06-25 22:35:28 -040082#define ATH5K_LED_MAX_NAME_LEN 31
83
84/*
85 * State for LED triggers
86 */
87struct ath5k_led
88{
89 char name[ATH5K_LED_MAX_NAME_LEN + 1]; /* name of the LED in sysfs */
90 struct ath5k_softc *sc; /* driver state */
91 struct led_classdev led_dev; /* led classdev */
92};
93
94
Jiri Slabyfa1c1142007-08-12 17:33:16 +020095#if CHAN_DEBUG
96#define ATH_CHAN_MAX (26+26+26+200+200)
97#else
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -050098#define ATH_CHAN_MAX (14+14+14+252+20)
Jiri Slabyfa1c1142007-08-12 17:33:16 +020099#endif
100
101/* Software Carrier, keeps track of the driver state
102 * associated with an instance of a device */
103struct ath5k_softc {
104 struct pci_dev *pdev; /* for dma mapping */
105 void __iomem *iobase; /* address of the device */
106 struct mutex lock; /* dev-level lock */
Johannes Berg57ffc582008-04-29 17:18:59 +0200107 /* FIXME: how many does it really need? */
108 struct ieee80211_tx_queue_stats tx_stats[16];
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200109 struct ieee80211_low_level_stats ll_stats;
110 struct ieee80211_hw *hw; /* IEEE 802.11 common */
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500111 struct ieee80211_supported_band sbands[IEEE80211_NUM_BANDS];
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200112 struct ieee80211_channel channels[ATH_CHAN_MAX];
Bruno Randolf63266a62008-07-30 17:12:58 +0200113 struct ieee80211_rate rates[IEEE80211_NUM_BANDS][AR5K_MAX_RATES];
Bob Copelandb7266042009-03-02 21:55:18 -0500114 s8 rate_idx[IEEE80211_NUM_BANDS][AR5K_MAX_RATES];
Johannes Berg05c914f2008-09-11 00:01:58 +0200115 enum nl80211_iftype opmode;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200116 struct ath5k_hw *ah; /* Atheros HW */
117
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500118 struct ieee80211_supported_band *curband;
119
Luis R. Rodriguezb4461972008-02-04 10:03:54 -0500120#ifdef CONFIG_ATH5K_DEBUG
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200121 struct ath5k_dbg_info debug; /* debug info */
Luis R. Rodriguezb4461972008-02-04 10:03:54 -0500122#endif /* CONFIG_ATH5K_DEBUG */
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200123
124 struct ath5k_buf *bufptr; /* allocated buffer ptr */
125 struct ath5k_desc *desc; /* TX/RX descriptors */
126 dma_addr_t desc_daddr; /* DMA (physical) address */
127 size_t desc_len; /* size of TX/RX descriptors */
128 u16 cachelsz; /* cache line size */
129
Bob Copeland8bdd5b92008-10-16 11:02:06 -0400130 DECLARE_BITMAP(status, 5);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200131#define ATH_STAT_INVALID 0 /* disable hardware accesses */
132#define ATH_STAT_MRRETRY 1 /* multi-rate retry support */
133#define ATH_STAT_PROMISC 2
Bob Copeland3a078872008-06-25 22:35:28 -0400134#define ATH_STAT_LEDSOFT 3 /* enable LED gpio status */
Bob Copeland8bdd5b92008-10-16 11:02:06 -0400135#define ATH_STAT_STARTED 4 /* opened & irqs enabled */
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200136
137 unsigned int filter_flags; /* HW flags, AR5K_RX_FILTER_* */
138 unsigned int curmode; /* current phy mode */
139 struct ieee80211_channel *curchan; /* current h/w channel */
140
Johannes Berg32bfd352007-12-19 01:31:26 +0100141 struct ieee80211_vif *vif;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200142
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200143 enum ath5k_int imask; /* interrupt mask copy */
144
145 DECLARE_BITMAP(keymap, AR5K_KEYCACHE_SIZE); /* key use bit map */
146
147 u8 bssidmask[ETH_ALEN];
148
149 unsigned int led_pin, /* GPIO pin for driving LED */
Bob Copeland5ef40172009-01-22 08:44:19 -0500150 led_on; /* pin setting for LED on */
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200151
152 struct tasklet_struct restq; /* reset tasklet */
153
154 unsigned int rxbufsize; /* rx size based on mtu */
155 struct list_head rxbuf; /* receive buffer */
156 spinlock_t rxbuflock;
157 u32 *rxlink; /* link ptr in last RX desc */
158 struct tasklet_struct rxtq; /* rx intr tasklet */
Bob Copeland3a078872008-06-25 22:35:28 -0400159 struct ath5k_led rx_led; /* rx led */
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200160
161 struct list_head txbuf; /* transmit buffer */
162 spinlock_t txbuflock;
163 unsigned int txbuf_len; /* buf count in txbuf list */
164 struct ath5k_txq txqs[2]; /* beacon and tx */
165
166 struct ath5k_txq *txq; /* beacon and tx*/
167 struct tasklet_struct txtq; /* tx intr tasklet */
Bob Copeland3a078872008-06-25 22:35:28 -0400168 struct ath5k_led tx_led; /* tx led */
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200169
Jiri Slaby00482972008-08-18 21:45:27 +0200170 spinlock_t block; /* protects beacon */
Bob Copelandacf3c1a2009-02-15 12:06:11 -0500171 struct tasklet_struct beacontq; /* beacon intr tasklet */
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200172 struct ath5k_buf *bbuf; /* beacon buffer */
173 unsigned int bhalq, /* SW q for outgoing beacons */
174 bmisscount, /* missed beacon transmits */
Bruno Randolfe535c1a2008-01-18 21:51:40 +0900175 bintval, /* beacon interval in TU */
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200176 bsent;
Bruno Randolf036cd1e2008-01-19 18:18:21 +0900177 unsigned int nexttbtt; /* next beacon time in TU */
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200178
179 struct timer_list calib_tim; /* calibration timer */
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500180 int power_level; /* Requested tx power in dbm */
Martin Xu02969b32008-11-24 10:49:27 +0800181 bool assoc; /* assocate state */
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200182};
183
184#define ath5k_hw_hasbssidmask(_ah) \
185 (ath5k_hw_get_capability(_ah, AR5K_CAP_BSSIDMASK, 0, NULL) == 0)
186#define ath5k_hw_hasveol(_ah) \
187 (ath5k_hw_get_capability(_ah, AR5K_CAP_VEOL, 0, NULL) == 0)
188
189#endif