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