Merge branch 'next-spi' of git://git.secretlab.ca/git/linux-2.6
[pandora-kernel.git] / drivers / net / wireless / ath / ath9k / ar9002_mac.c
1 /*
2  * Copyright (c) 2008-2009 Atheros Communications Inc.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #include "hw.h"
18
19 #define AR_BufLen           0x00000fff
20
21 static void ar9002_hw_rx_enable(struct ath_hw *ah)
22 {
23         REG_WRITE(ah, AR_CR, AR_CR_RXE);
24 }
25
26 static void ar9002_hw_set_desc_link(void *ds, u32 ds_link)
27 {
28         ((struct ath_desc*) ds)->ds_link = ds_link;
29 }
30
31 static void ar9002_hw_get_desc_link(void *ds, u32 **ds_link)
32 {
33         *ds_link = &((struct ath_desc *)ds)->ds_link;
34 }
35
36 static bool ar9002_hw_get_isr(struct ath_hw *ah, enum ath9k_int *masked)
37 {
38         u32 isr = 0;
39         u32 mask2 = 0;
40         struct ath9k_hw_capabilities *pCap = &ah->caps;
41         u32 sync_cause = 0;
42         bool fatal_int = false;
43         struct ath_common *common = ath9k_hw_common(ah);
44
45         if (!AR_SREV_9100(ah)) {
46                 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
47                         if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
48                             == AR_RTC_STATUS_ON) {
49                                 isr = REG_READ(ah, AR_ISR);
50                         }
51                 }
52
53                 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
54                         AR_INTR_SYNC_DEFAULT;
55
56                 *masked = 0;
57
58                 if (!isr && !sync_cause)
59                         return false;
60         } else {
61                 *masked = 0;
62                 isr = REG_READ(ah, AR_ISR);
63         }
64
65         if (isr) {
66                 if (isr & AR_ISR_BCNMISC) {
67                         u32 isr2;
68                         isr2 = REG_READ(ah, AR_ISR_S2);
69                         if (isr2 & AR_ISR_S2_TIM)
70                                 mask2 |= ATH9K_INT_TIM;
71                         if (isr2 & AR_ISR_S2_DTIM)
72                                 mask2 |= ATH9K_INT_DTIM;
73                         if (isr2 & AR_ISR_S2_DTIMSYNC)
74                                 mask2 |= ATH9K_INT_DTIMSYNC;
75                         if (isr2 & (AR_ISR_S2_CABEND))
76                                 mask2 |= ATH9K_INT_CABEND;
77                         if (isr2 & AR_ISR_S2_GTT)
78                                 mask2 |= ATH9K_INT_GTT;
79                         if (isr2 & AR_ISR_S2_CST)
80                                 mask2 |= ATH9K_INT_CST;
81                         if (isr2 & AR_ISR_S2_TSFOOR)
82                                 mask2 |= ATH9K_INT_TSFOOR;
83                 }
84
85                 isr = REG_READ(ah, AR_ISR_RAC);
86                 if (isr == 0xffffffff) {
87                         *masked = 0;
88                         return false;
89                 }
90
91                 *masked = isr & ATH9K_INT_COMMON;
92
93                 if (ah->config.rx_intr_mitigation) {
94                         if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
95                                 *masked |= ATH9K_INT_RX;
96                 }
97
98                 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
99                         *masked |= ATH9K_INT_RX;
100                 if (isr &
101                     (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
102                      AR_ISR_TXEOL)) {
103                         u32 s0_s, s1_s;
104
105                         *masked |= ATH9K_INT_TX;
106
107                         s0_s = REG_READ(ah, AR_ISR_S0_S);
108                         ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
109                         ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
110
111                         s1_s = REG_READ(ah, AR_ISR_S1_S);
112                         ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
113                         ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
114                 }
115
116                 if (isr & AR_ISR_RXORN) {
117                         ath_print(common, ATH_DBG_INTERRUPT,
118                                   "receive FIFO overrun interrupt\n");
119                 }
120
121                 if (!AR_SREV_9100(ah)) {
122                         if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
123                                 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
124                                 if (isr5 & AR_ISR_S5_TIM_TIMER)
125                                         *masked |= ATH9K_INT_TIM_TIMER;
126                         }
127                 }
128
129                 *masked |= mask2;
130         }
131
132         if (AR_SREV_9100(ah))
133                 return true;
134
135         if (isr & AR_ISR_GENTMR) {
136                 u32 s5_s;
137
138                 s5_s = REG_READ(ah, AR_ISR_S5_S);
139                 if (isr & AR_ISR_GENTMR) {
140                         ah->intr_gen_timer_trigger =
141                                 MS(s5_s, AR_ISR_S5_GENTIMER_TRIG);
142
143                         ah->intr_gen_timer_thresh =
144                                 MS(s5_s, AR_ISR_S5_GENTIMER_THRESH);
145
146                         if (ah->intr_gen_timer_trigger)
147                                 *masked |= ATH9K_INT_GENTIMER;
148
149                 }
150         }
151
152         if (sync_cause) {
153                 fatal_int =
154                         (sync_cause &
155                          (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
156                         ? true : false;
157
158                 if (fatal_int) {
159                         if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
160                                 ath_print(common, ATH_DBG_ANY,
161                                           "received PCI FATAL interrupt\n");
162                         }
163                         if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
164                                 ath_print(common, ATH_DBG_ANY,
165                                           "received PCI PERR interrupt\n");
166                         }
167                         *masked |= ATH9K_INT_FATAL;
168                 }
169                 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
170                         ath_print(common, ATH_DBG_INTERRUPT,
171                                   "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
172                         REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
173                         REG_WRITE(ah, AR_RC, 0);
174                         *masked |= ATH9K_INT_FATAL;
175                 }
176                 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
177                         ath_print(common, ATH_DBG_INTERRUPT,
178                                   "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
179                 }
180
181                 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
182                 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
183         }
184
185         return true;
186 }
187
188 static void ar9002_hw_fill_txdesc(struct ath_hw *ah, void *ds, u32 seglen,
189                                   bool is_firstseg, bool is_lastseg,
190                                   const void *ds0, dma_addr_t buf_addr,
191                                   unsigned int qcu)
192 {
193         struct ar5416_desc *ads = AR5416DESC(ds);
194
195         ads->ds_data = buf_addr;
196
197         if (is_firstseg) {
198                 ads->ds_ctl1 |= seglen | (is_lastseg ? 0 : AR_TxMore);
199         } else if (is_lastseg) {
200                 ads->ds_ctl0 = 0;
201                 ads->ds_ctl1 = seglen;
202                 ads->ds_ctl2 = AR5416DESC_CONST(ds0)->ds_ctl2;
203                 ads->ds_ctl3 = AR5416DESC_CONST(ds0)->ds_ctl3;
204         } else {
205                 ads->ds_ctl0 = 0;
206                 ads->ds_ctl1 = seglen | AR_TxMore;
207                 ads->ds_ctl2 = 0;
208                 ads->ds_ctl3 = 0;
209         }
210         ads->ds_txstatus0 = ads->ds_txstatus1 = 0;
211         ads->ds_txstatus2 = ads->ds_txstatus3 = 0;
212         ads->ds_txstatus4 = ads->ds_txstatus5 = 0;
213         ads->ds_txstatus6 = ads->ds_txstatus7 = 0;
214         ads->ds_txstatus8 = ads->ds_txstatus9 = 0;
215 }
216
217 static int ar9002_hw_proc_txdesc(struct ath_hw *ah, void *ds,
218                                  struct ath_tx_status *ts)
219 {
220         struct ar5416_desc *ads = AR5416DESC(ds);
221
222         if ((ads->ds_txstatus9 & AR_TxDone) == 0)
223                 return -EINPROGRESS;
224
225         ts->ts_seqnum = MS(ads->ds_txstatus9, AR_SeqNum);
226         ts->ts_tstamp = ads->AR_SendTimestamp;
227         ts->ts_status = 0;
228         ts->ts_flags = 0;
229
230         if (ads->ds_txstatus1 & AR_FrmXmitOK)
231                 ts->ts_status |= ATH9K_TX_ACKED;
232         if (ads->ds_txstatus1 & AR_ExcessiveRetries)
233                 ts->ts_status |= ATH9K_TXERR_XRETRY;
234         if (ads->ds_txstatus1 & AR_Filtered)
235                 ts->ts_status |= ATH9K_TXERR_FILT;
236         if (ads->ds_txstatus1 & AR_FIFOUnderrun) {
237                 ts->ts_status |= ATH9K_TXERR_FIFO;
238                 ath9k_hw_updatetxtriglevel(ah, true);
239         }
240         if (ads->ds_txstatus9 & AR_TxOpExceeded)
241                 ts->ts_status |= ATH9K_TXERR_XTXOP;
242         if (ads->ds_txstatus1 & AR_TxTimerExpired)
243                 ts->ts_status |= ATH9K_TXERR_TIMER_EXPIRED;
244
245         if (ads->ds_txstatus1 & AR_DescCfgErr)
246                 ts->ts_flags |= ATH9K_TX_DESC_CFG_ERR;
247         if (ads->ds_txstatus1 & AR_TxDataUnderrun) {
248                 ts->ts_flags |= ATH9K_TX_DATA_UNDERRUN;
249                 ath9k_hw_updatetxtriglevel(ah, true);
250         }
251         if (ads->ds_txstatus1 & AR_TxDelimUnderrun) {
252                 ts->ts_flags |= ATH9K_TX_DELIM_UNDERRUN;
253                 ath9k_hw_updatetxtriglevel(ah, true);
254         }
255         if (ads->ds_txstatus0 & AR_TxBaStatus) {
256                 ts->ts_flags |= ATH9K_TX_BA;
257                 ts->ba_low = ads->AR_BaBitmapLow;
258                 ts->ba_high = ads->AR_BaBitmapHigh;
259         }
260
261         ts->ts_rateindex = MS(ads->ds_txstatus9, AR_FinalTxIdx);
262         switch (ts->ts_rateindex) {
263         case 0:
264                 ts->ts_ratecode = MS(ads->ds_ctl3, AR_XmitRate0);
265                 break;
266         case 1:
267                 ts->ts_ratecode = MS(ads->ds_ctl3, AR_XmitRate1);
268                 break;
269         case 2:
270                 ts->ts_ratecode = MS(ads->ds_ctl3, AR_XmitRate2);
271                 break;
272         case 3:
273                 ts->ts_ratecode = MS(ads->ds_ctl3, AR_XmitRate3);
274                 break;
275         }
276
277         ts->ts_rssi = MS(ads->ds_txstatus5, AR_TxRSSICombined);
278         ts->ts_rssi_ctl0 = MS(ads->ds_txstatus0, AR_TxRSSIAnt00);
279         ts->ts_rssi_ctl1 = MS(ads->ds_txstatus0, AR_TxRSSIAnt01);
280         ts->ts_rssi_ctl2 = MS(ads->ds_txstatus0, AR_TxRSSIAnt02);
281         ts->ts_rssi_ext0 = MS(ads->ds_txstatus5, AR_TxRSSIAnt10);
282         ts->ts_rssi_ext1 = MS(ads->ds_txstatus5, AR_TxRSSIAnt11);
283         ts->ts_rssi_ext2 = MS(ads->ds_txstatus5, AR_TxRSSIAnt12);
284         ts->evm0 = ads->AR_TxEVM0;
285         ts->evm1 = ads->AR_TxEVM1;
286         ts->evm2 = ads->AR_TxEVM2;
287         ts->ts_shortretry = MS(ads->ds_txstatus1, AR_RTSFailCnt);
288         ts->ts_longretry = MS(ads->ds_txstatus1, AR_DataFailCnt);
289         ts->ts_virtcol = MS(ads->ds_txstatus1, AR_VirtRetryCnt);
290         ts->tid = MS(ads->ds_txstatus9, AR_TxTid);
291         ts->ts_antenna = 0;
292
293         return 0;
294 }
295
296 static void ar9002_hw_set11n_txdesc(struct ath_hw *ah, void *ds,
297                                     u32 pktLen, enum ath9k_pkt_type type,
298                                     u32 txPower, u32 keyIx,
299                                     enum ath9k_key_type keyType, u32 flags)
300 {
301         struct ar5416_desc *ads = AR5416DESC(ds);
302
303         txPower += ah->txpower_indexoffset;
304         if (txPower > 63)
305                 txPower = 63;
306
307         ads->ds_ctl0 = (pktLen & AR_FrameLen)
308                 | (flags & ATH9K_TXDESC_VMF ? AR_VirtMoreFrag : 0)
309                 | SM(txPower, AR_XmitPower)
310                 | (flags & ATH9K_TXDESC_VEOL ? AR_VEOL : 0)
311                 | (flags & ATH9K_TXDESC_CLRDMASK ? AR_ClrDestMask : 0)
312                 | (flags & ATH9K_TXDESC_INTREQ ? AR_TxIntrReq : 0)
313                 | (keyIx != ATH9K_TXKEYIX_INVALID ? AR_DestIdxValid : 0);
314
315         ads->ds_ctl1 =
316                 (keyIx != ATH9K_TXKEYIX_INVALID ? SM(keyIx, AR_DestIdx) : 0)
317                 | SM(type, AR_FrameType)
318                 | (flags & ATH9K_TXDESC_NOACK ? AR_NoAck : 0)
319                 | (flags & ATH9K_TXDESC_EXT_ONLY ? AR_ExtOnly : 0)
320                 | (flags & ATH9K_TXDESC_EXT_AND_CTL ? AR_ExtAndCtl : 0);
321
322         ads->ds_ctl6 = SM(keyType, AR_EncrType);
323
324         if (AR_SREV_9285(ah) || AR_SREV_9271(ah)) {
325                 ads->ds_ctl8 = 0;
326                 ads->ds_ctl9 = 0;
327                 ads->ds_ctl10 = 0;
328                 ads->ds_ctl11 = 0;
329         }
330 }
331
332 static void ar9002_hw_set11n_ratescenario(struct ath_hw *ah, void *ds,
333                                           void *lastds,
334                                           u32 durUpdateEn, u32 rtsctsRate,
335                                           u32 rtsctsDuration,
336                                           struct ath9k_11n_rate_series series[],
337                                           u32 nseries, u32 flags)
338 {
339         struct ar5416_desc *ads = AR5416DESC(ds);
340         struct ar5416_desc *last_ads = AR5416DESC(lastds);
341         u32 ds_ctl0;
342
343         if (flags & (ATH9K_TXDESC_RTSENA | ATH9K_TXDESC_CTSENA)) {
344                 ds_ctl0 = ads->ds_ctl0;
345
346                 if (flags & ATH9K_TXDESC_RTSENA) {
347                         ds_ctl0 &= ~AR_CTSEnable;
348                         ds_ctl0 |= AR_RTSEnable;
349                 } else {
350                         ds_ctl0 &= ~AR_RTSEnable;
351                         ds_ctl0 |= AR_CTSEnable;
352                 }
353
354                 ads->ds_ctl0 = ds_ctl0;
355         } else {
356                 ads->ds_ctl0 =
357                         (ads->ds_ctl0 & ~(AR_RTSEnable | AR_CTSEnable));
358         }
359
360         ads->ds_ctl2 = set11nTries(series, 0)
361                 | set11nTries(series, 1)
362                 | set11nTries(series, 2)
363                 | set11nTries(series, 3)
364                 | (durUpdateEn ? AR_DurUpdateEna : 0)
365                 | SM(0, AR_BurstDur);
366
367         ads->ds_ctl3 = set11nRate(series, 0)
368                 | set11nRate(series, 1)
369                 | set11nRate(series, 2)
370                 | set11nRate(series, 3);
371
372         ads->ds_ctl4 = set11nPktDurRTSCTS(series, 0)
373                 | set11nPktDurRTSCTS(series, 1);
374
375         ads->ds_ctl5 = set11nPktDurRTSCTS(series, 2)
376                 | set11nPktDurRTSCTS(series, 3);
377
378         ads->ds_ctl7 = set11nRateFlags(series, 0)
379                 | set11nRateFlags(series, 1)
380                 | set11nRateFlags(series, 2)
381                 | set11nRateFlags(series, 3)
382                 | SM(rtsctsRate, AR_RTSCTSRate);
383         last_ads->ds_ctl2 = ads->ds_ctl2;
384         last_ads->ds_ctl3 = ads->ds_ctl3;
385 }
386
387 static void ar9002_hw_set11n_aggr_first(struct ath_hw *ah, void *ds,
388                                         u32 aggrLen)
389 {
390         struct ar5416_desc *ads = AR5416DESC(ds);
391
392         ads->ds_ctl1 |= (AR_IsAggr | AR_MoreAggr);
393         ads->ds_ctl6 &= ~AR_AggrLen;
394         ads->ds_ctl6 |= SM(aggrLen, AR_AggrLen);
395 }
396
397 static void ar9002_hw_set11n_aggr_middle(struct ath_hw *ah, void *ds,
398                                          u32 numDelims)
399 {
400         struct ar5416_desc *ads = AR5416DESC(ds);
401         unsigned int ctl6;
402
403         ads->ds_ctl1 |= (AR_IsAggr | AR_MoreAggr);
404
405         ctl6 = ads->ds_ctl6;
406         ctl6 &= ~AR_PadDelim;
407         ctl6 |= SM(numDelims, AR_PadDelim);
408         ads->ds_ctl6 = ctl6;
409 }
410
411 static void ar9002_hw_set11n_aggr_last(struct ath_hw *ah, void *ds)
412 {
413         struct ar5416_desc *ads = AR5416DESC(ds);
414
415         ads->ds_ctl1 |= AR_IsAggr;
416         ads->ds_ctl1 &= ~AR_MoreAggr;
417         ads->ds_ctl6 &= ~AR_PadDelim;
418 }
419
420 static void ar9002_hw_clr11n_aggr(struct ath_hw *ah, void *ds)
421 {
422         struct ar5416_desc *ads = AR5416DESC(ds);
423
424         ads->ds_ctl1 &= (~AR_IsAggr & ~AR_MoreAggr);
425 }
426
427 static void ar9002_hw_set11n_burstduration(struct ath_hw *ah, void *ds,
428                                            u32 burstDuration)
429 {
430         struct ar5416_desc *ads = AR5416DESC(ds);
431
432         ads->ds_ctl2 &= ~AR_BurstDur;
433         ads->ds_ctl2 |= SM(burstDuration, AR_BurstDur);
434 }
435
436 static void ar9002_hw_set11n_virtualmorefrag(struct ath_hw *ah, void *ds,
437                                             u32 vmf)
438 {
439         struct ar5416_desc *ads = AR5416DESC(ds);
440
441         if (vmf)
442                 ads->ds_ctl0 |= AR_VirtMoreFrag;
443         else
444                 ads->ds_ctl0 &= ~AR_VirtMoreFrag;
445 }
446
447 void ath9k_hw_setuprxdesc(struct ath_hw *ah, struct ath_desc *ds,
448                           u32 size, u32 flags)
449 {
450         struct ar5416_desc *ads = AR5416DESC(ds);
451         struct ath9k_hw_capabilities *pCap = &ah->caps;
452
453         ads->ds_ctl1 = size & AR_BufLen;
454         if (flags & ATH9K_RXDESC_INTREQ)
455                 ads->ds_ctl1 |= AR_RxIntrReq;
456
457         ads->ds_rxstatus8 &= ~AR_RxDone;
458         if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
459                 memset(&(ads->u), 0, sizeof(ads->u));
460 }
461 EXPORT_SYMBOL(ath9k_hw_setuprxdesc);
462
463 void ar9002_hw_attach_mac_ops(struct ath_hw *ah)
464 {
465         struct ath_hw_ops *ops = ath9k_hw_ops(ah);
466
467         ops->rx_enable = ar9002_hw_rx_enable;
468         ops->set_desc_link = ar9002_hw_set_desc_link;
469         ops->get_desc_link = ar9002_hw_get_desc_link;
470         ops->get_isr = ar9002_hw_get_isr;
471         ops->fill_txdesc = ar9002_hw_fill_txdesc;
472         ops->proc_txdesc = ar9002_hw_proc_txdesc;
473         ops->set11n_txdesc = ar9002_hw_set11n_txdesc;
474         ops->set11n_ratescenario = ar9002_hw_set11n_ratescenario;
475         ops->set11n_aggr_first = ar9002_hw_set11n_aggr_first;
476         ops->set11n_aggr_middle = ar9002_hw_set11n_aggr_middle;
477         ops->set11n_aggr_last = ar9002_hw_set11n_aggr_last;
478         ops->clr11n_aggr = ar9002_hw_clr11n_aggr;
479         ops->set11n_burstduration = ar9002_hw_set11n_burstduration;
480         ops->set11n_virtualmorefrag = ar9002_hw_set11n_virtualmorefrag;
481 }