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