John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1 | /* |
| 2 | |
| 3 | Broadcom BCM43xx wireless driver |
| 4 | |
| 5 | Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>, |
| 6 | Stefano Brivio <st3@riseup.net> |
| 7 | Michael Buesch <mbuesch@freenet.de> |
| 8 | Danny van Dyk <kugelfang@gentoo.org> |
| 9 | Andreas Jaggi <andreas.jaggi@waterwave.ch> |
| 10 | |
| 11 | Some parts of the code in this file are derived from the ipw2200 |
| 12 | driver Copyright(c) 2003 - 2004 Intel Corporation. |
| 13 | |
| 14 | This program is free software; you can redistribute it and/or modify |
| 15 | it under the terms of the GNU General Public License as published by |
| 16 | the Free Software Foundation; either version 2 of the License, or |
| 17 | (at your option) any later version. |
| 18 | |
| 19 | This program is distributed in the hope that it will be useful, |
| 20 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | GNU General Public License for more details. |
| 23 | |
| 24 | You should have received a copy of the GNU General Public License |
| 25 | along with this program; see the file COPYING. If not, write to |
| 26 | the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, |
| 27 | Boston, MA 02110-1301, USA. |
| 28 | |
| 29 | */ |
| 30 | |
| 31 | #include <linux/delay.h> |
| 32 | #include <linux/init.h> |
| 33 | #include <linux/moduleparam.h> |
| 34 | #include <linux/if_arp.h> |
| 35 | #include <linux/etherdevice.h> |
| 36 | #include <linux/version.h> |
| 37 | #include <linux/firmware.h> |
| 38 | #include <linux/wireless.h> |
| 39 | #include <linux/workqueue.h> |
| 40 | #include <linux/skbuff.h> |
Michael Buesch | d1ca6c4 | 2006-03-25 15:43:18 +0100 | [diff] [blame] | 41 | #include <linux/dma-mapping.h> |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 42 | #include <net/iw_handler.h> |
| 43 | |
| 44 | #include "bcm43xx.h" |
| 45 | #include "bcm43xx_main.h" |
| 46 | #include "bcm43xx_debugfs.h" |
| 47 | #include "bcm43xx_radio.h" |
| 48 | #include "bcm43xx_phy.h" |
| 49 | #include "bcm43xx_dma.h" |
| 50 | #include "bcm43xx_pio.h" |
| 51 | #include "bcm43xx_power.h" |
| 52 | #include "bcm43xx_wx.h" |
Michael Buesch | 6465ce1 | 2006-02-02 19:11:08 +0100 | [diff] [blame] | 53 | #include "bcm43xx_ethtool.h" |
Michael Buesch | f398f02 | 2006-02-23 21:15:39 +0100 | [diff] [blame] | 54 | #include "bcm43xx_xmit.h" |
Michael Buesch | b35d649 | 2006-04-13 02:32:58 +0200 | [diff] [blame] | 55 | #include "bcm43xx_sysfs.h" |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 56 | |
| 57 | |
| 58 | MODULE_DESCRIPTION("Broadcom BCM43xx wireless driver"); |
| 59 | MODULE_AUTHOR("Martin Langer"); |
| 60 | MODULE_AUTHOR("Stefano Brivio"); |
| 61 | MODULE_AUTHOR("Michael Buesch"); |
| 62 | MODULE_LICENSE("GPL"); |
| 63 | |
| 64 | #ifdef CONFIG_BCM947XX |
| 65 | extern char *nvram_get(char *name); |
| 66 | #endif |
| 67 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 68 | #if defined(CONFIG_BCM43XX_DMA) && defined(CONFIG_BCM43XX_PIO) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 69 | static int modparam_pio; |
| 70 | module_param_named(pio, modparam_pio, int, 0444); |
| 71 | MODULE_PARM_DESC(pio, "enable(1) / disable(0) PIO mode"); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 72 | #elif defined(CONFIG_BCM43XX_DMA) |
| 73 | # define modparam_pio 0 |
| 74 | #elif defined(CONFIG_BCM43XX_PIO) |
| 75 | # define modparam_pio 1 |
| 76 | #endif |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 77 | |
| 78 | static int modparam_bad_frames_preempt; |
| 79 | module_param_named(bad_frames_preempt, modparam_bad_frames_preempt, int, 0444); |
| 80 | MODULE_PARM_DESC(bad_frames_preempt, "enable(1) / disable(0) Bad Frames Preemption"); |
| 81 | |
| 82 | static int modparam_short_retry = BCM43xx_DEFAULT_SHORT_RETRY_LIMIT; |
| 83 | module_param_named(short_retry, modparam_short_retry, int, 0444); |
| 84 | MODULE_PARM_DESC(short_retry, "Short-Retry-Limit (0 - 15)"); |
| 85 | |
| 86 | static int modparam_long_retry = BCM43xx_DEFAULT_LONG_RETRY_LIMIT; |
| 87 | module_param_named(long_retry, modparam_long_retry, int, 0444); |
| 88 | MODULE_PARM_DESC(long_retry, "Long-Retry-Limit (0 - 15)"); |
| 89 | |
| 90 | static int modparam_locale = -1; |
| 91 | module_param_named(locale, modparam_locale, int, 0444); |
| 92 | MODULE_PARM_DESC(country, "Select LocaleCode 0-11 (For travelers)"); |
| 93 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 94 | static int modparam_noleds; |
| 95 | module_param_named(noleds, modparam_noleds, int, 0444); |
| 96 | MODULE_PARM_DESC(noleds, "Turn off all LED activity"); |
| 97 | |
| 98 | #ifdef CONFIG_BCM43XX_DEBUG |
| 99 | static char modparam_fwpostfix[64]; |
| 100 | module_param_string(fwpostfix, modparam_fwpostfix, 64, 0444); |
| 101 | MODULE_PARM_DESC(fwpostfix, "Postfix for .fw files. Useful for debugging."); |
| 102 | #else |
| 103 | # define modparam_fwpostfix "" |
| 104 | #endif /* CONFIG_BCM43XX_DEBUG*/ |
| 105 | |
| 106 | |
| 107 | /* If you want to debug with just a single device, enable this, |
| 108 | * where the string is the pci device ID (as given by the kernel's |
| 109 | * pci_name function) of the device to be used. |
| 110 | */ |
| 111 | //#define DEBUG_SINGLE_DEVICE_ONLY "0001:11:00.0" |
| 112 | |
| 113 | /* If you want to enable printing of each MMIO access, enable this. */ |
| 114 | //#define DEBUG_ENABLE_MMIO_PRINT |
| 115 | |
| 116 | /* If you want to enable printing of MMIO access within |
| 117 | * ucode/pcm upload, initvals write, enable this. |
| 118 | */ |
| 119 | //#define DEBUG_ENABLE_UCODE_MMIO_PRINT |
| 120 | |
| 121 | /* If you want to enable printing of PCI Config Space access, enable this */ |
| 122 | //#define DEBUG_ENABLE_PCILOG |
| 123 | |
| 124 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 125 | /* Detailed list maintained at: |
| 126 | * http://openfacts.berlios.de/index-en.phtml?title=Bcm43xxDevices |
| 127 | */ |
| 128 | static struct pci_device_id bcm43xx_pci_tbl[] = { |
| 129 | /* Broadcom 4303 802.11b */ |
| 130 | { PCI_VENDOR_ID_BROADCOM, 0x4301, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
Stefano Brivio | ec000ca9 | 2006-05-05 02:58:29 +0200 | [diff] [blame] | 131 | /* Broadcom 4307 802.11b */ |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 132 | { PCI_VENDOR_ID_BROADCOM, 0x4307, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
Stefano Brivio | ec000ca9 | 2006-05-05 02:58:29 +0200 | [diff] [blame] | 133 | /* Broadcom 4318 802.11b/g */ |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 134 | { PCI_VENDOR_ID_BROADCOM, 0x4318, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
Stefano Brivio | f03cc4f | 2006-05-05 03:02:25 +0200 | [diff] [blame] | 135 | /* Broadcom 4319 802.11a/b/g */ |
| 136 | { PCI_VENDOR_ID_BROADCOM, 0x4319, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 137 | /* Broadcom 4306 802.11b/g */ |
| 138 | { PCI_VENDOR_ID_BROADCOM, 0x4320, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
Stefano Brivio | ec000ca9 | 2006-05-05 02:58:29 +0200 | [diff] [blame] | 139 | /* Broadcom 4306 802.11a */ |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 140 | // { PCI_VENDOR_ID_BROADCOM, 0x4321, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
| 141 | /* Broadcom 4309 802.11a/b/g */ |
| 142 | { PCI_VENDOR_ID_BROADCOM, 0x4324, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
| 143 | /* Broadcom 43XG 802.11b/g */ |
| 144 | { PCI_VENDOR_ID_BROADCOM, 0x4325, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 145 | #ifdef CONFIG_BCM947XX |
| 146 | /* SB bus on BCM947xx */ |
| 147 | { PCI_VENDOR_ID_BROADCOM, 0x0800, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
| 148 | #endif |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 149 | { 0 }, |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 150 | }; |
| 151 | MODULE_DEVICE_TABLE(pci, bcm43xx_pci_tbl); |
| 152 | |
| 153 | static void bcm43xx_ram_write(struct bcm43xx_private *bcm, u16 offset, u32 val) |
| 154 | { |
| 155 | u32 status; |
| 156 | |
| 157 | status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); |
| 158 | if (!(status & BCM43xx_SBF_XFER_REG_BYTESWAP)) |
| 159 | val = swab32(val); |
| 160 | |
| 161 | bcm43xx_write32(bcm, BCM43xx_MMIO_RAM_CONTROL, offset); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 162 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 163 | bcm43xx_write32(bcm, BCM43xx_MMIO_RAM_DATA, val); |
| 164 | } |
| 165 | |
| 166 | static inline |
| 167 | void bcm43xx_shm_control_word(struct bcm43xx_private *bcm, |
| 168 | u16 routing, u16 offset) |
| 169 | { |
| 170 | u32 control; |
| 171 | |
| 172 | /* "offset" is the WORD offset. */ |
| 173 | |
| 174 | control = routing; |
| 175 | control <<= 16; |
| 176 | control |= offset; |
| 177 | bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_CONTROL, control); |
| 178 | } |
| 179 | |
| 180 | u32 bcm43xx_shm_read32(struct bcm43xx_private *bcm, |
| 181 | u16 routing, u16 offset) |
| 182 | { |
| 183 | u32 ret; |
| 184 | |
| 185 | if (routing == BCM43xx_SHM_SHARED) { |
| 186 | if (offset & 0x0003) { |
| 187 | /* Unaligned access */ |
| 188 | bcm43xx_shm_control_word(bcm, routing, offset >> 2); |
| 189 | ret = bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED); |
| 190 | ret <<= 16; |
| 191 | bcm43xx_shm_control_word(bcm, routing, (offset >> 2) + 1); |
| 192 | ret |= bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA); |
| 193 | |
| 194 | return ret; |
| 195 | } |
| 196 | offset >>= 2; |
| 197 | } |
| 198 | bcm43xx_shm_control_word(bcm, routing, offset); |
| 199 | ret = bcm43xx_read32(bcm, BCM43xx_MMIO_SHM_DATA); |
| 200 | |
| 201 | return ret; |
| 202 | } |
| 203 | |
| 204 | u16 bcm43xx_shm_read16(struct bcm43xx_private *bcm, |
| 205 | u16 routing, u16 offset) |
| 206 | { |
| 207 | u16 ret; |
| 208 | |
| 209 | if (routing == BCM43xx_SHM_SHARED) { |
| 210 | if (offset & 0x0003) { |
| 211 | /* Unaligned access */ |
| 212 | bcm43xx_shm_control_word(bcm, routing, offset >> 2); |
| 213 | ret = bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED); |
| 214 | |
| 215 | return ret; |
| 216 | } |
| 217 | offset >>= 2; |
| 218 | } |
| 219 | bcm43xx_shm_control_word(bcm, routing, offset); |
| 220 | ret = bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA); |
| 221 | |
| 222 | return ret; |
| 223 | } |
| 224 | |
| 225 | void bcm43xx_shm_write32(struct bcm43xx_private *bcm, |
| 226 | u16 routing, u16 offset, |
| 227 | u32 value) |
| 228 | { |
| 229 | if (routing == BCM43xx_SHM_SHARED) { |
| 230 | if (offset & 0x0003) { |
| 231 | /* Unaligned access */ |
| 232 | bcm43xx_shm_control_word(bcm, routing, offset >> 2); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 233 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 234 | bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED, |
| 235 | (value >> 16) & 0xffff); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 236 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 237 | bcm43xx_shm_control_word(bcm, routing, (offset >> 2) + 1); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 238 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 239 | bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA, |
| 240 | value & 0xffff); |
| 241 | return; |
| 242 | } |
| 243 | offset >>= 2; |
| 244 | } |
| 245 | bcm43xx_shm_control_word(bcm, routing, offset); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 246 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 247 | bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA, value); |
| 248 | } |
| 249 | |
| 250 | void bcm43xx_shm_write16(struct bcm43xx_private *bcm, |
| 251 | u16 routing, u16 offset, |
| 252 | u16 value) |
| 253 | { |
| 254 | if (routing == BCM43xx_SHM_SHARED) { |
| 255 | if (offset & 0x0003) { |
| 256 | /* Unaligned access */ |
| 257 | bcm43xx_shm_control_word(bcm, routing, offset >> 2); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 258 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 259 | bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED, |
| 260 | value); |
| 261 | return; |
| 262 | } |
| 263 | offset >>= 2; |
| 264 | } |
| 265 | bcm43xx_shm_control_word(bcm, routing, offset); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 266 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 267 | bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA, value); |
| 268 | } |
| 269 | |
| 270 | void bcm43xx_tsf_read(struct bcm43xx_private *bcm, u64 *tsf) |
| 271 | { |
| 272 | /* We need to be careful. As we read the TSF from multiple |
| 273 | * registers, we should take care of register overflows. |
| 274 | * In theory, the whole tsf read process should be atomic. |
| 275 | * We try to be atomic here, by restaring the read process, |
| 276 | * if any of the high registers changed (overflew). |
| 277 | */ |
| 278 | if (bcm->current_core->rev >= 3) { |
| 279 | u32 low, high, high2; |
| 280 | |
| 281 | do { |
| 282 | high = bcm43xx_read32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_HIGH); |
| 283 | low = bcm43xx_read32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_LOW); |
| 284 | high2 = bcm43xx_read32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_HIGH); |
| 285 | } while (unlikely(high != high2)); |
| 286 | |
| 287 | *tsf = high; |
| 288 | *tsf <<= 32; |
| 289 | *tsf |= low; |
| 290 | } else { |
| 291 | u64 tmp; |
| 292 | u16 v0, v1, v2, v3; |
| 293 | u16 test1, test2, test3; |
| 294 | |
| 295 | do { |
| 296 | v3 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_3); |
| 297 | v2 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_2); |
| 298 | v1 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_1); |
| 299 | v0 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_0); |
| 300 | |
| 301 | test3 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_3); |
| 302 | test2 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_2); |
| 303 | test1 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_1); |
| 304 | } while (v3 != test3 || v2 != test2 || v1 != test1); |
| 305 | |
| 306 | *tsf = v3; |
| 307 | *tsf <<= 48; |
| 308 | tmp = v2; |
| 309 | tmp <<= 32; |
| 310 | *tsf |= tmp; |
| 311 | tmp = v1; |
| 312 | tmp <<= 16; |
| 313 | *tsf |= tmp; |
| 314 | *tsf |= v0; |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | void bcm43xx_tsf_write(struct bcm43xx_private *bcm, u64 tsf) |
| 319 | { |
| 320 | u32 status; |
| 321 | |
| 322 | status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); |
| 323 | status |= BCM43xx_SBF_TIME_UPDATE; |
| 324 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, status); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 325 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 326 | |
| 327 | /* Be careful with the in-progress timer. |
| 328 | * First zero out the low register, so we have a full |
| 329 | * register-overflow duration to complete the operation. |
| 330 | */ |
| 331 | if (bcm->current_core->rev >= 3) { |
| 332 | u32 lo = (tsf & 0x00000000FFFFFFFFULL); |
| 333 | u32 hi = (tsf & 0xFFFFFFFF00000000ULL) >> 32; |
| 334 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 335 | bcm43xx_write32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_LOW, 0); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 336 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 337 | bcm43xx_write32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_HIGH, hi); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 338 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 339 | bcm43xx_write32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_LOW, lo); |
| 340 | } else { |
| 341 | u16 v0 = (tsf & 0x000000000000FFFFULL); |
| 342 | u16 v1 = (tsf & 0x00000000FFFF0000ULL) >> 16; |
| 343 | u16 v2 = (tsf & 0x0000FFFF00000000ULL) >> 32; |
| 344 | u16 v3 = (tsf & 0xFFFF000000000000ULL) >> 48; |
| 345 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 346 | bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_0, 0); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 347 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 348 | bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_3, v3); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 349 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 350 | bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_2, v2); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 351 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 352 | bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_1, v1); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 353 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 354 | bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_0, v0); |
| 355 | } |
| 356 | |
| 357 | status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); |
| 358 | status &= ~BCM43xx_SBF_TIME_UPDATE; |
| 359 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, status); |
| 360 | } |
| 361 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 362 | static |
| 363 | void bcm43xx_macfilter_set(struct bcm43xx_private *bcm, |
| 364 | u16 offset, |
| 365 | const u8 *mac) |
| 366 | { |
| 367 | u16 data; |
| 368 | |
| 369 | offset |= 0x0020; |
| 370 | bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_CONTROL, offset); |
| 371 | |
| 372 | data = mac[0]; |
| 373 | data |= mac[1] << 8; |
| 374 | bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_DATA, data); |
| 375 | data = mac[2]; |
| 376 | data |= mac[3] << 8; |
| 377 | bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_DATA, data); |
| 378 | data = mac[4]; |
| 379 | data |= mac[5] << 8; |
| 380 | bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_DATA, data); |
| 381 | } |
| 382 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 383 | static void bcm43xx_macfilter_clear(struct bcm43xx_private *bcm, |
| 384 | u16 offset) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 385 | { |
| 386 | const u8 zero_addr[ETH_ALEN] = { 0 }; |
| 387 | |
| 388 | bcm43xx_macfilter_set(bcm, offset, zero_addr); |
| 389 | } |
| 390 | |
| 391 | static void bcm43xx_write_mac_bssid_templates(struct bcm43xx_private *bcm) |
| 392 | { |
| 393 | const u8 *mac = (const u8 *)(bcm->net_dev->dev_addr); |
| 394 | const u8 *bssid = (const u8 *)(bcm->ieee->bssid); |
| 395 | u8 mac_bssid[ETH_ALEN * 2]; |
| 396 | int i; |
| 397 | |
| 398 | memcpy(mac_bssid, mac, ETH_ALEN); |
| 399 | memcpy(mac_bssid + ETH_ALEN, bssid, ETH_ALEN); |
| 400 | |
| 401 | /* Write our MAC address and BSSID to template ram */ |
| 402 | for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32)) |
| 403 | bcm43xx_ram_write(bcm, 0x20 + i, *((u32 *)(mac_bssid + i))); |
| 404 | for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32)) |
| 405 | bcm43xx_ram_write(bcm, 0x78 + i, *((u32 *)(mac_bssid + i))); |
| 406 | for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32)) |
| 407 | bcm43xx_ram_write(bcm, 0x478 + i, *((u32 *)(mac_bssid + i))); |
| 408 | } |
| 409 | |
Michael Buesch | b5e868e | 2006-03-25 16:27:32 +0100 | [diff] [blame] | 410 | //FIXME: Well, we should probably call them from somewhere. |
| 411 | #if 0 |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 412 | static void bcm43xx_set_slot_time(struct bcm43xx_private *bcm, u16 slot_time) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 413 | { |
| 414 | /* slot_time is in usec. */ |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 415 | if (bcm43xx_current_phy(bcm)->type != BCM43xx_PHYTYPE_G) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 416 | return; |
| 417 | bcm43xx_write16(bcm, 0x684, 510 + slot_time); |
| 418 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0010, slot_time); |
| 419 | } |
| 420 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 421 | static void bcm43xx_short_slot_timing_enable(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 422 | { |
| 423 | bcm43xx_set_slot_time(bcm, 9); |
| 424 | } |
| 425 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 426 | static void bcm43xx_short_slot_timing_disable(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 427 | { |
| 428 | bcm43xx_set_slot_time(bcm, 20); |
| 429 | } |
Michael Buesch | b5e868e | 2006-03-25 16:27:32 +0100 | [diff] [blame] | 430 | #endif |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 431 | |
Michael Buesch | b5e868e | 2006-03-25 16:27:32 +0100 | [diff] [blame] | 432 | /* FIXME: To get the MAC-filter working, we need to implement the |
| 433 | * following functions (and rename them :) |
| 434 | */ |
| 435 | #if 0 |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 436 | static void bcm43xx_disassociate(struct bcm43xx_private *bcm) |
| 437 | { |
| 438 | bcm43xx_mac_suspend(bcm); |
| 439 | bcm43xx_macfilter_clear(bcm, BCM43xx_MACFILTER_ASSOC); |
| 440 | |
| 441 | bcm43xx_ram_write(bcm, 0x0026, 0x0000); |
| 442 | bcm43xx_ram_write(bcm, 0x0028, 0x0000); |
| 443 | bcm43xx_ram_write(bcm, 0x007E, 0x0000); |
| 444 | bcm43xx_ram_write(bcm, 0x0080, 0x0000); |
| 445 | bcm43xx_ram_write(bcm, 0x047E, 0x0000); |
| 446 | bcm43xx_ram_write(bcm, 0x0480, 0x0000); |
| 447 | |
| 448 | if (bcm->current_core->rev < 3) { |
| 449 | bcm43xx_write16(bcm, 0x0610, 0x8000); |
| 450 | bcm43xx_write16(bcm, 0x060E, 0x0000); |
| 451 | } else |
| 452 | bcm43xx_write32(bcm, 0x0188, 0x80000000); |
| 453 | |
| 454 | bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0004, 0x000003ff); |
| 455 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 456 | if (bcm43xx_current_phy(bcm)->type == BCM43xx_PHYTYPE_G && |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 457 | ieee80211_is_ofdm_rate(bcm->softmac->txrates.default_rate)) |
| 458 | bcm43xx_short_slot_timing_enable(bcm); |
| 459 | |
| 460 | bcm43xx_mac_enable(bcm); |
| 461 | } |
| 462 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 463 | static void bcm43xx_associate(struct bcm43xx_private *bcm, |
| 464 | const u8 *mac) |
| 465 | { |
| 466 | memcpy(bcm->ieee->bssid, mac, ETH_ALEN); |
| 467 | |
| 468 | bcm43xx_mac_suspend(bcm); |
| 469 | bcm43xx_macfilter_set(bcm, BCM43xx_MACFILTER_ASSOC, mac); |
| 470 | bcm43xx_write_mac_bssid_templates(bcm); |
| 471 | bcm43xx_mac_enable(bcm); |
| 472 | } |
Michael Buesch | b5e868e | 2006-03-25 16:27:32 +0100 | [diff] [blame] | 473 | #endif |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 474 | |
| 475 | /* Enable a Generic IRQ. "mask" is the mask of which IRQs to enable. |
| 476 | * Returns the _previously_ enabled IRQ mask. |
| 477 | */ |
| 478 | static inline u32 bcm43xx_interrupt_enable(struct bcm43xx_private *bcm, u32 mask) |
| 479 | { |
| 480 | u32 old_mask; |
| 481 | |
| 482 | old_mask = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK); |
| 483 | bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK, old_mask | mask); |
| 484 | |
| 485 | return old_mask; |
| 486 | } |
| 487 | |
| 488 | /* Disable a Generic IRQ. "mask" is the mask of which IRQs to disable. |
| 489 | * Returns the _previously_ enabled IRQ mask. |
| 490 | */ |
| 491 | static inline u32 bcm43xx_interrupt_disable(struct bcm43xx_private *bcm, u32 mask) |
| 492 | { |
| 493 | u32 old_mask; |
| 494 | |
| 495 | old_mask = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK); |
| 496 | bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK, old_mask & ~mask); |
| 497 | |
| 498 | return old_mask; |
| 499 | } |
| 500 | |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 501 | /* Synchronize IRQ top- and bottom-half. |
| 502 | * IRQs must be masked before calling this. |
| 503 | * This must not be called with the irq_lock held. |
| 504 | */ |
| 505 | static void bcm43xx_synchronize_irq(struct bcm43xx_private *bcm) |
| 506 | { |
| 507 | synchronize_irq(bcm->irq); |
| 508 | tasklet_disable(&bcm->isr_tasklet); |
| 509 | } |
| 510 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 511 | /* Make sure we don't receive more data from the device. */ |
| 512 | static int bcm43xx_disable_interrupts_sync(struct bcm43xx_private *bcm, u32 *oldstate) |
| 513 | { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 514 | unsigned long flags; |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 515 | u32 old; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 516 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 517 | bcm43xx_lock_irqonly(bcm, flags); |
| 518 | if (unlikely(bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED)) { |
| 519 | bcm43xx_unlock_irqonly(bcm, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 520 | return -EBUSY; |
| 521 | } |
| 522 | old = bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 523 | bcm43xx_unlock_irqonly(bcm, flags); |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 524 | bcm43xx_synchronize_irq(bcm); |
| 525 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 526 | if (oldstate) |
| 527 | *oldstate = old; |
| 528 | |
| 529 | return 0; |
| 530 | } |
| 531 | |
| 532 | static int bcm43xx_read_radioinfo(struct bcm43xx_private *bcm) |
| 533 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 534 | struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm); |
| 535 | struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 536 | u32 radio_id; |
| 537 | u16 manufact; |
| 538 | u16 version; |
| 539 | u8 revision; |
| 540 | s8 i; |
| 541 | |
| 542 | if (bcm->chip_id == 0x4317) { |
| 543 | if (bcm->chip_rev == 0x00) |
| 544 | radio_id = 0x3205017F; |
| 545 | else if (bcm->chip_rev == 0x01) |
| 546 | radio_id = 0x4205017F; |
| 547 | else |
| 548 | radio_id = 0x5205017F; |
| 549 | } else { |
| 550 | bcm43xx_write16(bcm, BCM43xx_MMIO_RADIO_CONTROL, BCM43xx_RADIOCTL_ID); |
| 551 | radio_id = bcm43xx_read16(bcm, BCM43xx_MMIO_RADIO_DATA_HIGH); |
| 552 | radio_id <<= 16; |
| 553 | bcm43xx_write16(bcm, BCM43xx_MMIO_RADIO_CONTROL, BCM43xx_RADIOCTL_ID); |
| 554 | radio_id |= bcm43xx_read16(bcm, BCM43xx_MMIO_RADIO_DATA_LOW); |
| 555 | } |
| 556 | |
| 557 | manufact = (radio_id & 0x00000FFF); |
| 558 | version = (radio_id & 0x0FFFF000) >> 12; |
| 559 | revision = (radio_id & 0xF0000000) >> 28; |
| 560 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 561 | dprintk(KERN_INFO PFX "Detected Radio: ID: %x (Manuf: %x Ver: %x Rev: %x)\n", |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 562 | radio_id, manufact, version, revision); |
| 563 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 564 | switch (phy->type) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 565 | case BCM43xx_PHYTYPE_A: |
| 566 | if ((version != 0x2060) || (revision != 1) || (manufact != 0x17f)) |
| 567 | goto err_unsupported_radio; |
| 568 | break; |
| 569 | case BCM43xx_PHYTYPE_B: |
| 570 | if ((version & 0xFFF0) != 0x2050) |
| 571 | goto err_unsupported_radio; |
| 572 | break; |
| 573 | case BCM43xx_PHYTYPE_G: |
| 574 | if (version != 0x2050) |
| 575 | goto err_unsupported_radio; |
| 576 | break; |
| 577 | } |
| 578 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 579 | radio->manufact = manufact; |
| 580 | radio->version = version; |
| 581 | radio->revision = revision; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 582 | |
| 583 | /* Set default attenuation values. */ |
Michael Buesch | 6ecb269 | 2006-03-20 00:01:04 +0100 | [diff] [blame] | 584 | radio->baseband_atten = bcm43xx_default_baseband_attenuation(bcm); |
| 585 | radio->radio_atten = bcm43xx_default_radio_attenuation(bcm); |
| 586 | radio->txctl1 = bcm43xx_default_txctl1(bcm); |
Michael Buesch | adc40e9 | 2006-03-25 20:36:57 +0100 | [diff] [blame] | 587 | radio->txctl2 = 0xFFFF; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 588 | if (phy->type == BCM43xx_PHYTYPE_A) |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 589 | radio->txpower_desired = bcm->sprom.maxpower_aphy; |
Michael Buesch | 393344f | 2006-02-05 15:28:20 +0100 | [diff] [blame] | 590 | else |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 591 | radio->txpower_desired = bcm->sprom.maxpower_bgphy; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 592 | |
| 593 | /* Initialize the in-memory nrssi Lookup Table. */ |
| 594 | for (i = 0; i < 64; i++) |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 595 | radio->nrssi_lt[i] = i; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 596 | |
| 597 | return 0; |
| 598 | |
| 599 | err_unsupported_radio: |
| 600 | printk(KERN_ERR PFX "Unsupported Radio connected to the PHY!\n"); |
| 601 | return -ENODEV; |
| 602 | } |
| 603 | |
| 604 | static const char * bcm43xx_locale_iso(u8 locale) |
| 605 | { |
| 606 | /* ISO 3166-1 country codes. |
| 607 | * Note that there aren't ISO 3166-1 codes for |
| 608 | * all or locales. (Not all locales are countries) |
| 609 | */ |
| 610 | switch (locale) { |
| 611 | case BCM43xx_LOCALE_WORLD: |
| 612 | case BCM43xx_LOCALE_ALL: |
| 613 | return "XX"; |
| 614 | case BCM43xx_LOCALE_THAILAND: |
| 615 | return "TH"; |
| 616 | case BCM43xx_LOCALE_ISRAEL: |
| 617 | return "IL"; |
| 618 | case BCM43xx_LOCALE_JORDAN: |
| 619 | return "JO"; |
| 620 | case BCM43xx_LOCALE_CHINA: |
| 621 | return "CN"; |
| 622 | case BCM43xx_LOCALE_JAPAN: |
| 623 | case BCM43xx_LOCALE_JAPAN_HIGH: |
| 624 | return "JP"; |
| 625 | case BCM43xx_LOCALE_USA_CANADA_ANZ: |
| 626 | case BCM43xx_LOCALE_USA_LOW: |
| 627 | return "US"; |
| 628 | case BCM43xx_LOCALE_EUROPE: |
| 629 | return "EU"; |
| 630 | case BCM43xx_LOCALE_NONE: |
| 631 | return " "; |
| 632 | } |
| 633 | assert(0); |
| 634 | return " "; |
| 635 | } |
| 636 | |
| 637 | static const char * bcm43xx_locale_string(u8 locale) |
| 638 | { |
| 639 | switch (locale) { |
| 640 | case BCM43xx_LOCALE_WORLD: |
| 641 | return "World"; |
| 642 | case BCM43xx_LOCALE_THAILAND: |
| 643 | return "Thailand"; |
| 644 | case BCM43xx_LOCALE_ISRAEL: |
| 645 | return "Israel"; |
| 646 | case BCM43xx_LOCALE_JORDAN: |
| 647 | return "Jordan"; |
| 648 | case BCM43xx_LOCALE_CHINA: |
| 649 | return "China"; |
| 650 | case BCM43xx_LOCALE_JAPAN: |
| 651 | return "Japan"; |
| 652 | case BCM43xx_LOCALE_USA_CANADA_ANZ: |
| 653 | return "USA/Canada/ANZ"; |
| 654 | case BCM43xx_LOCALE_EUROPE: |
| 655 | return "Europe"; |
| 656 | case BCM43xx_LOCALE_USA_LOW: |
| 657 | return "USAlow"; |
| 658 | case BCM43xx_LOCALE_JAPAN_HIGH: |
| 659 | return "JapanHigh"; |
| 660 | case BCM43xx_LOCALE_ALL: |
| 661 | return "All"; |
| 662 | case BCM43xx_LOCALE_NONE: |
| 663 | return "None"; |
| 664 | } |
| 665 | assert(0); |
| 666 | return ""; |
| 667 | } |
| 668 | |
| 669 | static inline u8 bcm43xx_crc8(u8 crc, u8 data) |
| 670 | { |
| 671 | static const u8 t[] = { |
| 672 | 0x00, 0xF7, 0xB9, 0x4E, 0x25, 0xD2, 0x9C, 0x6B, |
| 673 | 0x4A, 0xBD, 0xF3, 0x04, 0x6F, 0x98, 0xD6, 0x21, |
| 674 | 0x94, 0x63, 0x2D, 0xDA, 0xB1, 0x46, 0x08, 0xFF, |
| 675 | 0xDE, 0x29, 0x67, 0x90, 0xFB, 0x0C, 0x42, 0xB5, |
| 676 | 0x7F, 0x88, 0xC6, 0x31, 0x5A, 0xAD, 0xE3, 0x14, |
| 677 | 0x35, 0xC2, 0x8C, 0x7B, 0x10, 0xE7, 0xA9, 0x5E, |
| 678 | 0xEB, 0x1C, 0x52, 0xA5, 0xCE, 0x39, 0x77, 0x80, |
| 679 | 0xA1, 0x56, 0x18, 0xEF, 0x84, 0x73, 0x3D, 0xCA, |
| 680 | 0xFE, 0x09, 0x47, 0xB0, 0xDB, 0x2C, 0x62, 0x95, |
| 681 | 0xB4, 0x43, 0x0D, 0xFA, 0x91, 0x66, 0x28, 0xDF, |
| 682 | 0x6A, 0x9D, 0xD3, 0x24, 0x4F, 0xB8, 0xF6, 0x01, |
| 683 | 0x20, 0xD7, 0x99, 0x6E, 0x05, 0xF2, 0xBC, 0x4B, |
| 684 | 0x81, 0x76, 0x38, 0xCF, 0xA4, 0x53, 0x1D, 0xEA, |
| 685 | 0xCB, 0x3C, 0x72, 0x85, 0xEE, 0x19, 0x57, 0xA0, |
| 686 | 0x15, 0xE2, 0xAC, 0x5B, 0x30, 0xC7, 0x89, 0x7E, |
| 687 | 0x5F, 0xA8, 0xE6, 0x11, 0x7A, 0x8D, 0xC3, 0x34, |
| 688 | 0xAB, 0x5C, 0x12, 0xE5, 0x8E, 0x79, 0x37, 0xC0, |
| 689 | 0xE1, 0x16, 0x58, 0xAF, 0xC4, 0x33, 0x7D, 0x8A, |
| 690 | 0x3F, 0xC8, 0x86, 0x71, 0x1A, 0xED, 0xA3, 0x54, |
| 691 | 0x75, 0x82, 0xCC, 0x3B, 0x50, 0xA7, 0xE9, 0x1E, |
| 692 | 0xD4, 0x23, 0x6D, 0x9A, 0xF1, 0x06, 0x48, 0xBF, |
| 693 | 0x9E, 0x69, 0x27, 0xD0, 0xBB, 0x4C, 0x02, 0xF5, |
| 694 | 0x40, 0xB7, 0xF9, 0x0E, 0x65, 0x92, 0xDC, 0x2B, |
| 695 | 0x0A, 0xFD, 0xB3, 0x44, 0x2F, 0xD8, 0x96, 0x61, |
| 696 | 0x55, 0xA2, 0xEC, 0x1B, 0x70, 0x87, 0xC9, 0x3E, |
| 697 | 0x1F, 0xE8, 0xA6, 0x51, 0x3A, 0xCD, 0x83, 0x74, |
| 698 | 0xC1, 0x36, 0x78, 0x8F, 0xE4, 0x13, 0x5D, 0xAA, |
| 699 | 0x8B, 0x7C, 0x32, 0xC5, 0xAE, 0x59, 0x17, 0xE0, |
| 700 | 0x2A, 0xDD, 0x93, 0x64, 0x0F, 0xF8, 0xB6, 0x41, |
| 701 | 0x60, 0x97, 0xD9, 0x2E, 0x45, 0xB2, 0xFC, 0x0B, |
| 702 | 0xBE, 0x49, 0x07, 0xF0, 0x9B, 0x6C, 0x22, 0xD5, |
| 703 | 0xF4, 0x03, 0x4D, 0xBA, 0xD1, 0x26, 0x68, 0x9F, |
| 704 | }; |
| 705 | return t[crc ^ data]; |
| 706 | } |
| 707 | |
Michael Buesch | ad3f086 | 2006-02-19 14:12:22 +0100 | [diff] [blame] | 708 | static u8 bcm43xx_sprom_crc(const u16 *sprom) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 709 | { |
| 710 | int word; |
| 711 | u8 crc = 0xFF; |
| 712 | |
| 713 | for (word = 0; word < BCM43xx_SPROM_SIZE - 1; word++) { |
| 714 | crc = bcm43xx_crc8(crc, sprom[word] & 0x00FF); |
| 715 | crc = bcm43xx_crc8(crc, (sprom[word] & 0xFF00) >> 8); |
| 716 | } |
| 717 | crc = bcm43xx_crc8(crc, sprom[BCM43xx_SPROM_VERSION] & 0x00FF); |
| 718 | crc ^= 0xFF; |
| 719 | |
| 720 | return crc; |
| 721 | } |
| 722 | |
Michael Buesch | ea0922b | 2006-02-19 14:09:20 +0100 | [diff] [blame] | 723 | int bcm43xx_sprom_read(struct bcm43xx_private *bcm, u16 *sprom) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 724 | { |
| 725 | int i; |
Michael Buesch | ea0922b | 2006-02-19 14:09:20 +0100 | [diff] [blame] | 726 | u8 crc, expected_crc; |
| 727 | |
| 728 | for (i = 0; i < BCM43xx_SPROM_SIZE; i++) |
| 729 | sprom[i] = bcm43xx_read16(bcm, BCM43xx_SPROM_BASE + (i * 2)); |
| 730 | /* CRC-8 check. */ |
| 731 | crc = bcm43xx_sprom_crc(sprom); |
| 732 | expected_crc = (sprom[BCM43xx_SPROM_VERSION] & 0xFF00) >> 8; |
| 733 | if (crc != expected_crc) { |
| 734 | printk(KERN_WARNING PFX "WARNING: Invalid SPROM checksum " |
| 735 | "(0x%02X, expected: 0x%02X)\n", |
| 736 | crc, expected_crc); |
| 737 | return -EINVAL; |
| 738 | } |
| 739 | |
| 740 | return 0; |
| 741 | } |
| 742 | |
| 743 | int bcm43xx_sprom_write(struct bcm43xx_private *bcm, const u16 *sprom) |
| 744 | { |
| 745 | int i, err; |
| 746 | u8 crc, expected_crc; |
| 747 | u32 spromctl; |
| 748 | |
| 749 | /* CRC-8 validation of the input data. */ |
| 750 | crc = bcm43xx_sprom_crc(sprom); |
| 751 | expected_crc = (sprom[BCM43xx_SPROM_VERSION] & 0xFF00) >> 8; |
| 752 | if (crc != expected_crc) { |
| 753 | printk(KERN_ERR PFX "SPROM input data: Invalid CRC\n"); |
| 754 | return -EINVAL; |
| 755 | } |
| 756 | |
| 757 | printk(KERN_INFO PFX "Writing SPROM. Do NOT turn off the power! Please stand by...\n"); |
| 758 | err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_SPROMCTL, &spromctl); |
| 759 | if (err) |
| 760 | goto err_ctlreg; |
| 761 | spromctl |= 0x10; /* SPROM WRITE enable. */ |
| 762 | bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_SPROMCTL, spromctl); |
| 763 | if (err) |
| 764 | goto err_ctlreg; |
| 765 | /* We must burn lots of CPU cycles here, but that does not |
| 766 | * really matter as one does not write the SPROM every other minute... |
| 767 | */ |
| 768 | printk(KERN_INFO PFX "[ 0%%"); |
| 769 | mdelay(500); |
| 770 | for (i = 0; i < BCM43xx_SPROM_SIZE; i++) { |
| 771 | if (i == 16) |
| 772 | printk("25%%"); |
| 773 | else if (i == 32) |
| 774 | printk("50%%"); |
| 775 | else if (i == 48) |
| 776 | printk("75%%"); |
| 777 | else if (i % 2) |
| 778 | printk("."); |
| 779 | bcm43xx_write16(bcm, BCM43xx_SPROM_BASE + (i * 2), sprom[i]); |
Michael Buesch | efccb64 | 2006-03-11 13:39:14 +0100 | [diff] [blame] | 780 | mmiowb(); |
Michael Buesch | ea0922b | 2006-02-19 14:09:20 +0100 | [diff] [blame] | 781 | mdelay(20); |
| 782 | } |
| 783 | spromctl &= ~0x10; /* SPROM WRITE enable. */ |
| 784 | bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_SPROMCTL, spromctl); |
| 785 | if (err) |
| 786 | goto err_ctlreg; |
| 787 | mdelay(500); |
| 788 | printk("100%% ]\n"); |
| 789 | printk(KERN_INFO PFX "SPROM written.\n"); |
| 790 | bcm43xx_controller_restart(bcm, "SPROM update"); |
| 791 | |
| 792 | return 0; |
| 793 | err_ctlreg: |
| 794 | printk(KERN_ERR PFX "Could not access SPROM control register.\n"); |
| 795 | return -ENODEV; |
| 796 | } |
| 797 | |
| 798 | static int bcm43xx_sprom_extract(struct bcm43xx_private *bcm) |
| 799 | { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 800 | u16 value; |
| 801 | u16 *sprom; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 802 | #ifdef CONFIG_BCM947XX |
| 803 | char *c; |
| 804 | #endif |
| 805 | |
| 806 | sprom = kzalloc(BCM43xx_SPROM_SIZE * sizeof(u16), |
| 807 | GFP_KERNEL); |
| 808 | if (!sprom) { |
Michael Buesch | ea0922b | 2006-02-19 14:09:20 +0100 | [diff] [blame] | 809 | printk(KERN_ERR PFX "sprom_extract OOM\n"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 810 | return -ENOMEM; |
| 811 | } |
| 812 | #ifdef CONFIG_BCM947XX |
| 813 | sprom[BCM43xx_SPROM_BOARDFLAGS2] = atoi(nvram_get("boardflags2")); |
| 814 | sprom[BCM43xx_SPROM_BOARDFLAGS] = atoi(nvram_get("boardflags")); |
| 815 | |
| 816 | if ((c = nvram_get("il0macaddr")) != NULL) |
| 817 | e_aton(c, (char *) &(sprom[BCM43xx_SPROM_IL0MACADDR])); |
| 818 | |
| 819 | if ((c = nvram_get("et1macaddr")) != NULL) |
| 820 | e_aton(c, (char *) &(sprom[BCM43xx_SPROM_ET1MACADDR])); |
| 821 | |
| 822 | sprom[BCM43xx_SPROM_PA0B0] = atoi(nvram_get("pa0b0")); |
| 823 | sprom[BCM43xx_SPROM_PA0B1] = atoi(nvram_get("pa0b1")); |
| 824 | sprom[BCM43xx_SPROM_PA0B2] = atoi(nvram_get("pa0b2")); |
| 825 | |
| 826 | sprom[BCM43xx_SPROM_PA1B0] = atoi(nvram_get("pa1b0")); |
| 827 | sprom[BCM43xx_SPROM_PA1B1] = atoi(nvram_get("pa1b1")); |
| 828 | sprom[BCM43xx_SPROM_PA1B2] = atoi(nvram_get("pa1b2")); |
| 829 | |
| 830 | sprom[BCM43xx_SPROM_BOARDREV] = atoi(nvram_get("boardrev")); |
| 831 | #else |
Michael Buesch | ea0922b | 2006-02-19 14:09:20 +0100 | [diff] [blame] | 832 | bcm43xx_sprom_read(bcm, sprom); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 833 | #endif |
| 834 | |
| 835 | /* boardflags2 */ |
| 836 | value = sprom[BCM43xx_SPROM_BOARDFLAGS2]; |
| 837 | bcm->sprom.boardflags2 = value; |
| 838 | |
| 839 | /* il0macaddr */ |
| 840 | value = sprom[BCM43xx_SPROM_IL0MACADDR + 0]; |
| 841 | *(((u16 *)bcm->sprom.il0macaddr) + 0) = cpu_to_be16(value); |
| 842 | value = sprom[BCM43xx_SPROM_IL0MACADDR + 1]; |
| 843 | *(((u16 *)bcm->sprom.il0macaddr) + 1) = cpu_to_be16(value); |
| 844 | value = sprom[BCM43xx_SPROM_IL0MACADDR + 2]; |
| 845 | *(((u16 *)bcm->sprom.il0macaddr) + 2) = cpu_to_be16(value); |
| 846 | |
| 847 | /* et0macaddr */ |
| 848 | value = sprom[BCM43xx_SPROM_ET0MACADDR + 0]; |
| 849 | *(((u16 *)bcm->sprom.et0macaddr) + 0) = cpu_to_be16(value); |
| 850 | value = sprom[BCM43xx_SPROM_ET0MACADDR + 1]; |
| 851 | *(((u16 *)bcm->sprom.et0macaddr) + 1) = cpu_to_be16(value); |
| 852 | value = sprom[BCM43xx_SPROM_ET0MACADDR + 2]; |
| 853 | *(((u16 *)bcm->sprom.et0macaddr) + 2) = cpu_to_be16(value); |
| 854 | |
| 855 | /* et1macaddr */ |
| 856 | value = sprom[BCM43xx_SPROM_ET1MACADDR + 0]; |
| 857 | *(((u16 *)bcm->sprom.et1macaddr) + 0) = cpu_to_be16(value); |
| 858 | value = sprom[BCM43xx_SPROM_ET1MACADDR + 1]; |
| 859 | *(((u16 *)bcm->sprom.et1macaddr) + 1) = cpu_to_be16(value); |
| 860 | value = sprom[BCM43xx_SPROM_ET1MACADDR + 2]; |
| 861 | *(((u16 *)bcm->sprom.et1macaddr) + 2) = cpu_to_be16(value); |
| 862 | |
| 863 | /* ethernet phy settings */ |
| 864 | value = sprom[BCM43xx_SPROM_ETHPHY]; |
| 865 | bcm->sprom.et0phyaddr = (value & 0x001F); |
| 866 | bcm->sprom.et1phyaddr = (value & 0x03E0) >> 5; |
| 867 | bcm->sprom.et0mdcport = (value & (1 << 14)) >> 14; |
| 868 | bcm->sprom.et1mdcport = (value & (1 << 15)) >> 15; |
| 869 | |
| 870 | /* boardrev, antennas, locale */ |
| 871 | value = sprom[BCM43xx_SPROM_BOARDREV]; |
| 872 | bcm->sprom.boardrev = (value & 0x00FF); |
| 873 | bcm->sprom.locale = (value & 0x0F00) >> 8; |
| 874 | bcm->sprom.antennas_aphy = (value & 0x3000) >> 12; |
| 875 | bcm->sprom.antennas_bgphy = (value & 0xC000) >> 14; |
| 876 | if (modparam_locale != -1) { |
| 877 | if (modparam_locale >= 0 && modparam_locale <= 11) { |
| 878 | bcm->sprom.locale = modparam_locale; |
| 879 | printk(KERN_WARNING PFX "Operating with modified " |
| 880 | "LocaleCode %u (%s)\n", |
| 881 | bcm->sprom.locale, |
| 882 | bcm43xx_locale_string(bcm->sprom.locale)); |
| 883 | } else { |
| 884 | printk(KERN_WARNING PFX "Module parameter \"locale\" " |
| 885 | "invalid value. (0 - 11)\n"); |
| 886 | } |
| 887 | } |
| 888 | |
| 889 | /* pa0b* */ |
| 890 | value = sprom[BCM43xx_SPROM_PA0B0]; |
| 891 | bcm->sprom.pa0b0 = value; |
| 892 | value = sprom[BCM43xx_SPROM_PA0B1]; |
| 893 | bcm->sprom.pa0b1 = value; |
| 894 | value = sprom[BCM43xx_SPROM_PA0B2]; |
| 895 | bcm->sprom.pa0b2 = value; |
| 896 | |
| 897 | /* wl0gpio* */ |
| 898 | value = sprom[BCM43xx_SPROM_WL0GPIO0]; |
| 899 | if (value == 0x0000) |
| 900 | value = 0xFFFF; |
| 901 | bcm->sprom.wl0gpio0 = value & 0x00FF; |
| 902 | bcm->sprom.wl0gpio1 = (value & 0xFF00) >> 8; |
| 903 | value = sprom[BCM43xx_SPROM_WL0GPIO2]; |
| 904 | if (value == 0x0000) |
| 905 | value = 0xFFFF; |
| 906 | bcm->sprom.wl0gpio2 = value & 0x00FF; |
| 907 | bcm->sprom.wl0gpio3 = (value & 0xFF00) >> 8; |
| 908 | |
| 909 | /* maxpower */ |
| 910 | value = sprom[BCM43xx_SPROM_MAXPWR]; |
| 911 | bcm->sprom.maxpower_aphy = (value & 0xFF00) >> 8; |
| 912 | bcm->sprom.maxpower_bgphy = value & 0x00FF; |
| 913 | |
| 914 | /* pa1b* */ |
| 915 | value = sprom[BCM43xx_SPROM_PA1B0]; |
| 916 | bcm->sprom.pa1b0 = value; |
| 917 | value = sprom[BCM43xx_SPROM_PA1B1]; |
| 918 | bcm->sprom.pa1b1 = value; |
| 919 | value = sprom[BCM43xx_SPROM_PA1B2]; |
| 920 | bcm->sprom.pa1b2 = value; |
| 921 | |
| 922 | /* idle tssi target */ |
| 923 | value = sprom[BCM43xx_SPROM_IDL_TSSI_TGT]; |
| 924 | bcm->sprom.idle_tssi_tgt_aphy = value & 0x00FF; |
| 925 | bcm->sprom.idle_tssi_tgt_bgphy = (value & 0xFF00) >> 8; |
| 926 | |
| 927 | /* boardflags */ |
| 928 | value = sprom[BCM43xx_SPROM_BOARDFLAGS]; |
| 929 | if (value == 0xFFFF) |
| 930 | value = 0x0000; |
| 931 | bcm->sprom.boardflags = value; |
Michael Buesch | b3db5e5 | 2006-03-15 16:31:45 +0100 | [diff] [blame] | 932 | /* boardflags workarounds */ |
| 933 | if (bcm->board_vendor == PCI_VENDOR_ID_DELL && |
| 934 | bcm->chip_id == 0x4301 && |
| 935 | bcm->board_revision == 0x74) |
| 936 | bcm->sprom.boardflags |= BCM43xx_BFL_BTCOEXIST; |
| 937 | if (bcm->board_vendor == PCI_VENDOR_ID_APPLE && |
| 938 | bcm->board_type == 0x4E && |
| 939 | bcm->board_revision > 0x40) |
| 940 | bcm->sprom.boardflags |= BCM43xx_BFL_PACTRL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 941 | |
| 942 | /* antenna gain */ |
| 943 | value = sprom[BCM43xx_SPROM_ANTENNA_GAIN]; |
| 944 | if (value == 0x0000 || value == 0xFFFF) |
| 945 | value = 0x0202; |
| 946 | /* convert values to Q5.2 */ |
| 947 | bcm->sprom.antennagain_aphy = ((value & 0xFF00) >> 8) * 4; |
| 948 | bcm->sprom.antennagain_bgphy = (value & 0x00FF) * 4; |
| 949 | |
| 950 | kfree(sprom); |
| 951 | |
| 952 | return 0; |
| 953 | } |
| 954 | |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 955 | static int bcm43xx_geo_init(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 956 | { |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 957 | struct ieee80211_geo *geo; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 958 | struct ieee80211_channel *chan; |
| 959 | int have_a = 0, have_bg = 0; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 960 | int i; |
Michael Buesch | 9e4a375 | 2006-02-02 18:43:25 +0100 | [diff] [blame] | 961 | u8 channel; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 962 | struct bcm43xx_phyinfo *phy; |
| 963 | const char *iso_country; |
| 964 | |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 965 | geo = kzalloc(sizeof(*geo), GFP_KERNEL); |
| 966 | if (!geo) |
| 967 | return -ENOMEM; |
| 968 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 969 | for (i = 0; i < bcm->nr_80211_available; i++) { |
| 970 | phy = &(bcm->core_80211_ext[i].phy); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 971 | switch (phy->type) { |
| 972 | case BCM43xx_PHYTYPE_B: |
| 973 | case BCM43xx_PHYTYPE_G: |
| 974 | have_bg = 1; |
| 975 | break; |
| 976 | case BCM43xx_PHYTYPE_A: |
| 977 | have_a = 1; |
| 978 | break; |
| 979 | default: |
| 980 | assert(0); |
| 981 | } |
| 982 | } |
| 983 | iso_country = bcm43xx_locale_iso(bcm->sprom.locale); |
| 984 | |
| 985 | if (have_a) { |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 986 | for (i = 0, channel = IEEE80211_52GHZ_MIN_CHANNEL; |
| 987 | channel <= IEEE80211_52GHZ_MAX_CHANNEL; channel++) { |
| 988 | chan = &geo->a[i++]; |
Michael Buesch | 10d8dd8 | 2006-02-19 22:08:48 +0100 | [diff] [blame] | 989 | chan->freq = bcm43xx_channel_to_freq_a(channel); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 990 | chan->channel = channel; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 991 | } |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 992 | geo->a_channels = i; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 993 | } |
| 994 | if (have_bg) { |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 995 | for (i = 0, channel = IEEE80211_24GHZ_MIN_CHANNEL; |
| 996 | channel <= IEEE80211_24GHZ_MAX_CHANNEL; channel++) { |
| 997 | chan = &geo->bg[i++]; |
Michael Buesch | 10d8dd8 | 2006-02-19 22:08:48 +0100 | [diff] [blame] | 998 | chan->freq = bcm43xx_channel_to_freq_bg(channel); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 999 | chan->channel = channel; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1000 | } |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 1001 | geo->bg_channels = i; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1002 | } |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 1003 | memcpy(geo->name, iso_country, 2); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1004 | if (0 /*TODO: Outdoor use only */) |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 1005 | geo->name[2] = 'O'; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1006 | else if (0 /*TODO: Indoor use only */) |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 1007 | geo->name[2] = 'I'; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1008 | else |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 1009 | geo->name[2] = ' '; |
| 1010 | geo->name[3] = '\0'; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1011 | |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 1012 | ieee80211_set_geo(bcm->ieee, geo); |
| 1013 | kfree(geo); |
| 1014 | |
| 1015 | return 0; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1016 | } |
| 1017 | |
| 1018 | /* DummyTransmission function, as documented on |
| 1019 | * http://bcm-specs.sipsolutions.net/DummyTransmission |
| 1020 | */ |
| 1021 | void bcm43xx_dummy_transmission(struct bcm43xx_private *bcm) |
| 1022 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1023 | struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm); |
| 1024 | struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1025 | unsigned int i, max_loop; |
| 1026 | u16 value = 0; |
| 1027 | u32 buffer[5] = { |
| 1028 | 0x00000000, |
| 1029 | 0x0000D400, |
| 1030 | 0x00000000, |
| 1031 | 0x00000001, |
| 1032 | 0x00000000, |
| 1033 | }; |
| 1034 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1035 | switch (phy->type) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1036 | case BCM43xx_PHYTYPE_A: |
| 1037 | max_loop = 0x1E; |
| 1038 | buffer[0] = 0xCC010200; |
| 1039 | break; |
| 1040 | case BCM43xx_PHYTYPE_B: |
| 1041 | case BCM43xx_PHYTYPE_G: |
| 1042 | max_loop = 0xFA; |
| 1043 | buffer[0] = 0x6E840B00; |
| 1044 | break; |
| 1045 | default: |
| 1046 | assert(0); |
| 1047 | return; |
| 1048 | } |
| 1049 | |
| 1050 | for (i = 0; i < 5; i++) |
| 1051 | bcm43xx_ram_write(bcm, i * 4, buffer[i]); |
| 1052 | |
| 1053 | bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); /* dummy read */ |
| 1054 | |
| 1055 | bcm43xx_write16(bcm, 0x0568, 0x0000); |
| 1056 | bcm43xx_write16(bcm, 0x07C0, 0x0000); |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1057 | bcm43xx_write16(bcm, 0x050C, ((phy->type == BCM43xx_PHYTYPE_A) ? 1 : 0)); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1058 | bcm43xx_write16(bcm, 0x0508, 0x0000); |
| 1059 | bcm43xx_write16(bcm, 0x050A, 0x0000); |
| 1060 | bcm43xx_write16(bcm, 0x054C, 0x0000); |
| 1061 | bcm43xx_write16(bcm, 0x056A, 0x0014); |
| 1062 | bcm43xx_write16(bcm, 0x0568, 0x0826); |
| 1063 | bcm43xx_write16(bcm, 0x0500, 0x0000); |
| 1064 | bcm43xx_write16(bcm, 0x0502, 0x0030); |
| 1065 | |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 1066 | if (radio->version == 0x2050 && radio->revision <= 0x5) |
| 1067 | bcm43xx_radio_write16(bcm, 0x0051, 0x0017); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1068 | for (i = 0x00; i < max_loop; i++) { |
| 1069 | value = bcm43xx_read16(bcm, 0x050E); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 1070 | if (value & 0x0080) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1071 | break; |
| 1072 | udelay(10); |
| 1073 | } |
| 1074 | for (i = 0x00; i < 0x0A; i++) { |
| 1075 | value = bcm43xx_read16(bcm, 0x050E); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 1076 | if (value & 0x0400) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1077 | break; |
| 1078 | udelay(10); |
| 1079 | } |
| 1080 | for (i = 0x00; i < 0x0A; i++) { |
| 1081 | value = bcm43xx_read16(bcm, 0x0690); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 1082 | if (!(value & 0x0100)) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1083 | break; |
| 1084 | udelay(10); |
| 1085 | } |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 1086 | if (radio->version == 0x2050 && radio->revision <= 0x5) |
| 1087 | bcm43xx_radio_write16(bcm, 0x0051, 0x0037); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | static void key_write(struct bcm43xx_private *bcm, |
| 1091 | u8 index, u8 algorithm, const u16 *key) |
| 1092 | { |
| 1093 | unsigned int i, basic_wep = 0; |
| 1094 | u32 offset; |
| 1095 | u16 value; |
| 1096 | |
| 1097 | /* Write associated key information */ |
| 1098 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x100 + (index * 2), |
| 1099 | ((index << 4) | (algorithm & 0x0F))); |
| 1100 | |
| 1101 | /* The first 4 WEP keys need extra love */ |
| 1102 | if (((algorithm == BCM43xx_SEC_ALGO_WEP) || |
| 1103 | (algorithm == BCM43xx_SEC_ALGO_WEP104)) && (index < 4)) |
| 1104 | basic_wep = 1; |
| 1105 | |
| 1106 | /* Write key payload, 8 little endian words */ |
| 1107 | offset = bcm->security_offset + (index * BCM43xx_SEC_KEYSIZE); |
| 1108 | for (i = 0; i < (BCM43xx_SEC_KEYSIZE / sizeof(u16)); i++) { |
| 1109 | value = cpu_to_le16(key[i]); |
| 1110 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, |
| 1111 | offset + (i * 2), value); |
| 1112 | |
| 1113 | if (!basic_wep) |
| 1114 | continue; |
| 1115 | |
| 1116 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, |
| 1117 | offset + (i * 2) + 4 * BCM43xx_SEC_KEYSIZE, |
| 1118 | value); |
| 1119 | } |
| 1120 | } |
| 1121 | |
| 1122 | static void keymac_write(struct bcm43xx_private *bcm, |
| 1123 | u8 index, const u32 *addr) |
| 1124 | { |
| 1125 | /* for keys 0-3 there is no associated mac address */ |
| 1126 | if (index < 4) |
| 1127 | return; |
| 1128 | |
| 1129 | index -= 4; |
| 1130 | if (bcm->current_core->rev >= 5) { |
| 1131 | bcm43xx_shm_write32(bcm, |
| 1132 | BCM43xx_SHM_HWMAC, |
| 1133 | index * 2, |
| 1134 | cpu_to_be32(*addr)); |
| 1135 | bcm43xx_shm_write16(bcm, |
| 1136 | BCM43xx_SHM_HWMAC, |
| 1137 | (index * 2) + 1, |
| 1138 | cpu_to_be16(*((u16 *)(addr + 1)))); |
| 1139 | } else { |
| 1140 | if (index < 8) { |
| 1141 | TODO(); /* Put them in the macaddress filter */ |
| 1142 | } else { |
| 1143 | TODO(); |
| 1144 | /* Put them BCM43xx_SHM_SHARED, stating index 0x0120. |
| 1145 | Keep in mind to update the count of keymacs in 0x003E as well! */ |
| 1146 | } |
| 1147 | } |
| 1148 | } |
| 1149 | |
| 1150 | static int bcm43xx_key_write(struct bcm43xx_private *bcm, |
| 1151 | u8 index, u8 algorithm, |
| 1152 | const u8 *_key, int key_len, |
| 1153 | const u8 *mac_addr) |
| 1154 | { |
| 1155 | u8 key[BCM43xx_SEC_KEYSIZE] = { 0 }; |
| 1156 | |
| 1157 | if (index >= ARRAY_SIZE(bcm->key)) |
| 1158 | return -EINVAL; |
| 1159 | if (key_len > ARRAY_SIZE(key)) |
| 1160 | return -EINVAL; |
| 1161 | if (algorithm < 1 || algorithm > 5) |
| 1162 | return -EINVAL; |
| 1163 | |
| 1164 | memcpy(key, _key, key_len); |
| 1165 | key_write(bcm, index, algorithm, (const u16 *)key); |
| 1166 | keymac_write(bcm, index, (const u32 *)mac_addr); |
| 1167 | |
| 1168 | bcm->key[index].algorithm = algorithm; |
| 1169 | |
| 1170 | return 0; |
| 1171 | } |
| 1172 | |
| 1173 | static void bcm43xx_clear_keys(struct bcm43xx_private *bcm) |
| 1174 | { |
| 1175 | static const u32 zero_mac[2] = { 0 }; |
| 1176 | unsigned int i,j, nr_keys = 54; |
| 1177 | u16 offset; |
| 1178 | |
| 1179 | if (bcm->current_core->rev < 5) |
| 1180 | nr_keys = 16; |
| 1181 | assert(nr_keys <= ARRAY_SIZE(bcm->key)); |
| 1182 | |
| 1183 | for (i = 0; i < nr_keys; i++) { |
| 1184 | bcm->key[i].enabled = 0; |
| 1185 | /* returns for i < 4 immediately */ |
| 1186 | keymac_write(bcm, i, zero_mac); |
| 1187 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, |
| 1188 | 0x100 + (i * 2), 0x0000); |
| 1189 | for (j = 0; j < 8; j++) { |
| 1190 | offset = bcm->security_offset + (j * 4) + (i * BCM43xx_SEC_KEYSIZE); |
| 1191 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, |
| 1192 | offset, 0x0000); |
| 1193 | } |
| 1194 | } |
| 1195 | dprintk(KERN_INFO PFX "Keys cleared\n"); |
| 1196 | } |
| 1197 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1198 | /* Lowlevel core-switch function. This is only to be used in |
| 1199 | * bcm43xx_switch_core() and bcm43xx_probe_cores() |
| 1200 | */ |
| 1201 | static int _switch_core(struct bcm43xx_private *bcm, int core) |
| 1202 | { |
| 1203 | int err; |
| 1204 | int attempts = 0; |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1205 | u32 current_core; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1206 | |
| 1207 | assert(core >= 0); |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1208 | while (1) { |
| 1209 | err = bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_ACTIVE_CORE, |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1210 | (core * 0x1000) + 0x18000000); |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1211 | if (unlikely(err)) |
| 1212 | goto error; |
| 1213 | err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_ACTIVE_CORE, |
| 1214 | ¤t_core); |
| 1215 | if (unlikely(err)) |
| 1216 | goto error; |
| 1217 | current_core = (current_core - 0x18000000) / 0x1000; |
| 1218 | if (current_core == core) |
| 1219 | break; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1220 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1221 | if (unlikely(attempts++ > BCM43xx_SWITCH_CORE_MAX_RETRIES)) |
| 1222 | goto error; |
| 1223 | udelay(10); |
| 1224 | } |
| 1225 | #ifdef CONFIG_BCM947XX |
| 1226 | if (bcm->pci_dev->bus->number == 0) |
| 1227 | bcm->current_core_offset = 0x1000 * core; |
| 1228 | else |
| 1229 | bcm->current_core_offset = 0; |
| 1230 | #endif |
| 1231 | |
| 1232 | return 0; |
| 1233 | error: |
| 1234 | printk(KERN_ERR PFX "Failed to switch to core %d\n", core); |
| 1235 | return -ENODEV; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1236 | } |
| 1237 | |
| 1238 | int bcm43xx_switch_core(struct bcm43xx_private *bcm, struct bcm43xx_coreinfo *new_core) |
| 1239 | { |
| 1240 | int err; |
| 1241 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1242 | if (unlikely(!new_core)) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1243 | return 0; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1244 | if (!new_core->available) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1245 | return -ENODEV; |
| 1246 | if (bcm->current_core == new_core) |
| 1247 | return 0; |
| 1248 | err = _switch_core(bcm, new_core->index); |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1249 | if (unlikely(err)) |
| 1250 | goto out; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1251 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1252 | bcm->current_core = new_core; |
| 1253 | bcm->current_80211_core_idx = -1; |
| 1254 | if (new_core->id == BCM43xx_COREID_80211) |
| 1255 | bcm->current_80211_core_idx = (int)(new_core - &(bcm->core_80211[0])); |
| 1256 | |
| 1257 | out: |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1258 | return err; |
| 1259 | } |
| 1260 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1261 | static int bcm43xx_core_enabled(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1262 | { |
| 1263 | u32 value; |
| 1264 | |
| 1265 | value = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW); |
| 1266 | value &= BCM43xx_SBTMSTATELOW_CLOCK | BCM43xx_SBTMSTATELOW_RESET |
| 1267 | | BCM43xx_SBTMSTATELOW_REJECT; |
| 1268 | |
| 1269 | return (value == BCM43xx_SBTMSTATELOW_CLOCK); |
| 1270 | } |
| 1271 | |
| 1272 | /* disable current core */ |
| 1273 | static int bcm43xx_core_disable(struct bcm43xx_private *bcm, u32 core_flags) |
| 1274 | { |
| 1275 | u32 sbtmstatelow; |
| 1276 | u32 sbtmstatehigh; |
| 1277 | int i; |
| 1278 | |
| 1279 | /* fetch sbtmstatelow from core information registers */ |
| 1280 | sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW); |
| 1281 | |
| 1282 | /* core is already in reset */ |
| 1283 | if (sbtmstatelow & BCM43xx_SBTMSTATELOW_RESET) |
| 1284 | goto out; |
| 1285 | |
| 1286 | if (sbtmstatelow & BCM43xx_SBTMSTATELOW_CLOCK) { |
| 1287 | sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK | |
| 1288 | BCM43xx_SBTMSTATELOW_REJECT; |
| 1289 | bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow); |
| 1290 | |
| 1291 | for (i = 0; i < 1000; i++) { |
| 1292 | sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW); |
| 1293 | if (sbtmstatelow & BCM43xx_SBTMSTATELOW_REJECT) { |
| 1294 | i = -1; |
| 1295 | break; |
| 1296 | } |
| 1297 | udelay(10); |
| 1298 | } |
| 1299 | if (i != -1) { |
| 1300 | printk(KERN_ERR PFX "Error: core_disable() REJECT timeout!\n"); |
| 1301 | return -EBUSY; |
| 1302 | } |
| 1303 | |
| 1304 | for (i = 0; i < 1000; i++) { |
| 1305 | sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH); |
| 1306 | if (!(sbtmstatehigh & BCM43xx_SBTMSTATEHIGH_BUSY)) { |
| 1307 | i = -1; |
| 1308 | break; |
| 1309 | } |
| 1310 | udelay(10); |
| 1311 | } |
| 1312 | if (i != -1) { |
| 1313 | printk(KERN_ERR PFX "Error: core_disable() BUSY timeout!\n"); |
| 1314 | return -EBUSY; |
| 1315 | } |
| 1316 | |
| 1317 | sbtmstatelow = BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK | |
| 1318 | BCM43xx_SBTMSTATELOW_REJECT | |
| 1319 | BCM43xx_SBTMSTATELOW_RESET | |
| 1320 | BCM43xx_SBTMSTATELOW_CLOCK | |
| 1321 | core_flags; |
| 1322 | bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow); |
| 1323 | udelay(10); |
| 1324 | } |
| 1325 | |
| 1326 | sbtmstatelow = BCM43xx_SBTMSTATELOW_RESET | |
| 1327 | BCM43xx_SBTMSTATELOW_REJECT | |
| 1328 | core_flags; |
| 1329 | bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow); |
| 1330 | |
| 1331 | out: |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1332 | bcm->current_core->enabled = 0; |
| 1333 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1334 | return 0; |
| 1335 | } |
| 1336 | |
| 1337 | /* enable (reset) current core */ |
| 1338 | static int bcm43xx_core_enable(struct bcm43xx_private *bcm, u32 core_flags) |
| 1339 | { |
| 1340 | u32 sbtmstatelow; |
| 1341 | u32 sbtmstatehigh; |
| 1342 | u32 sbimstate; |
| 1343 | int err; |
| 1344 | |
| 1345 | err = bcm43xx_core_disable(bcm, core_flags); |
| 1346 | if (err) |
| 1347 | goto out; |
| 1348 | |
| 1349 | sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK | |
| 1350 | BCM43xx_SBTMSTATELOW_RESET | |
| 1351 | BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK | |
| 1352 | core_flags; |
| 1353 | bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow); |
| 1354 | udelay(1); |
| 1355 | |
| 1356 | sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH); |
| 1357 | if (sbtmstatehigh & BCM43xx_SBTMSTATEHIGH_SERROR) { |
| 1358 | sbtmstatehigh = 0x00000000; |
| 1359 | bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATEHIGH, sbtmstatehigh); |
| 1360 | } |
| 1361 | |
| 1362 | sbimstate = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMSTATE); |
| 1363 | if (sbimstate & (BCM43xx_SBIMSTATE_IB_ERROR | BCM43xx_SBIMSTATE_TIMEOUT)) { |
| 1364 | sbimstate &= ~(BCM43xx_SBIMSTATE_IB_ERROR | BCM43xx_SBIMSTATE_TIMEOUT); |
| 1365 | bcm43xx_write32(bcm, BCM43xx_CIR_SBIMSTATE, sbimstate); |
| 1366 | } |
| 1367 | |
| 1368 | sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK | |
| 1369 | BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK | |
| 1370 | core_flags; |
| 1371 | bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow); |
| 1372 | udelay(1); |
| 1373 | |
| 1374 | sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK | core_flags; |
| 1375 | bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow); |
| 1376 | udelay(1); |
| 1377 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1378 | bcm->current_core->enabled = 1; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1379 | assert(err == 0); |
| 1380 | out: |
| 1381 | return err; |
| 1382 | } |
| 1383 | |
| 1384 | /* http://bcm-specs.sipsolutions.net/80211CoreReset */ |
| 1385 | void bcm43xx_wireless_core_reset(struct bcm43xx_private *bcm, int connect_phy) |
| 1386 | { |
| 1387 | u32 flags = 0x00040000; |
| 1388 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 1389 | if ((bcm43xx_core_enabled(bcm)) && |
| 1390 | !bcm43xx_using_pio(bcm)) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1391 | //FIXME: Do we _really_ want #ifndef CONFIG_BCM947XX here? |
| 1392 | #ifndef CONFIG_BCM947XX |
| 1393 | /* reset all used DMA controllers. */ |
| 1394 | bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA1_BASE); |
| 1395 | bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA2_BASE); |
| 1396 | bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA3_BASE); |
| 1397 | bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA4_BASE); |
| 1398 | bcm43xx_dmacontroller_rx_reset(bcm, BCM43xx_MMIO_DMA1_BASE); |
| 1399 | if (bcm->current_core->rev < 5) |
| 1400 | bcm43xx_dmacontroller_rx_reset(bcm, BCM43xx_MMIO_DMA4_BASE); |
| 1401 | #endif |
| 1402 | } |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 1403 | if (bcm43xx_status(bcm) == BCM43xx_STAT_SHUTTINGDOWN) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1404 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, |
| 1405 | bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD) |
| 1406 | & ~(BCM43xx_SBF_MAC_ENABLED | 0x00000002)); |
| 1407 | } else { |
| 1408 | if (connect_phy) |
| 1409 | flags |= 0x20000000; |
| 1410 | bcm43xx_phy_connect(bcm, connect_phy); |
| 1411 | bcm43xx_core_enable(bcm, flags); |
| 1412 | bcm43xx_write16(bcm, 0x03E6, 0x0000); |
| 1413 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, |
| 1414 | bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD) |
| 1415 | | BCM43xx_SBF_400); |
| 1416 | } |
| 1417 | } |
| 1418 | |
| 1419 | static void bcm43xx_wireless_core_disable(struct bcm43xx_private *bcm) |
| 1420 | { |
| 1421 | bcm43xx_radio_turn_off(bcm); |
| 1422 | bcm43xx_write16(bcm, 0x03E6, 0x00F4); |
| 1423 | bcm43xx_core_disable(bcm, 0); |
| 1424 | } |
| 1425 | |
| 1426 | /* Mark the current 80211 core inactive. |
| 1427 | * "active_80211_core" is the other 80211 core, which is used. |
| 1428 | */ |
| 1429 | static int bcm43xx_wireless_core_mark_inactive(struct bcm43xx_private *bcm, |
| 1430 | struct bcm43xx_coreinfo *active_80211_core) |
| 1431 | { |
| 1432 | u32 sbtmstatelow; |
| 1433 | struct bcm43xx_coreinfo *old_core; |
| 1434 | int err = 0; |
| 1435 | |
| 1436 | bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL); |
| 1437 | bcm43xx_radio_turn_off(bcm); |
| 1438 | sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW); |
| 1439 | sbtmstatelow &= ~0x200a0000; |
| 1440 | sbtmstatelow |= 0xa0000; |
| 1441 | bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow); |
| 1442 | udelay(1); |
| 1443 | sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW); |
| 1444 | sbtmstatelow &= ~0xa0000; |
| 1445 | sbtmstatelow |= 0x80000; |
| 1446 | bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow); |
| 1447 | udelay(1); |
| 1448 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1449 | if (bcm43xx_current_phy(bcm)->type == BCM43xx_PHYTYPE_G) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1450 | old_core = bcm->current_core; |
| 1451 | err = bcm43xx_switch_core(bcm, active_80211_core); |
| 1452 | if (err) |
| 1453 | goto out; |
| 1454 | sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW); |
| 1455 | sbtmstatelow &= ~0x20000000; |
| 1456 | sbtmstatelow |= 0x20000000; |
| 1457 | bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow); |
| 1458 | err = bcm43xx_switch_core(bcm, old_core); |
| 1459 | } |
| 1460 | |
| 1461 | out: |
| 1462 | return err; |
| 1463 | } |
| 1464 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1465 | static void handle_irq_transmit_status(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1466 | { |
| 1467 | u32 v0, v1; |
| 1468 | u16 tmp; |
| 1469 | struct bcm43xx_xmitstatus stat; |
| 1470 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1471 | while (1) { |
| 1472 | v0 = bcm43xx_read32(bcm, BCM43xx_MMIO_XMITSTAT_0); |
| 1473 | if (!v0) |
| 1474 | break; |
| 1475 | v1 = bcm43xx_read32(bcm, BCM43xx_MMIO_XMITSTAT_1); |
| 1476 | |
| 1477 | stat.cookie = (v0 >> 16) & 0x0000FFFF; |
| 1478 | tmp = (u16)((v0 & 0xFFF0) | ((v0 & 0xF) >> 1)); |
| 1479 | stat.flags = tmp & 0xFF; |
| 1480 | stat.cnt1 = (tmp & 0x0F00) >> 8; |
| 1481 | stat.cnt2 = (tmp & 0xF000) >> 12; |
| 1482 | stat.seq = (u16)(v1 & 0xFFFF); |
| 1483 | stat.unknown = (u16)((v1 >> 16) & 0xFF); |
| 1484 | |
| 1485 | bcm43xx_debugfs_log_txstat(bcm, &stat); |
| 1486 | |
| 1487 | if (stat.flags & BCM43xx_TXSTAT_FLAG_IGNORE) |
| 1488 | continue; |
| 1489 | if (!(stat.flags & BCM43xx_TXSTAT_FLAG_ACK)) { |
| 1490 | //TODO: packet was not acked (was lost) |
| 1491 | } |
| 1492 | //TODO: There are more (unknown) flags to test. see bcm43xx_main.h |
| 1493 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 1494 | if (bcm43xx_using_pio(bcm)) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1495 | bcm43xx_pio_handle_xmitstatus(bcm, &stat); |
| 1496 | else |
| 1497 | bcm43xx_dma_handle_xmitstatus(bcm, &stat); |
| 1498 | } |
| 1499 | } |
| 1500 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1501 | static void bcm43xx_generate_noise_sample(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1502 | { |
| 1503 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x408, 0x7F7F); |
| 1504 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x40A, 0x7F7F); |
| 1505 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, |
| 1506 | bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD) | (1 << 4)); |
| 1507 | assert(bcm->noisecalc.core_at_start == bcm->current_core); |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1508 | assert(bcm->noisecalc.channel_at_start == bcm43xx_current_radio(bcm)->channel); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1509 | } |
| 1510 | |
| 1511 | static void bcm43xx_calculate_link_quality(struct bcm43xx_private *bcm) |
| 1512 | { |
| 1513 | /* Top half of Link Quality calculation. */ |
| 1514 | |
| 1515 | if (bcm->noisecalc.calculation_running) |
| 1516 | return; |
| 1517 | bcm->noisecalc.core_at_start = bcm->current_core; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1518 | bcm->noisecalc.channel_at_start = bcm43xx_current_radio(bcm)->channel; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1519 | bcm->noisecalc.calculation_running = 1; |
| 1520 | bcm->noisecalc.nr_samples = 0; |
| 1521 | |
| 1522 | bcm43xx_generate_noise_sample(bcm); |
| 1523 | } |
| 1524 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1525 | static void handle_irq_noise(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1526 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1527 | struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1528 | u16 tmp; |
| 1529 | u8 noise[4]; |
| 1530 | u8 i, j; |
| 1531 | s32 average; |
| 1532 | |
| 1533 | /* Bottom half of Link Quality calculation. */ |
| 1534 | |
| 1535 | assert(bcm->noisecalc.calculation_running); |
| 1536 | if (bcm->noisecalc.core_at_start != bcm->current_core || |
| 1537 | bcm->noisecalc.channel_at_start != radio->channel) |
| 1538 | goto drop_calculation; |
| 1539 | tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x408); |
| 1540 | noise[0] = (tmp & 0x00FF); |
| 1541 | noise[1] = (tmp & 0xFF00) >> 8; |
| 1542 | tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x40A); |
| 1543 | noise[2] = (tmp & 0x00FF); |
| 1544 | noise[3] = (tmp & 0xFF00) >> 8; |
| 1545 | if (noise[0] == 0x7F || noise[1] == 0x7F || |
| 1546 | noise[2] == 0x7F || noise[3] == 0x7F) |
| 1547 | goto generate_new; |
| 1548 | |
| 1549 | /* Get the noise samples. */ |
| 1550 | assert(bcm->noisecalc.nr_samples <= 8); |
| 1551 | i = bcm->noisecalc.nr_samples; |
| 1552 | noise[0] = limit_value(noise[0], 0, ARRAY_SIZE(radio->nrssi_lt) - 1); |
| 1553 | noise[1] = limit_value(noise[1], 0, ARRAY_SIZE(radio->nrssi_lt) - 1); |
| 1554 | noise[2] = limit_value(noise[2], 0, ARRAY_SIZE(radio->nrssi_lt) - 1); |
| 1555 | noise[3] = limit_value(noise[3], 0, ARRAY_SIZE(radio->nrssi_lt) - 1); |
| 1556 | bcm->noisecalc.samples[i][0] = radio->nrssi_lt[noise[0]]; |
| 1557 | bcm->noisecalc.samples[i][1] = radio->nrssi_lt[noise[1]]; |
| 1558 | bcm->noisecalc.samples[i][2] = radio->nrssi_lt[noise[2]]; |
| 1559 | bcm->noisecalc.samples[i][3] = radio->nrssi_lt[noise[3]]; |
| 1560 | bcm->noisecalc.nr_samples++; |
| 1561 | if (bcm->noisecalc.nr_samples == 8) { |
| 1562 | /* Calculate the Link Quality by the noise samples. */ |
| 1563 | average = 0; |
| 1564 | for (i = 0; i < 8; i++) { |
| 1565 | for (j = 0; j < 4; j++) |
| 1566 | average += bcm->noisecalc.samples[i][j]; |
| 1567 | } |
| 1568 | average /= (8 * 4); |
| 1569 | average *= 125; |
| 1570 | average += 64; |
| 1571 | average /= 128; |
Michael Buesch | 72fb851 | 2006-03-22 18:10:19 +0100 | [diff] [blame] | 1572 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1573 | tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x40C); |
| 1574 | tmp = (tmp / 128) & 0x1F; |
| 1575 | if (tmp >= 8) |
| 1576 | average += 2; |
| 1577 | else |
| 1578 | average -= 25; |
| 1579 | if (tmp == 8) |
| 1580 | average -= 72; |
| 1581 | else |
| 1582 | average -= 48; |
| 1583 | |
Michael Buesch | 72fb851 | 2006-03-22 18:10:19 +0100 | [diff] [blame] | 1584 | /* FIXME: This is wrong, but people want fancy stats. well... */ |
| 1585 | bcm->stats.noise = average; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1586 | if (average > -65) |
| 1587 | bcm->stats.link_quality = 0; |
| 1588 | else if (average > -75) |
| 1589 | bcm->stats.link_quality = 1; |
| 1590 | else if (average > -85) |
| 1591 | bcm->stats.link_quality = 2; |
| 1592 | else |
| 1593 | bcm->stats.link_quality = 3; |
| 1594 | // dprintk(KERN_INFO PFX "Link Quality: %u (avg was %d)\n", bcm->stats.link_quality, average); |
| 1595 | drop_calculation: |
| 1596 | bcm->noisecalc.calculation_running = 0; |
| 1597 | return; |
| 1598 | } |
| 1599 | generate_new: |
| 1600 | bcm43xx_generate_noise_sample(bcm); |
| 1601 | } |
| 1602 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1603 | static void handle_irq_ps(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1604 | { |
| 1605 | if (bcm->ieee->iw_mode == IW_MODE_MASTER) { |
| 1606 | ///TODO: PS TBTT |
| 1607 | } else { |
| 1608 | if (1/*FIXME: the last PSpoll frame was sent successfully */) |
| 1609 | bcm43xx_power_saving_ctl_bits(bcm, -1, -1); |
| 1610 | } |
| 1611 | if (bcm->ieee->iw_mode == IW_MODE_ADHOC) |
| 1612 | bcm->reg124_set_0x4 = 1; |
| 1613 | //FIXME else set to false? |
| 1614 | } |
| 1615 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1616 | static void handle_irq_reg124(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1617 | { |
| 1618 | if (!bcm->reg124_set_0x4) |
| 1619 | return; |
| 1620 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, |
| 1621 | bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD) |
| 1622 | | 0x4); |
| 1623 | //FIXME: reset reg124_set_0x4 to false? |
| 1624 | } |
| 1625 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1626 | static void handle_irq_pmq(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1627 | { |
| 1628 | u32 tmp; |
| 1629 | |
| 1630 | //TODO: AP mode. |
| 1631 | |
| 1632 | while (1) { |
| 1633 | tmp = bcm43xx_read32(bcm, BCM43xx_MMIO_PS_STATUS); |
| 1634 | if (!(tmp & 0x00000008)) |
| 1635 | break; |
| 1636 | } |
| 1637 | /* 16bit write is odd, but correct. */ |
| 1638 | bcm43xx_write16(bcm, BCM43xx_MMIO_PS_STATUS, 0x0002); |
| 1639 | } |
| 1640 | |
| 1641 | static void bcm43xx_generate_beacon_template(struct bcm43xx_private *bcm, |
| 1642 | u16 ram_offset, u16 shm_size_offset) |
| 1643 | { |
| 1644 | u32 value; |
| 1645 | u16 size = 0; |
| 1646 | |
| 1647 | /* Timestamp. */ |
| 1648 | //FIXME: assumption: The chip sets the timestamp |
| 1649 | value = 0; |
| 1650 | bcm43xx_ram_write(bcm, ram_offset++, value); |
| 1651 | bcm43xx_ram_write(bcm, ram_offset++, value); |
| 1652 | size += 8; |
| 1653 | |
| 1654 | /* Beacon Interval / Capability Information */ |
| 1655 | value = 0x0000;//FIXME: Which interval? |
| 1656 | value |= (1 << 0) << 16; /* ESS */ |
| 1657 | value |= (1 << 2) << 16; /* CF Pollable */ //FIXME? |
| 1658 | value |= (1 << 3) << 16; /* CF Poll Request */ //FIXME? |
| 1659 | if (!bcm->ieee->open_wep) |
| 1660 | value |= (1 << 4) << 16; /* Privacy */ |
| 1661 | bcm43xx_ram_write(bcm, ram_offset++, value); |
| 1662 | size += 4; |
| 1663 | |
| 1664 | /* SSID */ |
| 1665 | //TODO |
| 1666 | |
| 1667 | /* FH Parameter Set */ |
| 1668 | //TODO |
| 1669 | |
| 1670 | /* DS Parameter Set */ |
| 1671 | //TODO |
| 1672 | |
| 1673 | /* CF Parameter Set */ |
| 1674 | //TODO |
| 1675 | |
| 1676 | /* TIM */ |
| 1677 | //TODO |
| 1678 | |
| 1679 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, shm_size_offset, size); |
| 1680 | } |
| 1681 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 1682 | static void handle_irq_beacon(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1683 | { |
| 1684 | u32 status; |
| 1685 | |
| 1686 | bcm->irq_savedstate &= ~BCM43xx_IRQ_BEACON; |
| 1687 | status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD); |
| 1688 | |
| 1689 | if ((status & 0x1) && (status & 0x2)) { |
| 1690 | /* ACK beacon IRQ. */ |
| 1691 | bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, |
| 1692 | BCM43xx_IRQ_BEACON); |
| 1693 | bcm->irq_savedstate |= BCM43xx_IRQ_BEACON; |
| 1694 | return; |
| 1695 | } |
| 1696 | if (!(status & 0x1)) { |
| 1697 | bcm43xx_generate_beacon_template(bcm, 0x68, 0x18); |
| 1698 | status |= 0x1; |
| 1699 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, status); |
| 1700 | } |
| 1701 | if (!(status & 0x2)) { |
| 1702 | bcm43xx_generate_beacon_template(bcm, 0x468, 0x1A); |
| 1703 | status |= 0x2; |
| 1704 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, status); |
| 1705 | } |
| 1706 | } |
| 1707 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1708 | /* Interrupt handler bottom-half */ |
| 1709 | static void bcm43xx_interrupt_tasklet(struct bcm43xx_private *bcm) |
| 1710 | { |
| 1711 | u32 reason; |
| 1712 | u32 dma_reason[4]; |
| 1713 | int activity = 0; |
| 1714 | unsigned long flags; |
| 1715 | |
| 1716 | #ifdef CONFIG_BCM43XX_DEBUG |
| 1717 | u32 _handled = 0x00000000; |
| 1718 | # define bcmirq_handled(irq) do { _handled |= (irq); } while (0) |
| 1719 | #else |
| 1720 | # define bcmirq_handled(irq) do { /* nothing */ } while (0) |
| 1721 | #endif /* CONFIG_BCM43XX_DEBUG*/ |
| 1722 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 1723 | bcm43xx_lock_irqonly(bcm, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1724 | reason = bcm->irq_reason; |
| 1725 | dma_reason[0] = bcm->dma_reason[0]; |
| 1726 | dma_reason[1] = bcm->dma_reason[1]; |
| 1727 | dma_reason[2] = bcm->dma_reason[2]; |
| 1728 | dma_reason[3] = bcm->dma_reason[3]; |
| 1729 | |
| 1730 | if (unlikely(reason & BCM43xx_IRQ_XMIT_ERROR)) { |
| 1731 | /* TX error. We get this when Template Ram is written in wrong endianess |
| 1732 | * in dummy_tx(). We also get this if something is wrong with the TX header |
| 1733 | * on DMA or PIO queues. |
| 1734 | * Maybe we get this in other error conditions, too. |
| 1735 | */ |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 1736 | printkl(KERN_ERR PFX "FATAL ERROR: BCM43xx_IRQ_XMIT_ERROR\n"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1737 | bcmirq_handled(BCM43xx_IRQ_XMIT_ERROR); |
| 1738 | } |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 1739 | if (unlikely((dma_reason[0] & BCM43xx_DMAIRQ_FATALMASK) | |
| 1740 | (dma_reason[1] & BCM43xx_DMAIRQ_FATALMASK) | |
| 1741 | (dma_reason[2] & BCM43xx_DMAIRQ_FATALMASK) | |
| 1742 | (dma_reason[3] & BCM43xx_DMAIRQ_FATALMASK))) { |
| 1743 | printkl(KERN_ERR PFX "FATAL ERROR: Fatal DMA error: " |
| 1744 | "0x%08X, 0x%08X, 0x%08X, 0x%08X\n", |
| 1745 | dma_reason[0], dma_reason[1], |
| 1746 | dma_reason[2], dma_reason[3]); |
| 1747 | bcm43xx_controller_restart(bcm, "DMA error"); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 1748 | mmiowb(); |
| 1749 | bcm43xx_unlock_irqonly(bcm, flags); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 1750 | return; |
| 1751 | } |
| 1752 | if (unlikely((dma_reason[0] & BCM43xx_DMAIRQ_NONFATALMASK) | |
| 1753 | (dma_reason[1] & BCM43xx_DMAIRQ_NONFATALMASK) | |
| 1754 | (dma_reason[2] & BCM43xx_DMAIRQ_NONFATALMASK) | |
| 1755 | (dma_reason[3] & BCM43xx_DMAIRQ_NONFATALMASK))) { |
| 1756 | printkl(KERN_ERR PFX "DMA error: " |
| 1757 | "0x%08X, 0x%08X, 0x%08X, 0x%08X\n", |
| 1758 | dma_reason[0], dma_reason[1], |
| 1759 | dma_reason[2], dma_reason[3]); |
| 1760 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1761 | |
| 1762 | if (reason & BCM43xx_IRQ_PS) { |
| 1763 | handle_irq_ps(bcm); |
| 1764 | bcmirq_handled(BCM43xx_IRQ_PS); |
| 1765 | } |
| 1766 | |
| 1767 | if (reason & BCM43xx_IRQ_REG124) { |
| 1768 | handle_irq_reg124(bcm); |
| 1769 | bcmirq_handled(BCM43xx_IRQ_REG124); |
| 1770 | } |
| 1771 | |
| 1772 | if (reason & BCM43xx_IRQ_BEACON) { |
| 1773 | if (bcm->ieee->iw_mode == IW_MODE_MASTER) |
| 1774 | handle_irq_beacon(bcm); |
| 1775 | bcmirq_handled(BCM43xx_IRQ_BEACON); |
| 1776 | } |
| 1777 | |
| 1778 | if (reason & BCM43xx_IRQ_PMQ) { |
| 1779 | handle_irq_pmq(bcm); |
| 1780 | bcmirq_handled(BCM43xx_IRQ_PMQ); |
| 1781 | } |
| 1782 | |
| 1783 | if (reason & BCM43xx_IRQ_SCAN) { |
| 1784 | /*TODO*/ |
| 1785 | //bcmirq_handled(BCM43xx_IRQ_SCAN); |
| 1786 | } |
| 1787 | |
| 1788 | if (reason & BCM43xx_IRQ_NOISE) { |
| 1789 | handle_irq_noise(bcm); |
| 1790 | bcmirq_handled(BCM43xx_IRQ_NOISE); |
| 1791 | } |
| 1792 | |
| 1793 | /* Check the DMA reason registers for received data. */ |
| 1794 | assert(!(dma_reason[1] & BCM43xx_DMAIRQ_RX_DONE)); |
| 1795 | assert(!(dma_reason[2] & BCM43xx_DMAIRQ_RX_DONE)); |
| 1796 | if (dma_reason[0] & BCM43xx_DMAIRQ_RX_DONE) { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 1797 | if (bcm43xx_using_pio(bcm)) |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1798 | bcm43xx_pio_rx(bcm43xx_current_pio(bcm)->queue0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1799 | else |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1800 | bcm43xx_dma_rx(bcm43xx_current_dma(bcm)->rx_ring0); |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 1801 | /* We intentionally don't set "activity" to 1, here. */ |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1802 | } |
| 1803 | if (dma_reason[3] & BCM43xx_DMAIRQ_RX_DONE) { |
Michael Buesch | e1b1b58 | 2006-03-13 15:20:05 +0100 | [diff] [blame] | 1804 | if (bcm43xx_using_pio(bcm)) |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1805 | bcm43xx_pio_rx(bcm43xx_current_pio(bcm)->queue3); |
Michael Buesch | e1b1b58 | 2006-03-13 15:20:05 +0100 | [diff] [blame] | 1806 | else |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1807 | bcm43xx_dma_rx(bcm43xx_current_dma(bcm)->rx_ring1); |
Michael Buesch | e1b1b58 | 2006-03-13 15:20:05 +0100 | [diff] [blame] | 1808 | activity = 1; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1809 | } |
| 1810 | bcmirq_handled(BCM43xx_IRQ_RX); |
| 1811 | |
| 1812 | if (reason & BCM43xx_IRQ_XMIT_STATUS) { |
Michael Buesch | e1b1b58 | 2006-03-13 15:20:05 +0100 | [diff] [blame] | 1813 | handle_irq_transmit_status(bcm); |
| 1814 | activity = 1; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1815 | //TODO: In AP mode, this also causes sending of powersave responses. |
| 1816 | bcmirq_handled(BCM43xx_IRQ_XMIT_STATUS); |
| 1817 | } |
| 1818 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1819 | /* IRQ_PIO_WORKAROUND is handled in the top-half. */ |
| 1820 | bcmirq_handled(BCM43xx_IRQ_PIO_WORKAROUND); |
| 1821 | #ifdef CONFIG_BCM43XX_DEBUG |
| 1822 | if (unlikely(reason & ~_handled)) { |
| 1823 | printkl(KERN_WARNING PFX |
| 1824 | "Unhandled IRQ! Reason: 0x%08x, Unhandled: 0x%08x, " |
| 1825 | "DMA: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n", |
| 1826 | reason, (reason & ~_handled), |
| 1827 | dma_reason[0], dma_reason[1], |
| 1828 | dma_reason[2], dma_reason[3]); |
| 1829 | } |
| 1830 | #endif |
| 1831 | #undef bcmirq_handled |
| 1832 | |
| 1833 | if (!modparam_noleds) |
| 1834 | bcm43xx_leds_update(bcm, activity); |
| 1835 | bcm43xx_interrupt_enable(bcm, bcm->irq_savedstate); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 1836 | mmiowb(); |
| 1837 | bcm43xx_unlock_irqonly(bcm, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1838 | } |
| 1839 | |
Michael Buesch | 0ac59da | 2006-03-19 21:43:40 +0100 | [diff] [blame] | 1840 | static void pio_irq_workaround(struct bcm43xx_private *bcm, |
| 1841 | u16 base, int queueidx) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1842 | { |
Michael Buesch | 0ac59da | 2006-03-19 21:43:40 +0100 | [diff] [blame] | 1843 | u16 rxctl; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1844 | |
Michael Buesch | 0ac59da | 2006-03-19 21:43:40 +0100 | [diff] [blame] | 1845 | rxctl = bcm43xx_read16(bcm, base + BCM43xx_PIO_RXCTL); |
| 1846 | if (rxctl & BCM43xx_PIO_RXCTL_DATAAVAILABLE) |
| 1847 | bcm->dma_reason[queueidx] |= BCM43xx_DMAIRQ_RX_DONE; |
| 1848 | else |
| 1849 | bcm->dma_reason[queueidx] &= ~BCM43xx_DMAIRQ_RX_DONE; |
| 1850 | } |
| 1851 | |
| 1852 | static void bcm43xx_interrupt_ack(struct bcm43xx_private *bcm, u32 reason) |
| 1853 | { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 1854 | if (bcm43xx_using_pio(bcm) && |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1855 | (bcm->current_core->rev < 3) && |
| 1856 | (!(reason & BCM43xx_IRQ_PIO_WORKAROUND))) { |
| 1857 | /* Apply a PIO specific workaround to the dma_reasons */ |
Michael Buesch | 0ac59da | 2006-03-19 21:43:40 +0100 | [diff] [blame] | 1858 | pio_irq_workaround(bcm, BCM43xx_MMIO_PIO1_BASE, 0); |
| 1859 | pio_irq_workaround(bcm, BCM43xx_MMIO_PIO2_BASE, 1); |
| 1860 | pio_irq_workaround(bcm, BCM43xx_MMIO_PIO3_BASE, 2); |
| 1861 | pio_irq_workaround(bcm, BCM43xx_MMIO_PIO4_BASE, 3); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1862 | } |
| 1863 | |
Michael Buesch | 0ac59da | 2006-03-19 21:43:40 +0100 | [diff] [blame] | 1864 | bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, reason); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1865 | |
| 1866 | bcm43xx_write32(bcm, BCM43xx_MMIO_DMA1_REASON, |
| 1867 | bcm->dma_reason[0]); |
| 1868 | bcm43xx_write32(bcm, BCM43xx_MMIO_DMA2_REASON, |
| 1869 | bcm->dma_reason[1]); |
| 1870 | bcm43xx_write32(bcm, BCM43xx_MMIO_DMA3_REASON, |
| 1871 | bcm->dma_reason[2]); |
| 1872 | bcm43xx_write32(bcm, BCM43xx_MMIO_DMA4_REASON, |
| 1873 | bcm->dma_reason[3]); |
| 1874 | } |
| 1875 | |
| 1876 | /* Interrupt handler top-half */ |
| 1877 | static irqreturn_t bcm43xx_interrupt_handler(int irq, void *dev_id, struct pt_regs *regs) |
| 1878 | { |
Michael Buesch | efccb64 | 2006-03-11 13:39:14 +0100 | [diff] [blame] | 1879 | irqreturn_t ret = IRQ_HANDLED; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1880 | struct bcm43xx_private *bcm = dev_id; |
Michael Buesch | 0ac59da | 2006-03-19 21:43:40 +0100 | [diff] [blame] | 1881 | u32 reason; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1882 | |
| 1883 | if (!bcm) |
| 1884 | return IRQ_NONE; |
| 1885 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 1886 | spin_lock(&bcm->irq_lock); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1887 | |
| 1888 | reason = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); |
| 1889 | if (reason == 0xffffffff) { |
| 1890 | /* irq not for us (shared irq) */ |
Michael Buesch | efccb64 | 2006-03-11 13:39:14 +0100 | [diff] [blame] | 1891 | ret = IRQ_NONE; |
| 1892 | goto out; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1893 | } |
Michael Buesch | 0ac59da | 2006-03-19 21:43:40 +0100 | [diff] [blame] | 1894 | reason &= bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK); |
| 1895 | if (!reason) |
Michael Buesch | efccb64 | 2006-03-11 13:39:14 +0100 | [diff] [blame] | 1896 | goto out; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1897 | |
Michael Buesch | 0ac59da | 2006-03-19 21:43:40 +0100 | [diff] [blame] | 1898 | bcm->dma_reason[0] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA1_REASON) |
| 1899 | & 0x0001dc00; |
| 1900 | bcm->dma_reason[1] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA2_REASON) |
| 1901 | & 0x0000dc00; |
| 1902 | bcm->dma_reason[2] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA3_REASON) |
| 1903 | & 0x0000dc00; |
| 1904 | bcm->dma_reason[3] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA4_REASON) |
| 1905 | & 0x0001dc00; |
| 1906 | |
| 1907 | bcm43xx_interrupt_ack(bcm, reason); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1908 | |
Michael Buesch | bf7b876 | 2006-02-21 17:58:18 +0100 | [diff] [blame] | 1909 | /* Only accept IRQs, if we are initialized properly. |
| 1910 | * This avoids an RX race while initializing. |
| 1911 | * We should probably not enable IRQs before we are initialized |
| 1912 | * completely, but some careful work is needed to fix this. I think it |
| 1913 | * is best to stay with this cheap workaround for now... . |
| 1914 | */ |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 1915 | if (likely(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED)) { |
Michael Buesch | bf7b876 | 2006-02-21 17:58:18 +0100 | [diff] [blame] | 1916 | /* disable all IRQs. They are enabled again in the bottom half. */ |
| 1917 | bcm->irq_savedstate = bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL); |
| 1918 | /* save the reason code and call our bottom half. */ |
| 1919 | bcm->irq_reason = reason; |
| 1920 | tasklet_schedule(&bcm->isr_tasklet); |
| 1921 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1922 | |
Michael Buesch | efccb64 | 2006-03-11 13:39:14 +0100 | [diff] [blame] | 1923 | out: |
| 1924 | mmiowb(); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 1925 | spin_unlock(&bcm->irq_lock); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1926 | |
Michael Buesch | efccb64 | 2006-03-11 13:39:14 +0100 | [diff] [blame] | 1927 | return ret; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1928 | } |
| 1929 | |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 1930 | static void bcm43xx_release_firmware(struct bcm43xx_private *bcm, int force) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1931 | { |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 1932 | if (bcm->firmware_norelease && !force) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1933 | return; /* Suspending or controller reset. */ |
| 1934 | release_firmware(bcm->ucode); |
| 1935 | bcm->ucode = NULL; |
| 1936 | release_firmware(bcm->pcm); |
| 1937 | bcm->pcm = NULL; |
| 1938 | release_firmware(bcm->initvals0); |
| 1939 | bcm->initvals0 = NULL; |
| 1940 | release_firmware(bcm->initvals1); |
| 1941 | bcm->initvals1 = NULL; |
| 1942 | } |
| 1943 | |
| 1944 | static int bcm43xx_request_firmware(struct bcm43xx_private *bcm) |
| 1945 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 1946 | struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1947 | u8 rev = bcm->current_core->rev; |
| 1948 | int err = 0; |
| 1949 | int nr; |
| 1950 | char buf[22 + sizeof(modparam_fwpostfix) - 1] = { 0 }; |
| 1951 | |
| 1952 | if (!bcm->ucode) { |
| 1953 | snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_microcode%d%s.fw", |
| 1954 | (rev >= 5 ? 5 : rev), |
| 1955 | modparam_fwpostfix); |
| 1956 | err = request_firmware(&bcm->ucode, buf, &bcm->pci_dev->dev); |
| 1957 | if (err) { |
| 1958 | printk(KERN_ERR PFX |
| 1959 | "Error: Microcode \"%s\" not available or load failed.\n", |
| 1960 | buf); |
| 1961 | goto error; |
| 1962 | } |
| 1963 | } |
| 1964 | |
| 1965 | if (!bcm->pcm) { |
| 1966 | snprintf(buf, ARRAY_SIZE(buf), |
| 1967 | "bcm43xx_pcm%d%s.fw", |
| 1968 | (rev < 5 ? 4 : 5), |
| 1969 | modparam_fwpostfix); |
| 1970 | err = request_firmware(&bcm->pcm, buf, &bcm->pci_dev->dev); |
| 1971 | if (err) { |
| 1972 | printk(KERN_ERR PFX |
| 1973 | "Error: PCM \"%s\" not available or load failed.\n", |
| 1974 | buf); |
| 1975 | goto error; |
| 1976 | } |
| 1977 | } |
| 1978 | |
| 1979 | if (!bcm->initvals0) { |
| 1980 | if (rev == 2 || rev == 4) { |
| 1981 | switch (phy->type) { |
| 1982 | case BCM43xx_PHYTYPE_A: |
| 1983 | nr = 3; |
| 1984 | break; |
| 1985 | case BCM43xx_PHYTYPE_B: |
| 1986 | case BCM43xx_PHYTYPE_G: |
| 1987 | nr = 1; |
| 1988 | break; |
| 1989 | default: |
| 1990 | goto err_noinitval; |
| 1991 | } |
| 1992 | |
| 1993 | } else if (rev >= 5) { |
| 1994 | switch (phy->type) { |
| 1995 | case BCM43xx_PHYTYPE_A: |
| 1996 | nr = 7; |
| 1997 | break; |
| 1998 | case BCM43xx_PHYTYPE_B: |
| 1999 | case BCM43xx_PHYTYPE_G: |
| 2000 | nr = 5; |
| 2001 | break; |
| 2002 | default: |
| 2003 | goto err_noinitval; |
| 2004 | } |
| 2005 | } else |
| 2006 | goto err_noinitval; |
| 2007 | snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_initval%02d%s.fw", |
| 2008 | nr, modparam_fwpostfix); |
| 2009 | |
| 2010 | err = request_firmware(&bcm->initvals0, buf, &bcm->pci_dev->dev); |
| 2011 | if (err) { |
| 2012 | printk(KERN_ERR PFX |
| 2013 | "Error: InitVals \"%s\" not available or load failed.\n", |
| 2014 | buf); |
| 2015 | goto error; |
| 2016 | } |
| 2017 | if (bcm->initvals0->size % sizeof(struct bcm43xx_initval)) { |
| 2018 | printk(KERN_ERR PFX "InitVals fileformat error.\n"); |
| 2019 | goto error; |
| 2020 | } |
| 2021 | } |
| 2022 | |
| 2023 | if (!bcm->initvals1) { |
| 2024 | if (rev >= 5) { |
| 2025 | u32 sbtmstatehigh; |
| 2026 | |
| 2027 | switch (phy->type) { |
| 2028 | case BCM43xx_PHYTYPE_A: |
| 2029 | sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH); |
| 2030 | if (sbtmstatehigh & 0x00010000) |
| 2031 | nr = 9; |
| 2032 | else |
| 2033 | nr = 10; |
| 2034 | break; |
| 2035 | case BCM43xx_PHYTYPE_B: |
| 2036 | case BCM43xx_PHYTYPE_G: |
| 2037 | nr = 6; |
| 2038 | break; |
| 2039 | default: |
| 2040 | goto err_noinitval; |
| 2041 | } |
| 2042 | snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_initval%02d%s.fw", |
| 2043 | nr, modparam_fwpostfix); |
| 2044 | |
| 2045 | err = request_firmware(&bcm->initvals1, buf, &bcm->pci_dev->dev); |
| 2046 | if (err) { |
| 2047 | printk(KERN_ERR PFX |
| 2048 | "Error: InitVals \"%s\" not available or load failed.\n", |
| 2049 | buf); |
| 2050 | goto error; |
| 2051 | } |
| 2052 | if (bcm->initvals1->size % sizeof(struct bcm43xx_initval)) { |
| 2053 | printk(KERN_ERR PFX "InitVals fileformat error.\n"); |
| 2054 | goto error; |
| 2055 | } |
| 2056 | } |
| 2057 | } |
| 2058 | |
| 2059 | out: |
| 2060 | return err; |
| 2061 | error: |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2062 | bcm43xx_release_firmware(bcm, 1); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2063 | goto out; |
| 2064 | err_noinitval: |
| 2065 | printk(KERN_ERR PFX "Error: No InitVals available!\n"); |
| 2066 | err = -ENOENT; |
| 2067 | goto error; |
| 2068 | } |
| 2069 | |
| 2070 | static void bcm43xx_upload_microcode(struct bcm43xx_private *bcm) |
| 2071 | { |
| 2072 | const u32 *data; |
| 2073 | unsigned int i, len; |
| 2074 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2075 | /* Upload Microcode. */ |
| 2076 | data = (u32 *)(bcm->ucode->data); |
| 2077 | len = bcm->ucode->size / sizeof(u32); |
| 2078 | bcm43xx_shm_control_word(bcm, BCM43xx_SHM_UCODE, 0x0000); |
| 2079 | for (i = 0; i < len; i++) { |
| 2080 | bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA, |
| 2081 | be32_to_cpu(data[i])); |
| 2082 | udelay(10); |
| 2083 | } |
| 2084 | |
| 2085 | /* Upload PCM data. */ |
| 2086 | data = (u32 *)(bcm->pcm->data); |
| 2087 | len = bcm->pcm->size / sizeof(u32); |
| 2088 | bcm43xx_shm_control_word(bcm, BCM43xx_SHM_PCM, 0x01ea); |
| 2089 | bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA, 0x00004000); |
| 2090 | bcm43xx_shm_control_word(bcm, BCM43xx_SHM_PCM, 0x01eb); |
| 2091 | for (i = 0; i < len; i++) { |
| 2092 | bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA, |
| 2093 | be32_to_cpu(data[i])); |
| 2094 | udelay(10); |
| 2095 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2096 | } |
| 2097 | |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2098 | static int bcm43xx_write_initvals(struct bcm43xx_private *bcm, |
| 2099 | const struct bcm43xx_initval *data, |
| 2100 | const unsigned int len) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2101 | { |
| 2102 | u16 offset, size; |
| 2103 | u32 value; |
| 2104 | unsigned int i; |
| 2105 | |
| 2106 | for (i = 0; i < len; i++) { |
| 2107 | offset = be16_to_cpu(data[i].offset); |
| 2108 | size = be16_to_cpu(data[i].size); |
| 2109 | value = be32_to_cpu(data[i].value); |
| 2110 | |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2111 | if (unlikely(offset >= 0x1000)) |
| 2112 | goto err_format; |
| 2113 | if (size == 2) { |
| 2114 | if (unlikely(value & 0xFFFF0000)) |
| 2115 | goto err_format; |
| 2116 | bcm43xx_write16(bcm, offset, (u16)value); |
| 2117 | } else if (size == 4) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2118 | bcm43xx_write32(bcm, offset, value); |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2119 | } else |
| 2120 | goto err_format; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2121 | } |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2122 | |
| 2123 | return 0; |
| 2124 | |
| 2125 | err_format: |
| 2126 | printk(KERN_ERR PFX "InitVals (bcm43xx_initvalXX.fw) file-format error. " |
| 2127 | "Please fix your bcm43xx firmware files.\n"); |
| 2128 | return -EPROTO; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2129 | } |
| 2130 | |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2131 | static int bcm43xx_upload_initvals(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2132 | { |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2133 | int err; |
| 2134 | |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2135 | err = bcm43xx_write_initvals(bcm, (struct bcm43xx_initval *)bcm->initvals0->data, |
| 2136 | bcm->initvals0->size / sizeof(struct bcm43xx_initval)); |
| 2137 | if (err) |
| 2138 | goto out; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2139 | if (bcm->initvals1) { |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2140 | err = bcm43xx_write_initvals(bcm, (struct bcm43xx_initval *)bcm->initvals1->data, |
| 2141 | bcm->initvals1->size / sizeof(struct bcm43xx_initval)); |
| 2142 | if (err) |
| 2143 | goto out; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2144 | } |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2145 | out: |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2146 | return err; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2147 | } |
| 2148 | |
Jiri Slaby | 12a3768 | 2006-06-05 22:20:07 +0200 | [diff] [blame] | 2149 | #ifdef CONFIG_BCM947XX |
| 2150 | static struct pci_device_id bcm43xx_47xx_ids[] = { |
| 2151 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4324) }, |
| 2152 | { 0 } |
| 2153 | }; |
| 2154 | #endif |
| 2155 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2156 | static int bcm43xx_initialize_irq(struct bcm43xx_private *bcm) |
| 2157 | { |
| 2158 | int res; |
| 2159 | unsigned int i; |
| 2160 | u32 data; |
| 2161 | |
| 2162 | bcm->irq = bcm->pci_dev->irq; |
| 2163 | #ifdef CONFIG_BCM947XX |
| 2164 | if (bcm->pci_dev->bus->number == 0) { |
Jiri Slaby | 12a3768 | 2006-06-05 22:20:07 +0200 | [diff] [blame] | 2165 | struct pci_dev *d; |
| 2166 | struct pci_device_id *id; |
| 2167 | for (id = bcm43xx_47xx_ids; id->vendor; id++) { |
| 2168 | d = pci_get_device(id->vendor, id->device, NULL); |
| 2169 | if (d != NULL) { |
| 2170 | bcm->irq = d->irq; |
| 2171 | pci_dev_put(d); |
| 2172 | break; |
| 2173 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2174 | } |
| 2175 | } |
| 2176 | #endif |
| 2177 | res = request_irq(bcm->irq, bcm43xx_interrupt_handler, |
Michael Buesch | 65f3f19 | 2006-01-31 20:11:38 +0100 | [diff] [blame] | 2178 | SA_SHIRQ, KBUILD_MODNAME, bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2179 | if (res) { |
| 2180 | printk(KERN_ERR PFX "Cannot register IRQ%d\n", bcm->irq); |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 2181 | return -ENODEV; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2182 | } |
| 2183 | bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, 0xffffffff); |
| 2184 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, 0x00020402); |
| 2185 | i = 0; |
| 2186 | while (1) { |
| 2187 | data = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); |
| 2188 | if (data == BCM43xx_IRQ_READY) |
| 2189 | break; |
| 2190 | i++; |
| 2191 | if (i >= BCM43xx_IRQWAIT_MAX_RETRIES) { |
| 2192 | printk(KERN_ERR PFX "Card IRQ register not responding. " |
| 2193 | "Giving up.\n"); |
| 2194 | free_irq(bcm->irq, bcm); |
| 2195 | return -ENODEV; |
| 2196 | } |
| 2197 | udelay(10); |
| 2198 | } |
| 2199 | // dummy read |
| 2200 | bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); |
| 2201 | |
| 2202 | return 0; |
| 2203 | } |
| 2204 | |
| 2205 | /* Switch to the core used to write the GPIO register. |
| 2206 | * This is either the ChipCommon, or the PCI core. |
| 2207 | */ |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 2208 | static int switch_to_gpio_core(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2209 | { |
| 2210 | int err; |
| 2211 | |
| 2212 | /* Where to find the GPIO register depends on the chipset. |
| 2213 | * If it has a ChipCommon, its register at offset 0x6c is the GPIO |
| 2214 | * control register. Otherwise the register at offset 0x6c in the |
| 2215 | * PCI core is the GPIO control register. |
| 2216 | */ |
| 2217 | err = bcm43xx_switch_core(bcm, &bcm->core_chipcommon); |
| 2218 | if (err == -ENODEV) { |
| 2219 | err = bcm43xx_switch_core(bcm, &bcm->core_pci); |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 2220 | if (unlikely(err == -ENODEV)) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2221 | printk(KERN_ERR PFX "gpio error: " |
| 2222 | "Neither ChipCommon nor PCI core available!\n"); |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2223 | } |
| 2224 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2225 | |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2226 | return err; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2227 | } |
| 2228 | |
| 2229 | /* Initialize the GPIOs |
| 2230 | * http://bcm-specs.sipsolutions.net/GPIO |
| 2231 | */ |
| 2232 | static int bcm43xx_gpio_init(struct bcm43xx_private *bcm) |
| 2233 | { |
| 2234 | struct bcm43xx_coreinfo *old_core; |
| 2235 | int err; |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2236 | u32 mask, set; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2237 | |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2238 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, |
| 2239 | bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD) |
| 2240 | & 0xFFFF3FFF); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2241 | |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2242 | bcm43xx_leds_switch_all(bcm, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2243 | bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_MASK, |
| 2244 | bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_MASK) | 0x000F); |
| 2245 | |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2246 | mask = 0x0000001F; |
| 2247 | set = 0x0000000F; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2248 | if (bcm->chip_id == 0x4301) { |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2249 | mask |= 0x0060; |
| 2250 | set |= 0x0060; |
| 2251 | } |
| 2252 | if (0 /* FIXME: conditional unknown */) { |
| 2253 | bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_MASK, |
| 2254 | bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_MASK) |
| 2255 | | 0x0100); |
| 2256 | mask |= 0x0180; |
| 2257 | set |= 0x0180; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2258 | } |
| 2259 | if (bcm->sprom.boardflags & BCM43xx_BFL_PACTRL) { |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2260 | bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_MASK, |
| 2261 | bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_MASK) |
| 2262 | | 0x0200); |
| 2263 | mask |= 0x0200; |
| 2264 | set |= 0x0200; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2265 | } |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2266 | if (bcm->current_core->rev >= 2) |
| 2267 | mask |= 0x0010; /* FIXME: This is redundant. */ |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2268 | |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2269 | old_core = bcm->current_core; |
| 2270 | err = switch_to_gpio_core(bcm); |
| 2271 | if (err) |
| 2272 | goto out; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2273 | bcm43xx_write32(bcm, BCM43xx_GPIO_CONTROL, |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2274 | (bcm43xx_read32(bcm, BCM43xx_GPIO_CONTROL) & mask) | set); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2275 | err = bcm43xx_switch_core(bcm, old_core); |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 2276 | out: |
| 2277 | return err; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2278 | } |
| 2279 | |
| 2280 | /* Turn off all GPIO stuff. Call this on module unload, for example. */ |
| 2281 | static int bcm43xx_gpio_cleanup(struct bcm43xx_private *bcm) |
| 2282 | { |
| 2283 | struct bcm43xx_coreinfo *old_core; |
| 2284 | int err; |
| 2285 | |
| 2286 | old_core = bcm->current_core; |
| 2287 | err = switch_to_gpio_core(bcm); |
| 2288 | if (err) |
| 2289 | return err; |
| 2290 | bcm43xx_write32(bcm, BCM43xx_GPIO_CONTROL, 0x00000000); |
| 2291 | err = bcm43xx_switch_core(bcm, old_core); |
| 2292 | assert(err == 0); |
| 2293 | |
| 2294 | return 0; |
| 2295 | } |
| 2296 | |
| 2297 | /* http://bcm-specs.sipsolutions.net/EnableMac */ |
| 2298 | void bcm43xx_mac_enable(struct bcm43xx_private *bcm) |
| 2299 | { |
| 2300 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, |
| 2301 | bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD) |
| 2302 | | BCM43xx_SBF_MAC_ENABLED); |
| 2303 | bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, BCM43xx_IRQ_READY); |
| 2304 | bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); /* dummy read */ |
| 2305 | bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); /* dummy read */ |
| 2306 | bcm43xx_power_saving_ctl_bits(bcm, -1, -1); |
| 2307 | } |
| 2308 | |
| 2309 | /* http://bcm-specs.sipsolutions.net/SuspendMAC */ |
| 2310 | void bcm43xx_mac_suspend(struct bcm43xx_private *bcm) |
| 2311 | { |
| 2312 | int i; |
| 2313 | u32 tmp; |
| 2314 | |
| 2315 | bcm43xx_power_saving_ctl_bits(bcm, -1, 1); |
| 2316 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, |
| 2317 | bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD) |
| 2318 | & ~BCM43xx_SBF_MAC_ENABLED); |
| 2319 | bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); /* dummy read */ |
Michael Buesch | 921e485 | 2006-02-08 17:55:55 +0100 | [diff] [blame] | 2320 | for (i = 100000; i; i--) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2321 | tmp = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); |
Michael Buesch | 921e485 | 2006-02-08 17:55:55 +0100 | [diff] [blame] | 2322 | if (tmp & BCM43xx_IRQ_READY) |
| 2323 | return; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2324 | udelay(10); |
| 2325 | } |
Michael Buesch | 921e485 | 2006-02-08 17:55:55 +0100 | [diff] [blame] | 2326 | printkl(KERN_ERR PFX "MAC suspend failed\n"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2327 | } |
| 2328 | |
| 2329 | void bcm43xx_set_iwmode(struct bcm43xx_private *bcm, |
| 2330 | int iw_mode) |
| 2331 | { |
| 2332 | unsigned long flags; |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2333 | struct net_device *net_dev = bcm->net_dev; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2334 | u32 status; |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2335 | u16 value; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2336 | |
| 2337 | spin_lock_irqsave(&bcm->ieee->lock, flags); |
| 2338 | bcm->ieee->iw_mode = iw_mode; |
| 2339 | spin_unlock_irqrestore(&bcm->ieee->lock, flags); |
| 2340 | if (iw_mode == IW_MODE_MONITOR) |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2341 | net_dev->type = ARPHRD_IEEE80211; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2342 | else |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2343 | net_dev->type = ARPHRD_ETHER; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2344 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2345 | status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); |
| 2346 | /* Reset status to infrastructured mode */ |
| 2347 | status &= ~(BCM43xx_SBF_MODE_AP | BCM43xx_SBF_MODE_MONITOR); |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2348 | status &= ~BCM43xx_SBF_MODE_PROMISC; |
| 2349 | status |= BCM43xx_SBF_MODE_NOTADHOC; |
| 2350 | |
| 2351 | /* FIXME: Always enable promisc mode, until we get the MAC filters working correctly. */ |
| 2352 | status |= BCM43xx_SBF_MODE_PROMISC; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2353 | |
| 2354 | switch (iw_mode) { |
| 2355 | case IW_MODE_MONITOR: |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2356 | status |= BCM43xx_SBF_MODE_MONITOR; |
| 2357 | status |= BCM43xx_SBF_MODE_PROMISC; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2358 | break; |
| 2359 | case IW_MODE_ADHOC: |
| 2360 | status &= ~BCM43xx_SBF_MODE_NOTADHOC; |
| 2361 | break; |
| 2362 | case IW_MODE_MASTER: |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2363 | status |= BCM43xx_SBF_MODE_AP; |
| 2364 | break; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2365 | case IW_MODE_SECOND: |
| 2366 | case IW_MODE_REPEAT: |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2367 | TODO(); /* TODO */ |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2368 | break; |
| 2369 | case IW_MODE_INFRA: |
| 2370 | /* nothing to be done here... */ |
| 2371 | break; |
| 2372 | default: |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2373 | dprintk(KERN_ERR PFX "Unknown mode in set_iwmode: %d\n", iw_mode); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2374 | } |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2375 | if (net_dev->flags & IFF_PROMISC) |
| 2376 | status |= BCM43xx_SBF_MODE_PROMISC; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2377 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, status); |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2378 | |
| 2379 | value = 0x0002; |
| 2380 | if (iw_mode != IW_MODE_ADHOC && iw_mode != IW_MODE_MASTER) { |
| 2381 | if (bcm->chip_id == 0x4306 && bcm->chip_rev == 3) |
| 2382 | value = 0x0064; |
| 2383 | else |
| 2384 | value = 0x0032; |
| 2385 | } |
| 2386 | bcm43xx_write16(bcm, 0x0612, value); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2387 | } |
| 2388 | |
| 2389 | /* This is the opposite of bcm43xx_chip_init() */ |
| 2390 | static void bcm43xx_chip_cleanup(struct bcm43xx_private *bcm) |
| 2391 | { |
| 2392 | bcm43xx_radio_turn_off(bcm); |
| 2393 | if (!modparam_noleds) |
| 2394 | bcm43xx_leds_exit(bcm); |
| 2395 | bcm43xx_gpio_cleanup(bcm); |
| 2396 | free_irq(bcm->irq, bcm); |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2397 | bcm43xx_release_firmware(bcm, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2398 | } |
| 2399 | |
| 2400 | /* Initialize the chip |
| 2401 | * http://bcm-specs.sipsolutions.net/ChipInit |
| 2402 | */ |
| 2403 | static int bcm43xx_chip_init(struct bcm43xx_private *bcm) |
| 2404 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2405 | struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm); |
| 2406 | struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2407 | int err; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2408 | int tmp; |
| 2409 | u32 value32; |
| 2410 | u16 value16; |
| 2411 | |
| 2412 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, |
| 2413 | BCM43xx_SBF_CORE_READY |
| 2414 | | BCM43xx_SBF_400); |
| 2415 | |
| 2416 | err = bcm43xx_request_firmware(bcm); |
| 2417 | if (err) |
| 2418 | goto out; |
| 2419 | bcm43xx_upload_microcode(bcm); |
| 2420 | |
| 2421 | err = bcm43xx_initialize_irq(bcm); |
| 2422 | if (err) |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2423 | goto err_release_fw; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2424 | |
| 2425 | err = bcm43xx_gpio_init(bcm); |
| 2426 | if (err) |
| 2427 | goto err_free_irq; |
| 2428 | |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2429 | err = bcm43xx_upload_initvals(bcm); |
| 2430 | if (err) |
| 2431 | goto err_gpio_cleanup; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2432 | bcm43xx_radio_turn_on(bcm); |
| 2433 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2434 | bcm43xx_write16(bcm, 0x03E6, 0x0000); |
| 2435 | err = bcm43xx_phy_init(bcm); |
| 2436 | if (err) |
| 2437 | goto err_radio_off; |
| 2438 | |
| 2439 | /* Select initial Interference Mitigation. */ |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2440 | tmp = radio->interfmode; |
| 2441 | radio->interfmode = BCM43xx_RADIO_INTERFMODE_NONE; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2442 | bcm43xx_radio_set_interference_mitigation(bcm, tmp); |
| 2443 | |
| 2444 | bcm43xx_phy_set_antenna_diversity(bcm); |
| 2445 | bcm43xx_radio_set_txantenna(bcm, BCM43xx_RADIO_TXANTENNA_DEFAULT); |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2446 | if (phy->type == BCM43xx_PHYTYPE_B) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2447 | value16 = bcm43xx_read16(bcm, 0x005E); |
| 2448 | value16 |= 0x0004; |
| 2449 | bcm43xx_write16(bcm, 0x005E, value16); |
| 2450 | } |
| 2451 | bcm43xx_write32(bcm, 0x0100, 0x01000000); |
| 2452 | if (bcm->current_core->rev < 5) |
| 2453 | bcm43xx_write32(bcm, 0x010C, 0x01000000); |
| 2454 | |
| 2455 | value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); |
| 2456 | value32 &= ~ BCM43xx_SBF_MODE_NOTADHOC; |
| 2457 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32); |
| 2458 | value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); |
| 2459 | value32 |= BCM43xx_SBF_MODE_NOTADHOC; |
| 2460 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2461 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2462 | value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2463 | value32 |= 0x100000; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2464 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32); |
| 2465 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 2466 | if (bcm43xx_using_pio(bcm)) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2467 | bcm43xx_write32(bcm, 0x0210, 0x00000100); |
| 2468 | bcm43xx_write32(bcm, 0x0230, 0x00000100); |
| 2469 | bcm43xx_write32(bcm, 0x0250, 0x00000100); |
| 2470 | bcm43xx_write32(bcm, 0x0270, 0x00000100); |
| 2471 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0034, 0x0000); |
| 2472 | } |
| 2473 | |
| 2474 | /* Probe Response Timeout value */ |
| 2475 | /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */ |
| 2476 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0074, 0x0000); |
| 2477 | |
Michael Buesch | 6ab5b8e | 2006-03-19 17:18:48 +0100 | [diff] [blame] | 2478 | /* Initially set the wireless operation mode. */ |
| 2479 | bcm43xx_set_iwmode(bcm, bcm->ieee->iw_mode); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2480 | |
| 2481 | if (bcm->current_core->rev < 3) { |
| 2482 | bcm43xx_write16(bcm, 0x060E, 0x0000); |
| 2483 | bcm43xx_write16(bcm, 0x0610, 0x8000); |
| 2484 | bcm43xx_write16(bcm, 0x0604, 0x0000); |
| 2485 | bcm43xx_write16(bcm, 0x0606, 0x0200); |
| 2486 | } else { |
| 2487 | bcm43xx_write32(bcm, 0x0188, 0x80000000); |
| 2488 | bcm43xx_write32(bcm, 0x018C, 0x02000000); |
| 2489 | } |
| 2490 | bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, 0x00004000); |
| 2491 | bcm43xx_write32(bcm, BCM43xx_MMIO_DMA1_IRQ_MASK, 0x0001DC00); |
| 2492 | bcm43xx_write32(bcm, BCM43xx_MMIO_DMA2_IRQ_MASK, 0x0000DC00); |
| 2493 | bcm43xx_write32(bcm, BCM43xx_MMIO_DMA3_IRQ_MASK, 0x0000DC00); |
| 2494 | bcm43xx_write32(bcm, BCM43xx_MMIO_DMA4_IRQ_MASK, 0x0001DC00); |
| 2495 | |
| 2496 | value32 = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW); |
| 2497 | value32 |= 0x00100000; |
| 2498 | bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, value32); |
| 2499 | |
| 2500 | bcm43xx_write16(bcm, BCM43xx_MMIO_POWERUP_DELAY, bcm43xx_pctl_powerup_delay(bcm)); |
| 2501 | |
| 2502 | assert(err == 0); |
| 2503 | dprintk(KERN_INFO PFX "Chip initialized\n"); |
| 2504 | out: |
| 2505 | return err; |
| 2506 | |
| 2507 | err_radio_off: |
| 2508 | bcm43xx_radio_turn_off(bcm); |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2509 | err_gpio_cleanup: |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2510 | bcm43xx_gpio_cleanup(bcm); |
| 2511 | err_free_irq: |
| 2512 | free_irq(bcm->irq, bcm); |
Michael Buesch | a4a600d | 2006-02-01 22:09:52 +0100 | [diff] [blame] | 2513 | err_release_fw: |
| 2514 | bcm43xx_release_firmware(bcm, 1); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2515 | goto out; |
| 2516 | } |
| 2517 | |
| 2518 | /* Validate chip access |
| 2519 | * http://bcm-specs.sipsolutions.net/ValidateChipAccess */ |
| 2520 | static int bcm43xx_validate_chip(struct bcm43xx_private *bcm) |
| 2521 | { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2522 | u32 value; |
| 2523 | u32 shm_backup; |
| 2524 | |
| 2525 | shm_backup = bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000); |
| 2526 | bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, 0xAA5555AA); |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 2527 | if (bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000) != 0xAA5555AA) |
| 2528 | goto error; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2529 | bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, 0x55AAAA55); |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 2530 | if (bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000) != 0x55AAAA55) |
| 2531 | goto error; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2532 | bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, shm_backup); |
| 2533 | |
| 2534 | value = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 2535 | if ((value | 0x80000000) != 0x80000400) |
| 2536 | goto error; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2537 | |
| 2538 | value = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 2539 | if (value != 0x00000000) |
| 2540 | goto error; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2541 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 2542 | return 0; |
| 2543 | error: |
| 2544 | printk(KERN_ERR PFX "Failed to validate the chipaccess\n"); |
| 2545 | return -ENODEV; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2546 | } |
| 2547 | |
Michael Buesch | 8afceb1 | 2006-03-25 17:04:41 +0100 | [diff] [blame] | 2548 | static void bcm43xx_init_struct_phyinfo(struct bcm43xx_phyinfo *phy) |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2549 | { |
| 2550 | /* Initialize a "phyinfo" structure. The structure is already |
| 2551 | * zeroed out. |
| 2552 | */ |
| 2553 | phy->antenna_diversity = 0xFFFF; |
| 2554 | phy->savedpctlreg = 0xFFFF; |
| 2555 | phy->minlowsig[0] = 0xFFFF; |
| 2556 | phy->minlowsig[1] = 0xFFFF; |
| 2557 | spin_lock_init(&phy->lock); |
| 2558 | } |
| 2559 | |
Michael Buesch | 8afceb1 | 2006-03-25 17:04:41 +0100 | [diff] [blame] | 2560 | static void bcm43xx_init_struct_radioinfo(struct bcm43xx_radioinfo *radio) |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2561 | { |
| 2562 | /* Initialize a "radioinfo" structure. The structure is already |
| 2563 | * zeroed out. |
| 2564 | */ |
| 2565 | radio->interfmode = BCM43xx_RADIO_INTERFMODE_NONE; |
| 2566 | radio->channel = 0xFF; |
| 2567 | radio->initial_channel = 0xFF; |
| 2568 | radio->lofcal = 0xFFFF; |
| 2569 | radio->initval = 0xFFFF; |
| 2570 | radio->nrssi[0] = -1000; |
| 2571 | radio->nrssi[1] = -1000; |
| 2572 | } |
| 2573 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2574 | static int bcm43xx_probe_cores(struct bcm43xx_private *bcm) |
| 2575 | { |
| 2576 | int err, i; |
| 2577 | int current_core; |
| 2578 | u32 core_vendor, core_id, core_rev; |
| 2579 | u32 sb_id_hi, chip_id_32 = 0; |
| 2580 | u16 pci_device, chip_id_16; |
| 2581 | u8 core_count; |
| 2582 | |
| 2583 | memset(&bcm->core_chipcommon, 0, sizeof(struct bcm43xx_coreinfo)); |
| 2584 | memset(&bcm->core_pci, 0, sizeof(struct bcm43xx_coreinfo)); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2585 | memset(&bcm->core_80211, 0, sizeof(struct bcm43xx_coreinfo) |
| 2586 | * BCM43xx_MAX_80211_CORES); |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2587 | memset(&bcm->core_80211_ext, 0, sizeof(struct bcm43xx_coreinfo_80211) |
| 2588 | * BCM43xx_MAX_80211_CORES); |
| 2589 | bcm->current_80211_core_idx = -1; |
| 2590 | bcm->nr_80211_available = 0; |
| 2591 | bcm->current_core = NULL; |
| 2592 | bcm->active_80211_core = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2593 | |
| 2594 | /* map core 0 */ |
| 2595 | err = _switch_core(bcm, 0); |
| 2596 | if (err) |
| 2597 | goto out; |
| 2598 | |
| 2599 | /* fetch sb_id_hi from core information registers */ |
| 2600 | sb_id_hi = bcm43xx_read32(bcm, BCM43xx_CIR_SB_ID_HI); |
| 2601 | |
| 2602 | core_id = (sb_id_hi & 0xFFF0) >> 4; |
| 2603 | core_rev = (sb_id_hi & 0xF); |
| 2604 | core_vendor = (sb_id_hi & 0xFFFF0000) >> 16; |
| 2605 | |
| 2606 | /* if present, chipcommon is always core 0; read the chipid from it */ |
| 2607 | if (core_id == BCM43xx_COREID_CHIPCOMMON) { |
| 2608 | chip_id_32 = bcm43xx_read32(bcm, 0); |
| 2609 | chip_id_16 = chip_id_32 & 0xFFFF; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2610 | bcm->core_chipcommon.available = 1; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2611 | bcm->core_chipcommon.id = core_id; |
| 2612 | bcm->core_chipcommon.rev = core_rev; |
| 2613 | bcm->core_chipcommon.index = 0; |
| 2614 | /* While we are at it, also read the capabilities. */ |
| 2615 | bcm->chipcommon_capabilities = bcm43xx_read32(bcm, BCM43xx_CHIPCOMMON_CAPABILITIES); |
| 2616 | } else { |
| 2617 | /* without a chipCommon, use a hard coded table. */ |
| 2618 | pci_device = bcm->pci_dev->device; |
| 2619 | if (pci_device == 0x4301) |
| 2620 | chip_id_16 = 0x4301; |
| 2621 | else if ((pci_device >= 0x4305) && (pci_device <= 0x4307)) |
| 2622 | chip_id_16 = 0x4307; |
| 2623 | else if ((pci_device >= 0x4402) && (pci_device <= 0x4403)) |
| 2624 | chip_id_16 = 0x4402; |
| 2625 | else if ((pci_device >= 0x4610) && (pci_device <= 0x4615)) |
| 2626 | chip_id_16 = 0x4610; |
| 2627 | else if ((pci_device >= 0x4710) && (pci_device <= 0x4715)) |
| 2628 | chip_id_16 = 0x4710; |
| 2629 | #ifdef CONFIG_BCM947XX |
| 2630 | else if ((pci_device >= 0x4320) && (pci_device <= 0x4325)) |
| 2631 | chip_id_16 = 0x4309; |
| 2632 | #endif |
| 2633 | else { |
| 2634 | printk(KERN_ERR PFX "Could not determine Chip ID\n"); |
| 2635 | return -ENODEV; |
| 2636 | } |
| 2637 | } |
| 2638 | |
| 2639 | /* ChipCommon with Core Rev >=4 encodes number of cores, |
| 2640 | * otherwise consult hardcoded table */ |
| 2641 | if ((core_id == BCM43xx_COREID_CHIPCOMMON) && (core_rev >= 4)) { |
| 2642 | core_count = (chip_id_32 & 0x0F000000) >> 24; |
| 2643 | } else { |
| 2644 | switch (chip_id_16) { |
| 2645 | case 0x4610: |
| 2646 | case 0x4704: |
| 2647 | case 0x4710: |
| 2648 | core_count = 9; |
| 2649 | break; |
| 2650 | case 0x4310: |
| 2651 | core_count = 8; |
| 2652 | break; |
| 2653 | case 0x5365: |
| 2654 | core_count = 7; |
| 2655 | break; |
| 2656 | case 0x4306: |
| 2657 | core_count = 6; |
| 2658 | break; |
| 2659 | case 0x4301: |
| 2660 | case 0x4307: |
| 2661 | core_count = 5; |
| 2662 | break; |
| 2663 | case 0x4402: |
| 2664 | core_count = 3; |
| 2665 | break; |
| 2666 | default: |
| 2667 | /* SOL if we get here */ |
| 2668 | assert(0); |
| 2669 | core_count = 1; |
| 2670 | } |
| 2671 | } |
| 2672 | |
| 2673 | bcm->chip_id = chip_id_16; |
Michael Buesch | adc40e9 | 2006-03-25 20:36:57 +0100 | [diff] [blame] | 2674 | bcm->chip_rev = (chip_id_32 & 0x000F0000) >> 16; |
| 2675 | bcm->chip_package = (chip_id_32 & 0x00F00000) >> 20; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2676 | |
| 2677 | dprintk(KERN_INFO PFX "Chip ID 0x%x, rev 0x%x\n", |
| 2678 | bcm->chip_id, bcm->chip_rev); |
| 2679 | dprintk(KERN_INFO PFX "Number of cores: %d\n", core_count); |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2680 | if (bcm->core_chipcommon.available) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2681 | dprintk(KERN_INFO PFX "Core 0: ID 0x%x, rev 0x%x, vendor 0x%x, %s\n", |
| 2682 | core_id, core_rev, core_vendor, |
| 2683 | bcm43xx_core_enabled(bcm) ? "enabled" : "disabled"); |
| 2684 | } |
| 2685 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2686 | if (bcm->core_chipcommon.available) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2687 | current_core = 1; |
| 2688 | else |
| 2689 | current_core = 0; |
| 2690 | for ( ; current_core < core_count; current_core++) { |
| 2691 | struct bcm43xx_coreinfo *core; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2692 | struct bcm43xx_coreinfo_80211 *ext_80211; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2693 | |
| 2694 | err = _switch_core(bcm, current_core); |
| 2695 | if (err) |
| 2696 | goto out; |
| 2697 | /* Gather information */ |
| 2698 | /* fetch sb_id_hi from core information registers */ |
| 2699 | sb_id_hi = bcm43xx_read32(bcm, BCM43xx_CIR_SB_ID_HI); |
| 2700 | |
| 2701 | /* extract core_id, core_rev, core_vendor */ |
| 2702 | core_id = (sb_id_hi & 0xFFF0) >> 4; |
| 2703 | core_rev = (sb_id_hi & 0xF); |
| 2704 | core_vendor = (sb_id_hi & 0xFFFF0000) >> 16; |
| 2705 | |
| 2706 | dprintk(KERN_INFO PFX "Core %d: ID 0x%x, rev 0x%x, vendor 0x%x, %s\n", |
| 2707 | current_core, core_id, core_rev, core_vendor, |
| 2708 | bcm43xx_core_enabled(bcm) ? "enabled" : "disabled" ); |
| 2709 | |
| 2710 | core = NULL; |
| 2711 | switch (core_id) { |
| 2712 | case BCM43xx_COREID_PCI: |
| 2713 | core = &bcm->core_pci; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2714 | if (core->available) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2715 | printk(KERN_WARNING PFX "Multiple PCI cores found.\n"); |
| 2716 | continue; |
| 2717 | } |
| 2718 | break; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2719 | case BCM43xx_COREID_80211: |
| 2720 | for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) { |
| 2721 | core = &(bcm->core_80211[i]); |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2722 | ext_80211 = &(bcm->core_80211_ext[i]); |
| 2723 | if (!core->available) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2724 | break; |
| 2725 | core = NULL; |
| 2726 | } |
| 2727 | if (!core) { |
| 2728 | printk(KERN_WARNING PFX "More than %d cores of type 802.11 found.\n", |
| 2729 | BCM43xx_MAX_80211_CORES); |
| 2730 | continue; |
| 2731 | } |
| 2732 | if (i != 0) { |
| 2733 | /* More than one 80211 core is only supported |
| 2734 | * by special chips. |
| 2735 | * There are chips with two 80211 cores, but with |
| 2736 | * dangling pins on the second core. Be careful |
| 2737 | * and ignore these cores here. |
| 2738 | */ |
| 2739 | if (bcm->pci_dev->device != 0x4324) { |
| 2740 | dprintk(KERN_INFO PFX "Ignoring additional 802.11 core.\n"); |
| 2741 | continue; |
| 2742 | } |
| 2743 | } |
| 2744 | switch (core_rev) { |
| 2745 | case 2: |
| 2746 | case 4: |
| 2747 | case 5: |
| 2748 | case 6: |
| 2749 | case 7: |
| 2750 | case 9: |
| 2751 | break; |
| 2752 | default: |
| 2753 | printk(KERN_ERR PFX "Error: Unsupported 80211 core revision %u\n", |
| 2754 | core_rev); |
| 2755 | err = -ENODEV; |
| 2756 | goto out; |
| 2757 | } |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2758 | bcm->nr_80211_available++; |
| 2759 | bcm43xx_init_struct_phyinfo(&ext_80211->phy); |
| 2760 | bcm43xx_init_struct_radioinfo(&ext_80211->radio); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2761 | break; |
| 2762 | case BCM43xx_COREID_CHIPCOMMON: |
| 2763 | printk(KERN_WARNING PFX "Multiple CHIPCOMMON cores found.\n"); |
| 2764 | break; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2765 | } |
| 2766 | if (core) { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2767 | core->available = 1; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2768 | core->id = core_id; |
| 2769 | core->rev = core_rev; |
| 2770 | core->index = current_core; |
| 2771 | } |
| 2772 | } |
| 2773 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2774 | if (!bcm->core_80211[0].available) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2775 | printk(KERN_ERR PFX "Error: No 80211 core found!\n"); |
| 2776 | err = -ENODEV; |
| 2777 | goto out; |
| 2778 | } |
| 2779 | |
| 2780 | err = bcm43xx_switch_core(bcm, &bcm->core_80211[0]); |
| 2781 | |
| 2782 | assert(err == 0); |
| 2783 | out: |
| 2784 | return err; |
| 2785 | } |
| 2786 | |
| 2787 | static void bcm43xx_gen_bssid(struct bcm43xx_private *bcm) |
| 2788 | { |
| 2789 | const u8 *mac = (const u8*)(bcm->net_dev->dev_addr); |
| 2790 | u8 *bssid = bcm->ieee->bssid; |
| 2791 | |
| 2792 | switch (bcm->ieee->iw_mode) { |
| 2793 | case IW_MODE_ADHOC: |
| 2794 | random_ether_addr(bssid); |
| 2795 | break; |
| 2796 | case IW_MODE_MASTER: |
| 2797 | case IW_MODE_INFRA: |
| 2798 | case IW_MODE_REPEAT: |
| 2799 | case IW_MODE_SECOND: |
| 2800 | case IW_MODE_MONITOR: |
| 2801 | memcpy(bssid, mac, ETH_ALEN); |
| 2802 | break; |
| 2803 | default: |
| 2804 | assert(0); |
| 2805 | } |
| 2806 | } |
| 2807 | |
| 2808 | static void bcm43xx_rate_memory_write(struct bcm43xx_private *bcm, |
| 2809 | u16 rate, |
| 2810 | int is_ofdm) |
| 2811 | { |
| 2812 | u16 offset; |
| 2813 | |
| 2814 | if (is_ofdm) { |
| 2815 | offset = 0x480; |
| 2816 | offset += (bcm43xx_plcp_get_ratecode_ofdm(rate) & 0x000F) * 2; |
| 2817 | } |
| 2818 | else { |
| 2819 | offset = 0x4C0; |
| 2820 | offset += (bcm43xx_plcp_get_ratecode_cck(rate) & 0x000F) * 2; |
| 2821 | } |
| 2822 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, offset + 0x20, |
| 2823 | bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, offset)); |
| 2824 | } |
| 2825 | |
| 2826 | static void bcm43xx_rate_memory_init(struct bcm43xx_private *bcm) |
| 2827 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2828 | switch (bcm43xx_current_phy(bcm)->type) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2829 | case BCM43xx_PHYTYPE_A: |
| 2830 | case BCM43xx_PHYTYPE_G: |
| 2831 | bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_6MB, 1); |
| 2832 | bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_12MB, 1); |
| 2833 | bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_18MB, 1); |
| 2834 | bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_24MB, 1); |
| 2835 | bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_36MB, 1); |
| 2836 | bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_48MB, 1); |
| 2837 | bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_54MB, 1); |
| 2838 | case BCM43xx_PHYTYPE_B: |
| 2839 | bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_1MB, 0); |
| 2840 | bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_2MB, 0); |
| 2841 | bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_5MB, 0); |
| 2842 | bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_11MB, 0); |
| 2843 | break; |
| 2844 | default: |
| 2845 | assert(0); |
| 2846 | } |
| 2847 | } |
| 2848 | |
| 2849 | static void bcm43xx_wireless_core_cleanup(struct bcm43xx_private *bcm) |
| 2850 | { |
| 2851 | bcm43xx_chip_cleanup(bcm); |
| 2852 | bcm43xx_pio_free(bcm); |
| 2853 | bcm43xx_dma_free(bcm); |
| 2854 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2855 | bcm->current_core->initialized = 0; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2856 | } |
| 2857 | |
| 2858 | /* http://bcm-specs.sipsolutions.net/80211Init */ |
| 2859 | static int bcm43xx_wireless_core_init(struct bcm43xx_private *bcm) |
| 2860 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2861 | struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm); |
| 2862 | struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2863 | u32 ucodeflags; |
| 2864 | int err; |
| 2865 | u32 sbimconfiglow; |
| 2866 | u8 limit; |
| 2867 | |
| 2868 | if (bcm->chip_rev < 5) { |
| 2869 | sbimconfiglow = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMCONFIGLOW); |
| 2870 | sbimconfiglow &= ~ BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_MASK; |
| 2871 | sbimconfiglow &= ~ BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_MASK; |
| 2872 | if (bcm->bustype == BCM43xx_BUSTYPE_PCI) |
| 2873 | sbimconfiglow |= 0x32; |
| 2874 | else if (bcm->bustype == BCM43xx_BUSTYPE_SB) |
| 2875 | sbimconfiglow |= 0x53; |
| 2876 | else |
| 2877 | assert(0); |
| 2878 | bcm43xx_write32(bcm, BCM43xx_CIR_SBIMCONFIGLOW, sbimconfiglow); |
| 2879 | } |
| 2880 | |
| 2881 | bcm43xx_phy_calibrate(bcm); |
| 2882 | err = bcm43xx_chip_init(bcm); |
| 2883 | if (err) |
| 2884 | goto out; |
| 2885 | |
| 2886 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0016, bcm->current_core->rev); |
| 2887 | ucodeflags = bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, BCM43xx_UCODEFLAGS_OFFSET); |
| 2888 | |
| 2889 | if (0 /*FIXME: which condition has to be used here? */) |
| 2890 | ucodeflags |= 0x00000010; |
| 2891 | |
| 2892 | /* HW decryption needs to be set now */ |
| 2893 | ucodeflags |= 0x40000000; |
| 2894 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2895 | if (phy->type == BCM43xx_PHYTYPE_G) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2896 | ucodeflags |= BCM43xx_UCODEFLAG_UNKBGPHY; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2897 | if (phy->rev == 1) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2898 | ucodeflags |= BCM43xx_UCODEFLAG_UNKGPHY; |
| 2899 | if (bcm->sprom.boardflags & BCM43xx_BFL_PACTRL) |
| 2900 | ucodeflags |= BCM43xx_UCODEFLAG_UNKPACTRL; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2901 | } else if (phy->type == BCM43xx_PHYTYPE_B) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2902 | ucodeflags |= BCM43xx_UCODEFLAG_UNKBGPHY; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2903 | if (phy->rev >= 2 && radio->version == 0x2050) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2904 | ucodeflags &= ~BCM43xx_UCODEFLAG_UNKGPHY; |
| 2905 | } |
| 2906 | |
| 2907 | if (ucodeflags != bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, |
| 2908 | BCM43xx_UCODEFLAGS_OFFSET)) { |
| 2909 | bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, |
| 2910 | BCM43xx_UCODEFLAGS_OFFSET, ucodeflags); |
| 2911 | } |
| 2912 | |
| 2913 | /* Short/Long Retry Limit. |
| 2914 | * The retry-limit is a 4-bit counter. Enforce this to avoid overflowing |
| 2915 | * the chip-internal counter. |
| 2916 | */ |
| 2917 | limit = limit_value(modparam_short_retry, 0, 0xF); |
| 2918 | bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0006, limit); |
| 2919 | limit = limit_value(modparam_long_retry, 0, 0xF); |
| 2920 | bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0007, limit); |
| 2921 | |
| 2922 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0044, 3); |
| 2923 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0046, 2); |
| 2924 | |
| 2925 | bcm43xx_rate_memory_init(bcm); |
| 2926 | |
| 2927 | /* Minimum Contention Window */ |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2928 | if (phy->type == BCM43xx_PHYTYPE_B) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2929 | bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0003, 0x0000001f); |
| 2930 | else |
| 2931 | bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0003, 0x0000000f); |
| 2932 | /* Maximum Contention Window */ |
| 2933 | bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0004, 0x000003ff); |
| 2934 | |
| 2935 | bcm43xx_gen_bssid(bcm); |
| 2936 | bcm43xx_write_mac_bssid_templates(bcm); |
| 2937 | |
| 2938 | if (bcm->current_core->rev >= 5) |
| 2939 | bcm43xx_write16(bcm, 0x043C, 0x000C); |
| 2940 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 2941 | if (bcm43xx_using_pio(bcm)) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2942 | err = bcm43xx_pio_init(bcm); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 2943 | else |
| 2944 | err = bcm43xx_dma_init(bcm); |
| 2945 | if (err) |
| 2946 | goto err_chip_cleanup; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2947 | bcm43xx_write16(bcm, 0x0612, 0x0050); |
| 2948 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0416, 0x0050); |
| 2949 | bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0414, 0x01F4); |
| 2950 | |
| 2951 | bcm43xx_mac_enable(bcm); |
| 2952 | bcm43xx_interrupt_enable(bcm, bcm->irq_savedstate); |
| 2953 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 2954 | bcm->current_core->initialized = 1; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2955 | out: |
| 2956 | return err; |
| 2957 | |
| 2958 | err_chip_cleanup: |
| 2959 | bcm43xx_chip_cleanup(bcm); |
| 2960 | goto out; |
| 2961 | } |
| 2962 | |
| 2963 | static int bcm43xx_chipset_attach(struct bcm43xx_private *bcm) |
| 2964 | { |
| 2965 | int err; |
| 2966 | u16 pci_status; |
| 2967 | |
| 2968 | err = bcm43xx_pctl_set_crystal(bcm, 1); |
| 2969 | if (err) |
| 2970 | goto out; |
| 2971 | bcm43xx_pci_read_config16(bcm, PCI_STATUS, &pci_status); |
| 2972 | bcm43xx_pci_write_config16(bcm, PCI_STATUS, pci_status & ~PCI_STATUS_SIG_TARGET_ABORT); |
| 2973 | |
| 2974 | out: |
| 2975 | return err; |
| 2976 | } |
| 2977 | |
| 2978 | static void bcm43xx_chipset_detach(struct bcm43xx_private *bcm) |
| 2979 | { |
| 2980 | bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_SLOW); |
| 2981 | bcm43xx_pctl_set_crystal(bcm, 0); |
| 2982 | } |
| 2983 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 2984 | static void bcm43xx_pcicore_broadcast_value(struct bcm43xx_private *bcm, |
| 2985 | u32 address, |
| 2986 | u32 data) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 2987 | { |
| 2988 | bcm43xx_write32(bcm, BCM43xx_PCICORE_BCAST_ADDR, address); |
| 2989 | bcm43xx_write32(bcm, BCM43xx_PCICORE_BCAST_DATA, data); |
| 2990 | } |
| 2991 | |
| 2992 | static int bcm43xx_pcicore_commit_settings(struct bcm43xx_private *bcm) |
| 2993 | { |
| 2994 | int err; |
| 2995 | struct bcm43xx_coreinfo *old_core; |
| 2996 | |
| 2997 | old_core = bcm->current_core; |
| 2998 | err = bcm43xx_switch_core(bcm, &bcm->core_pci); |
| 2999 | if (err) |
| 3000 | goto out; |
| 3001 | |
| 3002 | bcm43xx_pcicore_broadcast_value(bcm, 0xfd8, 0x00000000); |
| 3003 | |
| 3004 | bcm43xx_switch_core(bcm, old_core); |
| 3005 | assert(err == 0); |
| 3006 | out: |
| 3007 | return err; |
| 3008 | } |
| 3009 | |
| 3010 | /* Make an I/O Core usable. "core_mask" is the bitmask of the cores to enable. |
| 3011 | * To enable core 0, pass a core_mask of 1<<0 |
| 3012 | */ |
| 3013 | static int bcm43xx_setup_backplane_pci_connection(struct bcm43xx_private *bcm, |
| 3014 | u32 core_mask) |
| 3015 | { |
| 3016 | u32 backplane_flag_nr; |
| 3017 | u32 value; |
| 3018 | struct bcm43xx_coreinfo *old_core; |
| 3019 | int err = 0; |
| 3020 | |
| 3021 | value = bcm43xx_read32(bcm, BCM43xx_CIR_SBTPSFLAG); |
| 3022 | backplane_flag_nr = value & BCM43xx_BACKPLANE_FLAG_NR_MASK; |
| 3023 | |
| 3024 | old_core = bcm->current_core; |
| 3025 | err = bcm43xx_switch_core(bcm, &bcm->core_pci); |
| 3026 | if (err) |
| 3027 | goto out; |
| 3028 | |
| 3029 | if (bcm->core_pci.rev < 6) { |
| 3030 | value = bcm43xx_read32(bcm, BCM43xx_CIR_SBINTVEC); |
| 3031 | value |= (1 << backplane_flag_nr); |
| 3032 | bcm43xx_write32(bcm, BCM43xx_CIR_SBINTVEC, value); |
| 3033 | } else { |
| 3034 | err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_ICR, &value); |
| 3035 | if (err) { |
| 3036 | printk(KERN_ERR PFX "Error: ICR setup failure!\n"); |
| 3037 | goto out_switch_back; |
| 3038 | } |
| 3039 | value |= core_mask << 8; |
| 3040 | err = bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_ICR, value); |
| 3041 | if (err) { |
| 3042 | printk(KERN_ERR PFX "Error: ICR setup failure!\n"); |
| 3043 | goto out_switch_back; |
| 3044 | } |
| 3045 | } |
| 3046 | |
| 3047 | value = bcm43xx_read32(bcm, BCM43xx_PCICORE_SBTOPCI2); |
| 3048 | value |= BCM43xx_SBTOPCI2_PREFETCH | BCM43xx_SBTOPCI2_BURST; |
| 3049 | bcm43xx_write32(bcm, BCM43xx_PCICORE_SBTOPCI2, value); |
| 3050 | |
| 3051 | if (bcm->core_pci.rev < 5) { |
| 3052 | value = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMCONFIGLOW); |
| 3053 | value |= (2 << BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_SHIFT) |
| 3054 | & BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_MASK; |
| 3055 | value |= (3 << BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_SHIFT) |
| 3056 | & BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_MASK; |
| 3057 | bcm43xx_write32(bcm, BCM43xx_CIR_SBIMCONFIGLOW, value); |
| 3058 | err = bcm43xx_pcicore_commit_settings(bcm); |
| 3059 | assert(err == 0); |
| 3060 | } |
| 3061 | |
| 3062 | out_switch_back: |
| 3063 | err = bcm43xx_switch_core(bcm, old_core); |
| 3064 | out: |
| 3065 | return err; |
| 3066 | } |
| 3067 | |
| 3068 | static void bcm43xx_softmac_init(struct bcm43xx_private *bcm) |
| 3069 | { |
| 3070 | ieee80211softmac_start(bcm->net_dev); |
| 3071 | } |
| 3072 | |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3073 | static void bcm43xx_periodic_every120sec(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3074 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3075 | struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3076 | |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3077 | if (phy->type != BCM43xx_PHYTYPE_G || phy->rev < 2) |
| 3078 | return; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3079 | |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3080 | bcm43xx_mac_suspend(bcm); |
| 3081 | bcm43xx_phy_lo_g_measure(bcm); |
| 3082 | bcm43xx_mac_enable(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3083 | } |
| 3084 | |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3085 | static void bcm43xx_periodic_every60sec(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3086 | { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3087 | bcm43xx_phy_lo_mark_all_unused(bcm); |
| 3088 | if (bcm->sprom.boardflags & BCM43xx_BFL_RSSI) { |
| 3089 | bcm43xx_mac_suspend(bcm); |
| 3090 | bcm43xx_calc_nrssi_slope(bcm); |
| 3091 | bcm43xx_mac_enable(bcm); |
| 3092 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3093 | } |
| 3094 | |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3095 | static void bcm43xx_periodic_every30sec(struct bcm43xx_private *bcm) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3096 | { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3097 | /* Update device statistics. */ |
| 3098 | bcm43xx_calculate_link_quality(bcm); |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3099 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3100 | |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3101 | static void bcm43xx_periodic_every15sec(struct bcm43xx_private *bcm) |
| 3102 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3103 | struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm); |
| 3104 | struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm); |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3105 | |
| 3106 | if (phy->type == BCM43xx_PHYTYPE_G) { |
| 3107 | //TODO: update_aci_moving_average |
| 3108 | if (radio->aci_enable && radio->aci_wlan_automatic) { |
| 3109 | bcm43xx_mac_suspend(bcm); |
| 3110 | if (!radio->aci_enable && 1 /*TODO: not scanning? */) { |
| 3111 | if (0 /*TODO: bunch of conditions*/) { |
| 3112 | bcm43xx_radio_set_interference_mitigation(bcm, |
| 3113 | BCM43xx_RADIO_INTERFMODE_MANUALWLAN); |
| 3114 | } |
| 3115 | } else if (1/*TODO*/) { |
| 3116 | /* |
| 3117 | if ((aci_average > 1000) && !(bcm43xx_radio_aci_scan(bcm))) { |
| 3118 | bcm43xx_radio_set_interference_mitigation(bcm, |
| 3119 | BCM43xx_RADIO_INTERFMODE_NONE); |
| 3120 | } |
| 3121 | */ |
| 3122 | } |
| 3123 | bcm43xx_mac_enable(bcm); |
| 3124 | } else if (radio->interfmode == BCM43xx_RADIO_INTERFMODE_NONWLAN && |
| 3125 | phy->rev == 1) { |
| 3126 | //TODO: implement rev1 workaround |
| 3127 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3128 | } |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3129 | bcm43xx_phy_xmitpower(bcm); //FIXME: unless scanning? |
| 3130 | //TODO for APHY (temperature?) |
| 3131 | } |
| 3132 | |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 3133 | static void do_periodic_work(struct bcm43xx_private *bcm) |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3134 | { |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3135 | unsigned int state; |
| 3136 | |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3137 | state = bcm->periodic_state; |
| 3138 | if (state % 8 == 0) |
| 3139 | bcm43xx_periodic_every120sec(bcm); |
| 3140 | if (state % 4 == 0) |
| 3141 | bcm43xx_periodic_every60sec(bcm); |
| 3142 | if (state % 2 == 0) |
| 3143 | bcm43xx_periodic_every30sec(bcm); |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 3144 | if (state % 1 == 0) |
| 3145 | bcm43xx_periodic_every15sec(bcm); |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3146 | bcm->periodic_state = state + 1; |
| 3147 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3148 | schedule_delayed_work(&bcm->periodic_work, HZ * 15); |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 3149 | } |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3150 | |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 3151 | /* Estimate a "Badness" value based on the periodic work |
| 3152 | * state-machine state. "Badness" is worse (bigger), if the |
| 3153 | * periodic work will take longer. |
| 3154 | */ |
| 3155 | static int estimate_periodic_work_badness(unsigned int state) |
| 3156 | { |
| 3157 | int badness = 0; |
| 3158 | |
| 3159 | if (state % 8 == 0) /* every 120 sec */ |
| 3160 | badness += 10; |
| 3161 | if (state % 4 == 0) /* every 60 sec */ |
| 3162 | badness += 5; |
| 3163 | if (state % 2 == 0) /* every 30 sec */ |
| 3164 | badness += 1; |
| 3165 | if (state % 1 == 0) /* every 15 sec */ |
| 3166 | badness += 1; |
| 3167 | |
| 3168 | #define BADNESS_LIMIT 4 |
| 3169 | return badness; |
| 3170 | } |
| 3171 | |
| 3172 | static void bcm43xx_periodic_work_handler(void *d) |
| 3173 | { |
| 3174 | struct bcm43xx_private *bcm = d; |
| 3175 | unsigned long flags; |
| 3176 | u32 savedirqs = 0; |
| 3177 | int badness; |
| 3178 | |
| 3179 | badness = estimate_periodic_work_badness(bcm->periodic_state); |
| 3180 | if (badness > BADNESS_LIMIT) { |
| 3181 | /* Periodic work will take a long time, so we want it to |
| 3182 | * be preemtible. |
| 3183 | */ |
| 3184 | bcm43xx_lock_irqonly(bcm, flags); |
| 3185 | netif_stop_queue(bcm->net_dev); |
| 3186 | if (bcm43xx_using_pio(bcm)) |
| 3187 | bcm43xx_pio_freeze_txqueues(bcm); |
| 3188 | savedirqs = bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL); |
| 3189 | bcm43xx_unlock_irqonly(bcm, flags); |
| 3190 | bcm43xx_lock_noirq(bcm); |
| 3191 | bcm43xx_synchronize_irq(bcm); |
| 3192 | } else { |
| 3193 | /* Periodic work should take short time, so we want low |
| 3194 | * locking overhead. |
| 3195 | */ |
| 3196 | bcm43xx_lock_irqsafe(bcm, flags); |
| 3197 | } |
| 3198 | |
| 3199 | do_periodic_work(bcm); |
| 3200 | |
| 3201 | if (badness > BADNESS_LIMIT) { |
| 3202 | bcm43xx_lock_irqonly(bcm, flags); |
| 3203 | if (likely(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED)) { |
| 3204 | tasklet_enable(&bcm->isr_tasklet); |
| 3205 | bcm43xx_interrupt_enable(bcm, savedirqs); |
| 3206 | if (bcm43xx_using_pio(bcm)) |
| 3207 | bcm43xx_pio_thaw_txqueues(bcm); |
| 3208 | } |
| 3209 | netif_wake_queue(bcm->net_dev); |
| 3210 | mmiowb(); |
| 3211 | bcm43xx_unlock_irqonly(bcm, flags); |
| 3212 | bcm43xx_unlock_noirq(bcm); |
| 3213 | } else { |
| 3214 | mmiowb(); |
| 3215 | bcm43xx_unlock_irqsafe(bcm, flags); |
| 3216 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3217 | } |
| 3218 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3219 | static void bcm43xx_periodic_tasks_delete(struct bcm43xx_private *bcm) |
| 3220 | { |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3221 | cancel_rearming_delayed_work(&bcm->periodic_work); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3222 | } |
| 3223 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3224 | static void bcm43xx_periodic_tasks_setup(struct bcm43xx_private *bcm) |
| 3225 | { |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3226 | struct work_struct *work = &(bcm->periodic_work); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3227 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3228 | assert(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED); |
| 3229 | INIT_WORK(work, bcm43xx_periodic_work_handler, bcm); |
| 3230 | schedule_work(work); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3231 | } |
| 3232 | |
| 3233 | static void bcm43xx_security_init(struct bcm43xx_private *bcm) |
| 3234 | { |
| 3235 | bcm->security_offset = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, |
| 3236 | 0x0056) * 2; |
| 3237 | bcm43xx_clear_keys(bcm); |
| 3238 | } |
| 3239 | |
| 3240 | /* This is the opposite of bcm43xx_init_board() */ |
| 3241 | static void bcm43xx_free_board(struct bcm43xx_private *bcm) |
| 3242 | { |
| 3243 | int i, err; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3244 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3245 | bcm43xx_lock_noirq(bcm); |
Michael Buesch | 367f899 | 2006-02-28 15:32:19 +0100 | [diff] [blame] | 3246 | bcm43xx_sysfs_unregister(bcm); |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3247 | bcm43xx_periodic_tasks_delete(bcm); |
| 3248 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3249 | bcm43xx_set_status(bcm, BCM43xx_STAT_SHUTTINGDOWN); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3250 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3251 | for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3252 | if (!bcm->core_80211[i].available) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3253 | continue; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3254 | if (!bcm->core_80211[i].initialized) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3255 | continue; |
| 3256 | |
| 3257 | err = bcm43xx_switch_core(bcm, &bcm->core_80211[i]); |
| 3258 | assert(err == 0); |
| 3259 | bcm43xx_wireless_core_cleanup(bcm); |
| 3260 | } |
| 3261 | |
| 3262 | bcm43xx_pctl_set_crystal(bcm, 0); |
| 3263 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3264 | bcm43xx_set_status(bcm, BCM43xx_STAT_UNINIT); |
| 3265 | bcm43xx_unlock_noirq(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3266 | } |
| 3267 | |
| 3268 | static int bcm43xx_init_board(struct bcm43xx_private *bcm) |
| 3269 | { |
| 3270 | int i, err; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3271 | int connect_phy; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3272 | |
| 3273 | might_sleep(); |
| 3274 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3275 | bcm43xx_lock_noirq(bcm); |
| 3276 | bcm43xx_set_status(bcm, BCM43xx_STAT_INITIALIZING); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3277 | |
| 3278 | err = bcm43xx_pctl_set_crystal(bcm, 1); |
| 3279 | if (err) |
| 3280 | goto out; |
| 3281 | err = bcm43xx_pctl_init(bcm); |
| 3282 | if (err) |
| 3283 | goto err_crystal_off; |
| 3284 | err = bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_FAST); |
| 3285 | if (err) |
| 3286 | goto err_crystal_off; |
| 3287 | |
| 3288 | tasklet_enable(&bcm->isr_tasklet); |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3289 | for (i = 0; i < bcm->nr_80211_available; i++) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3290 | err = bcm43xx_switch_core(bcm, &bcm->core_80211[i]); |
| 3291 | assert(err != -ENODEV); |
| 3292 | if (err) |
| 3293 | goto err_80211_unwind; |
| 3294 | |
| 3295 | /* Enable the selected wireless core. |
| 3296 | * Connect PHY only on the first core. |
| 3297 | */ |
| 3298 | if (!bcm43xx_core_enabled(bcm)) { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3299 | if (bcm->nr_80211_available == 1) { |
| 3300 | connect_phy = bcm43xx_current_phy(bcm)->connected; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3301 | } else { |
| 3302 | if (i == 0) |
| 3303 | connect_phy = 1; |
| 3304 | else |
| 3305 | connect_phy = 0; |
| 3306 | } |
| 3307 | bcm43xx_wireless_core_reset(bcm, connect_phy); |
| 3308 | } |
| 3309 | |
| 3310 | if (i != 0) |
| 3311 | bcm43xx_wireless_core_mark_inactive(bcm, &bcm->core_80211[0]); |
| 3312 | |
| 3313 | err = bcm43xx_wireless_core_init(bcm); |
| 3314 | if (err) |
| 3315 | goto err_80211_unwind; |
| 3316 | |
| 3317 | if (i != 0) { |
| 3318 | bcm43xx_mac_suspend(bcm); |
| 3319 | bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL); |
| 3320 | bcm43xx_radio_turn_off(bcm); |
| 3321 | } |
| 3322 | } |
| 3323 | bcm->active_80211_core = &bcm->core_80211[0]; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3324 | if (bcm->nr_80211_available >= 2) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3325 | bcm43xx_switch_core(bcm, &bcm->core_80211[0]); |
| 3326 | bcm43xx_mac_enable(bcm); |
| 3327 | } |
| 3328 | bcm43xx_macfilter_clear(bcm, BCM43xx_MACFILTER_ASSOC); |
| 3329 | bcm43xx_macfilter_set(bcm, BCM43xx_MACFILTER_SELF, (u8 *)(bcm->net_dev->dev_addr)); |
| 3330 | dprintk(KERN_INFO PFX "80211 cores initialized\n"); |
| 3331 | bcm43xx_security_init(bcm); |
| 3332 | bcm43xx_softmac_init(bcm); |
| 3333 | |
| 3334 | bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_DYNAMIC); |
| 3335 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3336 | if (bcm43xx_current_radio(bcm)->initial_channel != 0xFF) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3337 | bcm43xx_mac_suspend(bcm); |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3338 | bcm43xx_radio_selectchannel(bcm, bcm43xx_current_radio(bcm)->initial_channel, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3339 | bcm43xx_mac_enable(bcm); |
| 3340 | } |
Michael Buesch | cad2b31 | 2006-02-21 18:08:55 +0100 | [diff] [blame] | 3341 | |
| 3342 | /* Initialization of the board is done. Flag it as such. */ |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3343 | bcm43xx_set_status(bcm, BCM43xx_STAT_INITIALIZED); |
Michael Buesch | cad2b31 | 2006-02-21 18:08:55 +0100 | [diff] [blame] | 3344 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3345 | bcm43xx_periodic_tasks_setup(bcm); |
Michael Buesch | 367f899 | 2006-02-28 15:32:19 +0100 | [diff] [blame] | 3346 | bcm43xx_sysfs_register(bcm); |
| 3347 | //FIXME: check for bcm43xx_sysfs_register failure. This function is a bit messy regarding unwinding, though... |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3348 | |
David Woodhouse | bc519f3 | 2006-05-05 17:38:27 +0100 | [diff] [blame] | 3349 | /*FIXME: This should be handled by softmac instead. */ |
| 3350 | schedule_work(&bcm->softmac->associnfo.work); |
| 3351 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3352 | assert(err == 0); |
| 3353 | out: |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3354 | bcm43xx_unlock_noirq(bcm); |
| 3355 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3356 | return err; |
| 3357 | |
| 3358 | err_80211_unwind: |
| 3359 | tasklet_disable(&bcm->isr_tasklet); |
| 3360 | /* unwind all 80211 initialization */ |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3361 | for (i = 0; i < bcm->nr_80211_available; i++) { |
| 3362 | if (!bcm->core_80211[i].initialized) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3363 | continue; |
| 3364 | bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL); |
| 3365 | bcm43xx_wireless_core_cleanup(bcm); |
| 3366 | } |
| 3367 | err_crystal_off: |
| 3368 | bcm43xx_pctl_set_crystal(bcm, 0); |
| 3369 | goto out; |
| 3370 | } |
| 3371 | |
| 3372 | static void bcm43xx_detach_board(struct bcm43xx_private *bcm) |
| 3373 | { |
| 3374 | struct pci_dev *pci_dev = bcm->pci_dev; |
| 3375 | int i; |
| 3376 | |
| 3377 | bcm43xx_chipset_detach(bcm); |
| 3378 | /* Do _not_ access the chip, after it is detached. */ |
Michael Buesch | cc93571 | 2006-04-10 02:08:33 +0200 | [diff] [blame] | 3379 | pci_iounmap(pci_dev, bcm->mmio_addr); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3380 | pci_release_regions(pci_dev); |
| 3381 | pci_disable_device(pci_dev); |
| 3382 | |
| 3383 | /* Free allocated structures/fields */ |
| 3384 | for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3385 | kfree(bcm->core_80211_ext[i].phy._lo_pairs); |
| 3386 | if (bcm->core_80211_ext[i].phy.dyn_tssi_tbl) |
| 3387 | kfree(bcm->core_80211_ext[i].phy.tssi2dbm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3388 | } |
| 3389 | } |
| 3390 | |
| 3391 | static int bcm43xx_read_phyinfo(struct bcm43xx_private *bcm) |
| 3392 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3393 | struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3394 | u16 value; |
| 3395 | u8 phy_version; |
| 3396 | u8 phy_type; |
| 3397 | u8 phy_rev; |
| 3398 | int phy_rev_ok = 1; |
| 3399 | void *p; |
| 3400 | |
| 3401 | value = bcm43xx_read16(bcm, BCM43xx_MMIO_PHY_VER); |
| 3402 | |
| 3403 | phy_version = (value & 0xF000) >> 12; |
| 3404 | phy_type = (value & 0x0F00) >> 8; |
| 3405 | phy_rev = (value & 0x000F); |
| 3406 | |
| 3407 | dprintk(KERN_INFO PFX "Detected PHY: Version: %x, Type %x, Revision %x\n", |
| 3408 | phy_version, phy_type, phy_rev); |
| 3409 | |
| 3410 | switch (phy_type) { |
| 3411 | case BCM43xx_PHYTYPE_A: |
| 3412 | if (phy_rev >= 4) |
| 3413 | phy_rev_ok = 0; |
| 3414 | /*FIXME: We need to switch the ieee->modulation, etc.. flags, |
| 3415 | * if we switch 80211 cores after init is done. |
| 3416 | * As we do not implement on the fly switching between |
| 3417 | * wireless cores, I will leave this as a future task. |
| 3418 | */ |
| 3419 | bcm->ieee->modulation = IEEE80211_OFDM_MODULATION; |
| 3420 | bcm->ieee->mode = IEEE_A; |
| 3421 | bcm->ieee->freq_band = IEEE80211_52GHZ_BAND | |
| 3422 | IEEE80211_24GHZ_BAND; |
| 3423 | break; |
| 3424 | case BCM43xx_PHYTYPE_B: |
| 3425 | if (phy_rev != 2 && phy_rev != 4 && phy_rev != 6 && phy_rev != 7) |
| 3426 | phy_rev_ok = 0; |
| 3427 | bcm->ieee->modulation = IEEE80211_CCK_MODULATION; |
| 3428 | bcm->ieee->mode = IEEE_B; |
| 3429 | bcm->ieee->freq_band = IEEE80211_24GHZ_BAND; |
| 3430 | break; |
| 3431 | case BCM43xx_PHYTYPE_G: |
| 3432 | if (phy_rev > 7) |
| 3433 | phy_rev_ok = 0; |
| 3434 | bcm->ieee->modulation = IEEE80211_OFDM_MODULATION | |
| 3435 | IEEE80211_CCK_MODULATION; |
| 3436 | bcm->ieee->mode = IEEE_G; |
| 3437 | bcm->ieee->freq_band = IEEE80211_24GHZ_BAND; |
| 3438 | break; |
| 3439 | default: |
| 3440 | printk(KERN_ERR PFX "Error: Unknown PHY Type %x\n", |
| 3441 | phy_type); |
| 3442 | return -ENODEV; |
| 3443 | }; |
| 3444 | if (!phy_rev_ok) { |
| 3445 | printk(KERN_WARNING PFX "Invalid PHY Revision %x\n", |
| 3446 | phy_rev); |
| 3447 | } |
| 3448 | |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 3449 | phy->version = phy_version; |
| 3450 | phy->type = phy_type; |
| 3451 | phy->rev = phy_rev; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3452 | if ((phy_type == BCM43xx_PHYTYPE_B) || (phy_type == BCM43xx_PHYTYPE_G)) { |
| 3453 | p = kzalloc(sizeof(struct bcm43xx_lopair) * BCM43xx_LO_COUNT, |
| 3454 | GFP_KERNEL); |
| 3455 | if (!p) |
| 3456 | return -ENOMEM; |
Michael Buesch | 489423c | 2006-02-13 00:11:07 +0100 | [diff] [blame] | 3457 | phy->_lo_pairs = p; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3458 | } |
| 3459 | |
| 3460 | return 0; |
| 3461 | } |
| 3462 | |
| 3463 | static int bcm43xx_attach_board(struct bcm43xx_private *bcm) |
| 3464 | { |
| 3465 | struct pci_dev *pci_dev = bcm->pci_dev; |
| 3466 | struct net_device *net_dev = bcm->net_dev; |
| 3467 | int err; |
| 3468 | int i; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3469 | u32 coremask; |
| 3470 | |
| 3471 | err = pci_enable_device(pci_dev); |
| 3472 | if (err) { |
Michael Buesch | cc93571 | 2006-04-10 02:08:33 +0200 | [diff] [blame] | 3473 | printk(KERN_ERR PFX "pci_enable_device() failed\n"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3474 | goto out; |
| 3475 | } |
Michael Buesch | 65f3f19 | 2006-01-31 20:11:38 +0100 | [diff] [blame] | 3476 | err = pci_request_regions(pci_dev, KBUILD_MODNAME); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3477 | if (err) { |
Michael Buesch | cc93571 | 2006-04-10 02:08:33 +0200 | [diff] [blame] | 3478 | printk(KERN_ERR PFX "pci_request_regions() failed\n"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3479 | goto err_pci_disable; |
| 3480 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3481 | /* enable PCI bus-mastering */ |
| 3482 | pci_set_master(pci_dev); |
Michael Buesch | cc93571 | 2006-04-10 02:08:33 +0200 | [diff] [blame] | 3483 | bcm->mmio_addr = pci_iomap(pci_dev, 0, ~0UL); |
Michael Buesch | 4a1821e | 2006-03-18 20:19:12 +0100 | [diff] [blame] | 3484 | if (!bcm->mmio_addr) { |
Michael Buesch | cc93571 | 2006-04-10 02:08:33 +0200 | [diff] [blame] | 3485 | printk(KERN_ERR PFX "pci_iomap() failed\n"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3486 | err = -EIO; |
| 3487 | goto err_pci_release; |
| 3488 | } |
Michael Buesch | 4a1821e | 2006-03-18 20:19:12 +0100 | [diff] [blame] | 3489 | net_dev->base_addr = (unsigned long)bcm->mmio_addr; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3490 | |
| 3491 | bcm43xx_pci_read_config16(bcm, PCI_SUBSYSTEM_VENDOR_ID, |
| 3492 | &bcm->board_vendor); |
| 3493 | bcm43xx_pci_read_config16(bcm, PCI_SUBSYSTEM_ID, |
| 3494 | &bcm->board_type); |
| 3495 | bcm43xx_pci_read_config16(bcm, PCI_REVISION_ID, |
| 3496 | &bcm->board_revision); |
| 3497 | |
| 3498 | err = bcm43xx_chipset_attach(bcm); |
| 3499 | if (err) |
| 3500 | goto err_iounmap; |
| 3501 | err = bcm43xx_pctl_init(bcm); |
| 3502 | if (err) |
| 3503 | goto err_chipset_detach; |
| 3504 | err = bcm43xx_probe_cores(bcm); |
| 3505 | if (err) |
| 3506 | goto err_chipset_detach; |
| 3507 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3508 | /* Attach all IO cores to the backplane. */ |
| 3509 | coremask = 0; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3510 | for (i = 0; i < bcm->nr_80211_available; i++) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3511 | coremask |= (1 << bcm->core_80211[i].index); |
| 3512 | //FIXME: Also attach some non80211 cores? |
| 3513 | err = bcm43xx_setup_backplane_pci_connection(bcm, coremask); |
| 3514 | if (err) { |
| 3515 | printk(KERN_ERR PFX "Backplane->PCI connection failed!\n"); |
| 3516 | goto err_chipset_detach; |
| 3517 | } |
| 3518 | |
Michael Buesch | ea0922b | 2006-02-19 14:09:20 +0100 | [diff] [blame] | 3519 | err = bcm43xx_sprom_extract(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3520 | if (err) |
| 3521 | goto err_chipset_detach; |
| 3522 | err = bcm43xx_leds_init(bcm); |
| 3523 | if (err) |
| 3524 | goto err_chipset_detach; |
| 3525 | |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3526 | for (i = 0; i < bcm->nr_80211_available; i++) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3527 | err = bcm43xx_switch_core(bcm, &bcm->core_80211[i]); |
| 3528 | assert(err != -ENODEV); |
| 3529 | if (err) |
| 3530 | goto err_80211_unwind; |
| 3531 | |
| 3532 | /* Enable the selected wireless core. |
| 3533 | * Connect PHY only on the first core. |
| 3534 | */ |
| 3535 | bcm43xx_wireless_core_reset(bcm, (i == 0)); |
| 3536 | |
| 3537 | err = bcm43xx_read_phyinfo(bcm); |
| 3538 | if (err && (i == 0)) |
| 3539 | goto err_80211_unwind; |
| 3540 | |
| 3541 | err = bcm43xx_read_radioinfo(bcm); |
| 3542 | if (err && (i == 0)) |
| 3543 | goto err_80211_unwind; |
| 3544 | |
| 3545 | err = bcm43xx_validate_chip(bcm); |
| 3546 | if (err && (i == 0)) |
| 3547 | goto err_80211_unwind; |
| 3548 | |
| 3549 | bcm43xx_radio_turn_off(bcm); |
| 3550 | err = bcm43xx_phy_init_tssi2dbm_table(bcm); |
| 3551 | if (err) |
| 3552 | goto err_80211_unwind; |
| 3553 | bcm43xx_wireless_core_disable(bcm); |
| 3554 | } |
Michael Buesch | 869aaab | 2006-05-05 17:23:51 +0200 | [diff] [blame] | 3555 | err = bcm43xx_geo_init(bcm); |
| 3556 | if (err) |
| 3557 | goto err_80211_unwind; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3558 | bcm43xx_pctl_set_crystal(bcm, 0); |
| 3559 | |
| 3560 | /* Set the MAC address in the networking subsystem */ |
Stefano Brivio | f9f7b96 | 2006-05-05 01:26:29 +0200 | [diff] [blame] | 3561 | if (is_valid_ether_addr(bcm->sprom.et1macaddr)) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3562 | memcpy(bcm->net_dev->dev_addr, bcm->sprom.et1macaddr, 6); |
| 3563 | else |
| 3564 | memcpy(bcm->net_dev->dev_addr, bcm->sprom.il0macaddr, 6); |
| 3565 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3566 | snprintf(bcm->nick, IW_ESSID_MAX_SIZE, |
| 3567 | "Broadcom %04X", bcm->chip_id); |
| 3568 | |
| 3569 | assert(err == 0); |
| 3570 | out: |
| 3571 | return err; |
| 3572 | |
| 3573 | err_80211_unwind: |
| 3574 | for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 3575 | kfree(bcm->core_80211_ext[i].phy._lo_pairs); |
| 3576 | if (bcm->core_80211_ext[i].phy.dyn_tssi_tbl) |
| 3577 | kfree(bcm->core_80211_ext[i].phy.tssi2dbm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3578 | } |
| 3579 | err_chipset_detach: |
| 3580 | bcm43xx_chipset_detach(bcm); |
| 3581 | err_iounmap: |
Michael Buesch | cc93571 | 2006-04-10 02:08:33 +0200 | [diff] [blame] | 3582 | pci_iounmap(pci_dev, bcm->mmio_addr); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3583 | err_pci_release: |
| 3584 | pci_release_regions(pci_dev); |
| 3585 | err_pci_disable: |
| 3586 | pci_disable_device(pci_dev); |
| 3587 | goto out; |
| 3588 | } |
| 3589 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3590 | /* Do the Hardware IO operations to send the txb */ |
| 3591 | static inline int bcm43xx_tx(struct bcm43xx_private *bcm, |
| 3592 | struct ieee80211_txb *txb) |
| 3593 | { |
| 3594 | int err = -ENODEV; |
| 3595 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 3596 | if (bcm43xx_using_pio(bcm)) |
| 3597 | err = bcm43xx_pio_tx(bcm, txb); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3598 | else |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 3599 | err = bcm43xx_dma_tx(bcm, txb); |
Michael Buesch | b79367a | 2006-04-10 02:39:54 +0200 | [diff] [blame] | 3600 | bcm->net_dev->trans_start = jiffies; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3601 | |
| 3602 | return err; |
| 3603 | } |
| 3604 | |
| 3605 | static void bcm43xx_ieee80211_set_chan(struct net_device *net_dev, |
| 3606 | u8 channel) |
| 3607 | { |
| 3608 | struct bcm43xx_private *bcm = bcm43xx_priv(net_dev); |
Michael Buesch | ec48378 | 2006-03-27 11:49:51 +0200 | [diff] [blame] | 3609 | struct bcm43xx_radioinfo *radio; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3610 | unsigned long flags; |
| 3611 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3612 | bcm43xx_lock_irqsafe(bcm, flags); |
| 3613 | if (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED) { |
Michael Buesch | ec48378 | 2006-03-27 11:49:51 +0200 | [diff] [blame] | 3614 | bcm43xx_mac_suspend(bcm); |
| 3615 | bcm43xx_radio_selectchannel(bcm, channel, 0); |
| 3616 | bcm43xx_mac_enable(bcm); |
| 3617 | } else { |
| 3618 | radio = bcm43xx_current_radio(bcm); |
| 3619 | radio->initial_channel = channel; |
| 3620 | } |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3621 | bcm43xx_unlock_irqsafe(bcm, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3622 | } |
| 3623 | |
| 3624 | /* set_security() callback in struct ieee80211_device */ |
| 3625 | static void bcm43xx_ieee80211_set_security(struct net_device *net_dev, |
| 3626 | struct ieee80211_security *sec) |
| 3627 | { |
| 3628 | struct bcm43xx_private *bcm = bcm43xx_priv(net_dev); |
| 3629 | struct ieee80211_security *secinfo = &bcm->ieee->sec; |
| 3630 | unsigned long flags; |
| 3631 | int keyidx; |
| 3632 | |
Jason Lunz | ff7562a | 2006-06-04 23:05:49 +0200 | [diff] [blame] | 3633 | dprintk(KERN_INFO PFX "set security called"); |
Michael Buesch | efccb64 | 2006-03-11 13:39:14 +0100 | [diff] [blame] | 3634 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3635 | bcm43xx_lock_irqsafe(bcm, flags); |
Michael Buesch | efccb64 | 2006-03-11 13:39:14 +0100 | [diff] [blame] | 3636 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3637 | for (keyidx = 0; keyidx<WEP_KEYS; keyidx++) |
| 3638 | if (sec->flags & (1<<keyidx)) { |
| 3639 | secinfo->encode_alg[keyidx] = sec->encode_alg[keyidx]; |
| 3640 | secinfo->key_sizes[keyidx] = sec->key_sizes[keyidx]; |
| 3641 | memcpy(secinfo->keys[keyidx], sec->keys[keyidx], SCM_KEY_LEN); |
| 3642 | } |
| 3643 | |
| 3644 | if (sec->flags & SEC_ACTIVE_KEY) { |
| 3645 | secinfo->active_key = sec->active_key; |
Jason Lunz | ff7562a | 2006-06-04 23:05:49 +0200 | [diff] [blame] | 3646 | dprintk(", .active_key = %d", sec->active_key); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3647 | } |
| 3648 | if (sec->flags & SEC_UNICAST_GROUP) { |
| 3649 | secinfo->unicast_uses_group = sec->unicast_uses_group; |
Jason Lunz | ff7562a | 2006-06-04 23:05:49 +0200 | [diff] [blame] | 3650 | dprintk(", .unicast_uses_group = %d", sec->unicast_uses_group); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3651 | } |
| 3652 | if (sec->flags & SEC_LEVEL) { |
| 3653 | secinfo->level = sec->level; |
Jason Lunz | ff7562a | 2006-06-04 23:05:49 +0200 | [diff] [blame] | 3654 | dprintk(", .level = %d", sec->level); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3655 | } |
| 3656 | if (sec->flags & SEC_ENABLED) { |
| 3657 | secinfo->enabled = sec->enabled; |
Jason Lunz | ff7562a | 2006-06-04 23:05:49 +0200 | [diff] [blame] | 3658 | dprintk(", .enabled = %d", sec->enabled); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3659 | } |
| 3660 | if (sec->flags & SEC_ENCRYPT) { |
| 3661 | secinfo->encrypt = sec->encrypt; |
Jason Lunz | ff7562a | 2006-06-04 23:05:49 +0200 | [diff] [blame] | 3662 | dprintk(", .encrypt = %d", sec->encrypt); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3663 | } |
Jason Lunz | ff7562a | 2006-06-04 23:05:49 +0200 | [diff] [blame] | 3664 | dprintk("\n"); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3665 | if (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED && |
| 3666 | !bcm->ieee->host_encrypt) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3667 | if (secinfo->enabled) { |
| 3668 | /* upload WEP keys to hardware */ |
| 3669 | char null_address[6] = { 0 }; |
| 3670 | u8 algorithm = 0; |
| 3671 | for (keyidx = 0; keyidx<WEP_KEYS; keyidx++) { |
| 3672 | if (!(sec->flags & (1<<keyidx))) |
| 3673 | continue; |
| 3674 | switch (sec->encode_alg[keyidx]) { |
| 3675 | case SEC_ALG_NONE: algorithm = BCM43xx_SEC_ALGO_NONE; break; |
| 3676 | case SEC_ALG_WEP: |
| 3677 | algorithm = BCM43xx_SEC_ALGO_WEP; |
| 3678 | if (secinfo->key_sizes[keyidx] == 13) |
| 3679 | algorithm = BCM43xx_SEC_ALGO_WEP104; |
| 3680 | break; |
| 3681 | case SEC_ALG_TKIP: |
| 3682 | FIXME(); |
| 3683 | algorithm = BCM43xx_SEC_ALGO_TKIP; |
| 3684 | break; |
| 3685 | case SEC_ALG_CCMP: |
| 3686 | FIXME(); |
| 3687 | algorithm = BCM43xx_SEC_ALGO_AES; |
| 3688 | break; |
| 3689 | default: |
| 3690 | assert(0); |
| 3691 | break; |
| 3692 | } |
| 3693 | bcm43xx_key_write(bcm, keyidx, algorithm, sec->keys[keyidx], secinfo->key_sizes[keyidx], &null_address[0]); |
| 3694 | bcm->key[keyidx].enabled = 1; |
| 3695 | bcm->key[keyidx].algorithm = algorithm; |
| 3696 | } |
| 3697 | } else |
| 3698 | bcm43xx_clear_keys(bcm); |
| 3699 | } |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3700 | bcm43xx_unlock_irqsafe(bcm, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3701 | } |
| 3702 | |
| 3703 | /* hard_start_xmit() callback in struct ieee80211_device */ |
| 3704 | static int bcm43xx_ieee80211_hard_start_xmit(struct ieee80211_txb *txb, |
| 3705 | struct net_device *net_dev, |
| 3706 | int pri) |
| 3707 | { |
| 3708 | struct bcm43xx_private *bcm = bcm43xx_priv(net_dev); |
| 3709 | int err = -ENODEV; |
| 3710 | unsigned long flags; |
| 3711 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3712 | bcm43xx_lock_irqonly(bcm, flags); |
| 3713 | if (likely(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED)) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3714 | err = bcm43xx_tx(bcm, txb); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3715 | bcm43xx_unlock_irqonly(bcm, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3716 | |
| 3717 | return err; |
| 3718 | } |
| 3719 | |
| 3720 | static struct net_device_stats * bcm43xx_net_get_stats(struct net_device *net_dev) |
| 3721 | { |
| 3722 | return &(bcm43xx_priv(net_dev)->ieee->stats); |
| 3723 | } |
| 3724 | |
| 3725 | static void bcm43xx_net_tx_timeout(struct net_device *net_dev) |
| 3726 | { |
| 3727 | struct bcm43xx_private *bcm = bcm43xx_priv(net_dev); |
Michael Buesch | efccb64 | 2006-03-11 13:39:14 +0100 | [diff] [blame] | 3728 | unsigned long flags; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3729 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3730 | bcm43xx_lock_irqonly(bcm, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3731 | bcm43xx_controller_restart(bcm, "TX timeout"); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3732 | bcm43xx_unlock_irqonly(bcm, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3733 | } |
| 3734 | |
| 3735 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 3736 | static void bcm43xx_net_poll_controller(struct net_device *net_dev) |
| 3737 | { |
| 3738 | struct bcm43xx_private *bcm = bcm43xx_priv(net_dev); |
| 3739 | unsigned long flags; |
| 3740 | |
| 3741 | local_irq_save(flags); |
| 3742 | bcm43xx_interrupt_handler(bcm->irq, bcm, NULL); |
| 3743 | local_irq_restore(flags); |
| 3744 | } |
| 3745 | #endif /* CONFIG_NET_POLL_CONTROLLER */ |
| 3746 | |
| 3747 | static int bcm43xx_net_open(struct net_device *net_dev) |
| 3748 | { |
| 3749 | struct bcm43xx_private *bcm = bcm43xx_priv(net_dev); |
| 3750 | |
| 3751 | return bcm43xx_init_board(bcm); |
| 3752 | } |
| 3753 | |
| 3754 | static int bcm43xx_net_stop(struct net_device *net_dev) |
| 3755 | { |
| 3756 | struct bcm43xx_private *bcm = bcm43xx_priv(net_dev); |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 3757 | int err; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3758 | |
| 3759 | ieee80211softmac_stop(net_dev); |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 3760 | err = bcm43xx_disable_interrupts_sync(bcm, NULL); |
| 3761 | assert(!err); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3762 | bcm43xx_free_board(bcm); |
| 3763 | |
| 3764 | return 0; |
| 3765 | } |
| 3766 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 3767 | static int bcm43xx_init_private(struct bcm43xx_private *bcm, |
| 3768 | struct net_device *net_dev, |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3769 | struct pci_dev *pci_dev) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3770 | { |
Michael Buesch | 4d5a9e0e | 2006-03-11 13:15:02 +0100 | [diff] [blame] | 3771 | int err; |
| 3772 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3773 | bcm43xx_set_status(bcm, BCM43xx_STAT_UNINIT); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3774 | bcm->ieee = netdev_priv(net_dev); |
| 3775 | bcm->softmac = ieee80211_priv(net_dev); |
| 3776 | bcm->softmac->set_channel = bcm43xx_ieee80211_set_chan; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3777 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3778 | bcm->irq_savedstate = BCM43xx_IRQ_INITIAL; |
| 3779 | bcm->pci_dev = pci_dev; |
| 3780 | bcm->net_dev = net_dev; |
Michael Buesch | 4d5a9e0e | 2006-03-11 13:15:02 +0100 | [diff] [blame] | 3781 | bcm->bad_frames_preempt = modparam_bad_frames_preempt; |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3782 | spin_lock_init(&bcm->irq_lock); |
| 3783 | mutex_init(&bcm->mutex); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3784 | tasklet_init(&bcm->isr_tasklet, |
| 3785 | (void (*)(unsigned long))bcm43xx_interrupt_tasklet, |
| 3786 | (unsigned long)bcm); |
| 3787 | tasklet_disable_nosync(&bcm->isr_tasklet); |
| 3788 | if (modparam_pio) { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 3789 | bcm->__using_pio = 1; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3790 | } else { |
Michael Buesch | 4d5a9e0e | 2006-03-11 13:15:02 +0100 | [diff] [blame] | 3791 | err = pci_set_dma_mask(pci_dev, DMA_30BIT_MASK); |
| 3792 | err |= pci_set_consistent_dma_mask(pci_dev, DMA_30BIT_MASK); |
| 3793 | if (err) { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 3794 | #ifdef CONFIG_BCM43XX_PIO |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3795 | printk(KERN_WARNING PFX "DMA not supported. Falling back to PIO.\n"); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 3796 | bcm->__using_pio = 1; |
| 3797 | #else |
| 3798 | printk(KERN_ERR PFX "FATAL: DMA not supported and PIO not configured. " |
| 3799 | "Recompile the driver with PIO support, please.\n"); |
| 3800 | return -ENODEV; |
| 3801 | #endif /* CONFIG_BCM43XX_PIO */ |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3802 | } |
| 3803 | } |
| 3804 | bcm->rts_threshold = BCM43xx_DEFAULT_RTS_THRESHOLD; |
| 3805 | |
| 3806 | /* default to sw encryption for now */ |
| 3807 | bcm->ieee->host_build_iv = 0; |
| 3808 | bcm->ieee->host_encrypt = 1; |
| 3809 | bcm->ieee->host_decrypt = 1; |
| 3810 | |
| 3811 | bcm->ieee->iw_mode = BCM43xx_INITIAL_IWMODE; |
| 3812 | bcm->ieee->tx_headroom = sizeof(struct bcm43xx_txhdr); |
| 3813 | bcm->ieee->set_security = bcm43xx_ieee80211_set_security; |
| 3814 | bcm->ieee->hard_start_xmit = bcm43xx_ieee80211_hard_start_xmit; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 3815 | |
| 3816 | return 0; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3817 | } |
| 3818 | |
| 3819 | static int __devinit bcm43xx_init_one(struct pci_dev *pdev, |
| 3820 | const struct pci_device_id *ent) |
| 3821 | { |
| 3822 | struct net_device *net_dev; |
| 3823 | struct bcm43xx_private *bcm; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3824 | int err; |
| 3825 | |
| 3826 | #ifdef CONFIG_BCM947XX |
| 3827 | if ((pdev->bus->number == 0) && (pdev->device != 0x0800)) |
| 3828 | return -ENODEV; |
| 3829 | #endif |
| 3830 | |
| 3831 | #ifdef DEBUG_SINGLE_DEVICE_ONLY |
| 3832 | if (strcmp(pci_name(pdev), DEBUG_SINGLE_DEVICE_ONLY)) |
| 3833 | return -ENODEV; |
| 3834 | #endif |
| 3835 | |
| 3836 | net_dev = alloc_ieee80211softmac(sizeof(*bcm)); |
| 3837 | if (!net_dev) { |
| 3838 | printk(KERN_ERR PFX |
| 3839 | "could not allocate ieee80211 device %s\n", |
| 3840 | pci_name(pdev)); |
| 3841 | err = -ENOMEM; |
| 3842 | goto out; |
| 3843 | } |
| 3844 | /* initialize the net_device struct */ |
| 3845 | SET_MODULE_OWNER(net_dev); |
| 3846 | SET_NETDEV_DEV(net_dev, &pdev->dev); |
| 3847 | |
| 3848 | net_dev->open = bcm43xx_net_open; |
| 3849 | net_dev->stop = bcm43xx_net_stop; |
| 3850 | net_dev->get_stats = bcm43xx_net_get_stats; |
| 3851 | net_dev->tx_timeout = bcm43xx_net_tx_timeout; |
| 3852 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 3853 | net_dev->poll_controller = bcm43xx_net_poll_controller; |
| 3854 | #endif |
| 3855 | net_dev->wireless_handlers = &bcm43xx_wx_handlers_def; |
| 3856 | net_dev->irq = pdev->irq; |
Michael Buesch | 6465ce1 | 2006-02-02 19:11:08 +0100 | [diff] [blame] | 3857 | SET_ETHTOOL_OPS(net_dev, &bcm43xx_ethtool_ops); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3858 | |
| 3859 | /* initialize the bcm43xx_private struct */ |
| 3860 | bcm = bcm43xx_priv(net_dev); |
| 3861 | memset(bcm, 0, sizeof(*bcm)); |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3862 | err = bcm43xx_init_private(bcm, net_dev, pdev); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 3863 | if (err) |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3864 | goto err_free_netdev; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3865 | |
| 3866 | pci_set_drvdata(pdev, net_dev); |
| 3867 | |
| 3868 | err = bcm43xx_attach_board(bcm); |
| 3869 | if (err) |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3870 | goto err_free_netdev; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3871 | |
| 3872 | err = register_netdev(net_dev); |
| 3873 | if (err) { |
| 3874 | printk(KERN_ERR PFX "Cannot register net device, " |
| 3875 | "aborting.\n"); |
| 3876 | err = -ENOMEM; |
| 3877 | goto err_detach_board; |
| 3878 | } |
| 3879 | |
| 3880 | bcm43xx_debugfs_add_device(bcm); |
| 3881 | |
| 3882 | assert(err == 0); |
| 3883 | out: |
| 3884 | return err; |
| 3885 | |
| 3886 | err_detach_board: |
| 3887 | bcm43xx_detach_board(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3888 | err_free_netdev: |
| 3889 | free_ieee80211softmac(net_dev); |
| 3890 | goto out; |
| 3891 | } |
| 3892 | |
| 3893 | static void __devexit bcm43xx_remove_one(struct pci_dev *pdev) |
| 3894 | { |
| 3895 | struct net_device *net_dev = pci_get_drvdata(pdev); |
| 3896 | struct bcm43xx_private *bcm = bcm43xx_priv(net_dev); |
| 3897 | |
| 3898 | bcm43xx_debugfs_remove_device(bcm); |
| 3899 | unregister_netdev(net_dev); |
| 3900 | bcm43xx_detach_board(bcm); |
| 3901 | assert(bcm->ucode == NULL); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3902 | free_ieee80211softmac(net_dev); |
| 3903 | } |
| 3904 | |
| 3905 | /* Hard-reset the chip. Do not call this directly. |
| 3906 | * Use bcm43xx_controller_restart() |
| 3907 | */ |
| 3908 | static void bcm43xx_chip_reset(void *_bcm) |
| 3909 | { |
| 3910 | struct bcm43xx_private *bcm = _bcm; |
| 3911 | struct net_device *net_dev = bcm->net_dev; |
| 3912 | struct pci_dev *pci_dev = bcm->pci_dev; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3913 | int err; |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3914 | int was_initialized = (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3915 | |
| 3916 | netif_stop_queue(bcm->net_dev); |
| 3917 | tasklet_disable(&bcm->isr_tasklet); |
| 3918 | |
| 3919 | bcm->firmware_norelease = 1; |
| 3920 | if (was_initialized) |
| 3921 | bcm43xx_free_board(bcm); |
| 3922 | bcm->firmware_norelease = 0; |
| 3923 | bcm43xx_detach_board(bcm); |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3924 | err = bcm43xx_init_private(bcm, net_dev, pci_dev); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 3925 | if (err) |
| 3926 | goto failure; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3927 | err = bcm43xx_attach_board(bcm); |
| 3928 | if (err) |
| 3929 | goto failure; |
| 3930 | if (was_initialized) { |
| 3931 | err = bcm43xx_init_board(bcm); |
| 3932 | if (err) |
| 3933 | goto failure; |
| 3934 | } |
| 3935 | netif_wake_queue(bcm->net_dev); |
| 3936 | printk(KERN_INFO PFX "Controller restarted\n"); |
| 3937 | |
| 3938 | return; |
| 3939 | failure: |
| 3940 | printk(KERN_ERR PFX "Controller restart failed\n"); |
| 3941 | } |
| 3942 | |
| 3943 | /* Hard-reset the chip. |
| 3944 | * This can be called from interrupt or process context. |
| 3945 | * Make sure to _not_ re-enable device interrupts after this has been called. |
| 3946 | */ |
| 3947 | void bcm43xx_controller_restart(struct bcm43xx_private *bcm, const char *reason) |
| 3948 | { |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3949 | bcm43xx_set_status(bcm, BCM43xx_STAT_RESTARTING); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3950 | bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL); |
Michael Buesch | 7373384 | 2006-03-12 19:44:29 +0100 | [diff] [blame] | 3951 | bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); /* dummy read */ |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3952 | printk(KERN_ERR PFX "Controller RESET (%s) ...\n", reason); |
| 3953 | INIT_WORK(&bcm->restart_work, bcm43xx_chip_reset, bcm); |
Michael Buesch | ab4977f | 2006-02-12 22:40:39 +0100 | [diff] [blame] | 3954 | schedule_work(&bcm->restart_work); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3955 | } |
| 3956 | |
| 3957 | #ifdef CONFIG_PM |
| 3958 | |
| 3959 | static int bcm43xx_suspend(struct pci_dev *pdev, pm_message_t state) |
| 3960 | { |
| 3961 | struct net_device *net_dev = pci_get_drvdata(pdev); |
| 3962 | struct bcm43xx_private *bcm = bcm43xx_priv(net_dev); |
| 3963 | unsigned long flags; |
| 3964 | int try_to_shutdown = 0, err; |
| 3965 | |
| 3966 | dprintk(KERN_INFO PFX "Suspending...\n"); |
| 3967 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3968 | bcm43xx_lock_irqsafe(bcm, flags); |
| 3969 | bcm->was_initialized = (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED); |
| 3970 | if (bcm->was_initialized) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3971 | try_to_shutdown = 1; |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 3972 | bcm43xx_unlock_irqsafe(bcm, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 3973 | |
| 3974 | netif_device_detach(net_dev); |
| 3975 | if (try_to_shutdown) { |
| 3976 | ieee80211softmac_stop(net_dev); |
| 3977 | err = bcm43xx_disable_interrupts_sync(bcm, &bcm->irq_savedstate); |
| 3978 | if (unlikely(err)) { |
| 3979 | dprintk(KERN_ERR PFX "Suspend failed.\n"); |
| 3980 | return -EAGAIN; |
| 3981 | } |
| 3982 | bcm->firmware_norelease = 1; |
| 3983 | bcm43xx_free_board(bcm); |
| 3984 | bcm->firmware_norelease = 0; |
| 3985 | } |
| 3986 | bcm43xx_chipset_detach(bcm); |
| 3987 | |
| 3988 | pci_save_state(pdev); |
| 3989 | pci_disable_device(pdev); |
| 3990 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); |
| 3991 | |
| 3992 | dprintk(KERN_INFO PFX "Device suspended.\n"); |
| 3993 | |
| 3994 | return 0; |
| 3995 | } |
| 3996 | |
| 3997 | static int bcm43xx_resume(struct pci_dev *pdev) |
| 3998 | { |
| 3999 | struct net_device *net_dev = pci_get_drvdata(pdev); |
| 4000 | struct bcm43xx_private *bcm = bcm43xx_priv(net_dev); |
| 4001 | int err = 0; |
| 4002 | |
| 4003 | dprintk(KERN_INFO PFX "Resuming...\n"); |
| 4004 | |
| 4005 | pci_set_power_state(pdev, 0); |
| 4006 | pci_enable_device(pdev); |
| 4007 | pci_restore_state(pdev); |
| 4008 | |
| 4009 | bcm43xx_chipset_attach(bcm); |
| 4010 | if (bcm->was_initialized) { |
| 4011 | bcm->irq_savedstate = BCM43xx_IRQ_INITIAL; |
| 4012 | err = bcm43xx_init_board(bcm); |
| 4013 | } |
| 4014 | if (err) { |
| 4015 | printk(KERN_ERR PFX "Resume failed!\n"); |
| 4016 | return err; |
| 4017 | } |
| 4018 | |
| 4019 | netif_device_attach(net_dev); |
| 4020 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 4021 | dprintk(KERN_INFO PFX "Device resumed.\n"); |
| 4022 | |
| 4023 | return 0; |
| 4024 | } |
| 4025 | |
| 4026 | #endif /* CONFIG_PM */ |
| 4027 | |
| 4028 | static struct pci_driver bcm43xx_pci_driver = { |
Michael Buesch | 65f3f19 | 2006-01-31 20:11:38 +0100 | [diff] [blame] | 4029 | .name = KBUILD_MODNAME, |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 4030 | .id_table = bcm43xx_pci_tbl, |
| 4031 | .probe = bcm43xx_init_one, |
| 4032 | .remove = __devexit_p(bcm43xx_remove_one), |
| 4033 | #ifdef CONFIG_PM |
| 4034 | .suspend = bcm43xx_suspend, |
| 4035 | .resume = bcm43xx_resume, |
| 4036 | #endif /* CONFIG_PM */ |
| 4037 | }; |
| 4038 | |
| 4039 | static int __init bcm43xx_init(void) |
| 4040 | { |
Michael Buesch | 65f3f19 | 2006-01-31 20:11:38 +0100 | [diff] [blame] | 4041 | printk(KERN_INFO KBUILD_MODNAME " driver\n"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 4042 | bcm43xx_debugfs_init(); |
| 4043 | return pci_register_driver(&bcm43xx_pci_driver); |
| 4044 | } |
| 4045 | |
| 4046 | static void __exit bcm43xx_exit(void) |
| 4047 | { |
| 4048 | pci_unregister_driver(&bcm43xx_pci_driver); |
| 4049 | bcm43xx_debugfs_exit(); |
| 4050 | } |
| 4051 | |
| 4052 | module_init(bcm43xx_init) |
| 4053 | module_exit(bcm43xx_exit) |