ath9k: Fix IRQ nobody cared issue with ath9k
[pandora-kernel.git] / drivers / net / wireless / ath9k / core.c
1 /*
2  * Copyright (c) 2008, 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  /* Implementation of the main "ATH" layer. */
18
19 #include "core.h"
20 #include "regd.h"
21
22 static int ath_outdoor;         /* enable outdoor use */
23
24 static const u8 ath_bcast_mac[ETH_ALEN] =
25     { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
26
27 static u32 ath_chainmask_sel_up_rssi_thres =
28         ATH_CHAINMASK_SEL_UP_RSSI_THRES;
29 static u32 ath_chainmask_sel_down_rssi_thres =
30         ATH_CHAINMASK_SEL_DOWN_RSSI_THRES;
31 static u32 ath_chainmask_sel_period =
32         ATH_CHAINMASK_SEL_TIMEOUT;
33
34 /* return bus cachesize in 4B word units */
35
36 static void bus_read_cachesize(struct ath_softc *sc, int *csz)
37 {
38         u8 u8tmp;
39
40         pci_read_config_byte(sc->pdev, PCI_CACHE_LINE_SIZE, (u8 *)&u8tmp);
41         *csz = (int)u8tmp;
42
43         /*
44          * This check was put in to avoid "unplesant" consequences if
45          * the bootrom has not fully initialized all PCI devices.
46          * Sometimes the cache line size register is not set
47          */
48
49         if (*csz == 0)
50                 *csz = DEFAULT_CACHELINE >> 2;   /* Use the default size */
51 }
52
53 /*
54  *  Set current operating mode
55  *
56  *  This function initializes and fills the rate table in the ATH object based
57  *  on the operating mode.  The blink rates are also set up here, although
58  *  they have been superceeded by the ath_led module.
59 */
60
61 static void ath_setcurmode(struct ath_softc *sc, enum wireless_mode mode)
62 {
63         const struct ath9k_rate_table *rt;
64         int i;
65
66         memset(sc->sc_rixmap, 0xff, sizeof(sc->sc_rixmap));
67         rt = ath9k_hw_getratetable(sc->sc_ah, mode);
68         BUG_ON(!rt);
69
70         for (i = 0; i < rt->rateCount; i++)
71                 sc->sc_rixmap[rt->info[i].rateCode] = (u8) i;
72
73         memzero(sc->sc_hwmap, sizeof(sc->sc_hwmap));
74         for (i = 0; i < 256; i++) {
75                 u8 ix = rt->rateCodeToIndex[i];
76
77                 if (ix == 0xff)
78                         continue;
79
80                 sc->sc_hwmap[i].ieeerate =
81                     rt->info[ix].dot11Rate & IEEE80211_RATE_VAL;
82                 sc->sc_hwmap[i].rateKbps = rt->info[ix].rateKbps;
83
84                 if (rt->info[ix].shortPreamble ||
85                     rt->info[ix].phy == PHY_OFDM) {
86                         /* XXX: Handle this */
87                 }
88
89                 /* NB: this uses the last entry if the rate isn't found */
90                 /* XXX beware of overlow */
91         }
92         sc->sc_currates = rt;
93         sc->sc_curmode = mode;
94         /*
95          * All protection frames are transmited at 2Mb/s for
96          * 11g, otherwise at 1Mb/s.
97          * XXX select protection rate index from rate table.
98          */
99         sc->sc_protrix = (mode == ATH9K_MODE_11G ? 1 : 0);
100 }
101
102 /*
103  * Set up rate table (legacy rates)
104  */
105 static void ath_setup_rates(struct ath_softc *sc, enum ieee80211_band band)
106 {
107         struct ath_hal *ah = sc->sc_ah;
108         const struct ath9k_rate_table *rt = NULL;
109         struct ieee80211_supported_band *sband;
110         struct ieee80211_rate *rate;
111         int i, maxrates;
112
113         switch (band) {
114         case IEEE80211_BAND_2GHZ:
115                 rt = ath9k_hw_getratetable(ah, ATH9K_MODE_11G);
116                 break;
117         case IEEE80211_BAND_5GHZ:
118                 rt = ath9k_hw_getratetable(ah, ATH9K_MODE_11A);
119                 break;
120         default:
121                 break;
122         }
123
124         if (rt == NULL)
125                 return;
126
127         sband = &sc->sbands[band];
128         rate = sc->rates[band];
129
130         if (rt->rateCount > ATH_RATE_MAX)
131                 maxrates = ATH_RATE_MAX;
132         else
133                 maxrates = rt->rateCount;
134
135         for (i = 0; i < maxrates; i++) {
136                 rate[i].bitrate = rt->info[i].rateKbps / 100;
137                 rate[i].hw_value = rt->info[i].rateCode;
138                 sband->n_bitrates++;
139                 DPRINTF(sc, ATH_DBG_CONFIG,
140                         "%s: Rate: %2dMbps, ratecode: %2d\n",
141                         __func__,
142                         rate[i].bitrate / 10,
143                         rate[i].hw_value);
144         }
145 }
146
147 /*
148  *  Set up channel list
149  */
150 static int ath_setup_channels(struct ath_softc *sc)
151 {
152         struct ath_hal *ah = sc->sc_ah;
153         int nchan, i, a = 0, b = 0;
154         u8 regclassids[ATH_REGCLASSIDS_MAX];
155         u32 nregclass = 0;
156         struct ieee80211_supported_band *band_2ghz;
157         struct ieee80211_supported_band *band_5ghz;
158         struct ieee80211_channel *chan_2ghz;
159         struct ieee80211_channel *chan_5ghz;
160         struct ath9k_channel *c;
161
162         /* Fill in ah->ah_channels */
163         if (!ath9k_regd_init_channels(ah,
164                                       ATH_CHAN_MAX,
165                                       (u32 *)&nchan,
166                                       regclassids,
167                                       ATH_REGCLASSIDS_MAX,
168                                       &nregclass,
169                                       CTRY_DEFAULT,
170                                       false,
171                                       1)) {
172                 u32 rd = ah->ah_currentRD;
173
174                 DPRINTF(sc, ATH_DBG_FATAL,
175                         "%s: unable to collect channel list; "
176                         "regdomain likely %u country code %u\n",
177                         __func__, rd, CTRY_DEFAULT);
178                 return -EINVAL;
179         }
180
181         band_2ghz = &sc->sbands[IEEE80211_BAND_2GHZ];
182         band_5ghz = &sc->sbands[IEEE80211_BAND_5GHZ];
183         chan_2ghz = sc->channels[IEEE80211_BAND_2GHZ];
184         chan_5ghz = sc->channels[IEEE80211_BAND_5GHZ];
185
186         for (i = 0; i < nchan; i++) {
187                 c = &ah->ah_channels[i];
188                 if (IS_CHAN_2GHZ(c)) {
189                         chan_2ghz[a].band = IEEE80211_BAND_2GHZ;
190                         chan_2ghz[a].center_freq = c->channel;
191                         chan_2ghz[a].max_power = c->maxTxPower;
192
193                         if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
194                                 chan_2ghz[a].flags |=
195                                         IEEE80211_CHAN_NO_IBSS;
196                         if (c->channelFlags & CHANNEL_PASSIVE)
197                                 chan_2ghz[a].flags |=
198                                         IEEE80211_CHAN_PASSIVE_SCAN;
199
200                         band_2ghz->n_channels = ++a;
201
202                         DPRINTF(sc, ATH_DBG_CONFIG,
203                                 "%s: 2MHz channel: %d, "
204                                 "channelFlags: 0x%x\n",
205                                 __func__,
206                                 c->channel,
207                                 c->channelFlags);
208                 } else if (IS_CHAN_5GHZ(c)) {
209                         chan_5ghz[b].band = IEEE80211_BAND_5GHZ;
210                         chan_5ghz[b].center_freq = c->channel;
211                         chan_5ghz[b].max_power = c->maxTxPower;
212
213                         if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
214                                 chan_5ghz[b].flags |=
215                                         IEEE80211_CHAN_NO_IBSS;
216                         if (c->channelFlags & CHANNEL_PASSIVE)
217                                 chan_5ghz[b].flags |=
218                                         IEEE80211_CHAN_PASSIVE_SCAN;
219
220                         band_5ghz->n_channels = ++b;
221
222                         DPRINTF(sc, ATH_DBG_CONFIG,
223                                 "%s: 5MHz channel: %d, "
224                                 "channelFlags: 0x%x\n",
225                                 __func__,
226                                 c->channel,
227                                 c->channelFlags);
228                 }
229         }
230
231         return 0;
232 }
233
234 /*
235  *  Determine mode from channel flags
236  *
237  *  This routine will provide the enumerated WIRELESSS_MODE value based
238  *  on the settings of the channel flags.  If ho valid set of flags
239  *  exist, the lowest mode (11b) is selected.
240 */
241
242 static enum wireless_mode ath_chan2mode(struct ath9k_channel *chan)
243 {
244         if (chan->chanmode == CHANNEL_A)
245                 return ATH9K_MODE_11A;
246         else if (chan->chanmode == CHANNEL_G)
247                 return ATH9K_MODE_11G;
248         else if (chan->chanmode == CHANNEL_B)
249                 return ATH9K_MODE_11B;
250         else if (chan->chanmode == CHANNEL_A_HT20)
251                 return ATH9K_MODE_11NA_HT20;
252         else if (chan->chanmode == CHANNEL_G_HT20)
253                 return ATH9K_MODE_11NG_HT20;
254         else if (chan->chanmode == CHANNEL_A_HT40PLUS)
255                 return ATH9K_MODE_11NA_HT40PLUS;
256         else if (chan->chanmode == CHANNEL_A_HT40MINUS)
257                 return ATH9K_MODE_11NA_HT40MINUS;
258         else if (chan->chanmode == CHANNEL_G_HT40PLUS)
259                 return ATH9K_MODE_11NG_HT40PLUS;
260         else if (chan->chanmode == CHANNEL_G_HT40MINUS)
261                 return ATH9K_MODE_11NG_HT40MINUS;
262
263         /* NB: should not get here */
264         return ATH9K_MODE_11B;
265 }
266
267 /*
268  * Stop the device, grabbing the top-level lock to protect
269  * against concurrent entry through ath_init (which can happen
270  * if another thread does a system call and the thread doing the
271  * stop is preempted).
272  */
273
274 static int ath_stop(struct ath_softc *sc)
275 {
276         struct ath_hal *ah = sc->sc_ah;
277
278         DPRINTF(sc, ATH_DBG_CONFIG, "%s: invalid %u\n",
279                 __func__, sc->sc_invalid);
280
281         /*
282          * Shutdown the hardware and driver:
283          *    stop output from above
284          *    reset 802.11 state machine
285          *      (sends station deassoc/deauth frames)
286          *    turn off timers
287          *    disable interrupts
288          *    clear transmit machinery
289          *    clear receive machinery
290          *    turn off the radio
291          *    reclaim beacon resources
292          *
293          * Note that some of this work is not possible if the
294          * hardware is gone (invalid).
295          */
296
297         ath_draintxq(sc, false);
298         if (!sc->sc_invalid) {
299                 ath_stoprecv(sc);
300                 ath9k_hw_phy_disable(ah);
301         } else
302                 sc->sc_rxlink = NULL;
303
304         return 0;
305 }
306
307 /*
308  *  Start Scan
309  *
310  *  This function is called when starting a channel scan.  It will perform
311  *  power save wakeup processing, set the filter for the scan, and get the
312  *  chip ready to send broadcast packets out during the scan.
313 */
314
315 void ath_scan_start(struct ath_softc *sc)
316 {
317         struct ath_hal *ah = sc->sc_ah;
318         u32 rfilt;
319         u32 now = (u32) jiffies_to_msecs(get_timestamp());
320
321         sc->sc_scanning = 1;
322         rfilt = ath_calcrxfilter(sc);
323         ath9k_hw_setrxfilter(ah, rfilt);
324         ath9k_hw_write_associd(ah, ath_bcast_mac, 0);
325
326         /* Restore previous power management state. */
327
328         DPRINTF(sc, ATH_DBG_CONFIG, "%d.%03d | %s: RX filter 0x%x aid 0\n",
329                 now / 1000, now % 1000, __func__, rfilt);
330 }
331
332 /*
333  *  Scan End
334  *
335  *  This routine is called by the upper layer when the scan is completed.  This
336  *  will set the filters back to normal operating mode, set the BSSID to the
337  *  correct value, and restore the power save state.
338 */
339
340 void ath_scan_end(struct ath_softc *sc)
341 {
342         struct ath_hal *ah = sc->sc_ah;
343         u32 rfilt;
344         u32 now = (u32) jiffies_to_msecs(get_timestamp());
345
346         sc->sc_scanning = 0;
347         /* Request for a full reset due to rx packet filter changes */
348         sc->sc_full_reset = 1;
349         rfilt = ath_calcrxfilter(sc);
350         ath9k_hw_setrxfilter(ah, rfilt);
351         ath9k_hw_write_associd(ah, sc->sc_curbssid, sc->sc_curaid);
352
353         DPRINTF(sc, ATH_DBG_CONFIG, "%d.%03d | %s: RX filter 0x%x aid 0x%x\n",
354                 now / 1000, now % 1000, __func__, rfilt, sc->sc_curaid);
355 }
356
357 /*
358  * Set the current channel
359  *
360  * Set/change channels.  If the channel is really being changed, it's done
361  * by reseting the chip.  To accomplish this we must first cleanup any pending
362  * DMA, then restart stuff after a la ath_init.
363 */
364 int ath_set_channel(struct ath_softc *sc, struct ath9k_channel *hchan)
365 {
366         struct ath_hal *ah = sc->sc_ah;
367         bool fastcc = true, stopped;
368         enum ath9k_ht_macmode ht_macmode;
369
370         if (sc->sc_invalid)     /* if the device is invalid or removed */
371                 return -EIO;
372
373         DPRINTF(sc, ATH_DBG_CONFIG,
374                 "%s: %u (%u MHz) -> %u (%u MHz), cflags:%x\n",
375                 __func__,
376                 ath9k_hw_mhz2ieee(ah, sc->sc_curchan.channel,
377                                   sc->sc_curchan.channelFlags),
378                 sc->sc_curchan.channel,
379                 ath9k_hw_mhz2ieee(ah, hchan->channel, hchan->channelFlags),
380                 hchan->channel, hchan->channelFlags);
381
382         ht_macmode = ath_cwm_macmode(sc);
383
384         if (hchan->channel != sc->sc_curchan.channel ||
385             hchan->channelFlags != sc->sc_curchan.channelFlags ||
386             sc->sc_update_chainmask || sc->sc_full_reset) {
387                 int status;
388                 /*
389                  * This is only performed if the channel settings have
390                  * actually changed.
391                  *
392                  * To switch channels clear any pending DMA operations;
393                  * wait long enough for the RX fifo to drain, reset the
394                  * hardware at the new frequency, and then re-enable
395                  * the relevant bits of the h/w.
396                  */
397                 ath9k_hw_set_interrupts(ah, 0); /* disable interrupts */
398                 ath_draintxq(sc, false);        /* clear pending tx frames */
399                 stopped = ath_stoprecv(sc);     /* turn off frame recv */
400
401                 /* XXX: do not flush receive queue here. We don't want
402                  * to flush data frames already in queue because of
403                  * changing channel. */
404
405                 if (!stopped || sc->sc_full_reset)
406                         fastcc = false;
407
408                 spin_lock_bh(&sc->sc_resetlock);
409                 if (!ath9k_hw_reset(ah, sc->sc_opmode, hchan,
410                                         ht_macmode, sc->sc_tx_chainmask,
411                                         sc->sc_rx_chainmask,
412                                         sc->sc_ht_extprotspacing,
413                                         fastcc, &status)) {
414                         DPRINTF(sc, ATH_DBG_FATAL,
415                                 "%s: unable to reset channel %u (%uMhz) "
416                                 "flags 0x%x hal status %u\n", __func__,
417                                 ath9k_hw_mhz2ieee(ah, hchan->channel,
418                                                   hchan->channelFlags),
419                                 hchan->channel, hchan->channelFlags, status);
420                         spin_unlock_bh(&sc->sc_resetlock);
421                         return -EIO;
422                 }
423                 spin_unlock_bh(&sc->sc_resetlock);
424
425                 sc->sc_curchan = *hchan;
426                 sc->sc_update_chainmask = 0;
427                 sc->sc_full_reset = 0;
428
429                 /* Re-enable rx framework */
430                 if (ath_startrecv(sc) != 0) {
431                         DPRINTF(sc, ATH_DBG_FATAL,
432                                 "%s: unable to restart recv logic\n", __func__);
433                         return -EIO;
434                 }
435                 /*
436                  * Change channels and update the h/w rate map
437                  * if we're switching; e.g. 11a to 11b/g.
438                  */
439                 ath_setcurmode(sc, ath_chan2mode(hchan));
440
441                 ath_update_txpow(sc);   /* update tx power state */
442                 /*
443                  * Re-enable interrupts.
444                  */
445                 ath9k_hw_set_interrupts(ah, sc->sc_imask);
446         }
447         return 0;
448 }
449
450 /**********************/
451 /* Chainmask Handling */
452 /**********************/
453
454 static void ath_chainmask_sel_timertimeout(unsigned long data)
455 {
456         struct ath_chainmask_sel *cm = (struct ath_chainmask_sel *)data;
457         cm->switch_allowed = 1;
458 }
459
460 /* Start chainmask select timer */
461 static void ath_chainmask_sel_timerstart(struct ath_chainmask_sel *cm)
462 {
463         cm->switch_allowed = 0;
464         mod_timer(&cm->timer, ath_chainmask_sel_period);
465 }
466
467 /* Stop chainmask select timer */
468 static void ath_chainmask_sel_timerstop(struct ath_chainmask_sel *cm)
469 {
470         cm->switch_allowed = 0;
471         del_timer_sync(&cm->timer);
472 }
473
474 static void ath_chainmask_sel_init(struct ath_softc *sc, struct ath_node *an)
475 {
476         struct ath_chainmask_sel *cm = &an->an_chainmask_sel;
477
478         memzero(cm, sizeof(struct ath_chainmask_sel));
479
480         cm->cur_tx_mask = sc->sc_tx_chainmask;
481         cm->cur_rx_mask = sc->sc_rx_chainmask;
482         cm->tx_avgrssi = ATH_RSSI_DUMMY_MARKER;
483         setup_timer(&cm->timer,
484                 ath_chainmask_sel_timertimeout, (unsigned long) cm);
485 }
486
487 int ath_chainmask_sel_logic(struct ath_softc *sc, struct ath_node *an)
488 {
489         struct ath_chainmask_sel *cm = &an->an_chainmask_sel;
490
491         /*
492          * Disable auto-swtiching in one of the following if conditions.
493          * sc_chainmask_auto_sel is used for internal global auto-switching
494          * enabled/disabled setting
495          */
496         if (sc->sc_ah->ah_caps.tx_chainmask != ATH_CHAINMASK_SEL_3X3) {
497                 cm->cur_tx_mask = sc->sc_tx_chainmask;
498                 return cm->cur_tx_mask;
499         }
500
501         if (cm->tx_avgrssi == ATH_RSSI_DUMMY_MARKER)
502                 return cm->cur_tx_mask;
503
504         if (cm->switch_allowed) {
505                 /* Switch down from tx 3 to tx 2. */
506                 if (cm->cur_tx_mask == ATH_CHAINMASK_SEL_3X3 &&
507                     ATH_RSSI_OUT(cm->tx_avgrssi) >=
508                     ath_chainmask_sel_down_rssi_thres) {
509                         cm->cur_tx_mask = sc->sc_tx_chainmask;
510
511                         /* Don't let another switch happen until
512                          * this timer expires */
513                         ath_chainmask_sel_timerstart(cm);
514                 }
515                 /* Switch up from tx 2 to 3. */
516                 else if (cm->cur_tx_mask == sc->sc_tx_chainmask &&
517                          ATH_RSSI_OUT(cm->tx_avgrssi) <=
518                          ath_chainmask_sel_up_rssi_thres) {
519                         cm->cur_tx_mask = ATH_CHAINMASK_SEL_3X3;
520
521                         /* Don't let another switch happen
522                          * until this timer expires */
523                         ath_chainmask_sel_timerstart(cm);
524                 }
525         }
526
527         return cm->cur_tx_mask;
528 }
529
530 /*
531  * Update tx/rx chainmask. For legacy association,
532  * hard code chainmask to 1x1, for 11n association, use
533  * the chainmask configuration.
534  */
535
536 void ath_update_chainmask(struct ath_softc *sc, int is_ht)
537 {
538         sc->sc_update_chainmask = 1;
539         if (is_ht) {
540                 sc->sc_tx_chainmask = sc->sc_ah->ah_caps.tx_chainmask;
541                 sc->sc_rx_chainmask = sc->sc_ah->ah_caps.rx_chainmask;
542         } else {
543                 sc->sc_tx_chainmask = 1;
544                 sc->sc_rx_chainmask = 1;
545         }
546
547         DPRINTF(sc, ATH_DBG_CONFIG, "%s: tx chmask: %d, rx chmask: %d\n",
548                 __func__, sc->sc_tx_chainmask, sc->sc_rx_chainmask);
549 }
550
551 /******************/
552 /* VAP management */
553 /******************/
554
555 /*
556  *  VAP in Listen mode
557  *
558  *  This routine brings the VAP out of the down state into a "listen" state
559  *  where it waits for association requests.  This is used in AP and AdHoc
560  *  modes.
561 */
562
563 int ath_vap_listen(struct ath_softc *sc, int if_id)
564 {
565         struct ath_hal *ah = sc->sc_ah;
566         struct ath_vap *avp;
567         u32 rfilt = 0;
568         DECLARE_MAC_BUF(mac);
569
570         avp = sc->sc_vaps[if_id];
571         if (avp == NULL) {
572                 DPRINTF(sc, ATH_DBG_FATAL, "%s: invalid interface id %u\n",
573                         __func__, if_id);
574                 return -EINVAL;
575         }
576
577 #ifdef CONFIG_SLOW_ANT_DIV
578         ath_slow_ant_div_stop(&sc->sc_antdiv);
579 #endif
580
581         /* update ratectrl about the new state */
582         ath_rate_newstate(sc, avp);
583
584         rfilt = ath_calcrxfilter(sc);
585         ath9k_hw_setrxfilter(ah, rfilt);
586
587         if (sc->sc_opmode == ATH9K_M_STA || sc->sc_opmode == ATH9K_M_IBSS) {
588                 memcpy(sc->sc_curbssid, ath_bcast_mac, ETH_ALEN);
589                 ath9k_hw_write_associd(ah, sc->sc_curbssid, sc->sc_curaid);
590         } else
591                 sc->sc_curaid = 0;
592
593         DPRINTF(sc, ATH_DBG_CONFIG,
594                 "%s: RX filter 0x%x bssid %s aid 0x%x\n",
595                 __func__, rfilt, print_mac(mac,
596                         sc->sc_curbssid), sc->sc_curaid);
597
598         /*
599          * XXXX
600          * Disable BMISS interrupt when we're not associated
601          */
602         ath9k_hw_set_interrupts(ah,
603                 sc->sc_imask & ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS));
604         sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
605         /* need to reconfigure the beacons when it moves to RUN */
606         sc->sc_beacons = 0;
607
608         return 0;
609 }
610
611 int ath_vap_attach(struct ath_softc *sc,
612                    int if_id,
613                    struct ieee80211_vif *if_data,
614                    enum ath9k_opmode opmode)
615 {
616         struct ath_vap *avp;
617
618         if (if_id >= ATH_BCBUF || sc->sc_vaps[if_id] != NULL) {
619                 DPRINTF(sc, ATH_DBG_FATAL,
620                         "%s: Invalid interface id = %u\n", __func__, if_id);
621                 return -EINVAL;
622         }
623
624         switch (opmode) {
625         case ATH9K_M_STA:
626         case ATH9K_M_IBSS:
627         case ATH9K_M_MONITOR:
628                 break;
629         case ATH9K_M_HOSTAP:
630                 /* XXX not right, beacon buffer is allocated on RUN trans */
631                 if (list_empty(&sc->sc_bbuf))
632                         return -ENOMEM;
633                 break;
634         default:
635                 return -EINVAL;
636         }
637
638         /* create ath_vap */
639         avp = kmalloc(sizeof(struct ath_vap), GFP_KERNEL);
640         if (avp == NULL)
641                 return -ENOMEM;
642
643         memzero(avp, sizeof(struct ath_vap));
644         avp->av_if_data = if_data;
645         /* Set the VAP opmode */
646         avp->av_opmode = opmode;
647         avp->av_bslot = -1;
648         INIT_LIST_HEAD(&avp->av_mcastq.axq_q);
649         INIT_LIST_HEAD(&avp->av_mcastq.axq_acq);
650         spin_lock_init(&avp->av_mcastq.axq_lock);
651
652         ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
653
654         sc->sc_vaps[if_id] = avp;
655         sc->sc_nvaps++;
656         /* Set the device opmode */
657         sc->sc_opmode = opmode;
658
659         /* default VAP configuration */
660         avp->av_config.av_fixed_rateset = IEEE80211_FIXED_RATE_NONE;
661         avp->av_config.av_fixed_retryset = 0x03030303;
662
663         return 0;
664 }
665
666 int ath_vap_detach(struct ath_softc *sc, int if_id)
667 {
668         struct ath_hal *ah = sc->sc_ah;
669         struct ath_vap *avp;
670
671         avp = sc->sc_vaps[if_id];
672         if (avp == NULL) {
673                 DPRINTF(sc, ATH_DBG_FATAL, "%s: invalid interface id %u\n",
674                         __func__, if_id);
675                 return -EINVAL;
676         }
677
678         /*
679          * Quiesce the hardware while we remove the vap.  In
680          * particular we need to reclaim all references to the
681          * vap state by any frames pending on the tx queues.
682          *
683          * XXX can we do this w/o affecting other vap's?
684          */
685         ath9k_hw_set_interrupts(ah, 0); /* disable interrupts */
686         ath_draintxq(sc, false);        /* stop xmit side */
687         ath_stoprecv(sc);       /* stop recv side */
688         ath_flushrecv(sc);      /* flush recv queue */
689
690         /* Reclaim any pending mcast bufs on the vap. */
691         ath_tx_draintxq(sc, &avp->av_mcastq, false);
692
693         kfree(avp);
694         sc->sc_vaps[if_id] = NULL;
695         sc->sc_nvaps--;
696
697         return 0;
698 }
699
700 int ath_vap_config(struct ath_softc *sc,
701         int if_id, struct ath_vap_config *if_config)
702 {
703         struct ath_vap *avp;
704
705         if (if_id >= ATH_BCBUF) {
706                 DPRINTF(sc, ATH_DBG_FATAL,
707                         "%s: Invalid interface id = %u\n", __func__, if_id);
708                 return -EINVAL;
709         }
710
711         avp = sc->sc_vaps[if_id];
712         ASSERT(avp != NULL);
713
714         if (avp)
715                 memcpy(&avp->av_config, if_config, sizeof(avp->av_config));
716
717         return 0;
718 }
719
720 /********/
721 /* Core */
722 /********/
723
724 int ath_open(struct ath_softc *sc, struct ath9k_channel *initial_chan)
725 {
726         struct ath_hal *ah = sc->sc_ah;
727         int status;
728         int error = 0;
729         enum ath9k_ht_macmode ht_macmode = ath_cwm_macmode(sc);
730
731         DPRINTF(sc, ATH_DBG_CONFIG, "%s: mode %d\n", __func__, sc->sc_opmode);
732
733         /*
734          * Stop anything previously setup.  This is safe
735          * whether this is the first time through or not.
736          */
737         ath_stop(sc);
738
739         /* Initialize chanmask selection */
740         sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask;
741         sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask;
742
743         /* Reset SERDES registers */
744         ath9k_hw_configpcipowersave(ah, 0);
745
746         /*
747          * The basic interface to setting the hardware in a good
748          * state is ``reset''.  On return the hardware is known to
749          * be powered up and with interrupts disabled.  This must
750          * be followed by initialization of the appropriate bits
751          * and then setup of the interrupt mask.
752          */
753         sc->sc_curchan = *initial_chan;
754
755         spin_lock_bh(&sc->sc_resetlock);
756         if (!ath9k_hw_reset(ah, sc->sc_opmode, &sc->sc_curchan, ht_macmode,
757                            sc->sc_tx_chainmask, sc->sc_rx_chainmask,
758                            sc->sc_ht_extprotspacing, false, &status)) {
759                 DPRINTF(sc, ATH_DBG_FATAL,
760                         "%s: unable to reset hardware; hal status %u "
761                         "(freq %u flags 0x%x)\n", __func__, status,
762                         sc->sc_curchan.channel, sc->sc_curchan.channelFlags);
763                 error = -EIO;
764                 spin_unlock_bh(&sc->sc_resetlock);
765                 goto done;
766         }
767         spin_unlock_bh(&sc->sc_resetlock);
768         /*
769          * This is needed only to setup initial state
770          * but it's best done after a reset.
771          */
772         ath_update_txpow(sc);
773
774         /*
775          * Setup the hardware after reset:
776          * The receive engine is set going.
777          * Frame transmit is handled entirely
778          * in the frame output path; there's nothing to do
779          * here except setup the interrupt mask.
780          */
781         if (ath_startrecv(sc) != 0) {
782                 DPRINTF(sc, ATH_DBG_FATAL,
783                         "%s: unable to start recv logic\n", __func__);
784                 error = -EIO;
785                 goto done;
786         }
787         /* Setup our intr mask. */
788         sc->sc_imask = ATH9K_INT_RX | ATH9K_INT_TX
789                 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
790                 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
791
792         if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_GTT)
793                 sc->sc_imask |= ATH9K_INT_GTT;
794
795         if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
796                 sc->sc_imask |= ATH9K_INT_CST;
797
798         /*
799          * Enable MIB interrupts when there are hardware phy counters.
800          * Note we only do this (at the moment) for station mode.
801          */
802         if (ath9k_hw_phycounters(ah) &&
803             ((sc->sc_opmode == ATH9K_M_STA) || (sc->sc_opmode == ATH9K_M_IBSS)))
804                 sc->sc_imask |= ATH9K_INT_MIB;
805         /*
806          * Some hardware processes the TIM IE and fires an
807          * interrupt when the TIM bit is set.  For hardware
808          * that does, if not overridden by configuration,
809          * enable the TIM interrupt when operating as station.
810          */
811         if ((ah->ah_caps.hw_caps & ATH9K_HW_CAP_ENHANCEDPM) &&
812             (sc->sc_opmode == ATH9K_M_STA) &&
813             !sc->sc_config.swBeaconProcess)
814                 sc->sc_imask |= ATH9K_INT_TIM;
815         /*
816          *  Don't enable interrupts here as we've not yet built our
817          *  vap and node data structures, which will be needed as soon
818          *  as we start receiving.
819          */
820         ath_setcurmode(sc, ath_chan2mode(initial_chan));
821
822         /* XXX: we must make sure h/w is ready and clear invalid flag
823          * before turning on interrupt. */
824         sc->sc_invalid = 0;
825 done:
826         return error;
827 }
828
829 /*
830  * Reset the hardware w/o losing operational state.  This is
831  * basically a more efficient way of doing ath_stop, ath_init,
832  * followed by state transitions to the current 802.11
833  * operational state.  Used to recover from errors rx overrun
834  * and to reset the hardware when rf gain settings must be reset.
835  */
836
837 static int ath_reset_start(struct ath_softc *sc, u32 flag)
838 {
839         struct ath_hal *ah = sc->sc_ah;
840
841         ath9k_hw_set_interrupts(ah, 0); /* disable interrupts */
842         ath_draintxq(sc, flag & RESET_RETRY_TXQ);       /* stop xmit side */
843         ath_stoprecv(sc);       /* stop recv side */
844         ath_flushrecv(sc);      /* flush recv queue */
845
846         return 0;
847 }
848
849 static int ath_reset_end(struct ath_softc *sc, u32 flag)
850 {
851         struct ath_hal *ah = sc->sc_ah;
852
853         if (ath_startrecv(sc) != 0)     /* restart recv */
854                 DPRINTF(sc, ATH_DBG_FATAL,
855                         "%s: unable to start recv logic\n", __func__);
856
857         /*
858          * We may be doing a reset in response to a request
859          * that changes the channel so update any state that
860          * might change as a result.
861          */
862         ath_setcurmode(sc, ath_chan2mode(&sc->sc_curchan));
863
864         ath_update_txpow(sc);   /* update tx power state */
865
866         if (sc->sc_beacons)
867                 ath_beacon_config(sc, ATH_IF_ID_ANY);   /* restart beacons */
868         ath9k_hw_set_interrupts(ah, sc->sc_imask);
869
870         /* Restart the txq */
871         if (flag & RESET_RETRY_TXQ) {
872                 int i;
873                 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
874                         if (ATH_TXQ_SETUP(sc, i)) {
875                                 spin_lock_bh(&sc->sc_txq[i].axq_lock);
876                                 ath_txq_schedule(sc, &sc->sc_txq[i]);
877                                 spin_unlock_bh(&sc->sc_txq[i].axq_lock);
878                         }
879                 }
880         }
881         return 0;
882 }
883
884 int ath_reset(struct ath_softc *sc)
885 {
886         struct ath_hal *ah = sc->sc_ah;
887         int status;
888         int error = 0;
889         enum ath9k_ht_macmode ht_macmode = ath_cwm_macmode(sc);
890
891         /* NB: indicate channel change so we do a full reset */
892         spin_lock_bh(&sc->sc_resetlock);
893         if (!ath9k_hw_reset(ah, sc->sc_opmode, &sc->sc_curchan,
894                            ht_macmode,
895                            sc->sc_tx_chainmask, sc->sc_rx_chainmask,
896                            sc->sc_ht_extprotspacing, false, &status)) {
897                 DPRINTF(sc, ATH_DBG_FATAL,
898                         "%s: unable to reset hardware; hal status %u\n",
899                         __func__, status);
900                 error = -EIO;
901         }
902         spin_unlock_bh(&sc->sc_resetlock);
903
904         return error;
905 }
906
907 int ath_suspend(struct ath_softc *sc)
908 {
909         struct ath_hal *ah = sc->sc_ah;
910
911         /* No I/O if device has been surprise removed */
912         if (sc->sc_invalid)
913                 return -EIO;
914
915         /* Shut off the interrupt before setting sc->sc_invalid to '1' */
916         ath9k_hw_set_interrupts(ah, 0);
917
918         /* XXX: we must make sure h/w will not generate any interrupt
919          * before setting the invalid flag. */
920         sc->sc_invalid = 1;
921
922         /* disable HAL and put h/w to sleep */
923         ath9k_hw_disable(sc->sc_ah);
924
925         ath9k_hw_configpcipowersave(sc->sc_ah, 1);
926
927         return 0;
928 }
929
930 /* Interrupt handler.  Most of the actual processing is deferred.
931  * It's the caller's responsibility to ensure the chip is awake. */
932
933 irqreturn_t ath_isr(int irq, void *dev)
934 {
935         struct ath_softc *sc = dev;
936         struct ath_hal *ah = sc->sc_ah;
937         enum ath9k_int status;
938         bool sched = false;
939
940         do {
941                 if (sc->sc_invalid) {
942                         /*
943                          * The hardware is not ready/present, don't
944                          * touch anything. Note this can happen early
945                          * on if the IRQ is shared.
946                          */
947                         return IRQ_NONE;
948                 }
949                 if (!ath9k_hw_intrpend(ah)) {   /* shared irq, not for us */
950                         return IRQ_NONE;
951                 }
952
953                 /*
954                  * Figure out the reason(s) for the interrupt.  Note
955                  * that the hal returns a pseudo-ISR that may include
956                  * bits we haven't explicitly enabled so we mask the
957                  * value to insure we only process bits we requested.
958                  */
959                 ath9k_hw_getisr(ah, &status);   /* NB: clears ISR too */
960
961                 status &= sc->sc_imask; /* discard unasked-for bits */
962
963                 /*
964                  * If there are no status bits set, then this interrupt was not
965                  * for me (should have been caught above).
966                  */
967
968                 if (!status)
969                         return IRQ_NONE;
970
971                 sc->sc_intrstatus = status;
972
973                 if (status & ATH9K_INT_FATAL) {
974                         /* need a chip reset */
975                         sched = true;
976                 } else if (status & ATH9K_INT_RXORN) {
977                         /* need a chip reset */
978                         sched = true;
979                 } else {
980                         if (status & ATH9K_INT_SWBA) {
981                                 /* schedule a tasklet for beacon handling */
982                                 tasklet_schedule(&sc->bcon_tasklet);
983                         }
984                         if (status & ATH9K_INT_RXEOL) {
985                                 /*
986                                  * NB: the hardware should re-read the link when
987                                  *     RXE bit is written, but it doesn't work
988                                  *     at least on older hardware revs.
989                                  */
990                                 sched = true;
991                         }
992
993                         if (status & ATH9K_INT_TXURN)
994                                 /* bump tx trigger level */
995                                 ath9k_hw_updatetxtriglevel(ah, true);
996                         /* XXX: optimize this */
997                         if (status & ATH9K_INT_RX)
998                                 sched = true;
999                         if (status & ATH9K_INT_TX)
1000                                 sched = true;
1001                         if (status & ATH9K_INT_BMISS)
1002                                 sched = true;
1003                         /* carrier sense timeout */
1004                         if (status & ATH9K_INT_CST)
1005                                 sched = true;
1006                         if (status & ATH9K_INT_MIB) {
1007                                 /*
1008                                  * Disable interrupts until we service the MIB
1009                                  * interrupt; otherwise it will continue to
1010                                  * fire.
1011                                  */
1012                                 ath9k_hw_set_interrupts(ah, 0);
1013                                 /*
1014                                  * Let the hal handle the event. We assume
1015                                  * it will clear whatever condition caused
1016                                  * the interrupt.
1017                                  */
1018                                 ath9k_hw_procmibevent(ah, &sc->sc_halstats);
1019                                 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1020                         }
1021                         if (status & ATH9K_INT_TIM_TIMER) {
1022                                 if (!(ah->ah_caps.hw_caps &
1023                                       ATH9K_HW_CAP_AUTOSLEEP)) {
1024                                         /* Clear RxAbort bit so that we can
1025                                          * receive frames */
1026                                         ath9k_hw_setrxabort(ah, 0);
1027                                         sched = true;
1028                                 }
1029                         }
1030                 }
1031         } while (0);
1032
1033         if (sched) {
1034                 /* turn off every interrupt except SWBA */
1035                 ath9k_hw_set_interrupts(ah, (sc->sc_imask & ATH9K_INT_SWBA));
1036                 tasklet_schedule(&sc->intr_tq);
1037         }
1038
1039         return IRQ_HANDLED;
1040 }
1041
1042 /* Deferred interrupt processing  */
1043
1044 static void ath9k_tasklet(unsigned long data)
1045 {
1046         struct ath_softc *sc = (struct ath_softc *)data;
1047         u32 status = sc->sc_intrstatus;
1048
1049         if (status & ATH9K_INT_FATAL) {
1050                 /* need a chip reset */
1051                 ath_internal_reset(sc);
1052                 return;
1053         } else {
1054
1055                 if (status &
1056                     (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
1057                         /* XXX: fill me in */
1058                         /*
1059                         if (status & ATH9K_INT_RXORN) {
1060                         }
1061                         if (status & ATH9K_INT_RXEOL) {
1062                         }
1063                         */
1064                         spin_lock_bh(&sc->sc_rxflushlock);
1065                         ath_rx_tasklet(sc, 0);
1066                         spin_unlock_bh(&sc->sc_rxflushlock);
1067                 }
1068                 /* XXX: optimize this */
1069                 if (status & ATH9K_INT_TX)
1070                         ath_tx_tasklet(sc);
1071                 /* XXX: fill me in */
1072                 /*
1073                 if (status & ATH9K_INT_BMISS) {
1074                 }
1075                 if (status & (ATH9K_INT_TIM | ATH9K_INT_DTIMSYNC)) {
1076                         if (status & ATH9K_INT_TIM) {
1077                         }
1078                         if (status & ATH9K_INT_DTIMSYNC) {
1079                         }
1080                 }
1081                 */
1082         }
1083
1084         /* re-enable hardware interrupt */
1085         ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
1086 }
1087
1088 int ath_init(u16 devid, struct ath_softc *sc)
1089 {
1090         struct ath_hal *ah = NULL;
1091         int status;
1092         int error = 0, i;
1093         int csz = 0;
1094         u32 rd;
1095
1096         /* XXX: hardware will not be ready until ath_open() being called */
1097         sc->sc_invalid = 1;
1098
1099         sc->sc_debug = DBG_DEFAULT;
1100         DPRINTF(sc, ATH_DBG_CONFIG, "%s: devid 0x%x\n", __func__, devid);
1101
1102         /* Initialize tasklet */
1103         tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
1104         tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet,
1105                      (unsigned long)sc);
1106
1107         /*
1108          * Cache line size is used to size and align various
1109          * structures used to communicate with the hardware.
1110          */
1111         bus_read_cachesize(sc, &csz);
1112         /* XXX assert csz is non-zero */
1113         sc->sc_cachelsz = csz << 2;     /* convert to bytes */
1114
1115         spin_lock_init(&sc->sc_resetlock);
1116
1117         ah = ath9k_hw_attach(devid, sc, sc->mem, &status);
1118         if (ah == NULL) {
1119                 DPRINTF(sc, ATH_DBG_FATAL,
1120                         "%s: unable to attach hardware; HAL status %u\n",
1121                         __func__, status);
1122                 error = -ENXIO;
1123                 goto bad;
1124         }
1125         sc->sc_ah = ah;
1126
1127         /* Get the chipset-specific aggr limit. */
1128         sc->sc_rtsaggrlimit = ah->ah_caps.rts_aggr_limit;
1129
1130         /* Get the hardware key cache size. */
1131         sc->sc_keymax = ah->ah_caps.keycache_size;
1132         if (sc->sc_keymax > ATH_KEYMAX) {
1133                 DPRINTF(sc, ATH_DBG_KEYCACHE,
1134                         "%s: Warning, using only %u entries in %u key cache\n",
1135                         __func__, ATH_KEYMAX, sc->sc_keymax);
1136                 sc->sc_keymax = ATH_KEYMAX;
1137         }
1138
1139         /*
1140          * Reset the key cache since some parts do not
1141          * reset the contents on initial power up.
1142          */
1143         for (i = 0; i < sc->sc_keymax; i++)
1144                 ath9k_hw_keyreset(ah, (u16) i);
1145         /*
1146          * Mark key cache slots associated with global keys
1147          * as in use.  If we knew TKIP was not to be used we
1148          * could leave the +32, +64, and +32+64 slots free.
1149          * XXX only for splitmic.
1150          */
1151         for (i = 0; i < IEEE80211_WEP_NKID; i++) {
1152                 set_bit(i, sc->sc_keymap);
1153                 set_bit(i + 32, sc->sc_keymap);
1154                 set_bit(i + 64, sc->sc_keymap);
1155                 set_bit(i + 32 + 64, sc->sc_keymap);
1156         }
1157         /*
1158          * Collect the channel list using the default country
1159          * code and including outdoor channels.  The 802.11 layer
1160          * is resposible for filtering this list based on settings
1161          * like the phy mode.
1162          */
1163         rd = ah->ah_currentRD;
1164
1165         error = ath_setup_channels(sc);
1166         if (error)
1167                 goto bad;
1168
1169         /* default to STA mode */
1170         sc->sc_opmode = ATH9K_M_MONITOR;
1171
1172         /* Setup rate tables */
1173
1174         ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1175         ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1176
1177         /* NB: setup here so ath_rate_update is happy */
1178         ath_setcurmode(sc, ATH9K_MODE_11A);
1179
1180         /*
1181          * Allocate hardware transmit queues: one queue for
1182          * beacon frames and one data queue for each QoS
1183          * priority.  Note that the hal handles reseting
1184          * these queues at the needed time.
1185          */
1186         sc->sc_bhalq = ath_beaconq_setup(ah);
1187         if (sc->sc_bhalq == -1) {
1188                 DPRINTF(sc, ATH_DBG_FATAL,
1189                         "%s: unable to setup a beacon xmit queue\n", __func__);
1190                 error = -EIO;
1191                 goto bad2;
1192         }
1193         sc->sc_cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1194         if (sc->sc_cabq == NULL) {
1195                 DPRINTF(sc, ATH_DBG_FATAL,
1196                         "%s: unable to setup CAB xmit queue\n", __func__);
1197                 error = -EIO;
1198                 goto bad2;
1199         }
1200
1201         sc->sc_config.cabqReadytime = ATH_CABQ_READY_TIME;
1202         ath_cabq_update(sc);
1203
1204         for (i = 0; i < ARRAY_SIZE(sc->sc_haltype2q); i++)
1205                 sc->sc_haltype2q[i] = -1;
1206
1207         /* Setup data queues */
1208         /* NB: ensure BK queue is the lowest priority h/w queue */
1209         if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
1210                 DPRINTF(sc, ATH_DBG_FATAL,
1211                         "%s: unable to setup xmit queue for BK traffic\n",
1212                         __func__);
1213                 error = -EIO;
1214                 goto bad2;
1215         }
1216
1217         if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
1218                 DPRINTF(sc, ATH_DBG_FATAL,
1219                         "%s: unable to setup xmit queue for BE traffic\n",
1220                         __func__);
1221                 error = -EIO;
1222                 goto bad2;
1223         }
1224         if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
1225                 DPRINTF(sc, ATH_DBG_FATAL,
1226                         "%s: unable to setup xmit queue for VI traffic\n",
1227                         __func__);
1228                 error = -EIO;
1229                 goto bad2;
1230         }
1231         if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
1232                 DPRINTF(sc, ATH_DBG_FATAL,
1233                         "%s: unable to setup xmit queue for VO traffic\n",
1234                         __func__);
1235                 error = -EIO;
1236                 goto bad2;
1237         }
1238
1239         sc->sc_rc = ath_rate_attach(ah);
1240         if (sc->sc_rc == NULL) {
1241                 error = EIO;
1242                 goto bad2;
1243         }
1244
1245         if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1246                                    ATH9K_CIPHER_TKIP, NULL)) {
1247                 /*
1248                  * Whether we should enable h/w TKIP MIC.
1249                  * XXX: if we don't support WME TKIP MIC, then we wouldn't
1250                  * report WMM capable, so it's always safe to turn on
1251                  * TKIP MIC in this case.
1252                  */
1253                 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1254                                        0, 1, NULL);
1255         }
1256
1257         /*
1258          * Check whether the separate key cache entries
1259          * are required to handle both tx+rx MIC keys.
1260          * With split mic keys the number of stations is limited
1261          * to 27 otherwise 59.
1262          */
1263         if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1264                                    ATH9K_CIPHER_TKIP, NULL)
1265             && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1266                                       ATH9K_CIPHER_MIC, NULL)
1267             && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1268                                       0, NULL))
1269                 sc->sc_splitmic = 1;
1270
1271         /* turn on mcast key search if possible */
1272         if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1273                 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1274                                              1, NULL);
1275
1276         sc->sc_config.txpowlimit = ATH_TXPOWER_MAX;
1277         sc->sc_config.txpowlimit_override = 0;
1278
1279         /* 11n Capabilities */
1280         if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1281                 sc->sc_txaggr = 1;
1282                 sc->sc_rxaggr = 1;
1283         }
1284
1285         sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask;
1286         sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask;
1287
1288         /* Configuration for rx chain detection */
1289         sc->sc_rxchaindetect_ref = 0;
1290         sc->sc_rxchaindetect_thresh5GHz = 35;
1291         sc->sc_rxchaindetect_thresh2GHz = 35;
1292         sc->sc_rxchaindetect_delta5GHz = 30;
1293         sc->sc_rxchaindetect_delta2GHz = 30;
1294
1295         ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
1296         sc->sc_defant = ath9k_hw_getdefantenna(ah);
1297
1298         ath9k_hw_getmac(ah, sc->sc_myaddr);
1299         if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) {
1300                 ath9k_hw_getbssidmask(ah, sc->sc_bssidmask);
1301                 ATH_SET_VAP_BSSID_MASK(sc->sc_bssidmask);
1302                 ath9k_hw_setbssidmask(ah, sc->sc_bssidmask);
1303         }
1304         sc->sc_slottime = ATH9K_SLOT_TIME_9;    /* default to short slot time */
1305
1306         /* initialize beacon slots */
1307         for (i = 0; i < ARRAY_SIZE(sc->sc_bslot); i++)
1308                 sc->sc_bslot[i] = ATH_IF_ID_ANY;
1309
1310         /* save MISC configurations */
1311         sc->sc_config.swBeaconProcess = 1;
1312
1313 #ifdef CONFIG_SLOW_ANT_DIV
1314         /* range is 40 - 255, we use something in the middle */
1315         ath_slow_ant_div_init(&sc->sc_antdiv, sc, 0x127);
1316 #endif
1317
1318         return 0;
1319 bad2:
1320         /* cleanup tx queues */
1321         for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1322                 if (ATH_TXQ_SETUP(sc, i))
1323                         ath_tx_cleanupq(sc, &sc->sc_txq[i]);
1324 bad:
1325         if (ah)
1326                 ath9k_hw_detach(ah);
1327         return error;
1328 }
1329
1330 void ath_deinit(struct ath_softc *sc)
1331 {
1332         struct ath_hal *ah = sc->sc_ah;
1333         int i;
1334
1335         DPRINTF(sc, ATH_DBG_CONFIG, "%s\n", __func__);
1336
1337         tasklet_kill(&sc->intr_tq);
1338         tasklet_kill(&sc->bcon_tasklet);
1339         ath_stop(sc);
1340         if (!sc->sc_invalid)
1341                 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
1342         ath_rate_detach(sc->sc_rc);
1343         /* cleanup tx queues */
1344         for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1345                 if (ATH_TXQ_SETUP(sc, i))
1346                         ath_tx_cleanupq(sc, &sc->sc_txq[i]);
1347         ath9k_hw_detach(ah);
1348 }
1349
1350 /*******************/
1351 /* Node Management */
1352 /*******************/
1353
1354 struct ath_node *ath_node_attach(struct ath_softc *sc, u8 *addr, int if_id)
1355 {
1356         struct ath_vap *avp;
1357         struct ath_node *an;
1358         DECLARE_MAC_BUF(mac);
1359
1360         avp = sc->sc_vaps[if_id];
1361         ASSERT(avp != NULL);
1362
1363         /* mac80211 sta_notify callback is from an IRQ context, so no sleep */
1364         an = kmalloc(sizeof(struct ath_node), GFP_ATOMIC);
1365         if (an == NULL)
1366                 return NULL;
1367         memzero(an, sizeof(*an));
1368
1369         an->an_sc = sc;
1370         memcpy(an->an_addr, addr, ETH_ALEN);
1371         atomic_set(&an->an_refcnt, 1);
1372
1373         /* set up per-node tx/rx state */
1374         ath_tx_node_init(sc, an);
1375         ath_rx_node_init(sc, an);
1376
1377         ath_chainmask_sel_init(sc, an);
1378         ath_chainmask_sel_timerstart(&an->an_chainmask_sel);
1379         list_add(&an->list, &sc->node_list);
1380
1381         return an;
1382 }
1383
1384 void ath_node_detach(struct ath_softc *sc, struct ath_node *an, bool bh_flag)
1385 {
1386         unsigned long flags;
1387
1388         DECLARE_MAC_BUF(mac);
1389
1390         ath_chainmask_sel_timerstop(&an->an_chainmask_sel);
1391         an->an_flags |= ATH_NODE_CLEAN;
1392         ath_tx_node_cleanup(sc, an, bh_flag);
1393         ath_rx_node_cleanup(sc, an);
1394
1395         ath_tx_node_free(sc, an);
1396         ath_rx_node_free(sc, an);
1397
1398         spin_lock_irqsave(&sc->node_lock, flags);
1399
1400         list_del(&an->list);
1401
1402         spin_unlock_irqrestore(&sc->node_lock, flags);
1403
1404         kfree(an);
1405 }
1406
1407 /* Finds a node and increases the refcnt if found */
1408
1409 struct ath_node *ath_node_get(struct ath_softc *sc, u8 *addr)
1410 {
1411         struct ath_node *an = NULL, *an_found = NULL;
1412
1413         if (list_empty(&sc->node_list)) /* FIXME */
1414                 goto out;
1415         list_for_each_entry(an, &sc->node_list, list) {
1416                 if (!compare_ether_addr(an->an_addr, addr)) {
1417                         atomic_inc(&an->an_refcnt);
1418                         an_found = an;
1419                         break;
1420                 }
1421         }
1422 out:
1423         return an_found;
1424 }
1425
1426 /* Decrements the refcnt and if it drops to zero, detach the node */
1427
1428 void ath_node_put(struct ath_softc *sc, struct ath_node *an, bool bh_flag)
1429 {
1430         if (atomic_dec_and_test(&an->an_refcnt))
1431                 ath_node_detach(sc, an, bh_flag);
1432 }
1433
1434 /* Finds a node, doesn't increment refcnt. Caller must hold sc->node_lock */
1435 struct ath_node *ath_node_find(struct ath_softc *sc, u8 *addr)
1436 {
1437         struct ath_node *an = NULL, *an_found = NULL;
1438
1439         if (list_empty(&sc->node_list))
1440                 return NULL;
1441
1442         list_for_each_entry(an, &sc->node_list, list)
1443                 if (!compare_ether_addr(an->an_addr, addr)) {
1444                         an_found = an;
1445                         break;
1446                 }
1447
1448         return an_found;
1449 }
1450
1451 /*
1452  * Set up New Node
1453  *
1454  * Setup driver-specific state for a newly associated node.  This routine
1455  * really only applies if compression or XR are enabled, there is no code
1456  * covering any other cases.
1457 */
1458
1459 void ath_newassoc(struct ath_softc *sc,
1460         struct ath_node *an, int isnew, int isuapsd)
1461 {
1462         int tidno;
1463
1464         /* if station reassociates, tear down the aggregation state. */
1465         if (!isnew) {
1466                 for (tidno = 0; tidno < WME_NUM_TID; tidno++) {
1467                         if (sc->sc_txaggr)
1468                                 ath_tx_aggr_teardown(sc, an, tidno);
1469                         if (sc->sc_rxaggr)
1470                                 ath_rx_aggr_teardown(sc, an, tidno);
1471                 }
1472         }
1473         an->an_flags = 0;
1474 }
1475
1476 /**************/
1477 /* Encryption */
1478 /**************/
1479
1480 void ath_key_reset(struct ath_softc *sc, u16 keyix, int freeslot)
1481 {
1482         ath9k_hw_keyreset(sc->sc_ah, keyix);
1483         if (freeslot)
1484                 clear_bit(keyix, sc->sc_keymap);
1485 }
1486
1487 int ath_keyset(struct ath_softc *sc,
1488                u16 keyix,
1489                struct ath9k_keyval *hk,
1490                const u8 mac[ETH_ALEN])
1491 {
1492         bool status;
1493
1494         status = ath9k_hw_set_keycache_entry(sc->sc_ah,
1495                 keyix, hk, mac, false);
1496
1497         return status != false;
1498 }
1499
1500 /***********************/
1501 /* TX Power/Regulatory */
1502 /***********************/
1503
1504 /*
1505  *  Set Transmit power in HAL
1506  *
1507  *  This routine makes the actual HAL calls to set the new transmit power
1508  *  limit.
1509 */
1510
1511 void ath_update_txpow(struct ath_softc *sc)
1512 {
1513         struct ath_hal *ah = sc->sc_ah;
1514         u32 txpow;
1515
1516         if (sc->sc_curtxpow != sc->sc_config.txpowlimit) {
1517                 ath9k_hw_set_txpowerlimit(ah, sc->sc_config.txpowlimit);
1518                 /* read back in case value is clamped */
1519                 ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow);
1520                 sc->sc_curtxpow = txpow;
1521         }
1522 }
1523
1524 /* Return the current country and domain information */
1525 void ath_get_currentCountry(struct ath_softc *sc,
1526         struct ath9k_country_entry *ctry)
1527 {
1528         ath9k_regd_get_current_country(sc->sc_ah, ctry);
1529
1530         /* If HAL not specific yet, since it is band dependent,
1531          * use the one we passed in. */
1532         if (ctry->countryCode == CTRY_DEFAULT) {
1533                 ctry->iso[0] = 0;
1534                 ctry->iso[1] = 0;
1535         } else if (ctry->iso[0] && ctry->iso[1]) {
1536                 if (!ctry->iso[2]) {
1537                         if (ath_outdoor)
1538                                 ctry->iso[2] = 'O';
1539                         else
1540                                 ctry->iso[2] = 'I';
1541                 }
1542         }
1543 }
1544
1545 /**************************/
1546 /* Slow Antenna Diversity */
1547 /**************************/
1548
1549 void ath_slow_ant_div_init(struct ath_antdiv *antdiv,
1550                            struct ath_softc *sc,
1551                            int32_t rssitrig)
1552 {
1553         int trig;
1554
1555         /* antdivf_rssitrig can range from 40 - 0xff */
1556         trig = (rssitrig > 0xff) ? 0xff : rssitrig;
1557         trig = (rssitrig < 40) ? 40 : rssitrig;
1558
1559         antdiv->antdiv_sc = sc;
1560         antdiv->antdivf_rssitrig = trig;
1561 }
1562
1563 void ath_slow_ant_div_start(struct ath_antdiv *antdiv,
1564                             u8 num_antcfg,
1565                             const u8 *bssid)
1566 {
1567         antdiv->antdiv_num_antcfg =
1568                 num_antcfg < ATH_ANT_DIV_MAX_CFG ?
1569                 num_antcfg : ATH_ANT_DIV_MAX_CFG;
1570         antdiv->antdiv_state = ATH_ANT_DIV_IDLE;
1571         antdiv->antdiv_curcfg = 0;
1572         antdiv->antdiv_bestcfg = 0;
1573         antdiv->antdiv_laststatetsf = 0;
1574
1575         memcpy(antdiv->antdiv_bssid, bssid, sizeof(antdiv->antdiv_bssid));
1576
1577         antdiv->antdiv_start = 1;
1578 }
1579
1580 void ath_slow_ant_div_stop(struct ath_antdiv *antdiv)
1581 {
1582         antdiv->antdiv_start = 0;
1583 }
1584
1585 static int32_t ath_find_max_val(int32_t *val,
1586         u8 num_val, u8 *max_index)
1587 {
1588         u32 MaxVal = *val++;
1589         u32 cur_index = 0;
1590
1591         *max_index = 0;
1592         while (++cur_index < num_val) {
1593                 if (*val > MaxVal) {
1594                         MaxVal = *val;
1595                         *max_index = cur_index;
1596                 }
1597
1598                 val++;
1599         }
1600
1601         return MaxVal;
1602 }
1603
1604 void ath_slow_ant_div(struct ath_antdiv *antdiv,
1605                       struct ieee80211_hdr *hdr,
1606                       struct ath_rx_status *rx_stats)
1607 {
1608         struct ath_softc *sc = antdiv->antdiv_sc;
1609         struct ath_hal *ah = sc->sc_ah;
1610         u64 curtsf = 0;
1611         u8 bestcfg, curcfg = antdiv->antdiv_curcfg;
1612         __le16 fc = hdr->frame_control;
1613
1614         if (antdiv->antdiv_start && ieee80211_is_beacon(fc)
1615             && !compare_ether_addr(hdr->addr3, antdiv->antdiv_bssid)) {
1616                 antdiv->antdiv_lastbrssi[curcfg] = rx_stats->rs_rssi;
1617                 antdiv->antdiv_lastbtsf[curcfg] = ath9k_hw_gettsf64(sc->sc_ah);
1618                 curtsf = antdiv->antdiv_lastbtsf[curcfg];
1619         } else {
1620                 return;
1621         }
1622
1623         switch (antdiv->antdiv_state) {
1624         case ATH_ANT_DIV_IDLE:
1625                 if ((antdiv->antdiv_lastbrssi[curcfg] <
1626                      antdiv->antdivf_rssitrig)
1627                     && ((curtsf - antdiv->antdiv_laststatetsf) >
1628                         ATH_ANT_DIV_MIN_IDLE_US)) {
1629
1630                         curcfg++;
1631                         if (curcfg == antdiv->antdiv_num_antcfg)
1632                                 curcfg = 0;
1633
1634                         if (!ath9k_hw_select_antconfig(ah, curcfg)) {
1635                                 antdiv->antdiv_bestcfg = antdiv->antdiv_curcfg;
1636                                 antdiv->antdiv_curcfg = curcfg;
1637                                 antdiv->antdiv_laststatetsf = curtsf;
1638                                 antdiv->antdiv_state = ATH_ANT_DIV_SCAN;
1639                         }
1640                 }
1641                 break;
1642
1643         case ATH_ANT_DIV_SCAN:
1644                 if ((curtsf - antdiv->antdiv_laststatetsf) <
1645                     ATH_ANT_DIV_MIN_SCAN_US)
1646                         break;
1647
1648                 curcfg++;
1649                 if (curcfg == antdiv->antdiv_num_antcfg)
1650                         curcfg = 0;
1651
1652                 if (curcfg == antdiv->antdiv_bestcfg) {
1653                         ath_find_max_val(antdiv->antdiv_lastbrssi,
1654                                    antdiv->antdiv_num_antcfg, &bestcfg);
1655                         if (!ath9k_hw_select_antconfig(ah, bestcfg)) {
1656                                 antdiv->antdiv_bestcfg = bestcfg;
1657                                 antdiv->antdiv_curcfg = bestcfg;
1658                                 antdiv->antdiv_laststatetsf = curtsf;
1659                                 antdiv->antdiv_state = ATH_ANT_DIV_IDLE;
1660                         }
1661                 } else {
1662                         if (!ath9k_hw_select_antconfig(ah, curcfg)) {
1663                                 antdiv->antdiv_curcfg = curcfg;
1664                                 antdiv->antdiv_laststatetsf = curtsf;
1665                                 antdiv->antdiv_state = ATH_ANT_DIV_SCAN;
1666                         }
1667                 }
1668
1669                 break;
1670         }
1671 }
1672
1673 /***********************/
1674 /* Descriptor Handling */
1675 /***********************/
1676
1677 /*
1678  *  Set up DMA descriptors
1679  *
1680  *  This function will allocate both the DMA descriptor structure, and the
1681  *  buffers it contains.  These are used to contain the descriptors used
1682  *  by the system.
1683 */
1684
1685 int ath_descdma_setup(struct ath_softc *sc,
1686                       struct ath_descdma *dd,
1687                       struct list_head *head,
1688                       const char *name,
1689                       int nbuf,
1690                       int ndesc)
1691 {
1692 #define DS2PHYS(_dd, _ds)                                               \
1693         ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
1694 #define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
1695 #define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
1696
1697         struct ath_desc *ds;
1698         struct ath_buf *bf;
1699         int i, bsize, error;
1700
1701         DPRINTF(sc, ATH_DBG_CONFIG, "%s: %s DMA: %u buffers %u desc/buf\n",
1702                 __func__, name, nbuf, ndesc);
1703
1704         /* ath_desc must be a multiple of DWORDs */
1705         if ((sizeof(struct ath_desc) % 4) != 0) {
1706                 DPRINTF(sc, ATH_DBG_FATAL, "%s: ath_desc not DWORD aligned\n",
1707                         __func__);
1708                 ASSERT((sizeof(struct ath_desc) % 4) == 0);
1709                 error = -ENOMEM;
1710                 goto fail;
1711         }
1712
1713         dd->dd_name = name;
1714         dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
1715
1716         /*
1717          * Need additional DMA memory because we can't use
1718          * descriptors that cross the 4K page boundary. Assume
1719          * one skipped descriptor per 4K page.
1720          */
1721         if (!(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1722                 u32 ndesc_skipped =
1723                         ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
1724                 u32 dma_len;
1725
1726                 while (ndesc_skipped) {
1727                         dma_len = ndesc_skipped * sizeof(struct ath_desc);
1728                         dd->dd_desc_len += dma_len;
1729
1730                         ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
1731                 };
1732         }
1733
1734         /* allocate descriptors */
1735         dd->dd_desc = pci_alloc_consistent(sc->pdev,
1736                               dd->dd_desc_len,
1737                               &dd->dd_desc_paddr);
1738         if (dd->dd_desc == NULL) {
1739                 error = -ENOMEM;
1740                 goto fail;
1741         }
1742         ds = dd->dd_desc;
1743         DPRINTF(sc, ATH_DBG_CONFIG, "%s: %s DMA map: %p (%u) -> %llx (%u)\n",
1744                 __func__, dd->dd_name, ds, (u32) dd->dd_desc_len,
1745                 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
1746
1747         /* allocate buffers */
1748         bsize = sizeof(struct ath_buf) * nbuf;
1749         bf = kmalloc(bsize, GFP_KERNEL);
1750         if (bf == NULL) {
1751                 error = -ENOMEM;
1752                 goto fail2;
1753         }
1754         memzero(bf, bsize);
1755         dd->dd_bufptr = bf;
1756
1757         INIT_LIST_HEAD(head);
1758         for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
1759                 bf->bf_desc = ds;
1760                 bf->bf_daddr = DS2PHYS(dd, ds);
1761
1762                 if (!(sc->sc_ah->ah_caps.hw_caps &
1763                       ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1764                         /*
1765                          * Skip descriptor addresses which can cause 4KB
1766                          * boundary crossing (addr + length) with a 32 dword
1767                          * descriptor fetch.
1768                          */
1769                         while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
1770                                 ASSERT((caddr_t) bf->bf_desc <
1771                                        ((caddr_t) dd->dd_desc +
1772                                         dd->dd_desc_len));
1773
1774                                 ds += ndesc;
1775                                 bf->bf_desc = ds;
1776                                 bf->bf_daddr = DS2PHYS(dd, ds);
1777                         }
1778                 }
1779                 list_add_tail(&bf->list, head);
1780         }
1781         return 0;
1782 fail2:
1783         pci_free_consistent(sc->pdev,
1784                 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1785 fail:
1786         memzero(dd, sizeof(*dd));
1787         return error;
1788 #undef ATH_DESC_4KB_BOUND_CHECK
1789 #undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
1790 #undef DS2PHYS
1791 }
1792
1793 /*
1794  *  Cleanup DMA descriptors
1795  *
1796  *  This function will free the DMA block that was allocated for the descriptor
1797  *  pool.  Since this was allocated as one "chunk", it is freed in the same
1798  *  manner.
1799 */
1800
1801 void ath_descdma_cleanup(struct ath_softc *sc,
1802                          struct ath_descdma *dd,
1803                          struct list_head *head)
1804 {
1805         /* Free memory associated with descriptors */
1806         pci_free_consistent(sc->pdev,
1807                 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1808
1809         INIT_LIST_HEAD(head);
1810         kfree(dd->dd_bufptr);
1811         memzero(dd, sizeof(*dd));
1812 }
1813
1814 /*************/
1815 /* Utilities */
1816 /*************/
1817
1818 void ath_internal_reset(struct ath_softc *sc)
1819 {
1820         ath_reset_start(sc, 0);
1821         ath_reset(sc);
1822         ath_reset_end(sc, 0);
1823 }
1824
1825 int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
1826 {
1827         int qnum;
1828
1829         switch (queue) {
1830         case 0:
1831                 qnum = sc->sc_haltype2q[ATH9K_WME_AC_VO];
1832                 break;
1833         case 1:
1834                 qnum = sc->sc_haltype2q[ATH9K_WME_AC_VI];
1835                 break;
1836         case 2:
1837                 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BE];
1838                 break;
1839         case 3:
1840                 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BK];
1841                 break;
1842         default:
1843                 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BE];
1844                 break;
1845         }
1846
1847         return qnum;
1848 }
1849
1850 int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
1851 {
1852         int qnum;
1853
1854         switch (queue) {
1855         case ATH9K_WME_AC_VO:
1856                 qnum = 0;
1857                 break;
1858         case ATH9K_WME_AC_VI:
1859                 qnum = 1;
1860                 break;
1861         case ATH9K_WME_AC_BE:
1862                 qnum = 2;
1863                 break;
1864         case ATH9K_WME_AC_BK:
1865                 qnum = 3;
1866                 break;
1867         default:
1868                 qnum = -1;
1869                 break;
1870         }
1871
1872         return qnum;
1873 }
1874
1875
1876 /*
1877  *  Expand time stamp to TSF
1878  *
1879  *  Extend 15-bit time stamp from rx descriptor to
1880  *  a full 64-bit TSF using the current h/w TSF.
1881 */
1882
1883 u64 ath_extend_tsf(struct ath_softc *sc, u32 rstamp)
1884 {
1885         u64 tsf;
1886
1887         tsf = ath9k_hw_gettsf64(sc->sc_ah);
1888         if ((tsf & 0x7fff) < rstamp)
1889                 tsf -= 0x8000;
1890         return (tsf & ~0x7fff) | rstamp;
1891 }
1892
1893 /*
1894  *  Set Default Antenna
1895  *
1896  *  Call into the HAL to set the default antenna to use.  Not really valid for
1897  *  MIMO technology.
1898 */
1899
1900 void ath_setdefantenna(void *context, u32 antenna)
1901 {
1902         struct ath_softc *sc = (struct ath_softc *)context;
1903         struct ath_hal *ah = sc->sc_ah;
1904
1905         /* XXX block beacon interrupts */
1906         ath9k_hw_setantenna(ah, antenna);
1907         sc->sc_defant = antenna;
1908         sc->sc_rxotherant = 0;
1909 }
1910
1911 /*
1912  * Set Slot Time
1913  *
1914  * This will wake up the chip if required, and set the slot time for the
1915  * frame (maximum transmit time).  Slot time is assumed to be already set
1916  * in the ATH object member sc_slottime
1917 */
1918
1919 void ath_setslottime(struct ath_softc *sc)
1920 {
1921         ath9k_hw_setslottime(sc->sc_ah, sc->sc_slottime);
1922         sc->sc_updateslot = OK;
1923 }