]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/wireless/ath/ar9170/ar9170.h
mac80211: validate TIM IE length (redux)
[net-next-2.6.git] / drivers / net / wireless / ath / ar9170 / ar9170.h
CommitLineData
e9348cdd
CL
1/*
2 * Atheros AR9170 driver
3 *
4 * Driver specific definitions
5 *
6 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; see the file COPYING. If not, see
20 * http://www.gnu.org/licenses/.
21 *
22 * This file incorporates work covered by the following copyright and
23 * permission notice:
24 * Copyright (c) 2007-2008 Atheros Communications, Inc.
25 *
26 * Permission to use, copy, modify, and/or distribute this software for any
27 * purpose with or without fee is hereby granted, provided that the above
28 * copyright notice and this permission notice appear in all copies.
29 *
30 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
31 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
32 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
33 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
34 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
35 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
36 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
37 */
38#ifndef __AR9170_H
39#define __AR9170_H
40
41#include <linux/completion.h>
42#include <linux/spinlock.h>
d3236553 43#include <net/cfg80211.h>
e9348cdd
CL
44#include <net/mac80211.h>
45#ifdef CONFIG_AR9170_LEDS
46#include <linux/leds.h>
47#endif /* CONFIG_AR9170_LEDS */
48#include "eeprom.h"
49#include "hw.h"
50
203c4805 51#include "../regd.h"
1878f77e 52
e9348cdd
CL
53#define PAYLOAD_MAX (AR9170_MAX_CMD_LEN/4 - 1)
54
55enum ar9170_bw {
56 AR9170_BW_20,
57 AR9170_BW_40_BELOW,
58 AR9170_BW_40_ABOVE,
59
60 __AR9170_NUM_BW,
61};
62
9e52b062
JB
63static inline enum ar9170_bw nl80211_to_ar9170(enum nl80211_channel_type type)
64{
65 switch (type) {
66 case NL80211_CHAN_NO_HT:
67 case NL80211_CHAN_HT20:
68 return AR9170_BW_20;
69 case NL80211_CHAN_HT40MINUS:
70 return AR9170_BW_40_BELOW;
71 case NL80211_CHAN_HT40PLUS:
72 return AR9170_BW_40_ABOVE;
73 default:
74 BUG();
75 }
76}
77
e9348cdd
CL
78enum ar9170_rf_init_mode {
79 AR9170_RFI_NONE,
80 AR9170_RFI_WARM,
81 AR9170_RFI_COLD,
82};
83
84#define AR9170_MAX_RX_BUFFER_SIZE 8192
85
86#ifdef CONFIG_AR9170_LEDS
87struct ar9170;
88
89struct ar9170_led {
90 struct ar9170 *ar;
91 struct led_classdev l;
92 char name[32];
93 unsigned int toggled;
94 bool registered;
95};
96
97#endif /* CONFIG_AR9170_LEDS */
98
99enum ar9170_device_state {
100 AR9170_UNKNOWN_STATE,
101 AR9170_STOPPED,
102 AR9170_IDLE,
103 AR9170_STARTED,
104 AR9170_ASSOCIATED,
105};
106
107struct ar9170 {
108 struct ieee80211_hw *hw;
109 struct mutex mutex;
110 enum ar9170_device_state state;
111
112 int (*open)(struct ar9170 *);
113 void (*stop)(struct ar9170 *);
114 int (*tx)(struct ar9170 *, struct sk_buff *, bool, unsigned int);
115 int (*exec_cmd)(struct ar9170 *, enum ar9170_cmd, u32 ,
116 void *, u32 , void *);
117 void (*callback_cmd)(struct ar9170 *, u32 , void *);
118
119 /* interface mode settings */
120 struct ieee80211_vif *vif;
121 u8 mac_addr[ETH_ALEN];
122 u8 bssid[ETH_ALEN];
123
124 /* beaconing */
125 struct sk_buff *beacon;
126 struct work_struct beacon_work;
127
128 /* cryptographic engine */
129 u64 usedkeys;
130 bool rx_software_decryption;
131 bool disable_offload;
132
133 /* filter settings */
134 struct work_struct filter_config_work;
135 u64 cur_mc_hash, want_mc_hash;
136 u32 cur_filter, want_filter;
137 unsigned int filter_changed;
138 bool sniffer_enabled;
139
140 /* PHY */
141 struct ieee80211_channel *channel;
142 int noise[4];
143
144 /* power calibration data */
145 u8 power_5G_leg[4];
146 u8 power_2G_cck[4];
147 u8 power_2G_ofdm[4];
148 u8 power_5G_ht20[8];
149 u8 power_5G_ht40[8];
150 u8 power_2G_ht20[8];
151 u8 power_2G_ht40[8];
152
153#ifdef CONFIG_AR9170_LEDS
154 struct delayed_work led_work;
155 struct ar9170_led leds[AR9170_NUM_LEDS];
156#endif /* CONFIG_AR9170_LEDS */
157
158 /* qos queue settings */
159 spinlock_t tx_stats_lock;
160 struct ieee80211_tx_queue_stats tx_stats[5];
161 struct ieee80211_tx_queue_params edcf[5];
162
163 spinlock_t cmdlock;
164 __le32 cmdbuf[PAYLOAD_MAX + 1];
165
166 /* MAC statistics */
167 struct ieee80211_low_level_stats stats;
168
169 /* EEPROM */
170 struct ar9170_eeprom eeprom;
1878f77e 171 struct ath_regulatory regulatory;
e9348cdd
CL
172
173 /* global tx status for unregistered Stations. */
174 struct sk_buff_head global_tx_status;
175 struct sk_buff_head global_tx_status_waste;
176 struct delayed_work tx_status_janitor;
177};
178
179struct ar9170_sta_info {
4a48e2a4 180 struct sk_buff_head tx_status[__AR9170_NUM_TXQ];
e9348cdd
CL
181};
182
183#define IS_STARTED(a) (a->state >= AR9170_STARTED)
184#define IS_ACCEPTING_CMD(a) (a->state >= AR9170_IDLE)
185
186#define AR9170_FILTER_CHANGED_PROMISC BIT(0)
187#define AR9170_FILTER_CHANGED_MULTICAST BIT(1)
188#define AR9170_FILTER_CHANGED_FRAMEFILTER BIT(2)
189
190/* exported interface */
191void *ar9170_alloc(size_t priv_size);
192int ar9170_register(struct ar9170 *ar, struct device *pdev);
193void ar9170_rx(struct ar9170 *ar, struct sk_buff *skb);
194void ar9170_unregister(struct ar9170 *ar);
195void ar9170_handle_tx_status(struct ar9170 *ar, struct sk_buff *skb,
196 bool update_statistics, u16 tx_status);
197
198/* MAC */
199int ar9170_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb);
200int ar9170_init_mac(struct ar9170 *ar);
201int ar9170_set_qos(struct ar9170 *ar);
202int ar9170_update_multicast(struct ar9170 *ar);
203int ar9170_update_frame_filter(struct ar9170 *ar);
204int ar9170_set_operating_mode(struct ar9170 *ar);
205int ar9170_set_beacon_timers(struct ar9170 *ar);
206int ar9170_set_hwretry_limit(struct ar9170 *ar, u32 max_retry);
207int ar9170_update_beacon(struct ar9170 *ar);
208void ar9170_new_beacon(struct work_struct *work);
209int ar9170_upload_key(struct ar9170 *ar, u8 id, const u8 *mac, u8 ktype,
210 u8 keyidx, u8 *keydata, int keylen);
211int ar9170_disable_key(struct ar9170 *ar, u8 id);
212
213/* LEDs */
214#ifdef CONFIG_AR9170_LEDS
215int ar9170_register_leds(struct ar9170 *ar);
216void ar9170_unregister_leds(struct ar9170 *ar);
217#endif /* CONFIG_AR9170_LEDS */
218int ar9170_init_leds(struct ar9170 *ar);
219int ar9170_set_leds_state(struct ar9170 *ar, u32 led_state);
220
221/* PHY / RF */
222int ar9170_init_phy(struct ar9170 *ar, enum ieee80211_band band);
223int ar9170_init_rf(struct ar9170 *ar);
224int ar9170_set_channel(struct ar9170 *ar, struct ieee80211_channel *channel,
225 enum ar9170_rf_init_mode rfi, enum ar9170_bw bw);
226
227#endif /* __AR9170_H */