iPXE
Macros | Functions
ath9k_ar9003_mac.c File Reference
#include <ipxe/io.h>
#include "hw.h"
#include "ar9003_mac.h"

Go to the source code of this file.

Macros

#define FIRST_DESC_NDELIMS   60
 

Functions

static void ar9003_hw_rx_enable (struct ath_hw *hw)
 
static u16 ar9003_calc_ptr_chksum (struct ar9003_txc *ads)
 
static void ar9003_hw_set_desc_link (void *ds, u32 ds_link)
 
static void ar9003_hw_get_desc_link (void *ds, u32 **ds_link)
 
static int ar9003_hw_get_isr (struct ath_hw *ah, enum ath9k_int *masked)
 
static void ar9003_hw_fill_txdesc (struct ath_hw *ah __unused, void *ds, u32 seglen, int is_firstseg, int is_lastseg, const void *ds0, u32 buf_addr, unsigned int qcu)
 
static int ar9003_hw_proc_txdesc (struct ath_hw *ah, void *ds __unused, struct ath_tx_status *ts)
 
static void ar9003_hw_set11n_txdesc (struct ath_hw *ah, void *ds, u32 pktlen, enum ath9k_pkt_type type, u32 txpower, u32 keyIx, enum ath9k_key_type keyType, u32 flags)
 
static void ar9003_hw_set_clrdmask (struct ath_hw *ah __unused, void *ds, int val)
 
static void ar9003_hw_set11n_ratescenario (struct ath_hw *ah __unused, void *ds, void *lastds, u32 durUpdateEn, u32 rtsctsRate, u32 rtsctsDuration __unused, struct ath9k_11n_rate_series series[], u32 nseries __unused, u32 flags)
 
static void ar9003_hw_set11n_aggr_first (struct ath_hw *ah, void *ds, u32 aggrLen)
 
static void ar9003_hw_set11n_aggr_middle (struct ath_hw *ah __unused, void *ds, u32 numDelims)
 
static void ar9003_hw_set11n_aggr_last (struct ath_hw *ah __unused, void *ds)
 
static void ar9003_hw_clr11n_aggr (struct ath_hw *ah __unused, void *ds)
 
void ar9003_hw_set_paprd_txdesc (struct ath_hw *ah __unused, void *ds, u8 chains)
 
void ar9003_hw_attach_mac_ops (struct ath_hw *hw)
 
void ath9k_hw_set_rx_bufsize (struct ath_hw *ah, u16 buf_size)
 
void ath9k_hw_addrxbuf_edma (struct ath_hw *ah, u32 rxdp, enum ath9k_rx_qtype qtype)
 
int ath9k_hw_process_rxdesc_edma (struct ath_hw *ah __unused, struct ath_rx_status *rxs, void *buf_addr)
 
void ath9k_hw_reset_txstatus_ring (struct ath_hw *ah)
 
void ath9k_hw_setup_statusring (struct ath_hw *ah, void *ts_start, u32 ts_paddr_start, u8 size)
 

Macro Definition Documentation

◆ FIRST_DESC_NDELIMS

#define FIRST_DESC_NDELIMS   60

Function Documentation

◆ ar9003_hw_rx_enable()

static void ar9003_hw_rx_enable ( struct ath_hw hw)
static

Definition at line 24 of file ath9k_ar9003_mac.c.

25 {
26  REG_WRITE(hw, AR_CR, 0);
27 }
#define AR_CR
Definition: reg.h:24
Definition: hw.c:16
#define REG_WRITE(_ah, _reg, _val)
Definition: hw.h:77

References AR_CR, and REG_WRITE.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_calc_ptr_chksum()

static u16 ar9003_calc_ptr_chksum ( struct ar9003_txc ads)
static

Definition at line 29 of file ath9k_ar9003_mac.c.

30 {
31  int checksum;
32 
33  checksum = ads->info + ads->link
34  + ads->data0 + ads->ctl3
35  + ads->data1 + ads->ctl5
36  + ads->data2 + ads->ctl7
37  + ads->data3 + ads->ctl9;
38 
39  return ((checksum & 0xffff) + (checksum >> 16)) & AR_TxPtrChkSum;
40 }
uint8_t checksum
Checksum.
Definition: pnpbios.c:37
#define AR_TxPtrChkSum
Definition: ar9003_mac.h:37

References AR_TxPtrChkSum, checksum, ar9003_txc::ctl3, ar9003_txc::ctl5, ar9003_txc::ctl7, ar9003_txc::ctl9, ar9003_txc::data0, ar9003_txc::data1, ar9003_txc::data2, ar9003_txc::data3, ar9003_txc::info, and ar9003_txc::link.

Referenced by ar9003_hw_fill_txdesc(), and ar9003_hw_set_desc_link().

◆ ar9003_hw_set_desc_link()

static void ar9003_hw_set_desc_link ( void *  ds,
u32  ds_link 
)
static

Definition at line 42 of file ath9k_ar9003_mac.c.

43 {
44  struct ar9003_txc *ads = ds;
45 
46  ads->link = ds_link;
47  ads->ctl10 &= ~AR_TxPtrChkSum;
48  ads->ctl10 |= ar9003_calc_ptr_chksum(ads);
49 }
static u16 ar9003_calc_ptr_chksum(struct ar9003_txc *ads)
u32 ds_link
Definition: desc.h:129
uint32_t ds
Definition: librm.h:254
#define AR_TxPtrChkSum
Definition: ar9003_mac.h:37

References ar9003_calc_ptr_chksum(), AR_TxPtrChkSum, ar9003_txc::ctl10, ds, ds_link, and ar9003_txc::link.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_get_desc_link()

static void ar9003_hw_get_desc_link ( void *  ds,
u32 **  ds_link 
)
static

Definition at line 51 of file ath9k_ar9003_mac.c.

52 {
53  struct ar9003_txc *ads = ds;
54 
55  *ds_link = &ads->link;
56 }
u32 ds_link
Definition: desc.h:129
uint32_t ds
Definition: librm.h:254

References ds, ds_link, and ar9003_txc::link.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_get_isr()

static int ar9003_hw_get_isr ( struct ath_hw ah,
enum ath9k_int masked 
)
static

Definition at line 58 of file ath9k_ar9003_mac.c.

