ath5k: Update registers and SREV ids v2
[safe/jmp/linux-2.6] / drivers / net / wireless / ath5k / base.c
1 /*-
2  * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
3  * Copyright (c) 2004-2005 Atheros Communications, Inc.
4  * Copyright (c) 2006 Devicescape Software, Inc.
5  * Copyright (c) 2007 Jiri Slaby <jirislaby@gmail.com>
6  * Copyright (c) 2007 Luis R. Rodriguez <mcgrof@winlab.rutgers.edu>
7  *
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer,
15  *    without modification.
16  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
17  *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
18  *    redistribution must be conditioned upon including a substantially
19  *    similar Disclaimer requirement for further binary redistribution.
20  * 3. Neither the names of the above-listed copyright holders nor the names
21  *    of any contributors may be used to endorse or promote products derived
22  *    from this software without specific prior written permission.
23  *
24  * Alternatively, this software may be distributed under the terms of the
25  * GNU General Public License ("GPL") version 2 as published by the Free
26  * Software Foundation.
27  *
28  * NO WARRANTY
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
32  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
33  * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
34  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
35  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
36  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
37  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
38  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
39  * THE POSSIBILITY OF SUCH DAMAGES.
40  *
41  */
42
43 #include <linux/module.h>
44 #include <linux/delay.h>
45 #include <linux/hardirq.h>
46 #include <linux/if.h>
47 #include <linux/io.h>
48 #include <linux/netdevice.h>
49 #include <linux/cache.h>
50 #include <linux/pci.h>
51 #include <linux/ethtool.h>
52 #include <linux/uaccess.h>
53
54 #include <net/ieee80211_radiotap.h>
55
56 #include <asm/unaligned.h>
57
58 #include "base.h"
59 #include "reg.h"
60 #include "debug.h"
61
62 static int ath5k_calinterval = 10; /* Calibrate PHY every 10 secs (TODO: Fixme) */
63
64
65 /******************\
66 * Internal defines *
67 \******************/
68
69 /* Module info */
70 MODULE_AUTHOR("Jiri Slaby");
71 MODULE_AUTHOR("Nick Kossifidis");
72 MODULE_DESCRIPTION("Support for 5xxx series of Atheros 802.11 wireless LAN cards.");
73 MODULE_SUPPORTED_DEVICE("Atheros 5xxx WLAN cards");
74 MODULE_LICENSE("Dual BSD/GPL");
75 MODULE_VERSION("0.5.0 (EXPERIMENTAL)");
76
77
78 /* Known PCI ids */
79 static struct pci_device_id ath5k_pci_id_table[] __devinitdata = {
80         { PCI_VDEVICE(ATHEROS, 0x0207), .driver_data = AR5K_AR5210 }, /* 5210 early */
81         { PCI_VDEVICE(ATHEROS, 0x0007), .driver_data = AR5K_AR5210 }, /* 5210 */
82         { PCI_VDEVICE(ATHEROS, 0x0011), .driver_data = AR5K_AR5211 }, /* 5311 - this is on AHB bus !*/
83         { PCI_VDEVICE(ATHEROS, 0x0012), .driver_data = AR5K_AR5211 }, /* 5211 */
84         { PCI_VDEVICE(ATHEROS, 0x0013), .driver_data = AR5K_AR5212 }, /* 5212 */
85         { PCI_VDEVICE(3COM_2,  0x0013), .driver_data = AR5K_AR5212 }, /* 3com 5212 */
86         { PCI_VDEVICE(3COM,    0x0013), .driver_data = AR5K_AR5212 }, /* 3com 3CRDAG675 5212 */
87         { PCI_VDEVICE(ATHEROS, 0x1014), .driver_data = AR5K_AR5212 }, /* IBM minipci 5212 */
88         { PCI_VDEVICE(ATHEROS, 0x0014), .driver_data = AR5K_AR5212 }, /* 5212 combatible */
89         { PCI_VDEVICE(ATHEROS, 0x0015), .driver_data = AR5K_AR5212 }, /* 5212 combatible */
90         { PCI_VDEVICE(ATHEROS, 0x0016), .driver_data = AR5K_AR5212 }, /* 5212 combatible */
91         { PCI_VDEVICE(ATHEROS, 0x0017), .driver_data = AR5K_AR5212 }, /* 5212 combatible */
92         { PCI_VDEVICE(ATHEROS, 0x0018), .driver_data = AR5K_AR5212 }, /* 5212 combatible */
93         { PCI_VDEVICE(ATHEROS, 0x0019), .driver_data = AR5K_AR5212 }, /* 5212 combatible */
94         { PCI_VDEVICE(ATHEROS, 0x001a), .driver_data = AR5K_AR5212 }, /* 2413 Griffin-lite */
95         { PCI_VDEVICE(ATHEROS, 0x001b), .driver_data = AR5K_AR5212 }, /* 5413 Eagle */
96         { PCI_VDEVICE(ATHEROS, 0x001c), .driver_data = AR5K_AR5212 }, /* 5424 Condor (PCI-E)*/
97         { 0 }
98 };
99 MODULE_DEVICE_TABLE(pci, ath5k_pci_id_table);
100
101 /* Known SREVs */
102 static struct ath5k_srev_name srev_names[] = {
103         { "5210",       AR5K_VERSION_MAC,       AR5K_SREV_AR5210 },
104         { "5311",       AR5K_VERSION_MAC,       AR5K_SREV_AR5311 },
105         { "5311A",      AR5K_VERSION_MAC,       AR5K_SREV_AR5311A },
106         { "5311B",      AR5K_VERSION_MAC,       AR5K_SREV_AR5311B },
107         { "5211",       AR5K_VERSION_MAC,       AR5K_SREV_AR5211 },
108         { "5212",       AR5K_VERSION_MAC,       AR5K_SREV_AR5212 },
109         { "5213",       AR5K_VERSION_MAC,       AR5K_SREV_AR5213 },
110         { "5213A",      AR5K_VERSION_MAC,       AR5K_SREV_AR5213A },
111         { "2413",       AR5K_VERSION_MAC,       AR5K_SREV_AR2413 },
112         { "2414",       AR5K_VERSION_MAC,       AR5K_SREV_AR2414 },
113         { "5424",       AR5K_VERSION_MAC,       AR5K_SREV_AR5424 },
114         { "5413",       AR5K_VERSION_MAC,       AR5K_SREV_AR5413 },
115         { "5414",       AR5K_VERSION_MAC,       AR5K_SREV_AR5414 },
116         { "2415",       AR5K_VERSION_MAC,       AR5K_SREV_AR2415 },
117         { "5416",       AR5K_VERSION_MAC,       AR5K_SREV_AR5416 },
118         { "5418",       AR5K_VERSION_MAC,       AR5K_SREV_AR5418 },
119         { "2425",       AR5K_VERSION_MAC,       AR5K_SREV_AR2425 },
120         { "2417",       AR5K_VERSION_MAC,       AR5K_SREV_AR2417 },
121         { "xxxxx",      AR5K_VERSION_MAC,       AR5K_SREV_UNKNOWN },
122         { "5110",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_5110 },
123         { "5111",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_5111 },
124         { "5111A",      AR5K_VERSION_RAD,       AR5K_SREV_RAD_5111A },
125         { "2111",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_2111 },
126         { "5112",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_5112 },
127         { "5112A",      AR5K_VERSION_RAD,       AR5K_SREV_RAD_5112A },
128         { "5112B",      AR5K_VERSION_RAD,       AR5K_SREV_RAD_5112B },
129         { "2112",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_2112 },
130         { "2112A",      AR5K_VERSION_RAD,       AR5K_SREV_RAD_2112A },
131         { "2112B",      AR5K_VERSION_RAD,       AR5K_SREV_RAD_2112B },
132         { "2413",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_2413 },
133         { "5413",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_5413 },
134         { "2316",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_2316 },
135         { "2317",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_2317 },
136         { "5424",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_5424 },
137         { "5133",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_5133 },
138         { "xxxxx",      AR5K_VERSION_RAD,       AR5K_SREV_UNKNOWN },
139 };
140
141 static struct ieee80211_rate ath5k_rates[] = {
142         { .bitrate = 10,
143           .hw_value = ATH5K_RATE_CODE_1M, },
144         { .bitrate = 20,
145           .hw_value = ATH5K_RATE_CODE_2M,
146           .hw_value_short = ATH5K_RATE_CODE_2M | AR5K_SET_SHORT_PREAMBLE,
147           .flags = IEEE80211_RATE_SHORT_PREAMBLE },
148         { .bitrate = 55,
149           .hw_value = ATH5K_RATE_CODE_5_5M,
150           .hw_value_short = ATH5K_RATE_CODE_5_5M | AR5K_SET_SHORT_PREAMBLE,
151           .flags = IEEE80211_RATE_SHORT_PREAMBLE },
152         { .bitrate = 110,
153           .hw_value = ATH5K_RATE_CODE_11M,
154           .hw_value_short = ATH5K_RATE_CODE_11M | AR5K_SET_SHORT_PREAMBLE,
155           .flags = IEEE80211_RATE_SHORT_PREAMBLE },
156         { .bitrate = 60,
157           .hw_value = ATH5K_RATE_CODE_6M,
158           .flags = 0 },
159         { .bitrate = 90,
160           .hw_value = ATH5K_RATE_CODE_9M,
161           .flags = 0 },
162         { .bitrate = 120,
163           .hw_value = ATH5K_RATE_CODE_12M,
164           .flags = 0 },
165         { .bitrate = 180,
166           .hw_value = ATH5K_RATE_CODE_18M,
167           .flags = 0 },
168         { .bitrate = 240,
169           .hw_value = ATH5K_RATE_CODE_24M,
170           .flags = 0 },
171         { .bitrate = 360,
172           .hw_value = ATH5K_RATE_CODE_36M,
173           .flags = 0 },
174         { .bitrate = 480,
175           .hw_value = ATH5K_RATE_CODE_48M,
176           .flags = 0 },
177         { .bitrate = 540,
178           .hw_value = ATH5K_RATE_CODE_54M,
179           .flags = 0 },
180         /* XR missing */
181 };
182
183 /*
184  * Prototypes - PCI stack related functions
185  */
186 static int __devinit    ath5k_pci_probe(struct pci_dev *pdev,
187                                 const struct pci_device_id *id);
188 static void __devexit   ath5k_pci_remove(struct pci_dev *pdev);
189 #ifdef CONFIG_PM
190 static int              ath5k_pci_suspend(struct pci_dev *pdev,
191                                         pm_message_t state);
192 static int              ath5k_pci_resume(struct pci_dev *pdev);
193 #else
194 #define ath5k_pci_suspend NULL
195 #define ath5k_pci_resume NULL
196 #endif /* CONFIG_PM */
197
198 static struct pci_driver ath5k_pci_driver = {
199         .name           = "ath5k_pci",
200         .id_table       = ath5k_pci_id_table,
201         .probe          = ath5k_pci_probe,
202         .remove         = __devexit_p(ath5k_pci_remove),
203         .suspend        = ath5k_pci_suspend,
204         .resume         = ath5k_pci_resume,
205 };
206
207
208
209 /*
210  * Prototypes - MAC 802.11 stack related functions
211  */
212 static int ath5k_tx(struct ieee80211_hw *hw, struct sk_buff *skb);
213 static int ath5k_reset(struct ath5k_softc *sc, bool stop, bool change_channel);
214 static int ath5k_reset_wake(struct ath5k_softc *sc);
215 static int ath5k_start(struct ieee80211_hw *hw);
216 static void ath5k_stop(struct ieee80211_hw *hw);
217 static int ath5k_add_interface(struct ieee80211_hw *hw,
218                 struct ieee80211_if_init_conf *conf);
219 static void ath5k_remove_interface(struct ieee80211_hw *hw,
220                 struct ieee80211_if_init_conf *conf);
221 static int ath5k_config(struct ieee80211_hw *hw,
222                 struct ieee80211_conf *conf);
223 static int ath5k_config_interface(struct ieee80211_hw *hw,
224                 struct ieee80211_vif *vif,
225                 struct ieee80211_if_conf *conf);
226 static void ath5k_configure_filter(struct ieee80211_hw *hw,
227                 unsigned int changed_flags,
228                 unsigned int *new_flags,
229                 int mc_count, struct dev_mc_list *mclist);
230 static int ath5k_set_key(struct ieee80211_hw *hw,
231                 enum set_key_cmd cmd,
232                 const u8 *local_addr, const u8 *addr,
233                 struct ieee80211_key_conf *key);
234 static int ath5k_get_stats(struct ieee80211_hw *hw,
235                 struct ieee80211_low_level_stats *stats);
236 static int ath5k_get_tx_stats(struct ieee80211_hw *hw,
237                 struct ieee80211_tx_queue_stats *stats);
238 static u64 ath5k_get_tsf(struct ieee80211_hw *hw);
239 static void ath5k_reset_tsf(struct ieee80211_hw *hw);
240 static int ath5k_beacon_update(struct ieee80211_hw *hw,
241                 struct sk_buff *skb);
242
243 static struct ieee80211_ops ath5k_hw_ops = {
244         .tx             = ath5k_tx,
245         .start          = ath5k_start,
246         .stop           = ath5k_stop,
247         .add_interface  = ath5k_add_interface,
248         .remove_interface = ath5k_remove_interface,
249         .config         = ath5k_config,
250         .config_interface = ath5k_config_interface,
251         .configure_filter = ath5k_configure_filter,
252         .set_key        = ath5k_set_key,
253         .get_stats      = ath5k_get_stats,
254         .conf_tx        = NULL,
255         .get_tx_stats   = ath5k_get_tx_stats,
256         .get_tsf        = ath5k_get_tsf,
257         .reset_tsf      = ath5k_reset_tsf,
258 };
259
260 /*
261  * Prototypes - Internal functions
262  */
263 /* Attach detach */
264 static int      ath5k_attach(struct pci_dev *pdev,
265                         struct ieee80211_hw *hw);
266 static void     ath5k_detach(struct pci_dev *pdev,
267                         struct ieee80211_hw *hw);
268 /* Channel/mode setup */
269 static inline short ath5k_ieee2mhz(short chan);
270 static unsigned int ath5k_copy_channels(struct ath5k_hw *ah,
271                                 struct ieee80211_channel *channels,
272                                 unsigned int mode,
273                                 unsigned int max);
274 static int      ath5k_setup_bands(struct ieee80211_hw *hw);
275 static int      ath5k_chan_set(struct ath5k_softc *sc,
276                                 struct ieee80211_channel *chan);
277 static void     ath5k_setcurmode(struct ath5k_softc *sc,
278                                 unsigned int mode);
279 static void     ath5k_mode_setup(struct ath5k_softc *sc);
280
281 /* Descriptor setup */
282 static int      ath5k_desc_alloc(struct ath5k_softc *sc,
283                                 struct pci_dev *pdev);
284 static void     ath5k_desc_free(struct ath5k_softc *sc,
285                                 struct pci_dev *pdev);
286 /* Buffers setup */
287 static int      ath5k_rxbuf_setup(struct ath5k_softc *sc,
288                                 struct ath5k_buf *bf);
289 static int      ath5k_txbuf_setup(struct ath5k_softc *sc,
290                                 struct ath5k_buf *bf);
291 static inline void ath5k_txbuf_free(struct ath5k_softc *sc,
292                                 struct ath5k_buf *bf)
293 {
294         BUG_ON(!bf);
295         if (!bf->skb)
296                 return;
297         pci_unmap_single(sc->pdev, bf->skbaddr, bf->skb->len,
298                         PCI_DMA_TODEVICE);
299         dev_kfree_skb_any(bf->skb);
300         bf->skb = NULL;
301 }
302
303 /* Queues setup */
304 static struct   ath5k_txq *ath5k_txq_setup(struct ath5k_softc *sc,
305                                 int qtype, int subtype);
306 static int      ath5k_beaconq_setup(struct ath5k_hw *ah);
307 static int      ath5k_beaconq_config(struct ath5k_softc *sc);
308 static void     ath5k_txq_drainq(struct ath5k_softc *sc,
309                                 struct ath5k_txq *txq);
310 static void     ath5k_txq_cleanup(struct ath5k_softc *sc);
311 static void     ath5k_txq_release(struct ath5k_softc *sc);
312 /* Rx handling */
313 static int      ath5k_rx_start(struct ath5k_softc *sc);
314 static void     ath5k_rx_stop(struct ath5k_softc *sc);
315 static unsigned int ath5k_rx_decrypted(struct ath5k_softc *sc,
316                                         struct ath5k_desc *ds,
317                                         struct sk_buff *skb,
318                                         struct ath5k_rx_status *rs);
319 static void     ath5k_tasklet_rx(unsigned long data);
320 /* Tx handling */
321 static void     ath5k_tx_processq(struct ath5k_softc *sc,
322                                 struct ath5k_txq *txq);
323 static void     ath5k_tasklet_tx(unsigned long data);
324 /* Beacon handling */
325 static int      ath5k_beacon_setup(struct ath5k_softc *sc,
326                                         struct ath5k_buf *bf);
327 static void     ath5k_beacon_send(struct ath5k_softc *sc);
328 static void     ath5k_beacon_config(struct ath5k_softc *sc);
329 static void     ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf);
330
331 static inline u64 ath5k_extend_tsf(struct ath5k_hw *ah, u32 rstamp)
332 {
333         u64 tsf = ath5k_hw_get_tsf64(ah);
334
335         if ((tsf & 0x7fff) < rstamp)
336                 tsf -= 0x8000;
337
338         return (tsf & ~0x7fff) | rstamp;
339 }
340
341 /* Interrupt handling */
342 static int      ath5k_init(struct ath5k_softc *sc);
343 static int      ath5k_stop_locked(struct ath5k_softc *sc);
344 static int      ath5k_stop_hw(struct ath5k_softc *sc);
345 static irqreturn_t ath5k_intr(int irq, void *dev_id);
346 static void     ath5k_tasklet_reset(unsigned long data);
347
348 static void     ath5k_calibrate(unsigned long data);
349 /* LED functions */
350 static int      ath5k_init_leds(struct ath5k_softc *sc);
351 static void     ath5k_led_enable(struct ath5k_softc *sc);
352 static void     ath5k_led_off(struct ath5k_softc *sc);
353 static void     ath5k_unregister_leds(struct ath5k_softc *sc);
354
355 /*
356  * Module init/exit functions
357  */
358 static int __init
359 init_ath5k_pci(void)
360 {
361         int ret;
362
363         ath5k_debug_init();
364
365         ret = pci_register_driver(&ath5k_pci_driver);
366         if (ret) {
367                 printk(KERN_ERR "ath5k_pci: can't register pci driver\n");
368                 return ret;
369         }
370
371         return 0;
372 }
373
374 static void __exit
375 exit_ath5k_pci(void)
376 {
377         pci_unregister_driver(&ath5k_pci_driver);
378
379         ath5k_debug_finish();
380 }
381
382 module_init(init_ath5k_pci);
383 module_exit(exit_ath5k_pci);
384
385
386 /********************\
387 * PCI Initialization *
388 \********************/
389
390 static const char *
391 ath5k_chip_name(enum ath5k_srev_type type, u_int16_t val)
392 {
393         const char *name = "xxxxx";
394         unsigned int i;
395
396         for (i = 0; i < ARRAY_SIZE(srev_names); i++) {
397                 if (srev_names[i].sr_type != type)
398                         continue;
399                 if ((val & 0xff) < srev_names[i + 1].sr_val) {
400                         name = srev_names[i].sr_name;
401                         break;
402                 }
403         }
404
405         return name;
406 }
407
408 static int __devinit
409 ath5k_pci_probe(struct pci_dev *pdev,
410                 const struct pci_device_id *id)
411 {
412         void __iomem *mem;
413         struct ath5k_softc *sc;
414         struct ieee80211_hw *hw;
415         int ret;
416         u8 csz;
417
418         ret = pci_enable_device(pdev);
419         if (ret) {
420                 dev_err(&pdev->dev, "can't enable device\n");
421                 goto err;
422         }
423
424         /* XXX 32-bit addressing only */
425         ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
426         if (ret) {
427                 dev_err(&pdev->dev, "32-bit DMA not available\n");
428                 goto err_dis;
429         }
430
431         /*
432          * Cache line size is used to size and align various
433          * structures used to communicate with the hardware.
434          */
435         pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
436         if (csz == 0) {
437                 /*
438                  * Linux 2.4.18 (at least) writes the cache line size
439                  * register as a 16-bit wide register which is wrong.
440                  * We must have this setup properly for rx buffer
441                  * DMA to work so force a reasonable value here if it
442                  * comes up zero.
443                  */
444                 csz = L1_CACHE_BYTES / sizeof(u32);
445                 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
446         }
447         /*
448          * The default setting of latency timer yields poor results,
449          * set it to the value used by other systems.  It may be worth
450          * tweaking this setting more.
451          */
452         pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
453
454         /* Enable bus mastering */
455         pci_set_master(pdev);
456
457         /*
458          * Disable the RETRY_TIMEOUT register (0x41) to keep
459          * PCI Tx retries from interfering with C3 CPU state.
460          */
461         pci_write_config_byte(pdev, 0x41, 0);
462
463         ret = pci_request_region(pdev, 0, "ath5k");
464         if (ret) {
465                 dev_err(&pdev->dev, "cannot reserve PCI memory region\n");
466                 goto err_dis;
467         }
468
469         mem = pci_iomap(pdev, 0, 0);
470         if (!mem) {
471                 dev_err(&pdev->dev, "cannot remap PCI memory region\n") ;
472                 ret = -EIO;
473                 goto err_reg;
474         }
475
476         /*
477          * Allocate hw (mac80211 main struct)
478          * and hw->priv (driver private data)
479          */
480         hw = ieee80211_alloc_hw(sizeof(*sc), &ath5k_hw_ops);
481         if (hw == NULL) {
482                 dev_err(&pdev->dev, "cannot allocate ieee80211_hw\n");
483                 ret = -ENOMEM;
484                 goto err_map;
485         }
486
487         dev_info(&pdev->dev, "registered as '%s'\n", wiphy_name(hw->wiphy));
488
489         /* Initialize driver private data */
490         SET_IEEE80211_DEV(hw, &pdev->dev);
491         hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
492                     IEEE80211_HW_SIGNAL_DBM |
493                     IEEE80211_HW_NOISE_DBM;
494
495         hw->wiphy->interface_modes =
496                 BIT(NL80211_IFTYPE_STATION) |
497                 BIT(NL80211_IFTYPE_ADHOC) |
498                 BIT(NL80211_IFTYPE_MESH_POINT);
499
500         hw->extra_tx_headroom = 2;
501         hw->channel_change_time = 5000;
502         sc = hw->priv;
503         sc->hw = hw;
504         sc->pdev = pdev;
505
506         ath5k_debug_init_device(sc);
507
508         /*
509          * Mark the device as detached to avoid processing
510          * interrupts until setup is complete.
511          */
512         __set_bit(ATH_STAT_INVALID, sc->status);
513
514         sc->iobase = mem; /* So we can unmap it on detach */
515         sc->cachelsz = csz * sizeof(u32); /* convert to bytes */
516         sc->opmode = NL80211_IFTYPE_STATION;
517         mutex_init(&sc->lock);
518         spin_lock_init(&sc->rxbuflock);
519         spin_lock_init(&sc->txbuflock);
520         spin_lock_init(&sc->block);
521
522         /* Set private data */
523         pci_set_drvdata(pdev, hw);
524
525         /* Setup interrupt handler */
526         ret = request_irq(pdev->irq, ath5k_intr, IRQF_SHARED, "ath", sc);
527         if (ret) {
528                 ATH5K_ERR(sc, "request_irq failed\n");
529                 goto err_free;
530         }
531
532         /* Initialize device */
533         sc->ah = ath5k_hw_attach(sc, id->driver_data);
534         if (IS_ERR(sc->ah)) {
535                 ret = PTR_ERR(sc->ah);
536                 goto err_irq;
537         }
538
539         /* Finish private driver data initialization */
540         ret = ath5k_attach(pdev, hw);
541         if (ret)
542                 goto err_ah;
543
544         ATH5K_INFO(sc, "Atheros AR%s chip found (MAC: 0x%x, PHY: 0x%x)\n",
545                         ath5k_chip_name(AR5K_VERSION_MAC, sc->ah->ah_mac_srev),
546                                         sc->ah->ah_mac_srev,
547                                         sc->ah->ah_phy_revision);
548
549         if (!sc->ah->ah_single_chip) {
550                 /* Single chip radio (!RF5111) */
551                 if (sc->ah->ah_radio_5ghz_revision &&
552                         !sc->ah->ah_radio_2ghz_revision) {
553                         /* No 5GHz support -> report 2GHz radio */
554                         if (!test_bit(AR5K_MODE_11A,
555                                 sc->ah->ah_capabilities.cap_mode)) {
556                                 ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n",
557                                         ath5k_chip_name(AR5K_VERSION_RAD,
558                                                 sc->ah->ah_radio_5ghz_revision),
559                                                 sc->ah->ah_radio_5ghz_revision);
560                         /* No 2GHz support (5110 and some
561                          * 5Ghz only cards) -> report 5Ghz radio */
562                         } else if (!test_bit(AR5K_MODE_11B,
563                                 sc->ah->ah_capabilities.cap_mode)) {
564                                 ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n",
565                                         ath5k_chip_name(AR5K_VERSION_RAD,
566                                                 sc->ah->ah_radio_5ghz_revision),
567                                                 sc->ah->ah_radio_5ghz_revision);
568                         /* Multiband radio */
569                         } else {
570                                 ATH5K_INFO(sc, "RF%s multiband radio found"
571                                         " (0x%x)\n",
572                                         ath5k_chip_name(AR5K_VERSION_RAD,
573                                                 sc->ah->ah_radio_5ghz_revision),
574                                                 sc->ah->ah_radio_5ghz_revision);
575                         }
576                 }
577                 /* Multi chip radio (RF5111 - RF2111) ->
578                  * report both 2GHz/5GHz radios */
579                 else if (sc->ah->ah_radio_5ghz_revision &&
580                                 sc->ah->ah_radio_2ghz_revision){
581                         ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n",
582                                 ath5k_chip_name(AR5K_VERSION_RAD,
583                                         sc->ah->ah_radio_5ghz_revision),
584                                         sc->ah->ah_radio_5ghz_revision);
585                         ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n",
586                                 ath5k_chip_name(AR5K_VERSION_RAD,
587                                         sc->ah->ah_radio_2ghz_revision),
588                                         sc->ah->ah_radio_2ghz_revision);
589                 }
590         }
591
592
593         /* ready to process interrupts */
594         __clear_bit(ATH_STAT_INVALID, sc->status);
595
596         return 0;
597 err_ah:
598         ath5k_hw_detach(sc->ah);
599 err_irq:
600         free_irq(pdev->irq, sc);
601 err_free:
602         ieee80211_free_hw(hw);
603 err_map:
604         pci_iounmap(pdev, mem);
605 err_reg:
606         pci_release_region(pdev, 0);
607 err_dis:
608         pci_disable_device(pdev);
609 err:
610         return ret;
611 }
612
613 static void __devexit
614 ath5k_pci_remove(struct pci_dev *pdev)
615 {
616         struct ieee80211_hw *hw = pci_get_drvdata(pdev);
617         struct ath5k_softc *sc = hw->priv;
618
619         ath5k_debug_finish_device(sc);
620         ath5k_detach(pdev, hw);
621         ath5k_hw_detach(sc->ah);
622         free_irq(pdev->irq, sc);
623         pci_iounmap(pdev, sc->iobase);
624         pci_release_region(pdev, 0);
625         pci_disable_device(pdev);
626         ieee80211_free_hw(hw);
627 }
628
629 #ifdef CONFIG_PM
630 static int
631 ath5k_pci_suspend(struct pci_dev *pdev, pm_message_t state)
632 {
633         struct ieee80211_hw *hw = pci_get_drvdata(pdev);
634         struct ath5k_softc *sc = hw->priv;
635
636         ath5k_led_off(sc);
637
638         ath5k_stop_hw(sc);
639
640         free_irq(pdev->irq, sc);
641         pci_save_state(pdev);
642         pci_disable_device(pdev);
643         pci_set_power_state(pdev, PCI_D3hot);
644
645         return 0;
646 }
647
648 static int
649 ath5k_pci_resume(struct pci_dev *pdev)
650 {
651         struct ieee80211_hw *hw = pci_get_drvdata(pdev);
652         struct ath5k_softc *sc = hw->priv;
653         struct ath5k_hw *ah = sc->ah;
654         int i, err;
655
656         pci_restore_state(pdev);
657
658         err = pci_enable_device(pdev);
659         if (err)
660                 return err;
661
662         /*
663          * Suspend/Resume resets the PCI configuration space, so we have to
664          * re-disable the RETRY_TIMEOUT register (0x41) to keep
665          * PCI Tx retries from interfering with C3 CPU state
666          */
667         pci_write_config_byte(pdev, 0x41, 0);
668
669         err = request_irq(pdev->irq, ath5k_intr, IRQF_SHARED, "ath", sc);
670         if (err) {
671                 ATH5K_ERR(sc, "request_irq failed\n");
672                 goto err_no_irq;
673         }
674
675         err = ath5k_init(sc);
676         if (err)
677                 goto err_irq;
678         ath5k_led_enable(sc);
679
680         /*
681          * Reset the key cache since some parts do not
682          * reset the contents on initial power up or resume.
683          *
684          * FIXME: This may need to be revisited when mac80211 becomes
685          *        aware of suspend/resume.
686          */
687         for (i = 0; i < AR5K_KEYTABLE_SIZE; i++)
688                 ath5k_hw_reset_key(ah, i);
689
690         return 0;
691 err_irq:
692         free_irq(pdev->irq, sc);
693 err_no_irq:
694         pci_disable_device(pdev);
695         return err;
696 }
697 #endif /* CONFIG_PM */
698
699
700 /***********************\
701 * Driver Initialization *
702 \***********************/
703
704 static int
705 ath5k_attach(struct pci_dev *pdev, struct ieee80211_hw *hw)
706 {
707         struct ath5k_softc *sc = hw->priv;
708         struct ath5k_hw *ah = sc->ah;
709         u8 mac[ETH_ALEN];
710         unsigned int i;
711         int ret;
712
713         ATH5K_DBG(sc, ATH5K_DEBUG_ANY, "devid 0x%x\n", pdev->device);
714
715         /*
716          * Check if the MAC has multi-rate retry support.
717          * We do this by trying to setup a fake extended
718          * descriptor.  MAC's that don't have support will
719          * return false w/o doing anything.  MAC's that do
720          * support it will return true w/o doing anything.
721          */
722         ret = ah->ah_setup_mrr_tx_desc(ah, NULL, 0, 0, 0, 0, 0, 0);
723         if (ret < 0)
724                 goto err;
725         if (ret > 0)
726                 __set_bit(ATH_STAT_MRRETRY, sc->status);
727
728         /*
729          * Reset the key cache since some parts do not
730          * reset the contents on initial power up.
731          */
732         for (i = 0; i < AR5K_KEYTABLE_SIZE; i++)
733                 ath5k_hw_reset_key(ah, i);
734
735         /*
736          * Collect the channel list.  The 802.11 layer
737          * is resposible for filtering this list based
738          * on settings like the phy mode and regulatory
739          * domain restrictions.
740          */
741         ret = ath5k_setup_bands(hw);
742         if (ret) {
743                 ATH5K_ERR(sc, "can't get channels\n");
744                 goto err;
745         }
746
747         /* NB: setup here so ath5k_rate_update is happy */
748         if (test_bit(AR5K_MODE_11A, ah->ah_modes))
749                 ath5k_setcurmode(sc, AR5K_MODE_11A);
750         else
751                 ath5k_setcurmode(sc, AR5K_MODE_11B);
752
753         /*
754          * Allocate tx+rx descriptors and populate the lists.
755          */
756         ret = ath5k_desc_alloc(sc, pdev);
757         if (ret) {
758                 ATH5K_ERR(sc, "can't allocate descriptors\n");
759                 goto err;
760         }
761
762         /*
763          * Allocate hardware transmit queues: one queue for
764          * beacon frames and one data queue for each QoS
765          * priority.  Note that hw functions handle reseting
766          * these queues at the needed time.
767          */
768         ret = ath5k_beaconq_setup(ah);
769         if (ret < 0) {
770                 ATH5K_ERR(sc, "can't setup a beacon xmit queue\n");
771                 goto err_desc;
772         }
773         sc->bhalq = ret;
774
775         sc->txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BK);
776         if (IS_ERR(sc->txq)) {
777                 ATH5K_ERR(sc, "can't setup xmit queue\n");
778                 ret = PTR_ERR(sc->txq);
779                 goto err_bhal;
780         }
781
782         tasklet_init(&sc->rxtq, ath5k_tasklet_rx, (unsigned long)sc);
783         tasklet_init(&sc->txtq, ath5k_tasklet_tx, (unsigned long)sc);
784         tasklet_init(&sc->restq, ath5k_tasklet_reset, (unsigned long)sc);
785         setup_timer(&sc->calib_tim, ath5k_calibrate, (unsigned long)sc);
786
787         ath5k_hw_get_lladdr(ah, mac);
788         SET_IEEE80211_PERM_ADDR(hw, mac);
789         /* All MAC address bits matter for ACKs */
790         memset(sc->bssidmask, 0xff, ETH_ALEN);
791         ath5k_hw_set_bssid_mask(sc->ah, sc->bssidmask);
792
793         ret = ieee80211_register_hw(hw);
794         if (ret) {
795                 ATH5K_ERR(sc, "can't register ieee80211 hw\n");
796                 goto err_queues;
797         }
798
799         ath5k_init_leds(sc);
800
801         return 0;
802 err_queues:
803         ath5k_txq_release(sc);
804 err_bhal:
805         ath5k_hw_release_tx_queue(ah, sc->bhalq);
806 err_desc:
807         ath5k_desc_free(sc, pdev);
808 err:
809         return ret;
810 }
811
812 static void
813 ath5k_detach(struct pci_dev *pdev, struct ieee80211_hw *hw)
814 {
815         struct ath5k_softc *sc = hw->priv;
816
817         /*
818          * NB: the order of these is important:
819          * o call the 802.11 layer before detaching ath5k_hw to
820          *   insure callbacks into the driver to delete global
821          *   key cache entries can be handled
822          * o reclaim the tx queue data structures after calling
823          *   the 802.11 layer as we'll get called back to reclaim
824          *   node state and potentially want to use them
825          * o to cleanup the tx queues the hal is called, so detach
826          *   it last
827          * XXX: ??? detach ath5k_hw ???
828          * Other than that, it's straightforward...
829          */
830         ieee80211_unregister_hw(hw);
831         ath5k_desc_free(sc, pdev);
832         ath5k_txq_release(sc);
833         ath5k_hw_release_tx_queue(sc->ah, sc->bhalq);
834         ath5k_unregister_leds(sc);
835
836         /*
837          * NB: can't reclaim these until after ieee80211_ifdetach
838          * returns because we'll get called back to reclaim node
839          * state and potentially want to use them.
840          */
841 }
842
843
844
845
846 /********************\
847 * Channel/mode setup *
848 \********************/
849
850 /*
851  * Convert IEEE channel number to MHz frequency.
852  */
853 static inline short
854 ath5k_ieee2mhz(short chan)
855 {
856         if (chan <= 14 || chan >= 27)
857                 return ieee80211chan2mhz(chan);
858         else
859                 return 2212 + chan * 20;
860 }
861
862 static unsigned int
863 ath5k_copy_channels(struct ath5k_hw *ah,
864                 struct ieee80211_channel *channels,
865                 unsigned int mode,
866                 unsigned int max)
867 {
868         unsigned int i, count, size, chfreq, freq, ch;
869
870         if (!test_bit(mode, ah->ah_modes))
871                 return 0;
872
873         switch (mode) {
874         case AR5K_MODE_11A:
875         case AR5K_MODE_11A_TURBO:
876                 /* 1..220, but 2GHz frequencies are filtered by check_channel */
877                 size = 220 ;
878                 chfreq = CHANNEL_5GHZ;
879                 break;
880         case AR5K_MODE_11B:
881         case AR5K_MODE_11G:
882         case AR5K_MODE_11G_TURBO:
883                 size = 26;
884                 chfreq = CHANNEL_2GHZ;
885                 break;
886         default:
887                 ATH5K_WARN(ah->ah_sc, "bad mode, not copying channels\n");
888                 return 0;
889         }
890
891         for (i = 0, count = 0; i < size && max > 0; i++) {
892                 ch = i + 1 ;
893                 freq = ath5k_ieee2mhz(ch);
894
895                 /* Check if channel is supported by the chipset */
896                 if (!ath5k_channel_ok(ah, freq, chfreq))
897                         continue;
898
899                 /* Write channel info and increment counter */
900                 channels[count].center_freq = freq;
901                 channels[count].band = (chfreq == CHANNEL_2GHZ) ?
902                         IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
903                 switch (mode) {
904                 case AR5K_MODE_11A:
905                 case AR5K_MODE_11G:
906                         channels[count].hw_value = chfreq | CHANNEL_OFDM;
907                         break;
908                 case AR5K_MODE_11A_TURBO:
909                 case AR5K_MODE_11G_TURBO:
910                         channels[count].hw_value = chfreq |
911                                 CHANNEL_OFDM | CHANNEL_TURBO;
912                         break;
913                 case AR5K_MODE_11B:
914                         channels[count].hw_value = CHANNEL_B;
915                 }
916
917                 count++;
918                 max--;
919         }
920
921         return count;
922 }
923
924 static void
925 ath5k_setup_rate_idx(struct ath5k_softc *sc, struct ieee80211_supported_band *b)
926 {
927         u8 i;
928
929         for (i = 0; i < AR5K_MAX_RATES; i++)
930                 sc->rate_idx[b->band][i] = -1;
931
932         for (i = 0; i < b->n_bitrates; i++) {
933                 sc->rate_idx[b->band][b->bitrates[i].hw_value] = i;
934                 if (b->bitrates[i].hw_value_short)
935                         sc->rate_idx[b->band][b->bitrates[i].hw_value_short] = i;
936         }
937 }
938
939 static int
940 ath5k_setup_bands(struct ieee80211_hw *hw)
941 {
942         struct ath5k_softc *sc = hw->priv;
943         struct ath5k_hw *ah = sc->ah;
944         struct ieee80211_supported_band *sband;
945         int max_c, count_c = 0;
946         int i;
947
948         BUILD_BUG_ON(ARRAY_SIZE(sc->sbands) < IEEE80211_NUM_BANDS);
949         max_c = ARRAY_SIZE(sc->channels);
950
951         /* 2GHz band */
952         sband = &sc->sbands[IEEE80211_BAND_2GHZ];
953         sband->band = IEEE80211_BAND_2GHZ;
954         sband->bitrates = &sc->rates[IEEE80211_BAND_2GHZ][0];
955
956         if (test_bit(AR5K_MODE_11G, sc->ah->ah_capabilities.cap_mode)) {
957                 /* G mode */
958                 memcpy(sband->bitrates, &ath5k_rates[0],
959                        sizeof(struct ieee80211_rate) * 12);
960                 sband->n_bitrates = 12;
961
962                 sband->channels = sc->channels;
963                 sband->n_channels = ath5k_copy_channels(ah, sband->channels,
964                                         AR5K_MODE_11G, max_c);
965
966                 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband;
967                 count_c = sband->n_channels;
968                 max_c -= count_c;
969         } else if (test_bit(AR5K_MODE_11B, sc->ah->ah_capabilities.cap_mode)) {
970                 /* B mode */
971                 memcpy(sband->bitrates, &ath5k_rates[0],
972                        sizeof(struct ieee80211_rate) * 4);
973                 sband->n_bitrates = 4;
974
975                 /* 5211 only supports B rates and uses 4bit rate codes
976                  * (e.g normally we have 0x1B for 1M, but on 5211 we have 0x0B)
977                  * fix them up here:
978                  */
979                 if (ah->ah_version == AR5K_AR5211) {
980                         for (i = 0; i < 4; i++) {
981                                 sband->bitrates[i].hw_value =
982                                         sband->bitrates[i].hw_value & 0xF;
983                                 sband->bitrates[i].hw_value_short =
984                                         sband->bitrates[i].hw_value_short & 0xF;
985                         }
986                 }
987
988                 sband->channels = sc->channels;
989                 sband->n_channels = ath5k_copy_channels(ah, sband->channels,
990                                         AR5K_MODE_11B, max_c);
991
992                 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband;
993                 count_c = sband->n_channels;
994                 max_c -= count_c;
995         }
996         ath5k_setup_rate_idx(sc, sband);
997
998         /* 5GHz band, A mode */
999         if (test_bit(AR5K_MODE_11A, sc->ah->ah_capabilities.cap_mode)) {
1000                 sband = &sc->sbands[IEEE80211_BAND_5GHZ];
1001                 sband->band = IEEE80211_BAND_5GHZ;
1002                 sband->bitrates = &sc->rates[IEEE80211_BAND_5GHZ][0];
1003
1004                 memcpy(sband->bitrates, &ath5k_rates[4],
1005                        sizeof(struct ieee80211_rate) * 8);
1006                 sband->n_bitrates = 8;
1007
1008                 sband->channels = &sc->channels[count_c];
1009                 sband->n_channels = ath5k_copy_channels(ah, sband->channels,
1010                                         AR5K_MODE_11A, max_c);
1011
1012                 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = sband;
1013         }
1014         ath5k_setup_rate_idx(sc, sband);
1015
1016         ath5k_debug_dump_bands(sc);
1017
1018         return 0;
1019 }
1020
1021 /*
1022  * Set/change channels.  If the channel is really being changed,
1023  * it's done by reseting the chip.  To accomplish this we must
1024  * first cleanup any pending DMA, then restart stuff after a la
1025  * ath5k_init.
1026  */
1027 static int
1028 ath5k_chan_set(struct ath5k_softc *sc, struct ieee80211_channel *chan)
1029 {
1030         ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "(%u MHz) -> (%u MHz)\n",
1031                 sc->curchan->center_freq, chan->center_freq);
1032
1033         if (chan->center_freq != sc->curchan->center_freq ||
1034                 chan->hw_value != sc->curchan->hw_value) {
1035
1036                 sc->curchan = chan;
1037                 sc->curband = &sc->sbands[chan->band];
1038
1039                 /*
1040                  * To switch channels clear any pending DMA operations;
1041                  * wait long enough for the RX fifo to drain, reset the
1042                  * hardware at the new frequency, and then re-enable
1043                  * the relevant bits of the h/w.
1044                  */
1045                 return ath5k_reset(sc, true, true);
1046         }
1047
1048         return 0;
1049 }
1050
1051 static void
1052 ath5k_setcurmode(struct ath5k_softc *sc, unsigned int mode)
1053 {
1054         sc->curmode = mode;
1055
1056         if (mode == AR5K_MODE_11A) {
1057                 sc->curband = &sc->sbands[IEEE80211_BAND_5GHZ];
1058         } else {
1059                 sc->curband = &sc->sbands[IEEE80211_BAND_2GHZ];
1060         }
1061 }
1062
1063 static void
1064 ath5k_mode_setup(struct ath5k_softc *sc)
1065 {
1066         struct ath5k_hw *ah = sc->ah;
1067         u32 rfilt;
1068
1069         /* configure rx filter */
1070         rfilt = sc->filter_flags;
1071         ath5k_hw_set_rx_filter(ah, rfilt);
1072
1073         if (ath5k_hw_hasbssidmask(ah))
1074                 ath5k_hw_set_bssid_mask(ah, sc->bssidmask);
1075
1076         /* configure operational mode */
1077         ath5k_hw_set_opmode(ah);
1078
1079         ath5k_hw_set_mcast_filter(ah, 0, 0);
1080         ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "RX filter 0x%x\n", rfilt);
1081 }
1082
1083 static inline int
1084 ath5k_hw_to_driver_rix(struct ath5k_softc *sc, int hw_rix)
1085 {
1086         WARN_ON(hw_rix < 0 || hw_rix > AR5K_MAX_RATES);
1087         return sc->rate_idx[sc->curband->band][hw_rix];
1088 }
1089
1090 /***************\
1091 * Buffers setup *
1092 \***************/
1093
1094 static int
1095 ath5k_rxbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf)
1096 {
1097         struct ath5k_hw *ah = sc->ah;
1098         struct sk_buff *skb = bf->skb;
1099         struct ath5k_desc *ds;
1100
1101         if (likely(skb == NULL)) {
1102                 unsigned int off;
1103
1104                 /*
1105                  * Allocate buffer with headroom_needed space for the
1106                  * fake physical layer header at the start.
1107                  */
1108                 skb = dev_alloc_skb(sc->rxbufsize + sc->cachelsz - 1);
1109                 if (unlikely(skb == NULL)) {
1110                         ATH5K_ERR(sc, "can't alloc skbuff of size %u\n",
1111                                         sc->rxbufsize + sc->cachelsz - 1);
1112                         return -ENOMEM;
1113                 }
1114                 /*
1115                  * Cache-line-align.  This is important (for the
1116                  * 5210 at least) as not doing so causes bogus data
1117                  * in rx'd frames.
1118                  */
1119                 off = ((unsigned long)skb->data) % sc->cachelsz;
1120                 if (off != 0)
1121                         skb_reserve(skb, sc->cachelsz - off);
1122
1123                 bf->skb = skb;
1124                 bf->skbaddr = pci_map_single(sc->pdev,
1125                         skb->data, sc->rxbufsize, PCI_DMA_FROMDEVICE);
1126                 if (unlikely(pci_dma_mapping_error(sc->pdev, bf->skbaddr))) {
1127                         ATH5K_ERR(sc, "%s: DMA mapping failed\n", __func__);
1128                         dev_kfree_skb(skb);
1129                         bf->skb = NULL;
1130                         return -ENOMEM;
1131                 }
1132         }
1133
1134         /*
1135          * Setup descriptors.  For receive we always terminate
1136          * the descriptor list with a self-linked entry so we'll
1137          * not get overrun under high load (as can happen with a
1138          * 5212 when ANI processing enables PHY error frames).
1139          *
1140          * To insure the last descriptor is self-linked we create
1141          * each descriptor as self-linked and add it to the end.  As
1142          * each additional descriptor is added the previous self-linked
1143          * entry is ``fixed'' naturally.  This should be safe even
1144          * if DMA is happening.  When processing RX interrupts we
1145          * never remove/process the last, self-linked, entry on the
1146          * descriptor list.  This insures the hardware always has
1147          * someplace to write a new frame.
1148          */
1149         ds = bf->desc;
1150         ds->ds_link = bf->daddr;        /* link to self */
1151         ds->ds_data = bf->skbaddr;
1152         ah->ah_setup_rx_desc(ah, ds,
1153                 skb_tailroom(skb),      /* buffer size */
1154                 0);
1155
1156         if (sc->rxlink != NULL)
1157                 *sc->rxlink = bf->daddr;
1158         sc->rxlink = &ds->ds_link;
1159         return 0;
1160 }
1161
1162 static int
1163 ath5k_txbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf)
1164 {
1165         struct ath5k_hw *ah = sc->ah;
1166         struct ath5k_txq *txq = sc->txq;
1167         struct ath5k_desc *ds = bf->desc;
1168         struct sk_buff *skb = bf->skb;
1169         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1170         unsigned int pktlen, flags, keyidx = AR5K_TXKEYIX_INVALID;
1171         int ret;
1172
1173         flags = AR5K_TXDESC_INTREQ | AR5K_TXDESC_CLRDMASK;
1174
1175         /* XXX endianness */
1176         bf->skbaddr = pci_map_single(sc->pdev, skb->data, skb->len,
1177                         PCI_DMA_TODEVICE);
1178
1179         if (info->flags & IEEE80211_TX_CTL_NO_ACK)
1180                 flags |= AR5K_TXDESC_NOACK;
1181
1182         pktlen = skb->len;
1183
1184         if (info->control.hw_key) {
1185                 keyidx = info->control.hw_key->hw_key_idx;
1186                 pktlen += info->control.icv_len;
1187         }
1188         ret = ah->ah_setup_tx_desc(ah, ds, pktlen,
1189                 ieee80211_get_hdrlen_from_skb(skb), AR5K_PKT_TYPE_NORMAL,
1190                 (sc->power_level * 2),
1191                 ieee80211_get_tx_rate(sc->hw, info)->hw_value,
1192                 info->control.retry_limit, keyidx, 0, flags, 0, 0);
1193         if (ret)
1194                 goto err_unmap;
1195
1196         ds->ds_link = 0;
1197         ds->ds_data = bf->skbaddr;
1198
1199         spin_lock_bh(&txq->lock);
1200         list_add_tail(&bf->list, &txq->q);
1201         sc->tx_stats[txq->qnum].len++;
1202         if (txq->link == NULL) /* is this first packet? */
1203                 ath5k_hw_set_txdp(ah, txq->qnum, bf->daddr);
1204         else /* no, so only link it */
1205                 *txq->link = bf->daddr;
1206
1207         txq->link = &ds->ds_link;
1208         ath5k_hw_start_tx_dma(ah, txq->qnum);
1209         mmiowb();
1210         spin_unlock_bh(&txq->lock);
1211
1212         return 0;
1213 err_unmap:
1214         pci_unmap_single(sc->pdev, bf->skbaddr, skb->len, PCI_DMA_TODEVICE);
1215         return ret;
1216 }
1217
1218 /*******************\
1219 * Descriptors setup *
1220 \*******************/
1221
1222 static int
1223 ath5k_desc_alloc(struct ath5k_softc *sc, struct pci_dev *pdev)
1224 {
1225         struct ath5k_desc *ds;
1226         struct ath5k_buf *bf;
1227         dma_addr_t da;
1228         unsigned int i;
1229         int ret;
1230
1231         /* allocate descriptors */
1232         sc->desc_len = sizeof(struct ath5k_desc) *
1233                         (ATH_TXBUF + ATH_RXBUF + ATH_BCBUF + 1);
1234         sc->desc = pci_alloc_consistent(pdev, sc->desc_len, &sc->desc_daddr);
1235         if (sc->desc == NULL) {
1236                 ATH5K_ERR(sc, "can't allocate descriptors\n");
1237                 ret = -ENOMEM;
1238                 goto err;
1239         }
1240         ds = sc->desc;
1241         da = sc->desc_daddr;
1242         ATH5K_DBG(sc, ATH5K_DEBUG_ANY, "DMA map: %p (%zu) -> %llx\n",
1243                 ds, sc->desc_len, (unsigned long long)sc->desc_daddr);
1244
1245         bf = kcalloc(1 + ATH_TXBUF + ATH_RXBUF + ATH_BCBUF,
1246                         sizeof(struct ath5k_buf), GFP_KERNEL);
1247         if (bf == NULL) {
1248                 ATH5K_ERR(sc, "can't allocate bufptr\n");
1249                 ret = -ENOMEM;
1250                 goto err_free;
1251         }
1252         sc->bufptr = bf;
1253
1254         INIT_LIST_HEAD(&sc->rxbuf);
1255         for (i = 0; i < ATH_RXBUF; i++, bf++, ds++, da += sizeof(*ds)) {
1256                 bf->desc = ds;
1257                 bf->daddr = da;
1258                 list_add_tail(&bf->list, &sc->rxbuf);
1259         }
1260
1261         INIT_LIST_HEAD(&sc->txbuf);
1262         sc->txbuf_len = ATH_TXBUF;
1263         for (i = 0; i < ATH_TXBUF; i++, bf++, ds++,
1264                         da += sizeof(*ds)) {
1265                 bf->desc = ds;
1266                 bf->daddr = da;
1267                 list_add_tail(&bf->list, &sc->txbuf);
1268         }
1269
1270         /* beacon buffer */
1271         bf->desc = ds;
1272         bf->daddr = da;
1273         sc->bbuf = bf;
1274
1275         return 0;
1276 err_free:
1277         pci_free_consistent(pdev, sc->desc_len, sc->desc, sc->desc_daddr);
1278 err:
1279         sc->desc = NULL;
1280         return ret;
1281 }
1282
1283 static void
1284 ath5k_desc_free(struct ath5k_softc *sc, struct pci_dev *pdev)
1285 {
1286         struct ath5k_buf *bf;
1287
1288         ath5k_txbuf_free(sc, sc->bbuf);
1289         list_for_each_entry(bf, &sc->txbuf, list)
1290                 ath5k_txbuf_free(sc, bf);
1291         list_for_each_entry(bf, &sc->rxbuf, list)
1292                 ath5k_txbuf_free(sc, bf);
1293
1294         /* Free memory associated with all descriptors */
1295         pci_free_consistent(pdev, sc->desc_len, sc->desc, sc->desc_daddr);
1296
1297         kfree(sc->bufptr);
1298         sc->bufptr = NULL;
1299 }
1300
1301
1302
1303
1304
1305 /**************\
1306 * Queues setup *
1307 \**************/
1308
1309 static struct ath5k_txq *
1310 ath5k_txq_setup(struct ath5k_softc *sc,
1311                 int qtype, int subtype)
1312 {
1313         struct ath5k_hw *ah = sc->ah;
1314         struct ath5k_txq *txq;
1315         struct ath5k_txq_info qi = {
1316                 .tqi_subtype = subtype,
1317                 .tqi_aifs = AR5K_TXQ_USEDEFAULT,
1318                 .tqi_cw_min = AR5K_TXQ_USEDEFAULT,
1319                 .tqi_cw_max = AR5K_TXQ_USEDEFAULT
1320         };
1321         int qnum;
1322
1323         /*
1324          * Enable interrupts only for EOL and DESC conditions.
1325          * We mark tx descriptors to receive a DESC interrupt
1326          * when a tx queue gets deep; otherwise waiting for the
1327          * EOL to reap descriptors.  Note that this is done to
1328          * reduce interrupt load and this only defers reaping
1329          * descriptors, never transmitting frames.  Aside from
1330          * reducing interrupts this also permits more concurrency.
1331          * The only potential downside is if the tx queue backs
1332          * up in which case the top half of the kernel may backup
1333          * due to a lack of tx descriptors.
1334          */
1335         qi.tqi_flags = AR5K_TXQ_FLAG_TXEOLINT_ENABLE |
1336                                 AR5K_TXQ_FLAG_TXDESCINT_ENABLE;
1337         qnum = ath5k_hw_setup_tx_queue(ah, qtype, &qi);
1338         if (qnum < 0) {
1339                 /*
1340                  * NB: don't print a message, this happens
1341                  * normally on parts with too few tx queues
1342                  */
1343                 return ERR_PTR(qnum);
1344         }
1345         if (qnum >= ARRAY_SIZE(sc->txqs)) {
1346                 ATH5K_ERR(sc, "hw qnum %u out of range, max %tu!\n",
1347                         qnum, ARRAY_SIZE(sc->txqs));
1348                 ath5k_hw_release_tx_queue(ah, qnum);
1349                 return ERR_PTR(-EINVAL);
1350         }
1351         txq = &sc->txqs[qnum];
1352         if (!txq->setup) {
1353                 txq->qnum = qnum;
1354                 txq->link = NULL;
1355                 INIT_LIST_HEAD(&txq->q);
1356                 spin_lock_init(&txq->lock);
1357                 txq->setup = true;
1358         }
1359         return &sc->txqs[qnum];
1360 }
1361
1362 static int
1363 ath5k_beaconq_setup(struct ath5k_hw *ah)
1364 {
1365         struct ath5k_txq_info qi = {
1366                 .tqi_aifs = AR5K_TXQ_USEDEFAULT,
1367                 .tqi_cw_min = AR5K_TXQ_USEDEFAULT,
1368                 .tqi_cw_max = AR5K_TXQ_USEDEFAULT,
1369                 /* NB: for dynamic turbo, don't enable any other interrupts */
1370                 .tqi_flags = AR5K_TXQ_FLAG_TXDESCINT_ENABLE
1371         };
1372
1373         return ath5k_hw_setup_tx_queue(ah, AR5K_TX_QUEUE_BEACON, &qi);
1374 }
1375
1376 static int
1377 ath5k_beaconq_config(struct ath5k_softc *sc)
1378 {
1379         struct ath5k_hw *ah = sc->ah;
1380         struct ath5k_txq_info qi;
1381         int ret;
1382
1383         ret = ath5k_hw_get_tx_queueprops(ah, sc->bhalq, &qi);
1384         if (ret)
1385                 return ret;
1386         if (sc->opmode == NL80211_IFTYPE_AP ||
1387                 sc->opmode == NL80211_IFTYPE_MESH_POINT) {
1388                 /*
1389                  * Always burst out beacon and CAB traffic
1390                  * (aifs = cwmin = cwmax = 0)
1391                  */
1392                 qi.tqi_aifs = 0;
1393                 qi.tqi_cw_min = 0;
1394                 qi.tqi_cw_max = 0;
1395         } else if (sc->opmode == NL80211_IFTYPE_ADHOC) {
1396                 /*
1397                  * Adhoc mode; backoff between 0 and (2 * cw_min).
1398                  */
1399                 qi.tqi_aifs = 0;
1400                 qi.tqi_cw_min = 0;
1401                 qi.tqi_cw_max = 2 * ah->ah_cw_min;
1402         }
1403
1404         ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
1405                 "beacon queueprops tqi_aifs:%d tqi_cw_min:%d tqi_cw_max:%d\n",
1406                 qi.tqi_aifs, qi.tqi_cw_min, qi.tqi_cw_max);
1407
1408         ret = ath5k_hw_set_tx_queueprops(ah, sc->bhalq, &qi);
1409         if (ret) {
1410                 ATH5K_ERR(sc, "%s: unable to update parameters for beacon "
1411                         "hardware queue!\n", __func__);
1412                 return ret;
1413         }
1414
1415         return ath5k_hw_reset_tx_queue(ah, sc->bhalq); /* push to h/w */;
1416 }
1417
1418 static void
1419 ath5k_txq_drainq(struct ath5k_softc *sc, struct ath5k_txq *txq)
1420 {
1421         struct ath5k_buf *bf, *bf0;
1422
1423         /*
1424          * NB: this assumes output has been stopped and
1425          *     we do not need to block ath5k_tx_tasklet
1426          */
1427         spin_lock_bh(&txq->lock);
1428         list_for_each_entry_safe(bf, bf0, &txq->q, list) {
1429                 ath5k_debug_printtxbuf(sc, bf);
1430
1431                 ath5k_txbuf_free(sc, bf);
1432
1433                 spin_lock_bh(&sc->txbuflock);
1434                 sc->tx_stats[txq->qnum].len--;
1435                 list_move_tail(&bf->list, &sc->txbuf);
1436                 sc->txbuf_len++;
1437                 spin_unlock_bh(&sc->txbuflock);
1438         }
1439         txq->link = NULL;
1440         spin_unlock_bh(&txq->lock);
1441 }
1442
1443 /*
1444  * Drain the transmit queues and reclaim resources.
1445  */
1446 static void
1447 ath5k_txq_cleanup(struct ath5k_softc *sc)
1448 {
1449         struct ath5k_hw *ah = sc->ah;
1450         unsigned int i;
1451
1452         /* XXX return value */
1453         if (likely(!test_bit(ATH_STAT_INVALID, sc->status))) {
1454                 /* don't touch the hardware if marked invalid */
1455                 ath5k_hw_stop_tx_dma(ah, sc->bhalq);
1456                 ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "beacon queue %x\n",
1457                         ath5k_hw_get_txdp(ah, sc->bhalq));
1458                 for (i = 0; i < ARRAY_SIZE(sc->txqs); i++)
1459                         if (sc->txqs[i].setup) {
1460                                 ath5k_hw_stop_tx_dma(ah, sc->txqs[i].qnum);
1461                                 ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "txq [%u] %x, "
1462                                         "link %p\n",
1463                                         sc->txqs[i].qnum,
1464                                         ath5k_hw_get_txdp(ah,
1465                                                         sc->txqs[i].qnum),
1466                                         sc->txqs[i].link);
1467                         }
1468         }
1469         ieee80211_wake_queues(sc->hw); /* XXX move to callers */
1470
1471         for (i = 0; i < ARRAY_SIZE(sc->txqs); i++)
1472                 if (sc->txqs[i].setup)
1473                         ath5k_txq_drainq(sc, &sc->txqs[i]);
1474 }
1475
1476 static void
1477 ath5k_txq_release(struct ath5k_softc *sc)
1478 {
1479         struct ath5k_txq *txq = sc->txqs;
1480         unsigned int i;
1481
1482         for (i = 0; i < ARRAY_SIZE(sc->txqs); i++, txq++)
1483                 if (txq->setup) {
1484                         ath5k_hw_release_tx_queue(sc->ah, txq->qnum);
1485                         txq->setup = false;
1486                 }
1487 }
1488
1489
1490
1491
1492 /*************\
1493 * RX Handling *
1494 \*************/
1495
1496 /*
1497  * Enable the receive h/w following a reset.
1498  */
1499 static int
1500 ath5k_rx_start(struct ath5k_softc *sc)
1501 {
1502         struct ath5k_hw *ah = sc->ah;
1503         struct ath5k_buf *bf;
1504         int ret;
1505
1506         sc->rxbufsize = roundup(IEEE80211_MAX_LEN, sc->cachelsz);
1507
1508         ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "cachelsz %u rxbufsize %u\n",
1509                 sc->cachelsz, sc->rxbufsize);
1510
1511         sc->rxlink = NULL;
1512
1513         spin_lock_bh(&sc->rxbuflock);
1514         list_for_each_entry(bf, &sc->rxbuf, list) {
1515                 ret = ath5k_rxbuf_setup(sc, bf);
1516                 if (ret != 0) {
1517                         spin_unlock_bh(&sc->rxbuflock);
1518                         goto err;
1519                 }
1520         }
1521         bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list);
1522         spin_unlock_bh(&sc->rxbuflock);
1523
1524         ath5k_hw_set_rxdp(ah, bf->daddr);
1525         ath5k_hw_start_rx_dma(ah);      /* enable recv descriptors */
1526         ath5k_mode_setup(sc);           /* set filters, etc. */
1527         ath5k_hw_start_rx_pcu(ah);      /* re-enable PCU/DMA engine */
1528
1529         return 0;
1530 err:
1531         return ret;
1532 }
1533
1534 /*
1535  * Disable the receive h/w in preparation for a reset.
1536  */
1537 static void
1538 ath5k_rx_stop(struct ath5k_softc *sc)
1539 {
1540         struct ath5k_hw *ah = sc->ah;
1541
1542         ath5k_hw_stop_rx_pcu(ah);       /* disable PCU */
1543         ath5k_hw_set_rx_filter(ah, 0);  /* clear recv filter */
1544         ath5k_hw_stop_rx_dma(ah);       /* disable DMA engine */
1545
1546         ath5k_debug_printrxbuffs(sc, ah);
1547
1548         sc->rxlink = NULL;              /* just in case */
1549 }
1550
1551 static unsigned int
1552 ath5k_rx_decrypted(struct ath5k_softc *sc, struct ath5k_desc *ds,
1553                 struct sk_buff *skb, struct ath5k_rx_status *rs)
1554 {
1555         struct ieee80211_hdr *hdr = (void *)skb->data;
1556         unsigned int keyix, hlen;
1557
1558         if (!(rs->rs_status & AR5K_RXERR_DECRYPT) &&
1559                         rs->rs_keyix != AR5K_RXKEYIX_INVALID)
1560                 return RX_FLAG_DECRYPTED;
1561
1562         /* Apparently when a default key is used to decrypt the packet
1563            the hw does not set the index used to decrypt.  In such cases
1564            get the index from the packet. */
1565         hlen = ieee80211_hdrlen(hdr->frame_control);
1566         if (ieee80211_has_protected(hdr->frame_control) &&
1567             !(rs->rs_status & AR5K_RXERR_DECRYPT) &&
1568             skb->len >= hlen + 4) {
1569                 keyix = skb->data[hlen + 3] >> 6;
1570
1571                 if (test_bit(keyix, sc->keymap))
1572                         return RX_FLAG_DECRYPTED;
1573         }
1574
1575         return 0;
1576 }
1577
1578
1579 static void
1580 ath5k_check_ibss_tsf(struct ath5k_softc *sc, struct sk_buff *skb,
1581                      struct ieee80211_rx_status *rxs)
1582 {
1583         u64 tsf, bc_tstamp;
1584         u32 hw_tu;
1585         struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
1586
1587         if (ieee80211_is_beacon(mgmt->frame_control) &&
1588             le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS &&
1589             memcmp(mgmt->bssid, sc->ah->ah_bssid, ETH_ALEN) == 0) {
1590                 /*
1591                  * Received an IBSS beacon with the same BSSID. Hardware *must*
1592                  * have updated the local TSF. We have to work around various
1593                  * hardware bugs, though...
1594                  */
1595                 tsf = ath5k_hw_get_tsf64(sc->ah);
1596                 bc_tstamp = le64_to_cpu(mgmt->u.beacon.timestamp);
1597                 hw_tu = TSF_TO_TU(tsf);
1598
1599                 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
1600                         "beacon %llx mactime %llx (diff %lld) tsf now %llx\n",
1601                         (unsigned long long)bc_tstamp,
1602                         (unsigned long long)rxs->mactime,
1603                         (unsigned long long)(rxs->mactime - bc_tstamp),
1604                         (unsigned long long)tsf);
1605
1606                 /*
1607                  * Sometimes the HW will give us a wrong tstamp in the rx
1608                  * status, causing the timestamp extension to go wrong.
1609                  * (This seems to happen especially with beacon frames bigger
1610                  * than 78 byte (incl. FCS))
1611                  * But we know that the receive timestamp must be later than the
1612                  * timestamp of the beacon since HW must have synced to that.
1613                  *
1614                  * NOTE: here we assume mactime to be after the frame was
1615                  * received, not like mac80211 which defines it at the start.
1616                  */
1617                 if (bc_tstamp > rxs->mactime) {
1618                         ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
1619                                 "fixing mactime from %llx to %llx\n",
1620                                 (unsigned long long)rxs->mactime,
1621                                 (unsigned long long)tsf);
1622                         rxs->mactime = tsf;
1623                 }
1624
1625                 /*
1626                  * Local TSF might have moved higher than our beacon timers,
1627                  * in that case we have to update them to continue sending
1628                  * beacons. This also takes care of synchronizing beacon sending
1629                  * times with other stations.
1630                  */
1631                 if (hw_tu >= sc->nexttbtt)
1632                         ath5k_beacon_update_timers(sc, bc_tstamp);
1633         }
1634 }
1635
1636
1637 static void
1638 ath5k_tasklet_rx(unsigned long data)
1639 {
1640         struct ieee80211_rx_status rxs = {};
1641         struct ath5k_rx_status rs = {};
1642         struct sk_buff *skb;
1643         struct ath5k_softc *sc = (void *)data;
1644         struct ath5k_buf *bf, *bf_last;
1645         struct ath5k_desc *ds;
1646         int ret;
1647         int hdrlen;
1648         int pad;
1649
1650         spin_lock(&sc->rxbuflock);
1651         if (list_empty(&sc->rxbuf)) {
1652                 ATH5K_WARN(sc, "empty rx buf pool\n");
1653                 goto unlock;
1654         }
1655         bf_last = list_entry(sc->rxbuf.prev, struct ath5k_buf, list);
1656         do {
1657                 rxs.flag = 0;
1658
1659                 bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list);
1660                 BUG_ON(bf->skb == NULL);
1661                 skb = bf->skb;
1662                 ds = bf->desc;
1663
1664                 /*
1665                  * last buffer must not be freed to ensure proper hardware
1666                  * function. When the hardware finishes also a packet next to
1667                  * it, we are sure, it doesn't use it anymore and we can go on.
1668                  */
1669                 if (bf_last == bf)
1670                         bf->flags |= 1;
1671                 if (bf->flags) {
1672                         struct ath5k_buf *bf_next = list_entry(bf->list.next,
1673                                         struct ath5k_buf, list);
1674                         ret = sc->ah->ah_proc_rx_desc(sc->ah, bf_next->desc,
1675                                         &rs);
1676                         if (ret)
1677                                 break;
1678                         bf->flags &= ~1;
1679                         /* skip the overwritten one (even status is martian) */
1680                         goto next;
1681                 }
1682
1683                 ret = sc->ah->ah_proc_rx_desc(sc->ah, ds, &rs);
1684                 if (unlikely(ret == -EINPROGRESS))
1685                         break;
1686                 else if (unlikely(ret)) {
1687                         ATH5K_ERR(sc, "error in processing rx descriptor\n");
1688                         spin_unlock(&sc->rxbuflock);
1689                         return;
1690                 }
1691
1692                 if (unlikely(rs.rs_more)) {
1693                         ATH5K_WARN(sc, "unsupported jumbo\n");
1694                         goto next;
1695                 }
1696
1697                 if (unlikely(rs.rs_status)) {
1698                         if (rs.rs_status & AR5K_RXERR_PHY)
1699                                 goto next;
1700                         if (rs.rs_status & AR5K_RXERR_DECRYPT) {
1701                                 /*
1702                                  * Decrypt error.  If the error occurred
1703                                  * because there was no hardware key, then
1704                                  * let the frame through so the upper layers
1705                                  * can process it.  This is necessary for 5210
1706                                  * parts which have no way to setup a ``clear''
1707                                  * key cache entry.
1708                                  *
1709                                  * XXX do key cache faulting
1710                                  */
1711                                 if (rs.rs_keyix == AR5K_RXKEYIX_INVALID &&
1712                                     !(rs.rs_status & AR5K_RXERR_CRC))
1713                                         goto accept;
1714                         }
1715                         if (rs.rs_status & AR5K_RXERR_MIC) {
1716                                 rxs.flag |= RX_FLAG_MMIC_ERROR;
1717                                 goto accept;
1718                         }
1719
1720                         /* let crypto-error packets fall through in MNTR */
1721                         if ((rs.rs_status &
1722                                 ~(AR5K_RXERR_DECRYPT|AR5K_RXERR_MIC)) ||
1723                                         sc->opmode != NL80211_IFTYPE_MONITOR)
1724                                 goto next;
1725                 }
1726 accept:
1727                 pci_unmap_single(sc->pdev, bf->skbaddr, sc->rxbufsize,
1728                                 PCI_DMA_FROMDEVICE);
1729                 bf->skb = NULL;
1730
1731                 skb_put(skb, rs.rs_datalen);
1732
1733                 /*
1734                  * the hardware adds a padding to 4 byte boundaries between
1735                  * the header and the payload data if the header length is
1736                  * not multiples of 4 - remove it
1737                  */
1738                 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1739                 if (hdrlen & 3) {
1740                         pad = hdrlen % 4;
1741                         memmove(skb->data + pad, skb->data, hdrlen);
1742                         skb_pull(skb, pad);
1743                 }
1744
1745                 /*
1746                  * always extend the mac timestamp, since this information is
1747                  * also needed for proper IBSS merging.
1748                  *
1749                  * XXX: it might be too late to do it here, since rs_tstamp is
1750                  * 15bit only. that means TSF extension has to be done within
1751                  * 32768usec (about 32ms). it might be necessary to move this to
1752                  * the interrupt handler, like it is done in madwifi.
1753                  *
1754                  * Unfortunately we don't know when the hardware takes the rx
1755                  * timestamp (beginning of phy frame, data frame, end of rx?).
1756                  * The only thing we know is that it is hardware specific...
1757                  * On AR5213 it seems the rx timestamp is at the end of the
1758                  * frame, but i'm not sure.
1759                  *
1760                  * NOTE: mac80211 defines mactime at the beginning of the first
1761                  * data symbol. Since we don't have any time references it's
1762                  * impossible to comply to that. This affects IBSS merge only
1763                  * right now, so it's not too bad...
1764                  */
1765                 rxs.mactime = ath5k_extend_tsf(sc->ah, rs.rs_tstamp);
1766                 rxs.flag |= RX_FLAG_TSFT;
1767
1768                 rxs.freq = sc->curchan->center_freq;
1769                 rxs.band = sc->curband->band;
1770
1771                 rxs.noise = sc->ah->ah_noise_floor;
1772                 rxs.signal = rxs.noise + rs.rs_rssi;
1773                 rxs.qual = rs.rs_rssi * 100 / 64;
1774
1775                 rxs.antenna = rs.rs_antenna;
1776                 rxs.rate_idx = ath5k_hw_to_driver_rix(sc, rs.rs_rate);
1777                 rxs.flag |= ath5k_rx_decrypted(sc, ds, skb, &rs);
1778
1779                 if (rxs.rate_idx >= 0 && rs.rs_rate ==
1780                     sc->curband->bitrates[rxs.rate_idx].hw_value_short)
1781                         rxs.flag |= RX_FLAG_SHORTPRE;
1782
1783                 ath5k_debug_dump_skb(sc, skb, "RX  ", 0);
1784
1785                 /* check beacons in IBSS mode */
1786                 if (sc->opmode == NL80211_IFTYPE_ADHOC)
1787                         ath5k_check_ibss_tsf(sc, skb, &rxs);
1788
1789                 __ieee80211_rx(sc->hw, skb, &rxs);
1790 next:
1791                 list_move_tail(&bf->list, &sc->rxbuf);
1792         } while (ath5k_rxbuf_setup(sc, bf) == 0);
1793 unlock:
1794         spin_unlock(&sc->rxbuflock);
1795 }
1796
1797
1798
1799
1800 /*************\
1801 * TX Handling *
1802 \*************/
1803
1804 static void
1805 ath5k_tx_processq(struct ath5k_softc *sc, struct ath5k_txq *txq)
1806 {
1807         struct ath5k_tx_status ts = {};
1808         struct ath5k_buf *bf, *bf0;
1809         struct ath5k_desc *ds;
1810         struct sk_buff *skb;
1811         struct ieee80211_tx_info *info;
1812         int ret;
1813
1814         spin_lock(&txq->lock);
1815         list_for_each_entry_safe(bf, bf0, &txq->q, list) {
1816                 ds = bf->desc;
1817
1818                 ret = sc->ah->ah_proc_tx_desc(sc->ah, ds, &ts);
1819                 if (unlikely(ret == -EINPROGRESS))
1820                         break;
1821                 else if (unlikely(ret)) {
1822                         ATH5K_ERR(sc, "error %d while processing queue %u\n",
1823                                 ret, txq->qnum);
1824                         break;
1825                 }
1826
1827                 skb = bf->skb;
1828                 info = IEEE80211_SKB_CB(skb);
1829                 bf->skb = NULL;
1830
1831                 pci_unmap_single(sc->pdev, bf->skbaddr, skb->len,
1832                                 PCI_DMA_TODEVICE);
1833
1834                 info->status.retry_count = ts.ts_shortretry + ts.ts_longretry / 6;
1835                 if (unlikely(ts.ts_status)) {
1836                         sc->ll_stats.dot11ACKFailureCount++;
1837                         if (ts.ts_status & AR5K_TXERR_XRETRY)
1838                                 info->status.excessive_retries = 1;
1839                         else if (ts.ts_status & AR5K_TXERR_FILT)
1840                                 info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
1841                 } else {
1842                         info->flags |= IEEE80211_TX_STAT_ACK;
1843                         info->status.ack_signal = ts.ts_rssi;
1844                 }
1845
1846                 ieee80211_tx_status(sc->hw, skb);
1847                 sc->tx_stats[txq->qnum].count++;
1848
1849                 spin_lock(&sc->txbuflock);
1850                 sc->tx_stats[txq->qnum].len--;
1851                 list_move_tail(&bf->list, &sc->txbuf);
1852                 sc->txbuf_len++;
1853                 spin_unlock(&sc->txbuflock);
1854         }
1855         if (likely(list_empty(&txq->q)))
1856                 txq->link = NULL;
1857         spin_unlock(&txq->lock);
1858         if (sc->txbuf_len > ATH_TXBUF / 5)
1859                 ieee80211_wake_queues(sc->hw);
1860 }
1861
1862 static void
1863 ath5k_tasklet_tx(unsigned long data)
1864 {
1865         struct ath5k_softc *sc = (void *)data;
1866
1867         ath5k_tx_processq(sc, sc->txq);
1868 }
1869
1870
1871 /*****************\
1872 * Beacon handling *
1873 \*****************/
1874
1875 /*
1876  * Setup the beacon frame for transmit.
1877  */
1878 static int
1879 ath5k_beacon_setup(struct ath5k_softc *sc, struct ath5k_buf *bf)
1880 {
1881         struct sk_buff *skb = bf->skb;
1882         struct  ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1883         struct ath5k_hw *ah = sc->ah;
1884         struct ath5k_desc *ds;
1885         int ret, antenna = 0;
1886         u32 flags;
1887
1888         bf->skbaddr = pci_map_single(sc->pdev, skb->data, skb->len,
1889                         PCI_DMA_TODEVICE);
1890         ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "skb %p [data %p len %u] "
1891                         "skbaddr %llx\n", skb, skb->data, skb->len,
1892                         (unsigned long long)bf->skbaddr);
1893         if (pci_dma_mapping_error(sc->pdev, bf->skbaddr)) {
1894                 ATH5K_ERR(sc, "beacon DMA mapping failed\n");
1895                 return -EIO;
1896         }
1897
1898         ds = bf->desc;
1899
1900         flags = AR5K_TXDESC_NOACK;
1901         if (sc->opmode == NL80211_IFTYPE_ADHOC && ath5k_hw_hasveol(ah)) {
1902                 ds->ds_link = bf->daddr;        /* self-linked */
1903                 flags |= AR5K_TXDESC_VEOL;
1904                 /*
1905                  * Let hardware handle antenna switching if txantenna is not set
1906                  */
1907         } else {
1908                 ds->ds_link = 0;
1909                 /*
1910                  * Switch antenna every 4 beacons if txantenna is not set
1911                  * XXX assumes two antennas
1912                  */
1913                 if (antenna == 0)
1914                         antenna = sc->bsent & 4 ? 2 : 1;
1915         }
1916
1917         ds->ds_data = bf->skbaddr;
1918         ret = ah->ah_setup_tx_desc(ah, ds, skb->len,
1919                         ieee80211_get_hdrlen_from_skb(skb),
1920                         AR5K_PKT_TYPE_BEACON, (sc->power_level * 2),
1921                         ieee80211_get_tx_rate(sc->hw, info)->hw_value,
1922                         1, AR5K_TXKEYIX_INVALID,
1923                         antenna, flags, 0, 0);
1924         if (ret)
1925                 goto err_unmap;
1926
1927         return 0;
1928 err_unmap:
1929         pci_unmap_single(sc->pdev, bf->skbaddr, skb->len, PCI_DMA_TODEVICE);
1930         return ret;
1931 }
1932
1933 /*
1934  * Transmit a beacon frame at SWBA.  Dynamic updates to the
1935  * frame contents are done as needed and the slot time is
1936  * also adjusted based on current state.
1937  *
1938  * this is usually called from interrupt context (ath5k_intr())
1939  * but also from ath5k_beacon_config() in IBSS mode which in turn
1940  * can be called from a tasklet and user context
1941  */
1942 static void
1943 ath5k_beacon_send(struct ath5k_softc *sc)
1944 {
1945         struct ath5k_buf *bf = sc->bbuf;
1946         struct ath5k_hw *ah = sc->ah;
1947
1948         ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "in beacon_send\n");
1949
1950         if (unlikely(bf->skb == NULL || sc->opmode == NL80211_IFTYPE_STATION ||
1951                         sc->opmode == NL80211_IFTYPE_MONITOR)) {
1952                 ATH5K_WARN(sc, "bf=%p bf_skb=%p\n", bf, bf ? bf->skb : NULL);
1953                 return;
1954         }
1955         /*
1956          * Check if the previous beacon has gone out.  If
1957          * not don't don't try to post another, skip this
1958          * period and wait for the next.  Missed beacons
1959          * indicate a problem and should not occur.  If we
1960          * miss too many consecutive beacons reset the device.
1961          */
1962         if (unlikely(ath5k_hw_num_tx_pending(ah, sc->bhalq) != 0)) {
1963                 sc->bmisscount++;
1964                 ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
1965                         "missed %u consecutive beacons\n", sc->bmisscount);
1966                 if (sc->bmisscount > 3) {               /* NB: 3 is a guess */
1967                         ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
1968                                 "stuck beacon time (%u missed)\n",
1969                                 sc->bmisscount);
1970                         tasklet_schedule(&sc->restq);
1971                 }
1972                 return;
1973         }
1974         if (unlikely(sc->bmisscount != 0)) {
1975                 ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
1976                         "resume beacon xmit after %u misses\n",
1977                         sc->bmisscount);
1978                 sc->bmisscount = 0;
1979         }
1980
1981         /*
1982          * Stop any current dma and put the new frame on the queue.
1983          * This should never fail since we check above that no frames
1984          * are still pending on the queue.
1985          */
1986         if (unlikely(ath5k_hw_stop_tx_dma(ah, sc->bhalq))) {
1987                 ATH5K_WARN(sc, "beacon queue %u didn't stop?\n", sc->bhalq);
1988                 /* NB: hw still stops DMA, so proceed */
1989         }
1990
1991         ath5k_hw_set_txdp(ah, sc->bhalq, bf->daddr);
1992         ath5k_hw_start_tx_dma(ah, sc->bhalq);
1993         ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "TXDP[%u] = %llx (%p)\n",
1994                 sc->bhalq, (unsigned long long)bf->daddr, bf->desc);
1995
1996         sc->bsent++;
1997 }
1998
1999
2000 /**
2001  * ath5k_beacon_update_timers - update beacon timers
2002  *
2003  * @sc: struct ath5k_softc pointer we are operating on
2004  * @bc_tsf: the timestamp of the beacon. 0 to reset the TSF. -1 to perform a
2005  *          beacon timer update based on the current HW TSF.
2006  *
2007  * Calculate the next target beacon transmit time (TBTT) based on the timestamp
2008  * of a received beacon or the current local hardware TSF and write it to the
2009  * beacon timer registers.
2010  *
2011  * This is called in a variety of situations, e.g. when a beacon is received,
2012  * when a TSF update has been detected, but also when an new IBSS is created or
2013  * when we otherwise know we have to update the timers, but we keep it in this
2014  * function to have it all together in one place.
2015  */
2016 static void
2017 ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf)
2018 {
2019         struct ath5k_hw *ah = sc->ah;
2020         u32 nexttbtt, intval, hw_tu, bc_tu;
2021         u64 hw_tsf;
2022
2023         intval = sc->bintval & AR5K_BEACON_PERIOD;
2024         if (WARN_ON(!intval))
2025                 return;
2026
2027         /* beacon TSF converted to TU */
2028         bc_tu = TSF_TO_TU(bc_tsf);
2029
2030         /* current TSF converted to TU */
2031         hw_tsf = ath5k_hw_get_tsf64(ah);
2032         hw_tu = TSF_TO_TU(hw_tsf);
2033
2034 #define FUDGE 3
2035         /* we use FUDGE to make sure the next TBTT is ahead of the current TU */
2036         if (bc_tsf == -1) {
2037                 /*
2038                  * no beacons received, called internally.
2039                  * just need to refresh timers based on HW TSF.
2040                  */
2041                 nexttbtt = roundup(hw_tu + FUDGE, intval);
2042         } else if (bc_tsf == 0) {
2043                 /*
2044                  * no beacon received, probably called by ath5k_reset_tsf().
2045                  * reset TSF to start with 0.
2046                  */
2047                 nexttbtt = intval;
2048                 intval |= AR5K_BEACON_RESET_TSF;
2049         } else if (bc_tsf > hw_tsf) {
2050                 /*
2051                  * beacon received, SW merge happend but HW TSF not yet updated.
2052                  * not possible to reconfigure timers yet, but next time we
2053                  * receive a beacon with the same BSSID, the hardware will
2054                  * automatically update the TSF and then we need to reconfigure
2055                  * the timers.
2056                  */
2057                 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
2058                         "need to wait for HW TSF sync\n");
2059                 return;
2060         } else {
2061                 /*
2062                  * most important case for beacon synchronization between STA.
2063                  *
2064                  * beacon received and HW TSF has been already updated by HW.
2065                  * update next TBTT based on the TSF of the beacon, but make
2066                  * sure it is ahead of our local TSF timer.
2067                  */
2068                 nexttbtt = bc_tu + roundup(hw_tu + FUDGE - bc_tu, intval);
2069         }
2070 #undef FUDGE
2071
2072         sc->nexttbtt = nexttbtt;
2073
2074         intval |= AR5K_BEACON_ENA;
2075         ath5k_hw_init_beacon(ah, nexttbtt, intval);
2076
2077         /*
2078          * debugging output last in order to preserve the time critical aspect
2079          * of this function
2080          */
2081         if (bc_tsf == -1)
2082                 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
2083                         "reconfigured timers based on HW TSF\n");
2084         else if (bc_tsf == 0)
2085                 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
2086                         "reset HW TSF and timers\n");
2087         else
2088                 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
2089                         "updated timers based on beacon TSF\n");
2090
2091         ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
2092                           "bc_tsf %llx hw_tsf %llx bc_tu %u hw_tu %u nexttbtt %u\n",
2093                           (unsigned long long) bc_tsf,
2094                           (unsigned long long) hw_tsf, bc_tu, hw_tu, nexttbtt);
2095         ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "intval %u %s %s\n",
2096                 intval & AR5K_BEACON_PERIOD,
2097                 intval & AR5K_BEACON_ENA ? "AR5K_BEACON_ENA" : "",
2098                 intval & AR5K_BEACON_RESET_TSF ? "AR5K_BEACON_RESET_TSF" : "");
2099 }
2100
2101
2102 /**
2103  * ath5k_beacon_config - Configure the beacon queues and interrupts
2104  *
2105  * @sc: struct ath5k_softc pointer we are operating on
2106  *
2107  * When operating in station mode we want to receive a BMISS interrupt when we
2108  * stop seeing beacons from the AP we've associated with so we can look for
2109  * another AP to associate with.
2110  *
2111  * In IBSS mode we use a self-linked tx descriptor if possible. We enable SWBA
2112  * interrupts to detect TSF updates only.
2113  *
2114  * AP mode is missing.
2115  */
2116 static void
2117 ath5k_beacon_config(struct ath5k_softc *sc)
2118 {
2119         struct ath5k_hw *ah = sc->ah;
2120
2121         ath5k_hw_set_imr(ah, 0);
2122         sc->bmisscount = 0;
2123         sc->imask &= ~(AR5K_INT_BMISS | AR5K_INT_SWBA);
2124
2125         if (sc->opmode == NL80211_IFTYPE_STATION) {
2126                 sc->imask |= AR5K_INT_BMISS;
2127         } else if (sc->opmode == NL80211_IFTYPE_ADHOC) {
2128                 /*
2129                  * In IBSS mode we use a self-linked tx descriptor and let the
2130                  * hardware send the beacons automatically. We have to load it
2131                  * only once here.
2132                  * We use the SWBA interrupt only to keep track of the beacon
2133                  * timers in order to detect automatic TSF updates.
2134                  */
2135                 ath5k_beaconq_config(sc);
2136
2137                 sc->imask |= AR5K_INT_SWBA;
2138
2139                 if (ath5k_hw_hasveol(ah)) {
2140                         spin_lock(&sc->block);
2141                         ath5k_beacon_send(sc);
2142                         spin_unlock(&sc->block);
2143                 }
2144         }
2145         /* TODO else AP */
2146
2147         ath5k_hw_set_imr(ah, sc->imask);
2148 }
2149
2150
2151 /********************\
2152 * Interrupt handling *
2153 \********************/
2154
2155 static int
2156 ath5k_init(struct ath5k_softc *sc)
2157 {
2158         int ret;
2159
2160         mutex_lock(&sc->lock);
2161
2162         ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "mode %d\n", sc->opmode);
2163
2164         /*
2165          * Stop anything previously setup.  This is safe
2166          * no matter this is the first time through or not.
2167          */
2168         ath5k_stop_locked(sc);
2169
2170         /*
2171          * The basic interface to setting the hardware in a good
2172          * state is ``reset''.  On return the hardware is known to
2173          * be powered up and with interrupts disabled.  This must
2174          * be followed by initialization of the appropriate bits
2175          * and then setup of the interrupt mask.
2176          */
2177         sc->curchan = sc->hw->conf.channel;
2178         sc->curband = &sc->sbands[sc->curchan->band];
2179         sc->imask = AR5K_INT_RX | AR5K_INT_TX | AR5K_INT_RXEOL |
2180                 AR5K_INT_RXORN | AR5K_INT_FATAL | AR5K_INT_GLOBAL |
2181                 AR5K_INT_MIB;
2182         ret = ath5k_reset(sc, false, false);
2183         if (ret)
2184                 goto done;
2185
2186         /* Set ack to be sent at low bit-rates */
2187         ath5k_hw_set_ack_bitrate_high(sc->ah, false);
2188
2189         mod_timer(&sc->calib_tim, round_jiffies(jiffies +
2190                         msecs_to_jiffies(ath5k_calinterval * 1000)));
2191
2192         ret = 0;
2193 done:
2194         mmiowb();
2195         mutex_unlock(&sc->lock);
2196         return ret;
2197 }
2198
2199 static int
2200 ath5k_stop_locked(struct ath5k_softc *sc)
2201 {
2202         struct ath5k_hw *ah = sc->ah;
2203
2204         ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "invalid %u\n",
2205                         test_bit(ATH_STAT_INVALID, sc->status));
2206
2207         /*
2208          * Shutdown the hardware and driver:
2209          *    stop output from above
2210          *    disable interrupts
2211          *    turn off timers
2212          *    turn off the radio
2213          *    clear transmit machinery
2214          *    clear receive machinery
2215          *    drain and release tx queues
2216          *    reclaim beacon resources
2217          *    power down hardware
2218          *
2219          * Note that some of this work is not possible if the
2220          * hardware is gone (invalid).
2221          */
2222         ieee80211_stop_queues(sc->hw);
2223
2224         if (!test_bit(ATH_STAT_INVALID, sc->status)) {
2225                 ath5k_led_off(sc);
2226                 ath5k_hw_set_imr(ah, 0);
2227                 synchronize_irq(sc->pdev->irq);
2228         }
2229         ath5k_txq_cleanup(sc);
2230         if (!test_bit(ATH_STAT_INVALID, sc->status)) {
2231                 ath5k_rx_stop(sc);
2232                 ath5k_hw_phy_disable(ah);
2233         } else
2234                 sc->rxlink = NULL;
2235
2236         return 0;
2237 }
2238
2239 /*
2240  * Stop the device, grabbing the top-level lock to protect
2241  * against concurrent entry through ath5k_init (which can happen
2242  * if another thread does a system call and the thread doing the
2243  * stop is preempted).
2244  */
2245 static int
2246 ath5k_stop_hw(struct ath5k_softc *sc)
2247 {
2248         int ret;
2249
2250         mutex_lock(&sc->lock);
2251         ret = ath5k_stop_locked(sc);
2252         if (ret == 0 && !test_bit(ATH_STAT_INVALID, sc->status)) {
2253                 /*
2254                  * Set the chip in full sleep mode.  Note that we are
2255                  * careful to do this only when bringing the interface
2256                  * completely to a stop.  When the chip is in this state
2257                  * it must be carefully woken up or references to
2258                  * registers in the PCI clock domain may freeze the bus
2259                  * (and system).  This varies by chip and is mostly an
2260                  * issue with newer parts that go to sleep more quickly.
2261                  */
2262                 if (sc->ah->ah_mac_srev >= 0x78) {
2263                         /*
2264                          * XXX
2265                          * don't put newer MAC revisions > 7.8 to sleep because
2266                          * of the above mentioned problems
2267                          */
2268                         ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "mac version > 7.8, "
2269                                 "not putting device to sleep\n");
2270                 } else {
2271                         ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
2272                                 "putting device to full sleep\n");
2273                         ath5k_hw_set_power(sc->ah, AR5K_PM_FULL_SLEEP, true, 0);
2274                 }
2275         }
2276         ath5k_txbuf_free(sc, sc->bbuf);
2277         mmiowb();
2278         mutex_unlock(&sc->lock);
2279
2280         del_timer_sync(&sc->calib_tim);
2281         tasklet_kill(&sc->rxtq);
2282         tasklet_kill(&sc->txtq);
2283         tasklet_kill(&sc->restq);
2284
2285         return ret;
2286 }
2287
2288 static irqreturn_t
2289 ath5k_intr(int irq, void *dev_id)
2290 {
2291         struct ath5k_softc *sc = dev_id;
2292         struct ath5k_hw *ah = sc->ah;
2293         enum ath5k_int status;
2294         unsigned int counter = 1000;
2295
2296         if (unlikely(test_bit(ATH_STAT_INVALID, sc->status) ||
2297                                 !ath5k_hw_is_intr_pending(ah)))
2298                 return IRQ_NONE;
2299
2300         do {
2301                 /*
2302                  * Figure out the reason(s) for the interrupt.  Note
2303                  * that get_isr returns a pseudo-ISR that may include
2304                  * bits we haven't explicitly enabled so we mask the
2305                  * value to insure we only process bits we requested.
2306                  */
2307                 ath5k_hw_get_isr(ah, &status);          /* NB: clears IRQ too */
2308                 ATH5K_DBG(sc, ATH5K_DEBUG_INTR, "status 0x%x/0x%x\n",
2309                                 status, sc->imask);
2310                 status &= sc->imask; /* discard unasked for bits */
2311                 if (unlikely(status & AR5K_INT_FATAL)) {
2312                         /*
2313                          * Fatal errors are unrecoverable.
2314                          * Typically these are caused by DMA errors.
2315                          */
2316                         tasklet_schedule(&sc->restq);
2317                 } else if (unlikely(status & AR5K_INT_RXORN)) {
2318                         tasklet_schedule(&sc->restq);
2319                 } else {
2320                         if (status & AR5K_INT_SWBA) {
2321                                 /*
2322                                 * Software beacon alert--time to send a beacon.
2323                                 * Handle beacon transmission directly; deferring
2324                                 * this is too slow to meet timing constraints
2325                                 * under load.
2326                                 *
2327                                 * In IBSS mode we use this interrupt just to
2328                                 * keep track of the next TBTT (target beacon
2329                                 * transmission time) in order to detect wether
2330                                 * automatic TSF updates happened.
2331                                 */
2332                                 if (sc->opmode == NL80211_IFTYPE_ADHOC) {
2333                                          /* XXX: only if VEOL suppported */
2334                                         u64 tsf = ath5k_hw_get_tsf64(ah);
2335                                         sc->nexttbtt += sc->bintval;
2336                                         ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
2337                                                   "SWBA nexttbtt: %x hw_tu: %x "
2338                                                   "TSF: %llx\n",
2339                                                   sc->nexttbtt,
2340                                                   TSF_TO_TU(tsf),
2341                                                   (unsigned long long) tsf);
2342                                 } else {
2343                                         spin_lock(&sc->block);
2344                                         ath5k_beacon_send(sc);
2345                                         spin_unlock(&sc->block);
2346                                 }
2347                         }
2348                         if (status & AR5K_INT_RXEOL) {
2349                                 /*
2350                                 * NB: the hardware should re-read the link when
2351                                 *     RXE bit is written, but it doesn't work at
2352                                 *     least on older hardware revs.
2353                                 */
2354                                 sc->rxlink = NULL;
2355                         }
2356                         if (status & AR5K_INT_TXURN) {
2357                                 /* bump tx trigger level */
2358                                 ath5k_hw_update_tx_triglevel(ah, true);
2359                         }
2360                         if (status & AR5K_INT_RX)
2361                                 tasklet_schedule(&sc->rxtq);
2362                         if (status & AR5K_INT_TX)
2363                                 tasklet_schedule(&sc->txtq);
2364                         if (status & AR5K_INT_BMISS) {
2365                         }
2366                         if (status & AR5K_INT_MIB) {
2367                                 /*
2368                                  * These stats are also used for ANI i think
2369                                  * so how about updating them more often ?
2370                                  */
2371                                 ath5k_hw_update_mib_counters(ah, &sc->ll_stats);
2372                         }
2373                 }
2374         } while (ath5k_hw_is_intr_pending(ah) && counter-- > 0);
2375
2376         if (unlikely(!counter))
2377                 ATH5K_WARN(sc, "too many interrupts, giving up for now\n");
2378
2379         return IRQ_HANDLED;
2380 }
2381
2382 static void
2383 ath5k_tasklet_reset(unsigned long data)
2384 {
2385         struct ath5k_softc *sc = (void *)data;
2386
2387         ath5k_reset_wake(sc);
2388 }
2389
2390 /*
2391  * Periodically recalibrate the PHY to account
2392  * for temperature/environment changes.
2393  */
2394 static void
2395 ath5k_calibrate(unsigned long data)
2396 {
2397         struct ath5k_softc *sc = (void *)data;
2398         struct ath5k_hw *ah = sc->ah;
2399
2400         ATH5K_DBG(sc, ATH5K_DEBUG_CALIBRATE, "channel %u/%x\n",
2401                 ieee80211_frequency_to_channel(sc->curchan->center_freq),
2402                 sc->curchan->hw_value);
2403
2404         if (ath5k_hw_get_rf_gain(ah) == AR5K_RFGAIN_NEED_CHANGE) {
2405                 /*
2406                  * Rfgain is out of bounds, reset the chip
2407                  * to load new gain values.
2408                  */
2409                 ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "calibration, resetting\n");
2410                 ath5k_reset_wake(sc);
2411         }
2412         if (ath5k_hw_phy_calibrate(ah, sc->curchan))
2413                 ATH5K_ERR(sc, "calibration of channel %u failed\n",
2414                         ieee80211_frequency_to_channel(
2415                                 sc->curchan->center_freq));
2416
2417         mod_timer(&sc->calib_tim, round_jiffies(jiffies +
2418                         msecs_to_jiffies(ath5k_calinterval * 1000)));
2419 }
2420
2421
2422
2423 /***************\
2424 * LED functions *
2425 \***************/
2426
2427 static void
2428 ath5k_led_enable(struct ath5k_softc *sc)
2429 {
2430         if (test_bit(ATH_STAT_LEDSOFT, sc->status)) {
2431                 ath5k_hw_set_gpio_output(sc->ah, sc->led_pin);
2432                 ath5k_led_off(sc);
2433         }
2434 }
2435
2436 static void
2437 ath5k_led_on(struct ath5k_softc *sc)
2438 {
2439         if (!test_bit(ATH_STAT_LEDSOFT, sc->status))
2440                 return;
2441         ath5k_hw_set_gpio(sc->ah, sc->led_pin, sc->led_on);
2442 }
2443
2444 static void
2445 ath5k_led_off(struct ath5k_softc *sc)
2446 {
2447         if (!test_bit(ATH_STAT_LEDSOFT, sc->status))
2448                 return;
2449         ath5k_hw_set_gpio(sc->ah, sc->led_pin, !sc->led_on);
2450 }
2451
2452 static void
2453 ath5k_led_brightness_set(struct led_classdev *led_dev,
2454         enum led_brightness brightness)
2455 {
2456         struct ath5k_led *led = container_of(led_dev, struct ath5k_led,
2457                 led_dev);
2458
2459         if (brightness == LED_OFF)
2460                 ath5k_led_off(led->sc);
2461         else
2462                 ath5k_led_on(led->sc);
2463 }
2464
2465 static int
2466 ath5k_register_led(struct ath5k_softc *sc, struct ath5k_led *led,
2467                    const char *name, char *trigger)
2468 {
2469         int err;
2470
2471         led->sc = sc;
2472         strncpy(led->name, name, sizeof(led->name));
2473         led->led_dev.name = led->name;
2474         led->led_dev.default_trigger = trigger;
2475         led->led_dev.brightness_set = ath5k_led_brightness_set;
2476
2477         err = led_classdev_register(&sc->pdev->dev, &led->led_dev);
2478         if (err)
2479         {
2480                 ATH5K_WARN(sc, "could not register LED %s\n", name);
2481                 led->sc = NULL;
2482         }
2483         return err;
2484 }
2485
2486 static void
2487 ath5k_unregister_led(struct ath5k_led *led)
2488 {
2489         if (!led->sc)
2490                 return;
2491         led_classdev_unregister(&led->led_dev);
2492         ath5k_led_off(led->sc);
2493         led->sc = NULL;
2494 }
2495
2496 static void
2497 ath5k_unregister_leds(struct ath5k_softc *sc)
2498 {
2499         ath5k_unregister_led(&sc->rx_led);
2500         ath5k_unregister_led(&sc->tx_led);
2501 }
2502
2503
2504 static int
2505 ath5k_init_leds(struct ath5k_softc *sc)
2506 {
2507         int ret = 0;
2508         struct ieee80211_hw *hw = sc->hw;
2509         struct pci_dev *pdev = sc->pdev;
2510         char name[ATH5K_LED_MAX_NAME_LEN + 1];
2511
2512         /*
2513          * Auto-enable soft led processing for IBM cards and for
2514          * 5211 minipci cards.
2515          */
2516         if (pdev->device == PCI_DEVICE_ID_ATHEROS_AR5212_IBM ||
2517             pdev->device == PCI_DEVICE_ID_ATHEROS_AR5211) {
2518                 __set_bit(ATH_STAT_LEDSOFT, sc->status);
2519                 sc->led_pin = 0;
2520                 sc->led_on = 0;  /* active low */
2521         }
2522         /* Enable softled on PIN1 on HP Compaq nc6xx, nc4000 & nx5000 laptops */
2523         if (pdev->subsystem_vendor == PCI_VENDOR_ID_COMPAQ) {
2524                 __set_bit(ATH_STAT_LEDSOFT, sc->status);
2525                 sc->led_pin = 1;
2526                 sc->led_on = 1;  /* active high */
2527         }
2528         if (!test_bit(ATH_STAT_LEDSOFT, sc->status))
2529                 goto out;
2530
2531         ath5k_led_enable(sc);
2532
2533         snprintf(name, sizeof(name), "ath5k-%s::rx", wiphy_name(hw->wiphy));
2534         ret = ath5k_register_led(sc, &sc->rx_led, name,
2535                 ieee80211_get_rx_led_name(hw));
2536         if (ret)
2537                 goto out;
2538
2539         snprintf(name, sizeof(name), "ath5k-%s::tx", wiphy_name(hw->wiphy));
2540         ret = ath5k_register_led(sc, &sc->tx_led, name,
2541                 ieee80211_get_tx_led_name(hw));
2542 out:
2543         return ret;
2544 }
2545
2546
2547 /********************\
2548 * Mac80211 functions *
2549 \********************/
2550
2551 static int
2552 ath5k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
2553 {
2554         struct ath5k_softc *sc = hw->priv;
2555         struct ath5k_buf *bf;
2556         unsigned long flags;
2557         int hdrlen;
2558         int pad;
2559
2560         ath5k_debug_dump_skb(sc, skb, "TX  ", 1);
2561
2562         if (sc->opmode == NL80211_IFTYPE_MONITOR)
2563                 ATH5K_DBG(sc, ATH5K_DEBUG_XMIT, "tx in monitor (scan?)\n");
2564
2565         /*
2566          * the hardware expects the header padded to 4 byte boundaries
2567          * if this is not the case we add the padding after the header
2568          */
2569         hdrlen = ieee80211_get_hdrlen_from_skb(skb);
2570         if (hdrlen & 3) {
2571                 pad = hdrlen % 4;
2572                 if (skb_headroom(skb) < pad) {
2573                         ATH5K_ERR(sc, "tx hdrlen not %%4: %d not enough"
2574                                 " headroom to pad %d\n", hdrlen, pad);
2575                         return -1;
2576                 }
2577                 skb_push(skb, pad);
2578                 memmove(skb->data, skb->data+pad, hdrlen);
2579         }
2580
2581         spin_lock_irqsave(&sc->txbuflock, flags);
2582         if (list_empty(&sc->txbuf)) {
2583                 ATH5K_ERR(sc, "no further txbuf available, dropping packet\n");
2584                 spin_unlock_irqrestore(&sc->txbuflock, flags);
2585                 ieee80211_stop_queue(hw, skb_get_queue_mapping(skb));
2586                 return -1;
2587         }
2588         bf = list_first_entry(&sc->txbuf, struct ath5k_buf, list);
2589         list_del(&bf->list);
2590         sc->txbuf_len--;
2591         if (list_empty(&sc->txbuf))
2592                 ieee80211_stop_queues(hw);
2593         spin_unlock_irqrestore(&sc->txbuflock, flags);
2594
2595         bf->skb = skb;
2596
2597         if (ath5k_txbuf_setup(sc, bf)) {
2598                 bf->skb = NULL;
2599                 spin_lock_irqsave(&sc->txbuflock, flags);
2600                 list_add_tail(&bf->list, &sc->txbuf);
2601                 sc->txbuf_len++;
2602                 spin_unlock_irqrestore(&sc->txbuflock, flags);
2603                 dev_kfree_skb_any(skb);
2604                 return 0;
2605         }
2606
2607         return 0;
2608 }
2609
2610 static int
2611 ath5k_reset(struct ath5k_softc *sc, bool stop, bool change_channel)
2612 {
2613         struct ath5k_hw *ah = sc->ah;
2614         int ret;
2615
2616         ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "resetting\n");
2617
2618         if (stop) {
2619                 ath5k_hw_set_imr(ah, 0);
2620                 ath5k_txq_cleanup(sc);
2621                 ath5k_rx_stop(sc);
2622         }
2623         ret = ath5k_hw_reset(ah, sc->opmode, sc->curchan, true);
2624         if (ret) {
2625                 ATH5K_ERR(sc, "can't reset hardware (%d)\n", ret);
2626                 goto err;
2627         }
2628
2629         /*
2630          * This is needed only to setup initial state
2631          * but it's best done after a reset.
2632          */
2633         ath5k_hw_set_txpower_limit(sc->ah, 0);
2634
2635         ret = ath5k_rx_start(sc);
2636         if (ret) {
2637                 ATH5K_ERR(sc, "can't start recv logic\n");
2638                 goto err;
2639         }
2640
2641         /*
2642          * Change channels and update the h/w rate map if we're switching;
2643          * e.g. 11a to 11b/g.
2644          *
2645          * We may be doing a reset in response to an ioctl that changes the
2646          * channel so update any state that might change as a result.
2647          *
2648          * XXX needed?
2649          */
2650 /*      ath5k_chan_change(sc, c); */
2651
2652         ath5k_beacon_config(sc);
2653         /* intrs are enabled by ath5k_beacon_config */
2654
2655         return 0;
2656 err:
2657         return ret;
2658 }
2659
2660 static int
2661 ath5k_reset_wake(struct ath5k_softc *sc)
2662 {
2663         int ret;
2664
2665         ret = ath5k_reset(sc, true, true);
2666         if (!ret)
2667                 ieee80211_wake_queues(sc->hw);
2668
2669         return ret;
2670 }
2671
2672 static int ath5k_start(struct ieee80211_hw *hw)
2673 {
2674         return ath5k_init(hw->priv);
2675 }
2676
2677 static void ath5k_stop(struct ieee80211_hw *hw)
2678 {
2679         ath5k_stop_hw(hw->priv);
2680 }
2681
2682 static int ath5k_add_interface(struct ieee80211_hw *hw,
2683                 struct ieee80211_if_init_conf *conf)
2684 {
2685         struct ath5k_softc *sc = hw->priv;
2686         int ret;
2687
2688         mutex_lock(&sc->lock);
2689         if (sc->vif) {
2690                 ret = 0;
2691                 goto end;
2692         }
2693
2694         sc->vif = conf->vif;
2695
2696         switch (conf->type) {
2697         case NL80211_IFTYPE_STATION:
2698         case NL80211_IFTYPE_ADHOC:
2699         case NL80211_IFTYPE_MONITOR:
2700                 sc->opmode = conf->type;
2701                 break;
2702         default:
2703                 ret = -EOPNOTSUPP;
2704                 goto end;
2705         }
2706
2707         /* Set to a reasonable value. Note that this will
2708          * be set to mac80211's value at ath5k_config(). */
2709         sc->bintval = 1000;
2710
2711         ret = 0;
2712 end:
2713         mutex_unlock(&sc->lock);
2714         return ret;
2715 }
2716
2717 static void
2718 ath5k_remove_interface(struct ieee80211_hw *hw,
2719                         struct ieee80211_if_init_conf *conf)
2720 {
2721         struct ath5k_softc *sc = hw->priv;
2722
2723         mutex_lock(&sc->lock);
2724         if (sc->vif != conf->vif)
2725                 goto end;
2726
2727         sc->vif = NULL;
2728 end:
2729         mutex_unlock(&sc->lock);
2730 }
2731
2732 /*
2733  * TODO: Phy disable/diversity etc
2734  */
2735 static int
2736 ath5k_config(struct ieee80211_hw *hw,
2737                         struct ieee80211_conf *conf)
2738 {
2739         struct ath5k_softc *sc = hw->priv;
2740
2741         sc->bintval = conf->beacon_int;
2742         sc->power_level = conf->power_level;
2743
2744         return ath5k_chan_set(sc, conf->channel);
2745 }
2746
2747 static int
2748 ath5k_config_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2749                         struct ieee80211_if_conf *conf)
2750 {
2751         struct ath5k_softc *sc = hw->priv;
2752         struct ath5k_hw *ah = sc->ah;
2753         int ret;
2754
2755         mutex_lock(&sc->lock);
2756         if (sc->vif != vif) {
2757                 ret = -EIO;
2758                 goto unlock;
2759         }
2760         if (conf->bssid) {
2761                 /* Cache for later use during resets */
2762                 memcpy(ah->ah_bssid, conf->bssid, ETH_ALEN);
2763                 /* XXX: assoc id is set to 0 for now, mac80211 doesn't have
2764                  * a clean way of letting us retrieve this yet. */
2765                 ath5k_hw_set_associd(ah, ah->ah_bssid, 0);
2766                 mmiowb();
2767         }
2768
2769         if (conf->changed & IEEE80211_IFCC_BEACON &&
2770             vif->type == NL80211_IFTYPE_ADHOC) {
2771                 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2772                 if (!beacon) {
2773                         ret = -ENOMEM;
2774                         goto unlock;
2775                 }
2776                 /* call old handler for now */
2777                 ath5k_beacon_update(hw, beacon);
2778         }
2779
2780         mutex_unlock(&sc->lock);
2781
2782         return ath5k_reset_wake(sc);
2783 unlock:
2784         mutex_unlock(&sc->lock);
2785         return ret;
2786 }
2787
2788 #define SUPPORTED_FIF_FLAGS \
2789         FIF_PROMISC_IN_BSS |  FIF_ALLMULTI | FIF_FCSFAIL | \
2790         FIF_PLCPFAIL | FIF_CONTROL | FIF_OTHER_BSS | \
2791         FIF_BCN_PRBRESP_PROMISC
2792 /*
2793  * o always accept unicast, broadcast, and multicast traffic
2794  * o multicast traffic for all BSSIDs will be enabled if mac80211
2795  *   says it should be
2796  * o maintain current state of phy ofdm or phy cck error reception.
2797  *   If the hardware detects any of these type of errors then
2798  *   ath5k_hw_get_rx_filter() will pass to us the respective
2799  *   hardware filters to be able to receive these type of frames.
2800  * o probe request frames are accepted only when operating in
2801  *   hostap, adhoc, or monitor modes
2802  * o enable promiscuous mode according to the interface state
2803  * o accept beacons:
2804  *   - when operating in adhoc mode so the 802.11 layer creates
2805  *     node table entries for peers,
2806  *   - when operating in station mode for collecting rssi data when
2807  *     the station is otherwise quiet, or
2808  *   - when scanning
2809  */
2810 static void ath5k_configure_filter(struct ieee80211_hw *hw,
2811                 unsigned int changed_flags,
2812                 unsigned int *new_flags,
2813                 int mc_count, struct dev_mc_list *mclist)
2814 {
2815         struct ath5k_softc *sc = hw->priv;
2816         struct ath5k_hw *ah = sc->ah;
2817         u32 mfilt[2], val, rfilt;
2818         u8 pos;
2819         int i;
2820
2821         mfilt[0] = 0;
2822         mfilt[1] = 0;
2823
2824         /* Only deal with supported flags */
2825         changed_flags &= SUPPORTED_FIF_FLAGS;
2826         *new_flags &= SUPPORTED_FIF_FLAGS;
2827
2828         /* If HW detects any phy or radar errors, leave those filters on.
2829          * Also, always enable Unicast, Broadcasts and Multicast
2830          * XXX: move unicast, bssid broadcasts and multicast to mac80211 */
2831         rfilt = (ath5k_hw_get_rx_filter(ah) & (AR5K_RX_FILTER_PHYERR)) |
2832                 (AR5K_RX_FILTER_UCAST | AR5K_RX_FILTER_BCAST |
2833                 AR5K_RX_FILTER_MCAST);
2834
2835         if (changed_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS)) {
2836                 if (*new_flags & FIF_PROMISC_IN_BSS) {
2837                         rfilt |= AR5K_RX_FILTER_PROM;
2838                         __set_bit(ATH_STAT_PROMISC, sc->status);
2839                 }
2840                 else
2841                         __clear_bit(ATH_STAT_PROMISC, sc->status);
2842         }
2843
2844         /* Note, AR5K_RX_FILTER_MCAST is already enabled */
2845         if (*new_flags & FIF_ALLMULTI) {
2846                 mfilt[0] =  ~0;
2847                 mfilt[1] =  ~0;
2848         } else {
2849                 for (i = 0; i < mc_count; i++) {
2850                         if (!mclist)
2851                                 break;
2852                         /* calculate XOR of eight 6-bit values */
2853                         val = get_unaligned_le32(mclist->dmi_addr + 0);
2854                         pos = (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val;
2855                         val = get_unaligned_le32(mclist->dmi_addr + 3);
2856                         pos ^= (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val;
2857                         pos &= 0x3f;
2858                         mfilt[pos / 32] |= (1 << (pos % 32));
2859                         /* XXX: we might be able to just do this instead,
2860                         * but not sure, needs testing, if we do use this we'd
2861                         * neet to inform below to not reset the mcast */
2862                         /* ath5k_hw_set_mcast_filterindex(ah,
2863                          *      mclist->dmi_addr[5]); */
2864                         mclist = mclist->next;
2865                 }
2866         }
2867
2868         /* This is the best we can do */
2869         if (*new_flags & (FIF_FCSFAIL | FIF_PLCPFAIL))
2870                 rfilt |= AR5K_RX_FILTER_PHYERR;
2871
2872         /* FIF_BCN_PRBRESP_PROMISC really means to enable beacons
2873         * and probes for any BSSID, this needs testing */
2874         if (*new_flags & FIF_BCN_PRBRESP_PROMISC)
2875                 rfilt |= AR5K_RX_FILTER_BEACON | AR5K_RX_FILTER_PROBEREQ;
2876
2877         /* FIF_CONTROL doc says that if FIF_PROMISC_IN_BSS is not
2878          * set we should only pass on control frames for this
2879          * station. This needs testing. I believe right now this
2880          * enables *all* control frames, which is OK.. but
2881          * but we should see if we can improve on granularity */
2882         if (*new_flags & FIF_CONTROL)
2883                 rfilt |= AR5K_RX_FILTER_CONTROL;
2884
2885         /* Additional settings per mode -- this is per ath5k */
2886
2887         /* XXX move these to mac80211, and add a beacon IFF flag to mac80211 */
2888
2889         if (sc->opmode == NL80211_IFTYPE_MONITOR)
2890                 rfilt |= AR5K_RX_FILTER_CONTROL | AR5K_RX_FILTER_BEACON |
2891                         AR5K_RX_FILTER_PROBEREQ | AR5K_RX_FILTER_PROM;
2892         if (sc->opmode != NL80211_IFTYPE_STATION)
2893                 rfilt |= AR5K_RX_FILTER_PROBEREQ;
2894         if (sc->opmode != NL80211_IFTYPE_AP &&
2895                 sc->opmode != NL80211_IFTYPE_MESH_POINT &&
2896                 test_bit(ATH_STAT_PROMISC, sc->status))
2897                 rfilt |= AR5K_RX_FILTER_PROM;
2898         if (sc->opmode == NL80211_IFTYPE_STATION ||
2899                 sc->opmode == NL80211_IFTYPE_ADHOC) {
2900                 rfilt |= AR5K_RX_FILTER_BEACON;
2901         }
2902
2903         /* Set filters */
2904         ath5k_hw_set_rx_filter(ah,rfilt);
2905
2906         /* Set multicast bits */
2907         ath5k_hw_set_mcast_filter(ah, mfilt[0], mfilt[1]);
2908         /* Set the cached hw filter flags, this will alter actually
2909          * be set in HW */
2910         sc->filter_flags = rfilt;
2911 }
2912
2913 static int
2914 ath5k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
2915                 const u8 *local_addr, const u8 *addr,
2916                 struct ieee80211_key_conf *key)
2917 {
2918         struct ath5k_softc *sc = hw->priv;
2919         int ret = 0;
2920
2921         switch(key->alg) {
2922         case ALG_WEP:
2923         /* XXX: fix hardware encryption, its not working. For now
2924          * allow software encryption */
2925                 /* break; */
2926         case ALG_TKIP:
2927         case ALG_CCMP:
2928                 return -EOPNOTSUPP;
2929         default:
2930                 WARN_ON(1);
2931                 return -EINVAL;
2932         }
2933
2934         mutex_lock(&sc->lock);
2935
2936         switch (cmd) {
2937         case SET_KEY:
2938                 ret = ath5k_hw_set_key(sc->ah, key->keyidx, key, addr);
2939                 if (ret) {
2940                         ATH5K_ERR(sc, "can't set the key\n");
2941                         goto unlock;
2942                 }
2943                 __set_bit(key->keyidx, sc->keymap);
2944                 key->hw_key_idx = key->keyidx;
2945                 break;
2946         case DISABLE_KEY:
2947                 ath5k_hw_reset_key(sc->ah, key->keyidx);
2948                 __clear_bit(key->keyidx, sc->keymap);
2949                 break;
2950         default:
2951                 ret = -EINVAL;
2952                 goto unlock;
2953         }
2954
2955 unlock:
2956         mmiowb();
2957         mutex_unlock(&sc->lock);
2958         return ret;
2959 }
2960
2961 static int
2962 ath5k_get_stats(struct ieee80211_hw *hw,
2963                 struct ieee80211_low_level_stats *stats)
2964 {
2965         struct ath5k_softc *sc = hw->priv;
2966         struct ath5k_hw *ah = sc->ah;
2967
2968         /* Force update */
2969         ath5k_hw_update_mib_counters(ah, &sc->ll_stats);
2970
2971         memcpy(stats, &sc->ll_stats, sizeof(sc->ll_stats));
2972
2973         return 0;
2974 }
2975
2976 static int
2977 ath5k_get_tx_stats(struct ieee80211_hw *hw,
2978                 struct ieee80211_tx_queue_stats *stats)
2979 {
2980         struct ath5k_softc *sc = hw->priv;
2981
2982         memcpy(stats, &sc->tx_stats, sizeof(sc->tx_stats));
2983
2984         return 0;
2985 }
2986
2987 static u64
2988 ath5k_get_tsf(struct ieee80211_hw *hw)
2989 {
2990         struct ath5k_softc *sc = hw->priv;
2991
2992         return ath5k_hw_get_tsf64(sc->ah);
2993 }
2994
2995 static void
2996 ath5k_reset_tsf(struct ieee80211_hw *hw)
2997 {
2998         struct ath5k_softc *sc = hw->priv;
2999
3000         /*
3001          * in IBSS mode we need to update the beacon timers too.
3002          * this will also reset the TSF if we call it with 0
3003          */
3004         if (sc->opmode == NL80211_IFTYPE_ADHOC)
3005                 ath5k_beacon_update_timers(sc, 0);
3006         else
3007                 ath5k_hw_reset_tsf(sc->ah);
3008 }
3009
3010 static int
3011 ath5k_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
3012 {
3013         struct ath5k_softc *sc = hw->priv;
3014         unsigned long flags;
3015         int ret;
3016
3017         ath5k_debug_dump_skb(sc, skb, "BC  ", 1);
3018
3019         if (sc->opmode != NL80211_IFTYPE_ADHOC) {
3020                 ret = -EIO;
3021                 goto end;
3022         }
3023
3024         spin_lock_irqsave(&sc->block, flags);
3025         ath5k_txbuf_free(sc, sc->bbuf);
3026         sc->bbuf->skb = skb;
3027         ret = ath5k_beacon_setup(sc, sc->bbuf);
3028         if (ret)
3029                 sc->bbuf->skb = NULL;
3030         spin_unlock_irqrestore(&sc->block, flags);
3031         if (!ret) {
3032                 ath5k_beacon_config(sc);
3033                 mmiowb();
3034         }
3035
3036 end:
3037         return ret;
3038 }
3039