iPXE
mac.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2008-2011 Atheros Communications Inc.
3 *
4 * Modified for iPXE by Scott K Logan <logans@cottsay.net> July 2011
5 * Original from Linux kernel 3.0.1
6 *
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 */
19
20#ifndef MAC_H
21#define MAC_H
22
23FILE_LICENCE ( BSD2 );
24FILE_SECBOOT ( FORBIDDEN );
25
26#include <unistd.h>
27
28#define RXSTATUS_RATE(ah, ads) (AR_SREV_5416_20_OR_LATER(ah) ? \
29 MS(ads->ds_rxstatus0, AR_RxRate) : \
30 (ads->ds_rxstatus3 >> 2) & 0xFF)
31
32#define set11nTries(_series, _index) \
33 (SM((_series)[_index].Tries, AR_XmitDataTries##_index))
34
35#define set11nRate(_series, _index) \
36 (SM((_series)[_index].Rate, AR_XmitRate##_index))
37
38#define set11nPktDurRTSCTS(_series, _index) \
39 (SM((_series)[_index].PktDuration, AR_PacketDur##_index) | \
40 ((_series)[_index].RateFlags & ATH9K_RATESERIES_RTS_CTS ? \
41 AR_RTSCTSQual##_index : 0))
42
43#define set11nRateFlags(_series, _index) \
44 (((_series)[_index].RateFlags & ATH9K_RATESERIES_2040 ? \
45 AR_2040_##_index : 0) \
46 |((_series)[_index].RateFlags & ATH9K_RATESERIES_HALFGI ? \
47 AR_GI##_index : 0) \
48 |((_series)[_index].RateFlags & ATH9K_RATESERIES_STBC ? \
49 AR_STBC##_index : 0) \
50 |SM((_series)[_index].ChSel, AR_ChainSel##_index))
51
52#define CCK_SIFS_TIME 10
53#define CCK_PREAMBLE_BITS 144
54#define CCK_PLCP_BITS 48
55
56#define OFDM_SIFS_TIME 16
57#define OFDM_PREAMBLE_TIME 20
58#define OFDM_PLCP_BITS 22
59#define OFDM_SYMBOL_TIME 4
60
61#define OFDM_SIFS_TIME_HALF 32
62#define OFDM_PREAMBLE_TIME_HALF 40
63#define OFDM_PLCP_BITS_HALF 22
64#define OFDM_SYMBOL_TIME_HALF 8
65
66#define OFDM_SIFS_TIME_QUARTER 64
67#define OFDM_PREAMBLE_TIME_QUARTER 80
68#define OFDM_PLCP_BITS_QUARTER 22
69#define OFDM_SYMBOL_TIME_QUARTER 16
70
71#define INIT_AIFS 2
72#define INIT_CWMIN 15
73#define INIT_CWMIN_11B 31
74#define INIT_CWMAX 1023
75#define INIT_SH_RETRY 10
76#define INIT_LG_RETRY 10
77#define INIT_SSH_RETRY 32
78#define INIT_SLG_RETRY 32
79
80#define ATH9K_SLOT_TIME_6 6
81#define ATH9K_SLOT_TIME_9 9
82#define ATH9K_SLOT_TIME_20 20
83
84#define ATH9K_TXERR_XRETRY 0x01
85#define ATH9K_TXERR_FILT 0x02
86#define ATH9K_TXERR_FIFO 0x04
87#define ATH9K_TXERR_XTXOP 0x08
88#define ATH9K_TXERR_TIMER_EXPIRED 0x10
89#define ATH9K_TX_ACKED 0x20
90#define ATH9K_TXERR_MASK \
91 (ATH9K_TXERR_XRETRY | ATH9K_TXERR_FILT | ATH9K_TXERR_FIFO | \
92 ATH9K_TXERR_XTXOP | ATH9K_TXERR_TIMER_EXPIRED)
93
94#define ATH9K_TX_BA 0x01
95#define ATH9K_TX_PWRMGMT 0x02
96#define ATH9K_TX_DESC_CFG_ERR 0x04
97#define ATH9K_TX_DATA_UNDERRUN 0x08
98#define ATH9K_TX_DELIM_UNDERRUN 0x10
99#define ATH9K_TX_SW_FILTERED 0x80
100
101/* 64 bytes */
102#define MIN_TX_FIFO_THRESHOLD 0x1
103
104/*
105 * Single stream device AR9285 and AR9271 require 2 KB
106 * to work around a hardware issue, all other devices
107 * have can use the max 4 KB limit.
108 */
109#define MAX_TX_FIFO_THRESHOLD ((4096 / 64) - 1)
110
136
163
189
190#define ATH9K_RXERR_CRC 0x01
191#define ATH9K_RXERR_PHY 0x02
192#define ATH9K_RXERR_FIFO 0x04
193#define ATH9K_RXERR_DECRYPT 0x08
194#define ATH9K_RXERR_MIC 0x10
195
196#define ATH9K_RX_MORE 0x01
197#define ATH9K_RX_MORE_AGGR 0x02
198#define ATH9K_RX_GI 0x04
199#define ATH9K_RX_2040 0x08
200#define ATH9K_RX_DELIM_CRC_PRE 0x10
201#define ATH9K_RX_DELIM_CRC_POST 0x20
202#define ATH9K_RX_DECRYPT_BUSY 0x40
203
204#define ATH9K_RXKEYIX_INVALID ((u8)-1)
205#define ATH9K_TXKEYIX_INVALID ((u32)-1)
206
240
241struct ath_desc {
247// void *ds_vdata;
248} __attribute__((packed, aligned(4)));
249
250#define ATH9K_TXDESC_NOACK 0x0002
251#define ATH9K_TXDESC_RTSENA 0x0004
252#define ATH9K_TXDESC_CTSENA 0x0008
253/* ATH9K_TXDESC_INTREQ forces a tx interrupt to be generated for
254 * the descriptor its marked on. We take a tx interrupt to reap
255 * descriptors when the h/w hits an EOL condition or
256 * when the descriptor is specifically marked to generate
257 * an interrupt with this flag. Descriptors should be
258 * marked periodically to insure timely replenishing of the
259 * supply needed for sending frames. Defering interrupts
260 * reduces system load and potentially allows more concurrent
261 * work to be done but if done to aggressively can cause
262 * senders to backup. When the hardware queue is left too
263 * large rate control information may also be too out of
264 * date. An Alternative for this is TX interrupt mitigation
265 * but this needs more testing. */
266#define ATH9K_TXDESC_INTREQ 0x0010
267#define ATH9K_TXDESC_VEOL 0x0020
268#define ATH9K_TXDESC_EXT_ONLY 0x0040
269#define ATH9K_TXDESC_EXT_AND_CTL 0x0080
270#define ATH9K_TXDESC_VMF 0x0100
271#define ATH9K_TXDESC_FRAG_IS_ON 0x0200
272#define ATH9K_TXDESC_LOWRXCHAIN 0x0400
273#define ATH9K_TXDESC_LDPC 0x00010000
274
275#define ATH9K_RXDESC_INTREQ 0x0020
276
318
319#define AR5416DESC(_ds) ((struct ar5416_desc *)(_ds))
320#define AR5416DESC_CONST(_ds) ((const struct ar5416_desc *)(_ds))
321
322#define ds_ctl2 u.tx.ctl2
323#define ds_ctl3 u.tx.ctl3
324#define ds_ctl4 u.tx.ctl4
325#define ds_ctl5 u.tx.ctl5
326#define ds_ctl6 u.tx.ctl6
327#define ds_ctl7 u.tx.ctl7
328#define ds_ctl8 u.tx.ctl8
329#define ds_ctl9 u.tx.ctl9
330#define ds_ctl10 u.tx.ctl10
331#define ds_ctl11 u.tx.ctl11
332
333#define ds_txstatus0 u.tx.status0
334#define ds_txstatus1 u.tx.status1
335#define ds_txstatus2 u.tx.status2
336#define ds_txstatus3 u.tx.status3
337#define ds_txstatus4 u.tx.status4
338#define ds_txstatus5 u.tx.status5
339#define ds_txstatus6 u.tx.status6
340#define ds_txstatus7 u.tx.status7
341#define ds_txstatus8 u.tx.status8
342#define ds_txstatus9 u.tx.status9
343
344#define ds_rxstatus0 u.rx.status0
345#define ds_rxstatus1 u.rx.status1
346#define ds_rxstatus2 u.rx.status2
347#define ds_rxstatus3 u.rx.status3
348#define ds_rxstatus4 u.rx.status4
349#define ds_rxstatus5 u.rx.status5
350#define ds_rxstatus6 u.rx.status6
351#define ds_rxstatus7 u.rx.status7
352#define ds_rxstatus8 u.rx.status8
353
354#define AR_FrameLen 0x00000fff
355#define AR_VirtMoreFrag 0x00001000
356#define AR_TxCtlRsvd00 0x0000e000
357#define AR_XmitPower 0x003f0000
358#define AR_XmitPower_S 16
359#define AR_RTSEnable 0x00400000
360#define AR_VEOL 0x00800000
361#define AR_ClrDestMask 0x01000000
362#define AR_TxCtlRsvd01 0x1e000000
363#define AR_TxIntrReq 0x20000000
364#define AR_DestIdxValid 0x40000000
365#define AR_CTSEnable 0x80000000
366
367#define AR_TxMore 0x00001000
368#define AR_DestIdx 0x000fe000
369#define AR_DestIdx_S 13
370#define AR_FrameType 0x00f00000
371#define AR_FrameType_S 20
372#define AR_NoAck 0x01000000
373#define AR_InsertTS 0x02000000
374#define AR_CorruptFCS 0x04000000
375#define AR_ExtOnly 0x08000000
376#define AR_ExtAndCtl 0x10000000
377#define AR_MoreAggr 0x20000000
378#define AR_IsAggr 0x40000000
379
380#define AR_BurstDur 0x00007fff
381#define AR_BurstDur_S 0
382#define AR_DurUpdateEna 0x00008000
383#define AR_XmitDataTries0 0x000f0000
384#define AR_XmitDataTries0_S 16
385#define AR_XmitDataTries1 0x00f00000
386#define AR_XmitDataTries1_S 20
387#define AR_XmitDataTries2 0x0f000000
388#define AR_XmitDataTries2_S 24
389#define AR_XmitDataTries3 0xf0000000
390#define AR_XmitDataTries3_S 28
391
392#define AR_XmitRate0 0x000000ff
393#define AR_XmitRate0_S 0
394#define AR_XmitRate1 0x0000ff00
395#define AR_XmitRate1_S 8
396#define AR_XmitRate2 0x00ff0000
397#define AR_XmitRate2_S 16
398#define AR_XmitRate3 0xff000000
399#define AR_XmitRate3_S 24
400
401#define AR_PacketDur0 0x00007fff
402#define AR_PacketDur0_S 0
403#define AR_RTSCTSQual0 0x00008000
404#define AR_PacketDur1 0x7fff0000
405#define AR_PacketDur1_S 16
406#define AR_RTSCTSQual1 0x80000000
407
408#define AR_PacketDur2 0x00007fff
409#define AR_PacketDur2_S 0
410#define AR_RTSCTSQual2 0x00008000
411#define AR_PacketDur3 0x7fff0000
412#define AR_PacketDur3_S 16
413#define AR_RTSCTSQual3 0x80000000
414
415#define AR_AggrLen 0x0000ffff
416#define AR_AggrLen_S 0
417#define AR_TxCtlRsvd60 0x00030000
418#define AR_PadDelim 0x03fc0000
419#define AR_PadDelim_S 18
420#define AR_EncrType 0x0c000000
421#define AR_EncrType_S 26
422#define AR_TxCtlRsvd61 0xf0000000
423#define AR_LDPC 0x80000000
424
425#define AR_2040_0 0x00000001
426#define AR_GI0 0x00000002
427#define AR_ChainSel0 0x0000001c
428#define AR_ChainSel0_S 2
429#define AR_2040_1 0x00000020
430#define AR_GI1 0x00000040
431#define AR_ChainSel1 0x00000380
432#define AR_ChainSel1_S 7
433#define AR_2040_2 0x00000400
434#define AR_GI2 0x00000800
435#define AR_ChainSel2 0x00007000
436#define AR_ChainSel2_S 12
437#define AR_2040_3 0x00008000
438#define AR_GI3 0x00010000
439#define AR_ChainSel3 0x000e0000
440#define AR_ChainSel3_S 17
441#define AR_RTSCTSRate 0x0ff00000
442#define AR_RTSCTSRate_S 20
443#define AR_STBC0 0x10000000
444#define AR_STBC1 0x20000000
445#define AR_STBC2 0x40000000
446#define AR_STBC3 0x80000000
447
448#define AR_TxRSSIAnt00 0x000000ff
449#define AR_TxRSSIAnt00_S 0
450#define AR_TxRSSIAnt01 0x0000ff00
451#define AR_TxRSSIAnt01_S 8
452#define AR_TxRSSIAnt02 0x00ff0000
453#define AR_TxRSSIAnt02_S 16
454#define AR_TxStatusRsvd00 0x3f000000
455#define AR_TxBaStatus 0x40000000
456#define AR_TxStatusRsvd01 0x80000000
457
458/*
459 * AR_FrmXmitOK - Frame transmission success flag. If set, the frame was
460 * transmitted successfully. If clear, no ACK or BA was received to indicate
461 * successful transmission when we were expecting an ACK or BA.
462 */
463#define AR_FrmXmitOK 0x00000001
464#define AR_ExcessiveRetries 0x00000002
465#define AR_FIFOUnderrun 0x00000004
466#define AR_Filtered 0x00000008
467#define AR_RTSFailCnt 0x000000f0
468#define AR_RTSFailCnt_S 4
469#define AR_DataFailCnt 0x00000f00
470#define AR_DataFailCnt_S 8
471#define AR_VirtRetryCnt 0x0000f000
472#define AR_VirtRetryCnt_S 12
473#define AR_TxDelimUnderrun 0x00010000
474#define AR_TxDataUnderrun 0x00020000
475#define AR_DescCfgErr 0x00040000
476#define AR_TxTimerExpired 0x00080000
477#define AR_TxStatusRsvd10 0xfff00000
478
479#define AR_SendTimestamp ds_txstatus2
480#define AR_BaBitmapLow ds_txstatus3
481#define AR_BaBitmapHigh ds_txstatus4
482
483#define AR_TxRSSIAnt10 0x000000ff
484#define AR_TxRSSIAnt10_S 0
485#define AR_TxRSSIAnt11 0x0000ff00
486#define AR_TxRSSIAnt11_S 8
487#define AR_TxRSSIAnt12 0x00ff0000
488#define AR_TxRSSIAnt12_S 16
489#define AR_TxRSSICombined 0xff000000
490#define AR_TxRSSICombined_S 24
491
492#define AR_TxTid 0xf0000000
493#define AR_TxTid_S 28
494
495#define AR_TxEVM0 ds_txstatus5
496#define AR_TxEVM1 ds_txstatus6
497#define AR_TxEVM2 ds_txstatus7
498
499#define AR_TxDone 0x00000001
500#define AR_SeqNum 0x00001ffe
501#define AR_SeqNum_S 1
502#define AR_TxStatusRsvd80 0x0001e000
503#define AR_TxOpExceeded 0x00020000
504#define AR_TxStatusRsvd81 0x001c0000
505#define AR_FinalTxIdx 0x00600000
506#define AR_FinalTxIdx_S 21
507#define AR_TxStatusRsvd82 0x01800000
508#define AR_PowerMgmt 0x02000000
509#define AR_TxStatusRsvd83 0xfc000000
510
511#define AR_RxCTLRsvd00 0xffffffff
512
513#define AR_RxCtlRsvd00 0x00001000
514#define AR_RxIntrReq 0x00002000
515#define AR_RxCtlRsvd01 0xffffc000
516
517#define AR_RxRSSIAnt00 0x000000ff
518#define AR_RxRSSIAnt00_S 0
519#define AR_RxRSSIAnt01 0x0000ff00
520#define AR_RxRSSIAnt01_S 8
521#define AR_RxRSSIAnt02 0x00ff0000
522#define AR_RxRSSIAnt02_S 16
523#define AR_RxRate 0xff000000
524#define AR_RxRate_S 24
525#define AR_RxStatusRsvd00 0xff000000
526
527#define AR_DataLen 0x00000fff
528#define AR_RxMore 0x00001000
529#define AR_NumDelim 0x003fc000
530#define AR_NumDelim_S 14
531#define AR_RxStatusRsvd10 0xff800000
532
533#define AR_RcvTimestamp ds_rxstatus2
534
535#define AR_GI 0x00000001
536#define AR_2040 0x00000002
537#define AR_Parallel40 0x00000004
538#define AR_Parallel40_S 2
539#define AR_RxStatusRsvd30 0x000000f8
540#define AR_RxAntenna 0xffffff00
541#define AR_RxAntenna_S 8
542
543#define AR_RxRSSIAnt10 0x000000ff
544#define AR_RxRSSIAnt10_S 0
545#define AR_RxRSSIAnt11 0x0000ff00
546#define AR_RxRSSIAnt11_S 8
547#define AR_RxRSSIAnt12 0x00ff0000
548#define AR_RxRSSIAnt12_S 16
549#define AR_RxRSSICombined 0xff000000
550#define AR_RxRSSICombined_S 24
551
552#define AR_RxEVM0 ds_rxstatus4
553#define AR_RxEVM1 ds_rxstatus5
554#define AR_RxEVM2 ds_rxstatus6
555
556#define AR_RxDone 0x00000001
557#define AR_RxFrameOK 0x00000002
558#define AR_CRCErr 0x00000004
559#define AR_DecryptCRCErr 0x00000008
560#define AR_PHYErr 0x00000010
561#define AR_MichaelErr 0x00000020
562#define AR_PreDelimCRCErr 0x00000040
563#define AR_RxStatusRsvd70 0x00000080
564#define AR_RxKeyIdxValid 0x00000100
565#define AR_KeyIdx 0x0000fe00
566#define AR_KeyIdx_S 9
567#define AR_PHYErrCode 0x0000ff00
568#define AR_PHYErrCode_S 8
569#define AR_RxMoreAggr 0x00010000
570#define AR_RxAggr 0x00020000
571#define AR_PostDelimCRCErr 0x00040000
572#define AR_RxStatusRsvd71 0x3ff80000
573#define AR_DecryptBusyErr 0x40000000
574#define AR_KeyMiss 0x80000000
575
580
581#define ATH9K_NUM_TX_QUEUES 1
582
583/* Used as a queue subtype instead of a WMM AC */
584#define ATH9K_WME_UPSD 4
585
597
598#define ATH9K_TXQ_USEDEFAULT ((u32) -1)
599#define ATH9K_TXQ_USE_LOCKOUT_BKOFF_DIS 0x00000001
600
601#define ATH9K_DECOMP_MASK_SIZE 128
602#define ATH9K_READY_TIME_LO_BOUND 50
603#define ATH9K_READY_TIME_HI_BOUND 96
604
614
633
651
652#define ATH9K_RATESERIES_RTS_CTS 0x0001
653#define ATH9K_RATESERIES_2040 0x0002
654#define ATH9K_RATESERIES_HALFGI 0x0004
655#define ATH9K_RATESERIES_STBC 0x0008
656
664
671
672struct ath_hw;
673struct ath9k_channel;
674
676void ath9k_hw_puttxbuf(struct ath_hw *ah, u32 q, u32 txdp);
677void ath9k_hw_txstart(struct ath_hw *ah, u32 q);
678void ath9k_hw_cleartxdesc(struct ath_hw *ah, void *ds);
680int ath9k_hw_updatetxtriglevel(struct ath_hw *ah, int bIncTrigLevel);
682void ath9k_hw_abort_tx_dma(struct ath_hw *ah);
683void ath9k_hw_gettxintrtxqs(struct ath_hw *ah, u32 *txqs);
684int ath9k_hw_set_txq_props(struct ath_hw *ah, int q,
685 const struct ath9k_tx_queue_info *qinfo);
687 struct ath9k_tx_queue_info *qinfo);
689 const struct ath9k_tx_queue_info *qinfo);
690int ath9k_hw_releasetxqueue(struct ath_hw *ah, u32 q);
691int ath9k_hw_resettxqueue(struct ath_hw *ah, u32 q);
692int ath9k_hw_rxprocdesc(struct ath_hw *ah, struct ath_desc *ds,
693 struct ath_rx_status *rs, u64 tsf);
694void ath9k_hw_setuprxdesc(struct ath_hw *ah, struct ath_desc *ds,
695 u32 size, u32 flags);
696int ath9k_hw_setrxabort(struct ath_hw *ah, int set);
697void ath9k_hw_putrxbuf(struct ath_hw *ah, u32 rxdp);
698void ath9k_hw_startpcureceive(struct ath_hw *ah, int is_scanning);
699void ath9k_hw_abortpcurecv(struct ath_hw *ah);
700int ath9k_hw_stopdmarecv(struct ath_hw *ah, int *reset);
701
702/* Interrupt Handling */
703int ath9k_hw_intrpend(struct ath_hw *ah);
704void ath9k_hw_set_interrupts(struct ath_hw *ah, unsigned int ints);
707
709
710#endif /* MAC_H */
u32 status5
Definition ar9003_mac.h:5
u32 status1
Definition ar9003_mac.h:1
u32 status8
Definition ar9003_mac.h:8
u32 status4
Definition ar9003_mac.h:4
u32 status6
Definition ar9003_mac.h:6
u32 status7
Definition ar9003_mac.h:7
u32 status3
Definition ar9003_mac.h:3
u32 status2
Definition ar9003_mac.h:2
unsigned short uint16_t
Definition stdint.h:11
unsigned int uint32_t
Definition stdint.h:12
unsigned long long uint64_t
Definition stdint.h:13
signed char int8_t
Definition stdint.h:15
union @104331263140136355135267063077374276003064103115 u
uint32_t type
Operating system type.
Definition ena.h:1
uint8_t flags
Flags.
Definition ena.h:7
uint16_t size
Buffer size.
Definition dwmac.h:3
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
#define u8
Definition igbvf_osdep.h:40
#define __attribute__(x)
Definition compiler.h:10
uint64_t u64
Definition stdint.h:26
uint32_t ds
Definition librm.h:5
int ath9k_hw_intrpend(struct ath_hw *ah)
Definition ath9k_mac.c:585
ath9k_key_type
Definition mac.h:665
@ ATH9K_KEY_TYPE_TKIP
Definition mac.h:669
@ ATH9K_KEY_TYPE_CLEAR
Definition mac.h:666
@ ATH9K_KEY_TYPE_AES
Definition mac.h:668
@ ATH9K_KEY_TYPE_WEP
Definition mac.h:667
void ath9k_hw_putrxbuf(struct ath_hw *ah, u32 rxdp)
Definition ath9k_mac.c:521
void ath9k_hw_enable_interrupts(struct ath_hw *ah)
Definition ath9k_mac.c:618
int ath9k_hw_setuptxqueue(struct ath_hw *ah, enum ath9k_tx_queue type, const struct ath9k_tx_queue_info *qinfo)
Definition ath9k_mac.c:218
u32 ath9k_hw_gettxbuf(struct ath_hw *ah, u32 q)
void ath9k_hw_set_interrupts(struct ath_hw *ah, unsigned int ints)
Definition ath9k_mac.c:643
int ath9k_hw_get_txq_props(struct ath_hw *ah, int q, struct ath9k_tx_queue_info *qinfo)
u32 ath9k_hw_numtxpending(struct ath_hw *ah, u32 q)
Definition ath9k_mac.c:64
void ath9k_hw_setuprxdesc(struct ath_hw *ah, struct ath_desc *ds, u32 size, u32 flags)
void ath9k_hw_abortpcurecv(struct ath_hw *ah)
Definition ath9k_mac.c:533
void ath9k_hw_disable_interrupts(struct ath_hw *ah)
Definition ath9k_mac.c:604
ath9k_rx_filter
Definition mac.h:634
@ ATH9K_RX_FILTER_BCAST
Definition mac.h:637
@ ATH9K_RX_FILTER_MCAST
Definition mac.h:636
@ ATH9K_RX_FILTER_UCAST
Definition mac.h:635
@ ATH9K_RX_FILTER_CONTROL
Definition mac.h:638
@ ATH9K_RX_FILTER_BEACON
Definition mac.h:639
@ ATH9K_RX_FILTER_PROBEREQ
Definition mac.h:641
@ ATH9K_RX_FILTER_COMP_BA
Definition mac.h:645
@ ATH9K_RX_FILTER_PROM
Definition mac.h:640
@ ATH9K_RX_FILTER_COMP_BAR
Definition mac.h:644
@ ATH9K_RX_FILTER_MYBEACON
Definition mac.h:643
@ ATH9K_RX_FILTER_MCAST_BCAST_ALL
Definition mac.h:649
@ ATH9K_RX_FILTER_PSPOLL
Definition mac.h:647
@ ATH9K_RX_FILTER_PHYRADAR
Definition mac.h:648
@ ATH9K_RX_FILTER_PHYERR
Definition mac.h:642
@ ATH9K_RX_FILTER_UNCOMP_BA_BAR
Definition mac.h:646
ath9k_pkt_type
Definition mac.h:605
@ ATH9K_PKT_TYPE_NORMAL
Definition mac.h:606
@ ATH9K_PKT_TYPE_CHIRP
Definition mac.h:611
@ ATH9K_PKT_TYPE_PSPOLL
Definition mac.h:608
@ ATH9K_PKT_TYPE_GRP_POLL
Definition mac.h:612
@ ATH9K_PKT_TYPE_BEACON
Definition mac.h:609
@ ATH9K_PKT_TYPE_PROBE_RESP
Definition mac.h:610
@ ATH9K_PKT_TYPE_ATIM
Definition mac.h:607
void ath9k_hw_puttxbuf(struct ath_hw *ah, u32 q, u32 txdp)
Definition ath9k_mac.c:52
int ath9k_hw_releasetxqueue(struct ath_hw *ah, u32 q)
Definition ath9k_mac.c:261
ath9k_tx_queue
Definition mac.h:576
@ ATH9K_TX_QUEUE_INACTIVE
Definition mac.h:577
@ ATH9K_TX_QUEUE_DATA
Definition mac.h:578
void ath9k_hw_abort_tx_dma(struct ath_hw *ah)
Definition ath9k_mac.c:131
int ath9k_hw_stop_dma_queue(struct ath_hw *ah, u32 q)
int ath9k_hw_stopdmarecv(struct ath_hw *ah, int *reset)
Definition ath9k_mac.c:538
int ath9k_hw_rxprocdesc(struct ath_hw *ah, struct ath_desc *ds, struct ath_rx_status *rs, u64 tsf)
Definition ath9k_mac.c:396
void ath9k_hw_txstart(struct ath_hw *ah, u32 q)
Definition ath9k_mac.c:57
ath9k_tx_queue_flags
Definition mac.h:586
@ TXQ_FLAG_COMPRESSION_ENABLE
Definition mac.h:593
@ TXQ_FLAG_RDYTIME_EXP_POLICY_ENABLE
Definition mac.h:594
@ TXQ_FLAG_BACKOFF_DISABLE
Definition mac.h:592
@ TXQ_FLAG_TXERRINT_ENABLE
Definition mac.h:588
@ TXQ_FLAG_TXDESCINT_ENABLE
Definition mac.h:589
@ TXQ_FLAG_FRAG_BURST_BACKOFF_ENABLE
Definition mac.h:595
@ TXQ_FLAG_TXEOLINT_ENABLE
Definition mac.h:590
@ TXQ_FLAG_TXURNINT_ENABLE
Definition mac.h:591
@ TXQ_FLAG_TXOKINT_ENABLE
Definition mac.h:587
void ath9k_hw_startpcureceive(struct ath_hw *ah, int is_scanning)
Definition ath9k_mac.c:526
void ar9002_hw_attach_mac_ops(struct ath_hw *ah)
void ath9k_hw_gettxintrtxqs(struct ath_hw *ah, u32 *txqs)
Definition ath9k_mac.c:158
int ath9k_hw_updatetxtriglevel(struct ath_hw *ah, int bIncTrigLevel)
ath9k_hw_updatetxtriglevel - adjusts the frame trigger level
Definition ath9k_mac.c:103
int ath9k_hw_resettxqueue(struct ath_hw *ah, u32 q)
Definition ath9k_mac.c:285
int ath9k_hw_set_txq_props(struct ath_hw *ah, int q, const struct ath9k_tx_queue_info *qinfo)
Definition ath9k_mac.c:164
int ath9k_hw_setrxabort(struct ath_hw *ah, int set)
Definition ath9k_mac.c:492
ath9k_phyerr
Definition mac.h:207
@ ATH9K_PHYERR_OFDM_RATE_ILLEGAL
Definition mac.h:219
@ ATH9K_PHYERR_OFDM_POWER_DROP
Definition mac.h:221
@ ATH9K_PHYERR_MAX
Definition mac.h:238
@ ATH9K_PHYERR_SERVICE
Definition mac.h:214
@ ATH9K_PHYERR_CCK_RESTART
Definition mac.h:230
@ ATH9K_PHYERR_CCK_LENGTH_ILLEGAL
Definition mac.h:231
@ ATH9K_PHYERR_HT_RATE_ILLEGAL
Definition mac.h:236
@ ATH9K_PHYERR_CCK_TIMING
Definition mac.h:226
@ ATH9K_PHYERR_CCK_RATE_ILLEGAL
Definition mac.h:228
@ ATH9K_PHYERR_FALSE_RADAR_EXT
Definition mac.h:224
@ ATH9K_PHYERR_TOR
Definition mac.h:215
@ ATH9K_PHYERR_CCK_POWER_DROP
Definition mac.h:232
@ ATH9K_PHYERR_RADAR
Definition mac.h:213
@ ATH9K_PHYERR_CCK_HEADER_CRC
Definition mac.h:227
@ ATH9K_PHYERR_OFDM_TIMING
Definition mac.h:217
@ ATH9K_PHYERR_OFDM_SIGNAL_PARITY
Definition mac.h:218
@ ATH9K_PHYERR_LENGTH
Definition mac.h:212
@ ATH9K_PHYERR_OFDM_RESTART
Definition mac.h:223
@ ATH9K_PHYERR_RATE
Definition mac.h:211
@ ATH9K_PHYERR_HT_CRC_ERROR
Definition mac.h:234
@ ATH9K_PHYERR_TIMING
Definition mac.h:209
@ ATH9K_PHYERR_OFDM_LENGTH_ILLEGAL
Definition mac.h:220
@ ATH9K_PHYERR_UNDERRUN
Definition mac.h:208
@ ATH9K_PHYERR_PARITY
Definition mac.h:210
@ ATH9K_PHYERR_HT_LENGTH_ILLEGAL
Definition mac.h:235
@ ATH9K_PHYERR_CCK_SERVICE
Definition mac.h:229
@ ATH9K_PHYERR_OFDM_SERVICE
Definition mac.h:222
void ath9k_hw_cleartxdesc(struct ath_hw *ah, void *ds)
struct option_descriptor set[0]
Definition nvo_cmd.c:112
uint8_t ah
Definition registers.h:1
@ rxdp
Definition sis900.h:32
@ txdp
Definition sis900.h:30
u32 status1
Definition mac.h:295
u32 ds_data
Definition mac.h:279
u32 ctl5
Definition mac.h:287
u32 status0
Definition mac.h:294
u32 ctl9
Definition mac.h:291
u32 status2
Definition mac.h:296
u32 ctl6
Definition mac.h:288
u32 status4
Definition mac.h:298
u32 ctl7
Definition mac.h:289
u32 ctl11
Definition mac.h:293
u32 ctl3
Definition mac.h:285
u32 ctl2
Definition mac.h:284
u32 status6
Definition mac.h:300
u32 status3
Definition mac.h:297
u32 ctl4
Definition mac.h:286
u32 ds_link
Definition mac.h:278
u32 status9
Definition mac.h:303
u32 status5
Definition mac.h:299
u32 ds_ctl1
Definition mac.h:281
u32 ctl10
Definition mac.h:292
u32 status7
Definition mac.h:301
u32 ctl8
Definition mac.h:290
u32 status8
Definition mac.h:302
u32 ds_ctl0
Definition mac.h:280
u32 tqi_cbrOverflowLimit
Definition mac.h:627
enum ath9k_tx_queue_flags tqi_qflags
Definition mac.h:619
enum ath9k_tx_queue tqi_type
Definition mac.h:617
u32 tqi_physCompBuf
Definition mac.h:630
u32 ds_ctl1
Definition mac.h:245
u32 ds_ctl0
Definition mac.h:244
u32 ds_data
Definition mac.h:243
u32 ds_link
Definition mac.h:242
u32 ds_hw[20]
Definition mac.h:246
uint32_t evm2
Definition mac.h:187
int8_t rs_rssi_ctl2
Definition mac.h:172
uint64_t rs_tstamp
Definition mac.h:165
uint32_t evm0
Definition mac.h:185
int8_t rs_rssi_ext1
Definition mac.h:174
uint32_t evm1
Definition mac.h:186
int8_t rs_rssi
Definition mac.h:169
uint16_t rs_datalen
Definition mac.h:166
int8_t rs_rssi_ext0
Definition mac.h:173
int8_t rs_rssi_ctl0
Definition mac.h:170
int8_t rs_rssi_ext2
Definition mac.h:175
int8_t rs_rssi_ctl1
Definition mac.h:171
Definition hw.h:657
u8 rs_flags
Definition mac.h:156
int8_t rs_rssi_ext1
Definition mac.h:151
u8 rs_rate
Definition mac.h:144
u8 rs_more
Definition mac.h:146
int8_t rs_rssi_ctl1
Definition mac.h:148
u8 rs_status
Definition mac.h:140
int8_t rs_rssi_ext2
Definition mac.h:152
u32 evm4
Definition mac.h:161
u8 rs_moreaggr
Definition mac.h:154
int8_t rs_rssi_ext0
Definition mac.h:150
int8_t rs_rssi_ctl0
Definition mac.h:147
u8 rs_phyerr
Definition mac.h:141
u8 rs_antenna
Definition mac.h:145
u8 rs_isaggr
Definition mac.h:153
u32 evm0
Definition mac.h:157
u16 rs_datalen
Definition mac.h:139
u8 rs_keyix
Definition mac.h:143
int8_t rs_rssi_ctl2
Definition mac.h:149
u8 rs_num_delims
Definition mac.h:155
u32 evm1
Definition mac.h:158
u32 rs_tstamp
Definition mac.h:138
int8_t rs_rssi
Definition mac.h:142
u32 evm2
Definition mac.h:159
u32 evm3
Definition mac.h:160
int8_t ts_rssi_ctl0
Definition mac.h:121
u32 ba_low
Definition mac.h:130
u8 ts_shortretry
Definition mac.h:117
u8 ts_virtcol
Definition mac.h:119
u8 ts_status
Definition mac.h:114
u32 evm0
Definition mac.h:132
int8_t ts_rssi
Definition mac.h:116
u32 evm1
Definition mac.h:133
u16 desc_id
Definition mac.h:128
u32 ts_tstamp
Definition mac.h:112
u16 ts_seqnum
Definition mac.h:113
int8_t ts_rssi_ext2
Definition mac.h:126
u8 ts_longretry
Definition mac.h:118
u32 ba_high
Definition mac.h:131
int8_t ts_rssi_ext1
Definition mac.h:125
u32 evm2
Definition mac.h:134
u8 ts_flags
Definition mac.h:120
int8_t ts_rssi_ext0
Definition mac.h:124
u8 ts_rateindex
Definition mac.h:115
int8_t ts_rssi_ctl1
Definition mac.h:122
int8_t ts_rssi_ctl2
Definition mac.h:123
#define u16
Definition vga.h:20
#define u32
Definition vga.h:21
u8 tx[WPA_TKIP_MIC_KEY_LEN]
MIC key for packets to the AP.
Definition wpa.h:4
u8 rx[WPA_TKIP_MIC_KEY_LEN]
MIC key for packets from the AP.
Definition wpa.h:1