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