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