59 {
60  u32 isr = 0;
61  u32 mask2 = 0;
62  struct ath9k_hw_capabilities *pCap = &ah->caps;
63  u32 sync_cause = 0;
64 
65  if (ah->ah_ier & AR_IER_ENABLE) {
69  isr = REG_READ(ah, AR_ISR);
70  }
71 
73 
74  *masked = 0;
75 
76  if (!isr && !sync_cause)
77  return 0;
78  } else {
79  *masked = 0;
80  isr = REG_READ(ah, AR_ISR);
81  }
82 
83  if (isr) {
84  if (isr & AR_ISR_BCNMISC) {
85  u32 isr2;
86  isr2 = REG_READ(ah, AR_ISR_S2);
87 
88  mask2 |= ((isr2 & AR_ISR_S2_TIM) >>
90  mask2 |= ((isr2 & AR_ISR_S2_DTIM) >>
92  mask2 |= ((isr2 & AR_ISR_S2_DTIMSYNC) >>
94  mask2 |= ((isr2 & AR_ISR_S2_CABEND) >>
96  mask2 |= ((isr2 & AR_ISR_S2_GTT) <<
98  mask2 |= ((isr2 & AR_ISR_S2_CST) <<
100  mask2 |= ((isr2 & AR_ISR_S2_TSFOOR) >>
102  mask2 |= ((isr2 & AR_ISR_S2_BB_WATCHDOG) >>
104 
105  if (!(pCap->hw_caps & ATH9K_HW_CAP_RAC_SUPPORTED)) {
106  REG_WRITE(ah, AR_ISR_S2, isr2);
107  isr &= ~AR_ISR_BCNMISC;
108  }
109  }
110 
111  if ((pCap->hw_caps & ATH9K_HW_CAP_RAC_SUPPORTED))
113 
114  if (isr == 0xffffffff) {
115  *masked = 0;
116  return 0;
117  }
118 
119  *masked = isr & ATH9K_INT_COMMON;
120 
121  if (ah->config.rx_intr_mitigation)
122  if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
123  *masked |= ATH9K_INT_RXLP;
124 
125  if (ah->config.tx_intr_mitigation)
126  if (isr & (AR_ISR_TXMINTR | AR_ISR_TXINTM))
127  *masked |= ATH9K_INT_TX;
128 
129  if (isr & (AR_ISR_LP_RXOK | AR_ISR_RXERR))
130  *masked |= ATH9K_INT_RXLP;
131 
132  if (isr & AR_ISR_HP_RXOK)
133  *masked |= ATH9K_INT_RXHP;
134 
136  *masked |= ATH9K_INT_TX;
137 
138  if (!(pCap->hw_caps & ATH9K_HW_CAP_RAC_SUPPORTED)) {
139  u32 s0, s1;
140  s0 = REG_READ(ah, AR_ISR_S0);
141  REG_WRITE(ah, AR_ISR_S0, s0);
142  s1 = REG_READ(ah, AR_ISR_S1);
143  REG_WRITE(ah, AR_ISR_S1, s1);
144 
145  isr &= ~(AR_ISR_TXOK | AR_ISR_TXERR |
146  AR_ISR_TXEOL);
147  }
148  }
149 
150  if (isr & AR_ISR_GENTMR) {
151  u32 s5;
152 
154  s5 = REG_READ(ah, AR_ISR_S5_S);
155  else
156  s5 = REG_READ(ah, AR_ISR_S5);
157 
158  ah->intr_gen_timer_trigger =
160 
161  ah->intr_gen_timer_thresh =
163 
164  if (ah->intr_gen_timer_trigger)
165  *masked |= ATH9K_INT_GENTIMER;
166 
167  if (!(pCap->hw_caps & ATH9K_HW_CAP_RAC_SUPPORTED)) {
168  REG_WRITE(ah, AR_ISR_S5, s5);
169  isr &= ~AR_ISR_GENTMR;
170  }
171 
172  }
173 
174  *masked |= mask2;
175 
176  if (!(pCap->hw_caps & ATH9K_HW_CAP_RAC_SUPPORTED)) {
177  REG_WRITE(ah, AR_ISR, isr);
178 
179  (void) REG_READ(ah, AR_ISR);
180  }
181  }
182 
183  if (sync_cause) {
184  if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
186  REG_WRITE(ah, AR_RC, 0);
187  *masked |= ATH9K_INT_FATAL;
188  }
189 
190  if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT)
191  DBG("ath9k: "
192  "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
193 
194  REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
196 
197  }
198  return 1;
199 }
#define AR_ISR_RAC
Definition: reg.h:333
#define AR_RTC_STATUS_ON
Definition: reg.h:1208
#define AR_ISR_LP_RXOK
Definition: reg.h:175
#define AR_INTR_SYNC_CAUSE_CLR
Definition: reg.h:923
#define MAP_ISR_S2_TIM
Definition: ar9003_mac.h:49
#define AR_RTC_STATUS
Definition: reg.h:1199
#define MAP_ISR_S2_DTIMSYNC
Definition: ar9003_mac.h:51
#define AR_INTR_ASYNC_CAUSE
Definition: reg.h:975
#define AR_ISR_S2_DTIM
Definition: reg.h:229
#define AR_ISR_S2_CST
Definition: reg.h:222
#define MS(_v, _f)
Definition: hw.h:102
#define AR_ISR_S5_GENTIMER_THRESH
Definition: reg.h:251
#define AR_ISR_TXEOL
Definition: reg.h:184
#define AR_ISR_S2_GTT
Definition: reg.h:223
#define AR_ISR_S2_TSFOOR
Definition: reg.h:230
#define AR_RTC_STATUS_M
Definition: reg.h:1202
#define AR_IER_ENABLE
Definition: reg.h:55
#define AR_RC_HOSTIF
Definition: reg.h:696
#define AR_ISR_S5_S
Definition: reg.h:349
#define AR_ISR_S5_GENTIMER_TRIG
Definition: reg.h:249
#define AR_ISR_HP_RXOK
Definition: reg.h:174
Definition: sis900.h:26
#define AR_ISR_TXOK
Definition: reg.h:180
#define AR_INTR_SYNC_CAUSE
Definition: reg.h:922
#define MAP_ISR_S2_CST
Definition: ar9003_mac.h:47
#define AR_ISR_TXINTM
Definition: reg.h:204
#define AR_ISR_TXMINTR
Definition: reg.h:202
#define AR_ISR_S2
Definition: reg.h:219
#define AR_ISR_S2_CABEND
Definition: reg.h:225
#define AR_ISR_S2_DTIMSYNC
Definition: reg.h:226
#define AR_ISR_S5
Definition: reg.h:241
#define REG_READ(_ah, _reg)
Definition: hw.h:80
#define AR_ISR_TXERR
Definition: reg.h:182
#define AR_ISR_S2_BB_WATCHDOG
Definition: reg.h:221
#define REG_WRITE(_ah, _reg, _val)
Definition: hw.h:77
#define AR_INTR_MAC_IRQ
Definition: reg.h:915
#define AR_ISR_RXMINTR
Definition: reg.h:203
#define AR_ISR_BCNMISC
Definition: reg.h:195
#define MAP_ISR_S2_DTIM
Definition: ar9003_mac.h:52
#define AR_ISR_S1
Definition: reg.h:213
#define AR_ISR_GENTMR
Definition: reg.h:200
#define AR_ISR
Definition: reg.h:171
uint8_t ah
Definition: registers.h:85
#define AR_ISR_S0
Definition: reg.h:207
#define AR_ISR_RXINTM
Definition: reg.h:205
#define DBG(...)
Print a debugging message.
Definition: compiler.h:498
#define MAP_ISR_S2_TSFOOR
Definition: ar9003_mac.h:53
#define AR_ISR_RXERR
Definition: reg.h:176
#define MAP_ISR_S2_GTT
Definition: ar9003_mac.h:48
#define AR_RC
Definition: reg.h:693
#define MAP_ISR_S2_CABEND
Definition: ar9003_mac.h:50
#define MAP_ISR_S2_BB_WATCHDOG
Definition: ar9003_mac.h:54
uint32_t u32
Definition: stdint.h:23
#define AR_ISR_S2_TIM
Definition: reg.h:224

References ah, AR_IER_ENABLE, AR_INTR_ASYNC_CAUSE, AR_INTR_MAC_IRQ, AR_INTR_SYNC_CAUSE, AR_INTR_SYNC_CAUSE_CLR, AR_INTR_SYNC_DEFAULT, AR_INTR_SYNC_LOCAL_TIMEOUT, AR_INTR_SYNC_RADM_CPL_TIMEOUT, AR_ISR, AR_ISR_BCNMISC, AR_ISR_GENTMR, AR_ISR_HP_RXOK, AR_ISR_LP_RXOK, AR_ISR_RAC, AR_ISR_RXERR, AR_ISR_RXINTM, AR_ISR_RXMINTR, AR_ISR_S0, AR_ISR_S1, AR_ISR_S2, AR_ISR_S2_BB_WATCHDOG, AR_ISR_S2_CABEND, AR_ISR_S2_CST, AR_ISR_S2_DTIM, AR_ISR_S2_DTIMSYNC, AR_ISR_S2_GTT, AR_ISR_S2_TIM, AR_ISR_S2_TSFOOR, AR_ISR_S5, AR_ISR_S5_GENTIMER_THRESH, AR_ISR_S5_GENTIMER_TRIG, AR_ISR_S5_S, AR_ISR_TXEOL, AR_ISR_TXERR, AR_ISR_TXINTM, AR_ISR_TXMINTR, AR_ISR_TXOK, AR_RC, AR_RC_HOSTIF, AR_RTC_STATUS, AR_RTC_STATUS_M, AR_RTC_STATUS_ON, ATH9K_HW_CAP_RAC_SUPPORTED, ATH9K_INT_COMMON, ATH9K_INT_FATAL, ATH9K_INT_GENTIMER, ATH9K_INT_RXHP, ATH9K_INT_RXLP, ATH9K_INT_TX, DBG, ath9k_hw_capabilities::hw_caps, isr, MAP_ISR_S2_BB_WATCHDOG, MAP_ISR_S2_CABEND, MAP_ISR_S2_CST, MAP_ISR_S2_DTIM, MAP_ISR_S2_DTIMSYNC, MAP_ISR_S2_GTT, MAP_ISR_S2_TIM, MAP_ISR_S2_TSFOOR, MS, REG_READ, and REG_WRITE.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_fill_txdesc()

static void ar9003_hw_fill_txdesc ( struct ath_hw *ah  __unused,
void *  ds,
u32  seglen,
int  is_firstseg,
int  is_lastseg,
const void *  ds0,
u32  buf_addr,
unsigned int  qcu 
)
static

Definition at line 201 of file ath9k_ar9003_mac.c.

205 {
206  struct ar9003_txc *ads = (struct ar9003_txc *) ds;
207  unsigned int descid = 0;
208 
209  ads->info = (ATHEROS_VENDOR_ID << AR_DescId_S) |
210  (1 << AR_TxRxDesc_S) |
211  (1 << AR_CtrlStat_S) |
212  (qcu << AR_TxQcuNum_S) | 0x17;
213 
214  ads->data0 = buf_addr;
215  ads->data1 = 0;
216  ads->data2 = 0;
217  ads->data3 = 0;
218 
219  ads->ctl3 = (seglen << AR_BufLen_S);
220  ads->ctl3 &= AR_BufLen;
221 
222  /* Fill in pointer checksum and descriptor id */
223  ads->ctl10 = ar9003_calc_ptr_chksum(ads);
224  ads->ctl10 |= (descid << AR_TxDescId_S);
225 
226  if (is_firstseg) {
227  ads->ctl12 |= (is_lastseg ? 0 : AR_TxMore);
228  } else if (is_lastseg) {
229  ads->ctl11 = 0;
230  ads->ctl12 = 0;
231  ads->ctl13 = AR9003TXC_CONST(ds0)->ctl13;
232  ads->ctl14 = AR9003TXC_CONST(ds0)->ctl14;
233  } else {
234  /* XXX Intermediate descriptor in a multi-descriptor frame.*/
235  ads->ctl11 = 0;
236  ads->ctl12 = AR_TxMore;
237  ads->ctl13 = 0;
238  ads->ctl14 = 0;
239  }
240 }
#define AR_TxQcuNum_S
Definition: ar9003_mac.h:30
static u16 ar9003_calc_ptr_chksum(struct ar9003_txc *ads)
#define AR_CtrlStat_S
Definition: ar9003_mac.h:26
#define ATHEROS_VENDOR_ID
Definition: hw.h:40
#define AR_BufLen
Definition: ar9003_mac.h:32
#define AR9003TXC_CONST(_ds)
Definition: ar9003_mac.h:56
#define AR_BufLen_S
Definition: ar9003_mac.h:33
uint32_t ds
Definition: librm.h:254
#define AR_DescId_S
Definition: ar9003_mac.h:24
#define AR_TxRxDesc_S
Definition: ar9003_mac.h:28
#define AR_TxMore
Definition: mac.h:366
#define AR_TxDescId_S
Definition: ar9003_mac.h:36

References ar9003_calc_ptr_chksum(), AR9003TXC_CONST, AR_BufLen, AR_BufLen_S, AR_CtrlStat_S, AR_DescId_S, AR_TxDescId_S, AR_TxMore, AR_TxQcuNum_S, AR_TxRxDesc_S, ATHEROS_VENDOR_ID, ar9003_txc::ctl10, ar9003_txc::ctl11, ar9003_txc::ctl12, ar9003_txc::ctl13, ar9003_txc::ctl14, ar9003_txc::ctl3, ar9003_txc::data0, ar9003_txc::data1, ar9003_txc::data2, ar9003_txc::data3, ds, and ar9003_txc::info.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_proc_txdesc()

static int ar9003_hw_proc_txdesc ( struct ath_hw ah,
void *ds  __unused,
struct ath_tx_status ts 
)
static

Definition at line 242 of file ath9k_ar9003_mac.c.

244 {
245  struct ar9003_txs *ads;
246  u32 status;
247 
248  ads = &ah->ts_ring[ah->ts_tail];
249 
250  status = *(volatile typeof(ads->status8) *)&(ads->status8);
251  if ((status & AR_TxDone) == 0)
252  return -EINPROGRESS;
253 
254  ah->ts_tail = (ah->ts_tail + 1) % ah->ts_size;
255 
256  if ((MS(ads->ds_info, AR_DescId) != ATHEROS_VENDOR_ID) ||
257  (MS(ads->ds_info, AR_TxRxDesc) != 1)) {
258  DBG("ath9k: "
259  "Tx Descriptor error %x\n", ads->ds_info);
260  memset(ads, 0, sizeof(*ads));
261  return -EIO;
262  }
263 
264  if (status & AR_TxOpExceeded)
267  ts->ts_seqnum = MS(status, AR_SeqNum);
268  ts->tid = MS(status, AR_TxTid);
269 
270  ts->qid = MS(ads->ds_info, AR_TxQcuNum);
271  ts->desc_id = MS(ads->status1, AR_TxDescId);
272  ts->ts_tstamp = ads->status4;
273  ts->ts_status = 0;
274  ts->ts_flags = 0;
275 
276  status = *(volatile typeof(ads->status2) *)&(ads->status2);
280  if (status & AR_TxBaStatus) {
281  ts->ts_flags |= ATH9K_TX_BA;
282  ts->ba_low = ads->status5;
283  ts->ba_high = ads->status6;
284  }
285 
286  status = *(volatile typeof(ads->status3) *)&(ads->status3);
289  if (status & AR_Filtered)
291  if (status & AR_FIFOUnderrun) {
294  }
297  if (status & AR_DescCfgErr)
299  if (status & AR_TxDataUnderrun) {
302  }
303  if (status & AR_TxDelimUnderrun) {
306  }
310 
311  status = *(volatile typeof(ads->status7) *)&(ads->status7);
316 
317  memset(ads, 0, sizeof(*ads));
318 
319  return 0;
320 }
#define ATH9K_TX_DATA_UNDERRUN
Definition: mac.h:96
u8 ts_flags
Definition: mac.h:119
u8 ts_longretry
Definition: mac.h:117
int8_t ts_rssi_ext1
Definition: mac.h:124
#define ATH9K_TXERR_FILT
Definition: mac.h:84
#define AR_TxRSSIAnt10
Definition: mac.h:482
#define AR_VirtRetryCnt
Definition: mac.h:470
int8_t ts_rssi_ctl1
Definition: mac.h:121
#define AR_TxRSSIAnt12
Definition: mac.h:486
int8_t ts_rssi
Definition: mac.h:115
#define MS(_v, _f)
Definition: hw.h:102
u8 ts_status
Definition: mac.h:113
#define AR_TxRSSIAnt01
Definition: mac.h:449
u16 ts_seqnum
Definition: mac.h:112
#define AR_TxDone
Definition: mac.h:498
#define ATHEROS_VENDOR_ID
Definition: hw.h:40
u8 ts_rateindex
Definition: mac.h:114
uint8_t status
Status.
Definition: ena.h:16
u8 tid
Definition: mac.h:128
#define ATH9K_TX_BA
Definition: mac.h:93
#define AR_TxOpExceeded
Definition: mac.h:502
#define AR_TxDelimUnderrun
Definition: mac.h:472
#define AR_TxTid
Definition: mac.h:491
#define AR_TxRSSICombined
Definition: mac.h:488
int8_t ts_rssi_ext0
Definition: mac.h:123
int8_t ts_rssi_ctl0
Definition: mac.h:120
u32 ba_high
Definition: mac.h:130
#define ATH9K_TX_DESC_CFG_ERR
Definition: mac.h:95
#define EINPROGRESS
Operation in progress.
Definition: errno.h:418
u8 ts_shortretry
Definition: mac.h:116
#define AR_TxRSSIAnt02
Definition: mac.h:451
#define AR_SeqNum
Definition: mac.h:499
u32 ts_tstamp
Definition: mac.h:111
#define AR_FinalTxIdx
Definition: mac.h:504
#define AR_DescId
Definition: ar9003_mac.h:23
int ath9k_hw_updatetxtriglevel(struct ath_hw *ah, int bIncTrigLevel)
ath9k_hw_updatetxtriglevel - adjusts the frame trigger level
Definition: ath9k_mac.c:101
#define AR_RTSFailCnt
Definition: mac.h:466
#define AR_Filtered
Definition: mac.h:465
#define ATH9K_TXERR_FIFO
Definition: mac.h:85
#define AR_TxRSSIAnt00
Definition: mac.h:447
int8_t ts_rssi_ext2
Definition: mac.h:125
#define AR_ExcessiveRetries
Definition: mac.h:463
#define AR_TxDataUnderrun
Definition: mac.h:473
#define EIO
Input/output error.
Definition: errno.h:433
#define ATH9K_TX_DELIM_UNDERRUN
Definition: mac.h:97
#define ATH9K_TXERR_XTXOP
Definition: mac.h:86
#define ATH9K_TXERR_TIMER_EXPIRED
Definition: mac.h:87
#define AR_TxRSSIAnt11
Definition: mac.h:484
#define AR_TxTimerExpired
Definition: mac.h:475
uint8_t ah
Definition: registers.h:85
u8 qid
Definition: mac.h:126
#define AR_DescCfgErr
Definition: mac.h:474
typeof(acpi_finder=acpi_find)
ACPI table finder.
Definition: acpi.c:45
#define AR_DataFailCnt
Definition: mac.h:468
#define AR_TxQcuNum
Definition: ar9003_mac.h:29
int8_t ts_rssi_ctl2
Definition: mac.h:122
#define DBG(...)
Print a debugging message.
Definition: compiler.h:498
#define AR_TxBaStatus
Definition: mac.h:454
#define ATH9K_TXERR_XRETRY
Definition: mac.h:83
#define AR_TxDescId
Definition: ar9003_mac.h:35
u32 ba_low
Definition: mac.h:129
u8 ts_virtcol
Definition: mac.h:118
#define AR_TxRxDesc
Definition: ar9003_mac.h:27
uint32_t u32
Definition: stdint.h:23
if(natsemi->flags &NATSEMI_64BIT) return 1
void * memset(void *dest, int character, size_t len) __nonnull
u16 desc_id
Definition: mac.h:127
#define AR_FIFOUnderrun
Definition: mac.h:464

References ah, AR_DataFailCnt, AR_DescCfgErr, AR_DescId, AR_ExcessiveRetries, AR_FIFOUnderrun, AR_Filtered, AR_FinalTxIdx, AR_RTSFailCnt, AR_SeqNum, AR_TxBaStatus, AR_TxDataUnderrun, AR_TxDelimUnderrun, AR_TxDescId, AR_TxDone, AR_TxOpExceeded, AR_TxQcuNum, AR_TxRSSIAnt00, AR_TxRSSIAnt01, AR_TxRSSIAnt02, AR_TxRSSIAnt10, AR_TxRSSIAnt11, AR_TxRSSIAnt12, AR_TxRSSICombined, AR_TxRxDesc, AR_TxTid, AR_TxTimerExpired, AR_VirtRetryCnt, ath9k_hw_updatetxtriglevel(), ATH9K_TX_BA, ATH9K_TX_DATA_UNDERRUN, ATH9K_TX_DELIM_UNDERRUN, ATH9K_TX_DESC_CFG_ERR, ATH9K_TXERR_FIFO, ATH9K_TXERR_FILT, ATH9K_TXERR_TIMER_EXPIRED, ATH9K_TXERR_XRETRY, ATH9K_TXERR_XTXOP, ATHEROS_VENDOR_ID, ath_tx_status::ba_high, ath_tx_status::ba_low, DBG, ath_tx_status::desc_id, ar9003_txs::ds_info, EINPROGRESS, EIO, if(), memset(), MS, ath_tx_status::qid, status, ar9003_txs::status1, ar9003_txs::status2, ar9003_txs::status3, ar9003_txs::status4, ar9003_txs::status5, ar9003_txs::status6, ar9003_txs::status7, ar9003_txs::status8, ath_tx_status::tid, ath_tx_status::ts_flags, ath_tx_status::ts_longretry, ath_tx_status::ts_rateindex, ath_tx_status::ts_rssi, ath_tx_status::ts_rssi_ctl0, ath_tx_status::ts_rssi_ctl1, ath_tx_status::ts_rssi_ctl2, ath_tx_status::ts_rssi_ext0, ath_tx_status::ts_rssi_ext1, ath_tx_status::ts_rssi_ext2, ath_tx_status::ts_seqnum, ath_tx_status::ts_shortretry, ath_tx_status::ts_status, ath_tx_status::ts_tstamp, ath_tx_status::ts_virtcol, and typeof().

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_set11n_txdesc()

static void ar9003_hw_set11n_txdesc ( struct ath_hw ah,
void *  ds,
u32  pktlen,
enum ath9k_pkt_type  type,
u32  txpower,
u32  keyIx,
enum ath9k_key_type  keyType,
u32  flags 
)
static

Definition at line 322 of file ath9k_ar9003_mac.c.

325 {
326  struct ar9003_txc *ads = (struct ar9003_txc *) ds;
327 
328  if (txpower > ah->txpower_limit)
329  txpower = ah->txpower_limit;
330 
331  if (txpower > 63)
332  txpower = 63;
333 
334  ads->ctl11 = (pktlen & AR_FrameLen)
336  | SM(txpower, AR_XmitPower)
337  | (flags & ATH9K_TXDESC_VEOL ? AR_VEOL : 0)
338  | (keyIx != ATH9K_TXKEYIX_INVALID ? AR_DestIdxValid : 0)
340 
341  ads->ctl12 =
342  (keyIx != ATH9K_TXKEYIX_INVALID ? SM(keyIx, AR_DestIdx) : 0)
343  | SM(type, AR_FrameType)
344  | (flags & ATH9K_TXDESC_NOACK ? AR_NoAck : 0)
347 
348  ads->ctl17 = SM(keyType, AR_EncrType) |
349  (flags & ATH9K_TXDESC_LDPC ? AR_LDPC : 0);
350  ads->ctl18 = 0;
351  ads->ctl19 = AR_Not_Sounding;
352 
353  ads->ctl20 = 0;
354  ads->ctl21 = 0;
355  ads->ctl22 = 0;
356 }
#define ATH9K_TXDESC_NOACK
Definition: mac.h:249
#define ATH9K_TXDESC_EXT_ONLY
Definition: mac.h:267
#define ATH9K_TXDESC_VEOL
Definition: mac.h:266
#define ATH9K_TXDESC_LDPC
Definition: mac.h:272
#define ATH9K_TXDESC_EXT_AND_CTL
Definition: mac.h:268
#define AR_ExtAndCtl
Definition: mac.h:375
#define AR_EncrType
Definition: mac.h:419
#define AR_FrameType
Definition: mac.h:369
#define AR_DestIdxValid
Definition: mac.h:363
#define AR_NoAck
Definition: mac.h:371
#define SM(_v, _f)
Definition: hw.h:101
#define AR_FrameLen
Definition: mac.h:353
#define AR_VirtMoreFrag
Definition: mac.h:354
#define AR_LDPC
Definition: mac.h:422
uint32_t ds
Definition: librm.h:254
#define AR_DestIdx
Definition: mac.h:367
#define ATH9K_TXDESC_LOWRXCHAIN
Definition: mac.h:271
uint32_t type
Operating system type.
Definition: ena.h:12
#define ATH9K_TXDESC_VMF
Definition: mac.h:269
#define AR_ExtOnly
Definition: mac.h:374
uint8_t ah
Definition: registers.h:85
#define AR_XmitPower
Definition: mac.h:356
#define AR_VEOL
Definition: mac.h:359
#define ATH9K_TXKEYIX_INVALID
Definition: mac.h:204
#define AR_Not_Sounding
Definition: ar9003_mac.h:41
#define AR_LowRxChain
Definition: ar9003_mac.h:39
uint8_t flags
Flags.
Definition: ena.h:18

References ah, AR_DestIdx, AR_DestIdxValid, AR_EncrType, AR_ExtAndCtl, AR_ExtOnly, AR_FrameLen, AR_FrameType, AR_LDPC, AR_LowRxChain, AR_NoAck, AR_Not_Sounding, AR_VEOL, AR_VirtMoreFrag, AR_XmitPower, ATH9K_TXDESC_EXT_AND_CTL, ATH9K_TXDESC_EXT_ONLY, ATH9K_TXDESC_LDPC, ATH9K_TXDESC_LOWRXCHAIN, ATH9K_TXDESC_NOACK, ATH9K_TXDESC_VEOL, ATH9K_TXDESC_VMF, ATH9K_TXKEYIX_INVALID, ar9003_txc::ctl11, ar9003_txc::ctl12, ar9003_txc::ctl17, ar9003_txc::ctl18, ar9003_txc::ctl19, ar9003_txc::ctl20, ar9003_txc::ctl21, ar9003_txc::ctl22, ds, flags, SM, and type.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_set_clrdmask()

static void ar9003_hw_set_clrdmask ( struct ath_hw *ah  __unused,
void *  ds,
int  val 
)
static

Definition at line 358 of file ath9k_ar9003_mac.c.

359 {
360  struct ar9003_txc *ads = (struct ar9003_txc *) ds;
361 
362  if (val)
363  ads->ctl11 |= AR_ClrDestMask;
364  else
365  ads->ctl11 &= ~AR_ClrDestMask;
366 }
#define AR_ClrDestMask
Definition: mac.h:360
uint32_t ds
Definition: librm.h:254
void __asmcall int val
Definition: setjmp.h:28

References AR_ClrDestMask, ar9003_txc::ctl11, ds, and val.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_set11n_ratescenario()

static void ar9003_hw_set11n_ratescenario ( struct ath_hw *ah  __unused,
void *  ds,
void *  lastds,
u32  durUpdateEn,
u32  rtsctsRate,
u32 rtsctsDuration  __unused,
struct ath9k_11n_rate_series  series[],
u32 nseries  __unused,
u32  flags 
)
static

Definition at line 368 of file ath9k_ar9003_mac.c.

374 {
375  struct ar9003_txc *ads = (struct ar9003_txc *) ds;
376  struct ar9003_txc *last_ads = (struct ar9003_txc *) lastds;
377  uint32_t ctl11;
378 
380  ctl11 = ads->ctl11;
381 
382  if (flags & ATH9K_TXDESC_RTSENA) {
383  ctl11 &= ~AR_CTSEnable;
384  ctl11 |= AR_RTSEnable;
385  } else {
386  ctl11 &= ~AR_RTSEnable;
387  ctl11 |= AR_CTSEnable;
388  }
389 
390  ads->ctl11 = ctl11;
391  } else {
392  ads->ctl11 = (ads->ctl11 & ~(AR_RTSEnable | AR_CTSEnable));
393  }
394 
395  ads->ctl13 = set11nTries(series, 0)
396  | set11nTries(series, 1)
397  | set11nTries(series, 2)
398  | set11nTries(series, 3)
399  | (durUpdateEn ? AR_DurUpdateEna : 0)
400  | SM(0, AR_BurstDur);
401 
402  ads->ctl14 = set11nRate(series, 0)
403  | set11nRate(series, 1)
404  | set11nRate(series, 2)
405  | set11nRate(series, 3);
406 
407  ads->ctl15 = set11nPktDurRTSCTS(series, 0)
408  | set11nPktDurRTSCTS(series, 1);
409 
410  ads->ctl16 = set11nPktDurRTSCTS(series, 2)
411  | set11nPktDurRTSCTS(series, 3);
412 
413  ads->ctl18 = set11nRateFlags(series, 0)
414  | set11nRateFlags(series, 1)
415  | set11nRateFlags(series, 2)
416  | set11nRateFlags(series, 3)
417  | SM(rtsctsRate, AR_RTSCTSRate);
418  ads->ctl19 = AR_Not_Sounding;
419 
420  last_ads->ctl13 = ads->ctl13;
421  last_ads->ctl14 = ads->ctl14;
422 }
#define ATH9K_TXDESC_CTSENA
Definition: mac.h:251
#define AR_RTSCTSRate
Definition: mac.h:440
#define AR_RTSEnable
Definition: mac.h:358
#define AR_DurUpdateEna
Definition: mac.h:381
#define set11nTries(_series, _index)
Definition: mac.h:31
#define set11nRate(_series, _index)
Definition: mac.h:34
#define set11nRateFlags(_series, _index)
Definition: mac.h:42
#define set11nPktDurRTSCTS(_series, _index)
Definition: mac.h:37
#define SM(_v, _f)
Definition: hw.h:101
#define AR_BurstDur
Definition: mac.h:379
#define ATH9K_TXDESC_RTSENA
Definition: mac.h:250
unsigned int uint32_t
Definition: stdint.h:12
uint32_t ds
Definition: librm.h:254
#define AR_Not_Sounding
Definition: ar9003_mac.h:41
u32 ctl11
Definition: ar9003_mac.h:78
#define AR_CTSEnable
Definition: mac.h:364
uint8_t flags
Flags.
Definition: ena.h:18

References AR_BurstDur, AR_CTSEnable, AR_DurUpdateEna, AR_Not_Sounding, AR_RTSCTSRate, AR_RTSEnable, ATH9K_TXDESC_CTSENA, ATH9K_TXDESC_RTSENA, ctl11, ar9003_txc::ctl11, ar9003_txc::ctl13, ar9003_txc::ctl14, ar9003_txc::ctl15, ar9003_txc::ctl16, ar9003_txc::ctl18, ar9003_txc::ctl19, ds, flags, set11nPktDurRTSCTS, set11nRate, set11nRateFlags, set11nTries, and SM.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_set11n_aggr_first()

static void ar9003_hw_set11n_aggr_first ( struct ath_hw ah,
void *  ds,
u32  aggrLen 
)
static

Definition at line 424 of file ath9k_ar9003_mac.c.

426 {
427 #define FIRST_DESC_NDELIMS 60
428  struct ar9003_txc *ads = (struct ar9003_txc *) ds;
429 
430  ads->ctl12 |= (AR_IsAggr | AR_MoreAggr);
431 
432  if (ah->ent_mode & AR_ENT_OTP_MPSD) {
433  u32 ctl17, ndelim;
434  /*
435  * Add delimiter when using RTS/CTS with aggregation
436  * and non enterprise AR9003 card
437  */
438  ctl17 = ads->ctl17;
439  ndelim = MS(ctl17, AR_PadDelim);
440 
441  if (ndelim < FIRST_DESC_NDELIMS) {
442  aggrLen += (FIRST_DESC_NDELIMS - ndelim) * 4;
443  ndelim = FIRST_DESC_NDELIMS;
444  }
445 
446  ctl17 &= ~AR_AggrLen;
447  ctl17 |= SM(aggrLen, AR_AggrLen);
448 
449  ctl17 &= ~AR_PadDelim;
450  ctl17 |= SM(ndelim, AR_PadDelim);
451 
452  ads->ctl17 = ctl17;
453  } else {
454  ads->ctl17 &= ~AR_AggrLen;
455  ads->ctl17 |= SM(aggrLen, AR_AggrLen);
456  }
457 }
#define AR_IsAggr
Definition: mac.h:377
u32 ctl17
Definition: ar9003_mac.h:84
#define MS(_v, _f)
Definition: hw.h:102
#define AR_PadDelim
Definition: mac.h:417
#define AR_MoreAggr
Definition: mac.h:376
#define SM(_v, _f)
Definition: hw.h:101
#define AR_AggrLen
Definition: mac.h:414
uint32_t ds
Definition: librm.h:254
#define AR_ENT_OTP_MPSD
Definition: reg.h:1109
#define FIRST_DESC_NDELIMS
uint8_t ah
Definition: registers.h:85
uint32_t u32
Definition: stdint.h:23

References ah, AR_AggrLen, AR_ENT_OTP_MPSD, AR_IsAggr, AR_MoreAggr, AR_PadDelim, ar9003_txc::ctl12, ctl17, ar9003_txc::ctl17, ds, FIRST_DESC_NDELIMS, MS, and SM.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_set11n_aggr_middle()

static void ar9003_hw_set11n_aggr_middle ( struct ath_hw *ah  __unused,
void *  ds,
u32  numDelims 
)
static

Definition at line 459 of file ath9k_ar9003_mac.c.

461 {
462  struct ar9003_txc *ads = (struct ar9003_txc *) ds;
463  unsigned int ctl17;
464 
465  ads->ctl12 |= (AR_IsAggr | AR_MoreAggr);
466 
467  /*
468  * We use a stack variable to manipulate ctl6 to reduce uncached
469  * read modify, modfiy, write.
470  */
471  ctl17 = ads->ctl17;
472  ctl17 &= ~AR_PadDelim;
473  ctl17 |= SM(numDelims, AR_PadDelim);
474  ads->ctl17 = ctl17;
475 }
#define AR_IsAggr
Definition: mac.h:377
u32 ctl17
Definition: ar9003_mac.h:84
#define AR_PadDelim
Definition: mac.h:417
#define AR_MoreAggr
Definition: mac.h:376
#define SM(_v, _f)
Definition: hw.h:101
uint32_t ds
Definition: librm.h:254

References AR_IsAggr, AR_MoreAggr, AR_PadDelim, ar9003_txc::ctl12, ctl17, ar9003_txc::ctl17, ds, and SM.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_set11n_aggr_last()

static void ar9003_hw_set11n_aggr_last ( struct ath_hw *ah  __unused,
void *  ds 
)
static

Definition at line 477 of file ath9k_ar9003_mac.c.

478 {
479  struct ar9003_txc *ads = (struct ar9003_txc *) ds;
480 
481  ads->ctl12 |= AR_IsAggr;
482  ads->ctl12 &= ~AR_MoreAggr;
483  ads->ctl17 &= ~AR_PadDelim;
484 }
#define AR_IsAggr
Definition: mac.h:377
#define AR_PadDelim
Definition: mac.h:417
#define AR_MoreAggr
Definition: mac.h:376
uint32_t ds
Definition: librm.h:254

References AR_IsAggr, AR_MoreAggr, AR_PadDelim, ar9003_txc::ctl12, ar9003_txc::ctl17, and ds.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_clr11n_aggr()

static void ar9003_hw_clr11n_aggr ( struct ath_hw *ah  __unused,
void *  ds 
)
static

Definition at line 486 of file ath9k_ar9003_mac.c.

487 {
488  struct ar9003_txc *ads = (struct ar9003_txc *) ds;
489 
490  ads->ctl12 &= (~AR_IsAggr & ~AR_MoreAggr);
491 }
#define AR_IsAggr
Definition: mac.h:377
#define AR_MoreAggr
Definition: mac.h:376
uint32_t ds
Definition: librm.h:254

References AR_IsAggr, AR_MoreAggr, ar9003_txc::ctl12, and ds.

Referenced by ar9003_hw_attach_mac_ops().

◆ ar9003_hw_set_paprd_txdesc()

void ar9003_hw_set_paprd_txdesc ( struct ath_hw *ah  __unused,
void *  ds,
u8  chains 
)

Definition at line 493 of file ath9k_ar9003_mac.c.

494 {
495  struct ar9003_txc *ads = ds;
496 
497  ads->ctl12 |= SM(chains, AR_PAPRDChainMask);
498 }
#define AR_PAPRDChainMask
Definition: ar9003_mac.h:44
#define SM(_v, _f)
Definition: hw.h:101
uint32_t ds
Definition: librm.h:254

References AR_PAPRDChainMask, ar9003_txc::ctl12, ds, and SM.

◆ ar9003_hw_attach_mac_ops()

void ar9003_hw_attach_mac_ops ( struct ath_hw hw)

Definition at line 500 of file ath9k_ar9003_mac.c.

501 {
502  struct ath_hw_ops *ops = ath9k_hw_ops(hw);
503 
507  ops->get_isr = ar9003_hw_get_isr;
517 }
static int ar9003_hw_get_isr(struct ath_hw *ah, enum ath9k_int *masked)
static void ar9003_hw_set11n_aggr_first(struct ath_hw *ah, void *ds, u32 aggrLen)
static void ar9003_hw_set_desc_link(void *ds, u32 ds_link)
static void ar9003_hw_set11n_txdesc(struct ath_hw *ah, void *ds, u32 pktlen, enum ath9k_pkt_type type, u32 txpower, u32 keyIx, enum ath9k_key_type keyType, u32 flags)
static void ar9003_hw_fill_txdesc(struct ath_hw *ah __unused, void *ds, u32 seglen, int is_firstseg, int is_lastseg, const void *ds0, u32 buf_addr, unsigned int qcu)
void(* rx_enable)(struct ath_hw *ah)
Definition: hw.h:607
void(* clr11n_aggr)(struct ath_hw *ah, void *ds)
Definition: hw.h:637
Definition: hw.c:16
void(* set11n_aggr_last)(struct ath_hw *ah, void *ds)
Definition: hw.h:636
int(* get_isr)(struct ath_hw *ah, enum ath9k_int *masked)
Definition: hw.h:614
static void ar9003_hw_rx_enable(struct ath_hw *hw)
void(* set11n_ratescenario)(struct ath_hw *ah, void *ds, void *lastds, u32 durUpdateEn, u32 rtsctsRate, u32 rtsctsDuration, struct ath9k_11n_rate_series series[], u32 nseries, u32 flags)
Definition: hw.h:626
static void ar9003_hw_set_clrdmask(struct ath_hw *ah __unused, void *ds, int val)
static void ar9003_hw_set11n_ratescenario(struct ath_hw *ah __unused, void *ds, void *lastds, u32 durUpdateEn, u32 rtsctsRate, u32 rtsctsDuration __unused, struct ath9k_11n_rate_series series[], u32 nseries __unused, u32 flags)
struct ath_hw_ops - callbacks used by hardware code and driver code
Definition: hw.h:603
void(* set11n_txdesc)(struct ath_hw *ah, void *ds, u32 pktLen, enum ath9k_pkt_type type, u32 txPower, u32 keyIx, enum ath9k_key_type keyType, u32 flags)
Definition: hw.h:621
static void ar9003_hw_clr11n_aggr(struct ath_hw *ah __unused, void *ds)
void(* set_clrdmask)(struct ath_hw *ah, void *ds, int val)
Definition: hw.h:638
static void ar9003_hw_set11n_aggr_last(struct ath_hw *ah __unused, void *ds)
static struct ath_hw_ops * ath9k_hw_ops(struct ath_hw *ah)
Definition: hw.h:884
int(* proc_txdesc)(struct ath_hw *ah, void *ds, struct ath_tx_status *ts)
Definition: hw.h:619
static void ar9003_hw_get_desc_link(void *ds, u32 **ds_link)
void(* set11n_aggr_middle)(struct ath_hw *ah, void *ds, u32 numDelims)
Definition: hw.h:634
void(* set11n_aggr_first)(struct ath_hw *ah, void *ds, u32 aggrLen)
Definition: hw.h:632
static void ar9003_hw_set11n_aggr_middle(struct ath_hw *ah __unused, void *ds, u32 numDelims)
void(* fill_txdesc)(struct ath_hw *ah, void *ds, u32 seglen, int is_firstseg, int is_is_lastseg, const void *ds0, u32 buf_addr, unsigned int qcu)
Definition: hw.h:615
void(* get_desc_link)(void *ds, u32 **link)
Definition: hw.h:609
void(* set_desc_link)(void *ds, u32 link)
Definition: hw.h:608
static int ar9003_hw_proc_txdesc(struct ath_hw *ah, void *ds __unused, struct ath_tx_status *ts)

References ar9003_hw_clr11n_aggr(), ar9003_hw_fill_txdesc(), ar9003_hw_get_desc_link(), ar9003_hw_get_isr(), ar9003_hw_proc_txdesc(), ar9003_hw_rx_enable(), ar9003_hw_set11n_aggr_first(), ar9003_hw_set11n_aggr_last(), ar9003_hw_set11n_aggr_middle(), ar9003_hw_set11n_ratescenario(), ar9003_hw_set11n_txdesc(), ar9003_hw_set_clrdmask(), ar9003_hw_set_desc_link(), ath9k_hw_ops(), ath_hw_ops::clr11n_aggr, ath_hw_ops::fill_txdesc, ath_hw_ops::get_desc_link, ath_hw_ops::get_isr, ath_hw_ops::proc_txdesc, ath_hw_ops::rx_enable, ath_hw_ops::set11n_aggr_first, ath_hw_ops::set11n_aggr_last, ath_hw_ops::set11n_aggr_middle, ath_hw_ops::set11n_ratescenario, ath_hw_ops::set11n_txdesc, ath_hw_ops::set_clrdmask, and ath_hw_ops::set_desc_link.

Referenced by ar9003_hw_attach_ops().

◆ ath9k_hw_set_rx_bufsize()

void ath9k_hw_set_rx_bufsize ( struct ath_hw ah,
u16  buf_size 
)

Definition at line 519 of file ath9k_ar9003_mac.c.

520 {
522 }
#define AR_DATABUF_SIZE_MASK
Definition: reg.h:150
#define REG_WRITE(_ah, _reg, _val)
Definition: hw.h:77
#define AR_DATABUF_SIZE
Definition: reg.h:149
uint8_t ah
Definition: registers.h:85

References ah, AR_DATABUF_SIZE, AR_DATABUF_SIZE_MASK, and REG_WRITE.

Referenced by ath9k_hw_set_dma().

◆ ath9k_hw_addrxbuf_edma()

void ath9k_hw_addrxbuf_edma ( struct ath_hw ah,
u32  rxdp,
enum ath9k_rx_qtype  qtype 
)

Definition at line 524 of file ath9k_ar9003_mac.c.

526 {
527  if (qtype == ATH9K_RX_QUEUE_HP)
529  else
531 }
#define REG_WRITE(_ah, _reg, _val)
Definition: hw.h:77
Definition: sis900.h:32
uint8_t ah
Definition: registers.h:85
#define AR_LP_RXDP
Definition: reg.h:169
#define AR_HP_RXDP
Definition: reg.h:168

References ah, AR_HP_RXDP, AR_LP_RXDP, ATH9K_RX_QUEUE_HP, REG_WRITE, and rxdp.

◆ ath9k_hw_process_rxdesc_edma()

int ath9k_hw_process_rxdesc_edma ( struct ath_hw *ah  __unused,
struct ath_rx_status rxs,
void *  buf_addr 
)

Definition at line 533 of file ath9k_ar9003_mac.c.

535 {
536  struct ar9003_rxs *rxsp = (struct ar9003_rxs *) buf_addr;
537  unsigned int phyerr;
538 
539  /* TODO: byte swap on big endian for ar9300_10 */
540 
541  if ((rxsp->status11 & AR_RxDone) == 0)
542  return -EINPROGRESS;
543 
544  if (MS(rxsp->ds_info, AR_DescId) != 0x168c)
545  return -EINVAL;
546 
547  if ((rxsp->ds_info & (AR_TxRxDesc | AR_CtrlStat)) != 0)
548  return -EINPROGRESS;
549 
550  if (!rxs)
551  return 0;
552 
553  rxs->rs_status = 0;
554  rxs->rs_flags = 0;
555 
556  rxs->rs_datalen = rxsp->status2 & AR_DataLen;
557  rxs->rs_tstamp = rxsp->status3;
558 
559  /* XXX: Keycache */
560  rxs->rs_rssi = MS(rxsp->status5, AR_RxRSSICombined);
561  rxs->rs_rssi_ctl0 = MS(rxsp->status1, AR_RxRSSIAnt00);
562  rxs->rs_rssi_ctl1 = MS(rxsp->status1, AR_RxRSSIAnt01);
563  rxs->rs_rssi_ctl2 = MS(rxsp->status1, AR_RxRSSIAnt02);
564  rxs->rs_rssi_ext0 = MS(rxsp->status5, AR_RxRSSIAnt10);
565  rxs->rs_rssi_ext1 = MS(rxsp->status5, AR_RxRSSIAnt11);
566  rxs->rs_rssi_ext2 = MS(rxsp->status5, AR_RxRSSIAnt12);
567 
568  if (rxsp->status11 & AR_RxKeyIdxValid)
569  rxs->rs_keyix = MS(rxsp->status11, AR_KeyIdx);
570  else
572 
573  rxs->rs_rate = MS(rxsp->status1, AR_RxRate);
574  rxs->rs_more = (rxsp->status2 & AR_RxMore) ? 1 : 0;
575 
576  rxs->rs_isaggr = (rxsp->status11 & AR_RxAggr) ? 1 : 0;
577  rxs->rs_moreaggr = (rxsp->status11 & AR_RxMoreAggr) ? 1 : 0;
578  rxs->rs_antenna = (MS(rxsp->status4, AR_RxAntenna) & 0x7);
579  rxs->rs_flags = (rxsp->status4 & AR_GI) ? ATH9K_RX_GI : 0;
580  rxs->rs_flags |= (rxsp->status4 & AR_2040) ? ATH9K_RX_2040 : 0;
581 
582  rxs->evm0 = rxsp->status6;
583  rxs->evm1 = rxsp->status7;
584  rxs->evm2 = rxsp->status8;
585  rxs->evm3 = rxsp->status9;
586  rxs->evm4 = (rxsp->status10 & 0xffff);
587 
588  if (rxsp->status11 & AR_PreDelimCRCErr)
590 
591  if (rxsp->status11 & AR_PostDelimCRCErr)
593 
594  if (rxsp->status11 & AR_DecryptBusyErr)
596 
597  if ((rxsp->status11 & AR_RxFrameOK) == 0) {
598  /*
599  * AR_CRCErr will bet set to true if we're on the last
600  * subframe and the AR_PostDelimCRCErr is caught.
601  * In a way this also gives us a guarantee that when
602  * (!(AR_CRCErr) && (AR_PostDelimCRCErr)) we cannot
603  * possibly be reviewing the last subframe. AR_CRCErr
604  * is the CRC of the actual data.
605  */
606  if (rxsp->status11 & AR_CRCErr)
607  rxs->rs_status |= ATH9K_RXERR_CRC;
608  else if (rxsp->status11 & AR_PHYErr) {
609  phyerr = MS(rxsp->status11, AR_PHYErrCode);
610  /*
611  * If we reach a point here where AR_PostDelimCRCErr is
612  * true it implies we're *not* on the last subframe. In
613  * in that case that we know already that the CRC of
614  * the frame was OK, and MAC would send an ACK for that
615  * subframe, even if we did get a phy error of type
616  * ATH9K_PHYERR_OFDM_RESTART. This is only applicable
617  * to frame that are prior to the last subframe.
618  * The AR_PostDelimCRCErr is the CRC for the MPDU
619  * delimiter, which contains the 4 reserved bits,
620  * the MPDU length (12 bits), and follows the MPDU
621  * delimiter for an A-MPDU subframe (0x4E = 'N' ASCII).
622  */
623  if ((phyerr == ATH9K_PHYERR_OFDM_RESTART) &&
624  (rxsp->status11 & AR_PostDelimCRCErr)) {
625  rxs->rs_phyerr = 0;
626  } else {
627  rxs->rs_status |= ATH9K_RXERR_PHY;
628  rxs->rs_phyerr = phyerr;
629  }
630 
631  } else if (rxsp->status11 & AR_DecryptCRCErr)
633  else if (rxsp->status11 & AR_MichaelErr)
634  rxs->rs_status |= ATH9K_RXERR_MIC;
635  else if (rxsp->status11 & AR_KeyMiss)
637  }
638 
639  return 0;
640 }
u8 rs_moreaggr
Definition: mac.h:153
#define EINVAL
Invalid argument.
Definition: errno.h:428
#define ATH9K_RX_DELIM_CRC_PRE
Definition: mac.h:199
int8_t rs_rssi_ext0
Definition: mac.h:149
#define AR_GI
Definition: mac.h:534
u8 rs_more
Definition: mac.h:145
#define AR_RxRSSIAnt01
Definition: mac.h:518
#define AR_RxRSSIAnt02
Definition: mac.h:520
u8 rs_flags
Definition: mac.h:155
#define AR_RxRate
Definition: mac.h:522
u32 status10
Definition: ar9003_mac.h:69
int8_t rs_rssi_ctl0
Definition: mac.h:146
#define ATH9K_RXERR_MIC
Definition: mac.h:193
u32 status3
Definition: ar9003_mac.h:62
u32 rs_tstamp
Definition: mac.h:137
#define MS(_v, _f)
Definition: hw.h:102
u8 rs_rate
Definition: mac.h:143
#define AR_2040
Definition: mac.h:535
#define AR_RxDone
Definition: mac.h:555
#define ATH9K_RXERR_CRC
Definition: mac.h:189
#define AR_PHYErrCode
Definition: mac.h:566
int8_t rs_rssi_ext1
Definition: mac.h:150
#define AR_RxRSSIAnt00
Definition: mac.h:516
#define AR_RxMoreAggr
Definition: mac.h:568
#define ATH9K_RX_DECRYPT_BUSY
Definition: mac.h:201
#define AR_RxRSSIAnt12
Definition: mac.h:546
#define ATH9K_RX_DELIM_CRC_POST
Definition: mac.h:200
int8_t rs_rssi_ext2
Definition: mac.h:151
#define ATH9K_RXKEYIX_INVALID
Definition: mac.h:203
u32 status8
Definition: ar9003_mac.h:67
#define AR_RxRSSICombined
Definition: mac.h:548
#define AR_PostDelimCRCErr
Definition: mac.h:570
#define AR_RxKeyIdxValid
Definition: mac.h:563
u16 rs_datalen
Definition: mac.h:138
#define AR_RxRSSIAnt11
Definition: mac.h:544
#define AR_MichaelErr
Definition: mac.h:560
u8 rs_antenna
Definition: mac.h:144
u32 evm4
Definition: mac.h:160
#define AR_KeyMiss
Definition: mac.h:573
u8 rs_status
Definition: mac.h:139
u32 evm3
Definition: mac.h:159
#define EINPROGRESS
Operation in progress.
Definition: errno.h:418
#define AR_RxAggr
Definition: mac.h:569
u32 status1
Definition: ar9003_mac.h:60
#define ATH9K_RXERR_PHY
Definition: mac.h:190
#define AR_RxMore
Definition: mac.h:527
u32 status6
Definition: ar9003_mac.h:65
u32 status9
Definition: ar9003_mac.h:68
#define AR_DescId
Definition: ar9003_mac.h:23
u32 evm2
Definition: mac.h:158
int8_t rs_rssi
Definition: mac.h:141
#define AR_PreDelimCRCErr
Definition: mac.h:561
u8 rs_keyix
Definition: mac.h:142
#define AR_CtrlStat
Definition: ar9003_mac.h:25
#define AR_CRCErr
Definition: mac.h:557
#define ATH9K_RX_GI
Definition: mac.h:197
u32 status4
Definition: ar9003_mac.h:63
u32 evm0
Definition: mac.h:156
#define ATH9K_RX_2040
Definition: mac.h:198
u32 evm1
Definition: mac.h:157
u8 rs_isaggr
Definition: mac.h:152
#define ATH9K_RXERR_DECRYPT
Definition: mac.h:192
u32 status2
Definition: ar9003_mac.h:61
int8_t rs_rssi_ctl1
Definition: mac.h:147
#define AR_RxRSSIAnt10
Definition: mac.h:542
u32 status5
Definition: ar9003_mac.h:64
#define AR_DecryptCRCErr
Definition: mac.h:558
#define AR_DecryptBusyErr
Definition: mac.h:572
#define AR_PHYErr
Definition: mac.h:559
u32 status11
Definition: ar9003_mac.h:70
int8_t rs_rssi_ctl2
Definition: mac.h:148
u32 ds_info
Definition: ar9003_mac.h:59
u32 status7
Definition: ar9003_mac.h:66
#define AR_RxAntenna
Definition: mac.h:539
#define AR_TxRxDesc
Definition: ar9003_mac.h:27
#define AR_RxFrameOK
Definition: mac.h:556
#define AR_DataLen
Definition: mac.h:526
u8 rs_phyerr
Definition: mac.h:140
#define AR_KeyIdx
Definition: mac.h:564

References AR_2040, AR_CRCErr, AR_CtrlStat, AR_DataLen, AR_DecryptBusyErr, AR_DecryptCRCErr, AR_DescId, AR_GI, AR_KeyIdx, AR_KeyMiss, AR_MichaelErr, AR_PHYErr, AR_PHYErrCode, AR_PostDelimCRCErr, AR_PreDelimCRCErr, AR_RxAggr, AR_RxAntenna, AR_RxDone, AR_RxFrameOK, AR_RxKeyIdxValid, AR_RxMore, AR_RxMoreAggr, AR_RxRate, AR_RxRSSIAnt00, AR_RxRSSIAnt01, AR_RxRSSIAnt02, AR_RxRSSIAnt10, AR_RxRSSIAnt11, AR_RxRSSIAnt12, AR_RxRSSICombined, AR_TxRxDesc, ATH9K_PHYERR_OFDM_RESTART, ATH9K_RX_2040, ATH9K_RX_DECRYPT_BUSY, ATH9K_RX_DELIM_CRC_POST, ATH9K_RX_DELIM_CRC_PRE, ATH9K_RX_GI, ATH9K_RXERR_CRC, ATH9K_RXERR_DECRYPT, ATH9K_RXERR_MIC, ATH9K_RXERR_PHY, ATH9K_RXKEYIX_INVALID, ar9003_rxs::ds_info, EINPROGRESS, EINVAL, ath_rx_status::evm0, ath_rx_status::evm1, ath_rx_status::evm2, ath_rx_status::evm3, ath_rx_status::evm4, MS, ath_rx_status::rs_antenna, ath_rx_status::rs_datalen, ath_rx_status::rs_flags, ath_rx_status::rs_isaggr, ath_rx_status::rs_keyix, ath_rx_status::rs_more, ath_rx_status::rs_moreaggr, ath_rx_status::rs_phyerr, ath_rx_status::rs_rate, ath_rx_status::rs_rssi, ath_rx_status::rs_rssi_ctl0, ath_rx_status::rs_rssi_ctl1, ath_rx_status::rs_rssi_ctl2, ath_rx_status::rs_rssi_ext0, ath_rx_status::rs_rssi_ext1, ath_rx_status::rs_rssi_ext2, ath_rx_status::rs_status, ath_rx_status::rs_tstamp, ar9003_rxs::status1, ar9003_rxs::status10, ar9003_rxs::status11, ar9003_rxs::status2, ar9003_rxs::status3, ar9003_rxs::status4, ar9003_rxs::status5, ar9003_rxs::status6, ar9003_rxs::status7, ar9003_rxs::status8, and ar9003_rxs::status9.

◆ ath9k_hw_reset_txstatus_ring()

void ath9k_hw_reset_txstatus_ring ( struct ath_hw ah)

Definition at line 642 of file ath9k_ar9003_mac.c.

643 {
644  ah->ts_tail = 0;
645 
646  memset((void *) ah->ts_ring, 0,
647  ah->ts_size * sizeof(struct ar9003_txs));
648 
649  DBG2("ath9k: "
650  "TS Start 0x%x End 0x%x Virt %p, Size %d\n",
651  ah->ts_paddr_start, ah->ts_paddr_end,
652  ah->ts_ring, ah->ts_size);
653 
654  REG_WRITE(ah, AR_Q_STATUS_RING_START, ah->ts_paddr_start);
655  REG_WRITE(ah, AR_Q_STATUS_RING_END, ah->ts_paddr_end);
656 }
#define AR_Q_STATUS_RING_END
Definition: reg.h:384
#define AR_Q_STATUS_RING_START
Definition: reg.h:383
#define REG_WRITE(_ah, _reg, _val)
Definition: hw.h:77
uint8_t ah
Definition: registers.h:85
#define DBG2(...)
Definition: compiler.h:515
void * memset(void *dest, int character, size_t len) __nonnull

References ah, AR_Q_STATUS_RING_END, AR_Q_STATUS_RING_START, DBG2, memset(), and REG_WRITE.

Referenced by ath9k_hw_set_dma(), and ath9k_hw_setup_statusring().

◆ ath9k_hw_setup_statusring()

void ath9k_hw_setup_statusring ( struct ath_hw ah,
void *  ts_start,
u32  ts_paddr_start,
u8  size 
)

Definition at line 658 of file ath9k_ar9003_mac.c.

661 {
662 
663  ah->ts_paddr_start = ts_paddr_start;
664  ah->ts_paddr_end = ts_paddr_start + (size * sizeof(struct ar9003_txs));
665  ah->ts_size = size;
666  ah->ts_ring = (struct ar9003_txs *) ts_start;
667 
669 }
void ath9k_hw_reset_txstatus_ring(struct ath_hw *ah)
uint8_t size
Entry size (in 32-bit words)
Definition: ena.h:16
uint8_t ah
Definition: registers.h:85

References ah, ath9k_hw_reset_txstatus_ring(), and size.