blob: 771c0217ea6a94b2b63a5c3aa596f714c1b69320 [file] [log] [blame]
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +02001/*
2 * Atheros CARL9170 driver
3 *
4 * Driver specific definitions
5 *
6 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
7 * Copyright 2009, 2010, Christian Lamparter <chunkeey@googlemail.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; see the file COPYING. If not, see
21 * http://www.gnu.org/licenses/.
22 *
23 * This file incorporates work covered by the following copyright and
24 * permission notice:
25 * Copyright (c) 2007-2008 Atheros Communications, Inc.
26 *
27 * Permission to use, copy, modify, and/or distribute this software for any
28 * purpose with or without fee is hereby granted, provided that the above
29 * copyright notice and this permission notice appear in all copies.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
32 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
33 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
34 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
35 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
36 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
37 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
38 */
39#ifndef __CARL9170_H
40#define __CARL9170_H
41
42#include <linux/kernel.h>
43#include <linux/firmware.h>
44#include <linux/completion.h>
45#include <linux/spinlock.h>
46#include <net/cfg80211.h>
47#include <net/mac80211.h>
48#include <linux/usb.h>
49#ifdef CONFIG_CARL9170_LEDS
50#include <linux/leds.h>
Hauke Mehrtens8e7ce892010-10-23 19:51:32 +020051#endif /* CONFIG_CARL9170_LEDS */
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +020052#ifdef CONFIG_CARL9170_WPC
53#include <linux/input.h>
54#endif /* CONFIG_CARL9170_WPC */
55#include "eeprom.h"
56#include "wlan.h"
57#include "hw.h"
58#include "fwdesc.h"
59#include "fwcmd.h"
60#include "../regd.h"
61
62#ifdef CONFIG_CARL9170_DEBUGFS
63#include "debug.h"
64#endif /* CONFIG_CARL9170_DEBUGFS */
65
66#define CARL9170FW_NAME "carl9170-1.fw"
67
68#define PAYLOAD_MAX (CARL9170_MAX_CMD_LEN / 4 - 1)
69
70enum carl9170_rf_init_mode {
71 CARL9170_RFI_NONE,
72 CARL9170_RFI_WARM,
73 CARL9170_RFI_COLD,
74};
75
76#define CARL9170_MAX_RX_BUFFER_SIZE 8192
77
78enum carl9170_device_state {
79 CARL9170_UNKNOWN_STATE,
80 CARL9170_STOPPED,
81 CARL9170_IDLE,
82 CARL9170_STARTED,
83};
84
85#define CARL9170_NUM_TID 16
86#define WME_BA_BMP_SIZE 64
87#define CARL9170_TX_USER_RATE_TRIES 3
88
89#define WME_AC_BE 2
90#define WME_AC_BK 3
91#define WME_AC_VI 1
92#define WME_AC_VO 0
93
94#define TID_TO_WME_AC(_tid) \
95 ((((_tid) == 0) || ((_tid) == 3)) ? WME_AC_BE : \
96 (((_tid) == 1) || ((_tid) == 2)) ? WME_AC_BK : \
97 (((_tid) == 4) || ((_tid) == 5)) ? WME_AC_VI : \
98 WME_AC_VO)
99
100#define SEQ_DIFF(_start, _seq) \
101 (((_start) - (_seq)) & 0x0fff)
102#define SEQ_PREV(_seq) \
103 (((_seq) - 1) & 0x0fff)
104#define SEQ_NEXT(_seq) \
105 (((_seq) + 1) & 0x0fff)
106#define BAW_WITHIN(_start, _bawsz, _seqno) \
107 ((((_seqno) - (_start)) & 0xfff) < (_bawsz))
108
109enum carl9170_tid_state {
110 CARL9170_TID_STATE_INVALID,
111 CARL9170_TID_STATE_KILLED,
112 CARL9170_TID_STATE_SHUTDOWN,
113 CARL9170_TID_STATE_SUSPEND,
114 CARL9170_TID_STATE_PROGRESS,
115 CARL9170_TID_STATE_IDLE,
116 CARL9170_TID_STATE_XMIT,
117};
118
119#define CARL9170_BAW_BITS (2 * WME_BA_BMP_SIZE)
120#define CARL9170_BAW_SIZE (BITS_TO_LONGS(CARL9170_BAW_BITS))
121#define CARL9170_BAW_LEN (DIV_ROUND_UP(CARL9170_BAW_BITS, BITS_PER_BYTE))
122
123struct carl9170_sta_tid {
124 /* must be the first entry! */
125 struct list_head list;
126
127 /* temporary list for RCU unlink procedure */
128 struct list_head tmp_list;
129
130 /* lock for the following data structures */
131 spinlock_t lock;
132
133 unsigned int counter;
134 enum carl9170_tid_state state;
135 u8 tid; /* TID number ( 0 - 15 ) */
136 u16 max; /* max. AMPDU size */
137
138 u16 snx; /* awaiting _next_ frame */
139 u16 hsn; /* highest _queued_ sequence */
140 u16 bsn; /* base of the tx/agg bitmap */
141 unsigned long bitmap[CARL9170_BAW_SIZE];
142
143 /* Preaggregation reorder queue */
144 struct sk_buff_head queue;
145};
146
147#define CARL9170_QUEUE_TIMEOUT 256
148#define CARL9170_BUMP_QUEUE 1000
149#define CARL9170_TX_TIMEOUT 2500
150#define CARL9170_JANITOR_DELAY 128
151#define CARL9170_QUEUE_STUCK_TIMEOUT 5500
152
153#define CARL9170_NUM_TX_AGG_MAX 30
154
155/*
156 * Tradeoff between stability/latency and speed.
157 *
158 * AR9170_TXQ_DEPTH is devised by dividing the amount of available
159 * tx buffers with the size of a full ethernet frame + overhead.
160 *
161 * Naturally: The higher the limit, the faster the device CAN send.
162 * However, even a slight over-commitment at the wrong time and the
163 * hardware is doomed to send all already-queued frames at suboptimal
164 * rates. This in turn leads to an enourmous amount of unsuccessful
165 * retries => Latency goes up, whereas the throughput goes down. CRASH!
166 */
167#define CARL9170_NUM_TX_LIMIT_HARD ((AR9170_TXQ_DEPTH * 3) / 2)
168#define CARL9170_NUM_TX_LIMIT_SOFT (AR9170_TXQ_DEPTH)
169
170struct carl9170_tx_queue_stats {
171 unsigned int count;
172 unsigned int limit;
173 unsigned int len;
174};
175
176struct carl9170_vif {
177 unsigned int id;
178 struct ieee80211_vif *vif;
179};
180
181struct carl9170_vif_info {
182 struct list_head list;
183 bool active;
184 unsigned int id;
185 struct sk_buff *beacon;
186 bool enable_beacon;
187};
188
189#define AR9170_NUM_RX_URBS 16
190#define AR9170_NUM_RX_URBS_MUL 2
191#define AR9170_NUM_TX_URBS 8
192#define AR9170_NUM_RX_URBS_POOL (AR9170_NUM_RX_URBS_MUL * AR9170_NUM_RX_URBS)
193
194enum carl9170_device_features {
195 CARL9170_WPS_BUTTON = BIT(0),
196 CARL9170_ONE_LED = BIT(1),
197};
198
199#ifdef CONFIG_CARL9170_LEDS
200struct ar9170;
201
202struct carl9170_led {
203 struct ar9170 *ar;
204 struct led_classdev l;
205 char name[32];
206 unsigned int toggled;
207 bool last_state;
208 bool registered;
209};
210#endif /* CONFIG_CARL9170_LEDS */
211
212enum carl9170_restart_reasons {
213 CARL9170_RR_NO_REASON = 0,
214 CARL9170_RR_FATAL_FIRMWARE_ERROR,
215 CARL9170_RR_TOO_MANY_FIRMWARE_ERRORS,
216 CARL9170_RR_WATCHDOG,
217 CARL9170_RR_STUCK_TX,
Christian Lampartere4a668c2010-10-29 23:26:13 +0200218 CARL9170_RR_UNRESPONSIVE_DEVICE,
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200219 CARL9170_RR_COMMAND_TIMEOUT,
220 CARL9170_RR_TOO_MANY_PHY_ERRORS,
221 CARL9170_RR_LOST_RSP,
222 CARL9170_RR_INVALID_RSP,
223 CARL9170_RR_USER_REQUEST,
224
225 __CARL9170_RR_LAST,
226};
227
228enum carl9170_erp_modes {
229 CARL9170_ERP_INVALID,
230 CARL9170_ERP_AUTO,
231 CARL9170_ERP_MAC80211,
232 CARL9170_ERP_OFF,
233 CARL9170_ERP_CTS,
234 CARL9170_ERP_RTS,
235 __CARL9170_ERP_NUM,
236};
237
238struct ar9170 {
239 struct ath_common common;
240 struct ieee80211_hw *hw;
241 struct mutex mutex;
242 enum carl9170_device_state state;
243 spinlock_t state_lock;
244 enum carl9170_restart_reasons last_reason;
245 bool registered;
246
247 /* USB */
248 struct usb_device *udev;
249 struct usb_interface *intf;
250 struct usb_anchor rx_anch;
251 struct usb_anchor rx_work;
252 struct usb_anchor rx_pool;
253 struct usb_anchor tx_wait;
254 struct usb_anchor tx_anch;
255 struct usb_anchor tx_cmd;
256 struct usb_anchor tx_err;
257 struct tasklet_struct usb_tasklet;
258 atomic_t tx_cmd_urbs;
259 atomic_t tx_anch_urbs;
260 atomic_t rx_anch_urbs;
261 atomic_t rx_work_urbs;
262 atomic_t rx_pool_urbs;
263 kernel_ulong_t features;
264
265 /* firmware settings */
266 struct completion fw_load_wait;
267 struct completion fw_boot_wait;
268 struct {
269 const struct carl9170fw_desc_head *desc;
270 const struct firmware *fw;
271 unsigned int offset;
272 unsigned int address;
273 unsigned int cmd_bufs;
274 unsigned int api_version;
275 unsigned int vif_num;
276 unsigned int err_counter;
277 unsigned int bug_counter;
278 u32 beacon_addr;
279 unsigned int beacon_max_len;
280 bool rx_stream;
281 bool tx_stream;
Christian Lamparter5c895692010-09-28 23:00:59 +0200282 bool rx_filter;
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200283 unsigned int mem_blocks;
284 unsigned int mem_block_size;
285 unsigned int rx_size;
Christian Lamparteraa324522011-01-23 00:18:28 +0100286 unsigned int tx_seq_table;
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200287 } fw;
288
Christian Lamparterdf649622011-05-14 02:42:38 +0200289 /* interface configuration combinations */
290 struct ieee80211_iface_limit if_comb_limits[1];
291 struct ieee80211_iface_combination if_combs[1];
292
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200293 /* reset / stuck frames/queue detection */
294 struct work_struct restart_work;
Christian Lampartere4a668c2010-10-29 23:26:13 +0200295 struct work_struct ping_work;
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200296 unsigned int restart_counter;
297 unsigned long queue_stop_timeout[__AR9170_NUM_TXQ];
298 unsigned long max_queue_stop_timeout[__AR9170_NUM_TXQ];
299 bool needs_full_reset;
300 atomic_t pending_restarts;
301
302 /* interface mode settings */
303 struct list_head vif_list;
304 unsigned long vif_bitmap;
305 unsigned int vifs;
306 struct carl9170_vif vif_priv[AR9170_MAX_VIRTUAL_MAC];
307
308 /* beaconing */
309 spinlock_t beacon_lock;
310 unsigned int global_pretbtt;
311 unsigned int global_beacon_int;
312 struct carl9170_vif_info *beacon_iter;
313 unsigned int beacon_enabled;
314
315 /* cryptographic engine */
316 u64 usedkeys;
317 bool rx_software_decryption;
318 bool disable_offload;
319
320 /* filter settings */
321 u64 cur_mc_hash;
322 u32 cur_filter;
323 unsigned int filter_state;
Christian Lamparter5c895692010-09-28 23:00:59 +0200324 unsigned int rx_filter_caps;
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200325 bool sniffer_enabled;
326
327 /* MAC */
328 enum carl9170_erp_modes erp_mode;
329
330 /* PHY */
331 struct ieee80211_channel *channel;
Christian Lamparter9adc9e02010-09-17 22:42:37 +0200332 int noise[4];
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200333 unsigned int chan_fail;
334 unsigned int total_chan_fail;
335 u8 heavy_clip;
Christian Lamparter73576112010-09-17 23:09:19 +0200336 u8 ht_settings;
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200337
338 /* power calibration data */
339 u8 power_5G_leg[4];
340 u8 power_2G_cck[4];
341 u8 power_2G_ofdm[4];
342 u8 power_5G_ht20[8];
343 u8 power_5G_ht40[8];
344 u8 power_2G_ht20[8];
345 u8 power_2G_ht40[8];
346
347#ifdef CONFIG_CARL9170_LEDS
348 /* LED */
349 struct delayed_work led_work;
350 struct carl9170_led leds[AR9170_NUM_LEDS];
351#endif /* CONFIG_CARL9170_LEDS */
352
353 /* qos queue settings */
354 spinlock_t tx_stats_lock;
355 struct carl9170_tx_queue_stats tx_stats[__AR9170_NUM_TXQ];
356 struct ieee80211_tx_queue_params edcf[5];
357 struct completion tx_flush;
358
359 /* CMD */
360 int cmd_seq;
361 int readlen;
362 u8 *readbuf;
363 spinlock_t cmd_lock;
364 struct completion cmd_wait;
365 union {
366 __le32 cmd_buf[PAYLOAD_MAX + 1];
367 struct carl9170_cmd cmd;
368 struct carl9170_rsp rsp;
369 };
370
371 /* statistics */
372 unsigned int tx_dropped;
373 unsigned int tx_ack_failures;
374 unsigned int tx_fcs_errors;
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200375 unsigned int rx_dropped;
376
377 /* EEPROM */
378 struct ar9170_eeprom eeprom;
379
380 /* tx queuing */
381 struct sk_buff_head tx_pending[__AR9170_NUM_TXQ];
382 struct sk_buff_head tx_status[__AR9170_NUM_TXQ];
383 struct delayed_work tx_janitor;
384 unsigned long tx_janitor_last_run;
385 bool tx_schedule;
386
387 /* tx ampdu */
388 struct work_struct ampdu_work;
389 spinlock_t tx_ampdu_list_lock;
390 struct carl9170_sta_tid *tx_ampdu_iter;
391 struct list_head tx_ampdu_list;
392 atomic_t tx_ampdu_upload;
393 atomic_t tx_ampdu_scheduler;
394 atomic_t tx_total_pending;
395 atomic_t tx_total_queued;
396 unsigned int tx_ampdu_list_len;
397 int current_density;
398 int current_factor;
399 bool tx_ampdu_schedule;
400
401 /* internal memory management */
402 spinlock_t mem_lock;
403 unsigned long *mem_bitmap;
404 atomic_t mem_free_blocks;
405 atomic_t mem_allocs;
406
407 /* rxstream mpdu merge */
408 struct ar9170_rx_head rx_plcp;
409 bool rx_has_plcp;
410 struct sk_buff *rx_failover;
411 int rx_failover_missing;
412
413#ifdef CONFIG_CARL9170_WPC
414 struct {
415 bool pbc_state;
416 struct input_dev *pbc;
417 char name[32];
418 char phys[32];
419 } wps;
420#endif /* CONFIG_CARL9170_WPC */
421
422#ifdef CONFIG_CARL9170_DEBUGFS
423 struct carl9170_debug debug;
424 struct dentry *debug_dir;
425#endif /* CONFIG_CARL9170_DEBUGFS */
426
427 /* PSM */
428 struct work_struct ps_work;
429 struct {
430 unsigned int dtim_counter;
431 unsigned long last_beacon;
432 unsigned long last_action;
433 unsigned long last_slept;
434 unsigned int sleep_ms;
435 unsigned int off_override;
436 bool state;
437 } ps;
438};
439
440enum carl9170_ps_off_override_reasons {
441 PS_OFF_VIF = BIT(0),
442 PS_OFF_BCN = BIT(1),
443 PS_OFF_5GHZ = BIT(2),
444};
445
446struct carl9170_ba_stats {
447 u8 ampdu_len;
448 u8 ampdu_ack_len;
449 bool clear;
Christian Lamparter24047e22011-03-29 13:43:14 +0200450 bool req;
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200451};
452
453struct carl9170_sta_info {
454 bool ht_sta;
Christian Lampartercaf1eae2011-04-24 17:44:19 +0200455 bool sleeping;
456 atomic_t pending_frames;
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200457 unsigned int ampdu_max_len;
458 struct carl9170_sta_tid *agg[CARL9170_NUM_TID];
459 struct carl9170_ba_stats stats[CARL9170_NUM_TID];
460};
461
462struct carl9170_tx_info {
463 unsigned long timeout;
464 struct ar9170 *ar;
465 struct kref ref;
466};
467
468#define CHK_DEV_STATE(a, s) (((struct ar9170 *)a)->state >= (s))
469#define IS_INITIALIZED(a) (CHK_DEV_STATE(a, CARL9170_STOPPED))
470#define IS_ACCEPTING_CMD(a) (CHK_DEV_STATE(a, CARL9170_IDLE))
471#define IS_STARTED(a) (CHK_DEV_STATE(a, CARL9170_STARTED))
472
473static inline void __carl9170_set_state(struct ar9170 *ar,
474 enum carl9170_device_state newstate)
475{
476 ar->state = newstate;
477}
478
479static inline void carl9170_set_state(struct ar9170 *ar,
480 enum carl9170_device_state newstate)
481{
482 unsigned long flags;
483
484 spin_lock_irqsave(&ar->state_lock, flags);
485 __carl9170_set_state(ar, newstate);
486 spin_unlock_irqrestore(&ar->state_lock, flags);
487}
488
489static inline void carl9170_set_state_when(struct ar9170 *ar,
490 enum carl9170_device_state min, enum carl9170_device_state newstate)
491{
492 unsigned long flags;
493
494 spin_lock_irqsave(&ar->state_lock, flags);
495 if (CHK_DEV_STATE(ar, min))
496 __carl9170_set_state(ar, newstate);
497 spin_unlock_irqrestore(&ar->state_lock, flags);
498}
499
500/* exported interface */
501void *carl9170_alloc(size_t priv_size);
502int carl9170_register(struct ar9170 *ar);
503void carl9170_unregister(struct ar9170 *ar);
504void carl9170_free(struct ar9170 *ar);
505void carl9170_restart(struct ar9170 *ar, const enum carl9170_restart_reasons r);
506void carl9170_ps_check(struct ar9170 *ar);
507
508/* USB back-end */
509int carl9170_usb_open(struct ar9170 *ar);
510void carl9170_usb_stop(struct ar9170 *ar);
511void carl9170_usb_tx(struct ar9170 *ar, struct sk_buff *skb);
512void carl9170_usb_handle_tx_err(struct ar9170 *ar);
513int carl9170_exec_cmd(struct ar9170 *ar, const enum carl9170_cmd_oids,
514 u32 plen, void *payload, u32 rlen, void *resp);
515int __carl9170_exec_cmd(struct ar9170 *ar, struct carl9170_cmd *cmd,
516 const bool free_buf);
517int carl9170_usb_restart(struct ar9170 *ar);
518void carl9170_usb_reset(struct ar9170 *ar);
519
520/* MAC */
521int carl9170_init_mac(struct ar9170 *ar);
522int carl9170_set_qos(struct ar9170 *ar);
523int carl9170_update_multicast(struct ar9170 *ar, const u64 mc_hast);
524int carl9170_mod_virtual_mac(struct ar9170 *ar, const unsigned int id,
525 const u8 *mac);
526int carl9170_set_operating_mode(struct ar9170 *ar);
527int carl9170_set_beacon_timers(struct ar9170 *ar);
528int carl9170_set_dyn_sifs_ack(struct ar9170 *ar);
529int carl9170_set_rts_cts_rate(struct ar9170 *ar);
530int carl9170_set_ampdu_settings(struct ar9170 *ar);
531int carl9170_set_slot_time(struct ar9170 *ar);
532int carl9170_set_mac_rates(struct ar9170 *ar);
533int carl9170_set_hwretry_limit(struct ar9170 *ar, const u32 max_retry);
534int carl9170_update_beacon(struct ar9170 *ar, const bool submit);
535int carl9170_upload_key(struct ar9170 *ar, const u8 id, const u8 *mac,
536 const u8 ktype, const u8 keyidx, const u8 *keydata, const int keylen);
537int carl9170_disable_key(struct ar9170 *ar, const u8 id);
538
539/* RX */
540void carl9170_rx(struct ar9170 *ar, void *buf, unsigned int len);
541void carl9170_handle_command_response(struct ar9170 *ar, void *buf, u32 len);
542
543/* TX */
Johannes Berg7bb45682011-02-24 14:42:06 +0100544void carl9170_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb);
Christian Lamparterfe8ee9a2010-09-06 00:48:55 +0200545void carl9170_tx_janitor(struct work_struct *work);
546void carl9170_tx_process_status(struct ar9170 *ar,
547 const struct carl9170_rsp *cmd);
548void carl9170_tx_status(struct ar9170 *ar, struct sk_buff *skb,
549 const bool success);
550void carl9170_tx_callback(struct ar9170 *ar, struct sk_buff *skb);
551void carl9170_tx_drop(struct ar9170 *ar, struct sk_buff *skb);
552void carl9170_tx_scheduler(struct ar9170 *ar);
553void carl9170_tx_get_skb(struct sk_buff *skb);
554int carl9170_tx_put_skb(struct sk_buff *skb);
555
556/* LEDs */
557#ifdef CONFIG_CARL9170_LEDS
558int carl9170_led_register(struct ar9170 *ar);
559void carl9170_led_unregister(struct ar9170 *ar);
560#endif /* CONFIG_CARL9170_LEDS */
561int carl9170_led_init(struct ar9170 *ar);
562int carl9170_led_set_state(struct ar9170 *ar, const u32 led_state);
563
564/* PHY / RF */
565int carl9170_set_channel(struct ar9170 *ar, struct ieee80211_channel *channel,
566 enum nl80211_channel_type bw, enum carl9170_rf_init_mode rfi);
567int carl9170_get_noisefloor(struct ar9170 *ar);
568
569/* FW */
570int carl9170_parse_firmware(struct ar9170 *ar);
571int carl9170_fw_fix_eeprom(struct ar9170 *ar);
572
573extern struct ieee80211_rate __carl9170_ratetable[];
574extern int modparam_noht;
575
576static inline struct ar9170 *carl9170_get_priv(struct carl9170_vif *carl_vif)
577{
578 return container_of(carl_vif, struct ar9170,
579 vif_priv[carl_vif->id]);
580}
581
582static inline struct ieee80211_hdr *carl9170_get_hdr(struct sk_buff *skb)
583{
584 return (void *)((struct _carl9170_tx_superframe *)
585 skb->data)->frame_data;
586}
587
588static inline u16 get_seq_h(struct ieee80211_hdr *hdr)
589{
590 return le16_to_cpu(hdr->seq_ctrl) >> 4;
591}
592
593static inline u16 carl9170_get_seq(struct sk_buff *skb)
594{
595 return get_seq_h(carl9170_get_hdr(skb));
596}
597
598static inline u16 get_tid_h(struct ieee80211_hdr *hdr)
599{
600 return (ieee80211_get_qos_ctl(hdr))[0] & IEEE80211_QOS_CTL_TID_MASK;
601}
602
603static inline u16 carl9170_get_tid(struct sk_buff *skb)
604{
605 return get_tid_h(carl9170_get_hdr(skb));
606}
607
608static inline struct ieee80211_vif *
609carl9170_get_vif(struct carl9170_vif_info *priv)
610{
611 return container_of((void *)priv, struct ieee80211_vif, drv_priv);
612}
613
614/* Protected by ar->mutex or RCU */
615static inline struct ieee80211_vif *carl9170_get_main_vif(struct ar9170 *ar)
616{
617 struct carl9170_vif_info *cvif;
618
619 list_for_each_entry_rcu(cvif, &ar->vif_list, list) {
620 if (cvif->active)
621 return carl9170_get_vif(cvif);
622 }
623
624 return NULL;
625}
626
627static inline bool is_main_vif(struct ar9170 *ar, struct ieee80211_vif *vif)
628{
629 bool ret;
630
631 rcu_read_lock();
632 ret = (carl9170_get_main_vif(ar) == vif);
633 rcu_read_unlock();
634 return ret;
635}
636
637#endif /* __CARL9170_H */