blob: 88e9a125c2d75253f1e3cae02e9342cfab9666f0 [file] [log] [blame]
John W. Linvillef2223132006-01-23 16:59:58 -05001/*
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>
41#include <net/iw_handler.h>
42
43#include "bcm43xx.h"
44#include "bcm43xx_main.h"
45#include "bcm43xx_debugfs.h"
46#include "bcm43xx_radio.h"
47#include "bcm43xx_phy.h"
48#include "bcm43xx_dma.h"
49#include "bcm43xx_pio.h"
50#include "bcm43xx_power.h"
51#include "bcm43xx_wx.h"
Michael Buesch6465ce12006-02-02 19:11:08 +010052#include "bcm43xx_ethtool.h"
Michael Bueschf398f022006-02-23 21:15:39 +010053#include "bcm43xx_xmit.h"
John W. Linvillef2223132006-01-23 16:59:58 -050054
55
56MODULE_DESCRIPTION("Broadcom BCM43xx wireless driver");
57MODULE_AUTHOR("Martin Langer");
58MODULE_AUTHOR("Stefano Brivio");
59MODULE_AUTHOR("Michael Buesch");
60MODULE_LICENSE("GPL");
61
62#ifdef CONFIG_BCM947XX
63extern char *nvram_get(char *name);
64#endif
65
Michael Buesch77db31e2006-02-12 16:47:44 +010066#if defined(CONFIG_BCM43XX_DMA) && defined(CONFIG_BCM43XX_PIO)
John W. Linvillef2223132006-01-23 16:59:58 -050067static int modparam_pio;
68module_param_named(pio, modparam_pio, int, 0444);
69MODULE_PARM_DESC(pio, "enable(1) / disable(0) PIO mode");
Michael Buesch77db31e2006-02-12 16:47:44 +010070#elif defined(CONFIG_BCM43XX_DMA)
71# define modparam_pio 0
72#elif defined(CONFIG_BCM43XX_PIO)
73# define modparam_pio 1
74#endif
John W. Linvillef2223132006-01-23 16:59:58 -050075
76static int modparam_bad_frames_preempt;
77module_param_named(bad_frames_preempt, modparam_bad_frames_preempt, int, 0444);
78MODULE_PARM_DESC(bad_frames_preempt, "enable(1) / disable(0) Bad Frames Preemption");
79
80static int modparam_short_retry = BCM43xx_DEFAULT_SHORT_RETRY_LIMIT;
81module_param_named(short_retry, modparam_short_retry, int, 0444);
82MODULE_PARM_DESC(short_retry, "Short-Retry-Limit (0 - 15)");
83
84static int modparam_long_retry = BCM43xx_DEFAULT_LONG_RETRY_LIMIT;
85module_param_named(long_retry, modparam_long_retry, int, 0444);
86MODULE_PARM_DESC(long_retry, "Long-Retry-Limit (0 - 15)");
87
88static int modparam_locale = -1;
89module_param_named(locale, modparam_locale, int, 0444);
90MODULE_PARM_DESC(country, "Select LocaleCode 0-11 (For travelers)");
91
John W. Linvillef2223132006-01-23 16:59:58 -050092static int modparam_noleds;
93module_param_named(noleds, modparam_noleds, int, 0444);
94MODULE_PARM_DESC(noleds, "Turn off all LED activity");
95
96#ifdef CONFIG_BCM43XX_DEBUG
97static char modparam_fwpostfix[64];
98module_param_string(fwpostfix, modparam_fwpostfix, 64, 0444);
99MODULE_PARM_DESC(fwpostfix, "Postfix for .fw files. Useful for debugging.");
100#else
101# define modparam_fwpostfix ""
102#endif /* CONFIG_BCM43XX_DEBUG*/
103
104
105/* If you want to debug with just a single device, enable this,
106 * where the string is the pci device ID (as given by the kernel's
107 * pci_name function) of the device to be used.
108 */
109//#define DEBUG_SINGLE_DEVICE_ONLY "0001:11:00.0"
110
111/* If you want to enable printing of each MMIO access, enable this. */
112//#define DEBUG_ENABLE_MMIO_PRINT
113
114/* If you want to enable printing of MMIO access within
115 * ucode/pcm upload, initvals write, enable this.
116 */
117//#define DEBUG_ENABLE_UCODE_MMIO_PRINT
118
119/* If you want to enable printing of PCI Config Space access, enable this */
120//#define DEBUG_ENABLE_PCILOG
121
122
Michael Buesch489423c2006-02-13 00:11:07 +0100123/* Detailed list maintained at:
124 * http://openfacts.berlios.de/index-en.phtml?title=Bcm43xxDevices
125 */
126 static struct pci_device_id bcm43xx_pci_tbl[] = {
127 /* Broadcom 4303 802.11b */
128 { PCI_VENDOR_ID_BROADCOM, 0x4301, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
129 /* Broadcom 4307 802.11b */
130 { PCI_VENDOR_ID_BROADCOM, 0x4307, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
131 /* Broadcom 4318 802.11b/g */
132 { PCI_VENDOR_ID_BROADCOM, 0x4318, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
133 /* Broadcom 4306 802.11b/g */
134 { PCI_VENDOR_ID_BROADCOM, 0x4320, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
135 /* Broadcom 4306 802.11a */
136// { PCI_VENDOR_ID_BROADCOM, 0x4321, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
137 /* Broadcom 4309 802.11a/b/g */
138 { PCI_VENDOR_ID_BROADCOM, 0x4324, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
139 /* Broadcom 43XG 802.11b/g */
140 { PCI_VENDOR_ID_BROADCOM, 0x4325, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
John W. Linvillef2223132006-01-23 16:59:58 -0500141#ifdef CONFIG_BCM947XX
142 /* SB bus on BCM947xx */
143 { PCI_VENDOR_ID_BROADCOM, 0x0800, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
144#endif
Michael Buesch489423c2006-02-13 00:11:07 +0100145 { 0 },
John W. Linvillef2223132006-01-23 16:59:58 -0500146};
147MODULE_DEVICE_TABLE(pci, bcm43xx_pci_tbl);
148
149static void bcm43xx_ram_write(struct bcm43xx_private *bcm, u16 offset, u32 val)
150{
151 u32 status;
152
153 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
154 if (!(status & BCM43xx_SBF_XFER_REG_BYTESWAP))
155 val = swab32(val);
156
157 bcm43xx_write32(bcm, BCM43xx_MMIO_RAM_CONTROL, offset);
Michael Buesch73733842006-03-12 19:44:29 +0100158 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500159 bcm43xx_write32(bcm, BCM43xx_MMIO_RAM_DATA, val);
160}
161
162static inline
163void bcm43xx_shm_control_word(struct bcm43xx_private *bcm,
164 u16 routing, u16 offset)
165{
166 u32 control;
167
168 /* "offset" is the WORD offset. */
169
170 control = routing;
171 control <<= 16;
172 control |= offset;
173 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_CONTROL, control);
174}
175
176u32 bcm43xx_shm_read32(struct bcm43xx_private *bcm,
177 u16 routing, u16 offset)
178{
179 u32 ret;
180
181 if (routing == BCM43xx_SHM_SHARED) {
182 if (offset & 0x0003) {
183 /* Unaligned access */
184 bcm43xx_shm_control_word(bcm, routing, offset >> 2);
185 ret = bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED);
186 ret <<= 16;
187 bcm43xx_shm_control_word(bcm, routing, (offset >> 2) + 1);
188 ret |= bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA);
189
190 return ret;
191 }
192 offset >>= 2;
193 }
194 bcm43xx_shm_control_word(bcm, routing, offset);
195 ret = bcm43xx_read32(bcm, BCM43xx_MMIO_SHM_DATA);
196
197 return ret;
198}
199
200u16 bcm43xx_shm_read16(struct bcm43xx_private *bcm,
201 u16 routing, u16 offset)
202{
203 u16 ret;
204
205 if (routing == BCM43xx_SHM_SHARED) {
206 if (offset & 0x0003) {
207 /* Unaligned access */
208 bcm43xx_shm_control_word(bcm, routing, offset >> 2);
209 ret = bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED);
210
211 return ret;
212 }
213 offset >>= 2;
214 }
215 bcm43xx_shm_control_word(bcm, routing, offset);
216 ret = bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA);
217
218 return ret;
219}
220
221void bcm43xx_shm_write32(struct bcm43xx_private *bcm,
222 u16 routing, u16 offset,
223 u32 value)
224{
225 if (routing == BCM43xx_SHM_SHARED) {
226 if (offset & 0x0003) {
227 /* Unaligned access */
228 bcm43xx_shm_control_word(bcm, routing, offset >> 2);
Michael Buesch73733842006-03-12 19:44:29 +0100229 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500230 bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED,
231 (value >> 16) & 0xffff);
Michael Buesch73733842006-03-12 19:44:29 +0100232 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500233 bcm43xx_shm_control_word(bcm, routing, (offset >> 2) + 1);
Michael Buesch73733842006-03-12 19:44:29 +0100234 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500235 bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA,
236 value & 0xffff);
237 return;
238 }
239 offset >>= 2;
240 }
241 bcm43xx_shm_control_word(bcm, routing, offset);
Michael Buesch73733842006-03-12 19:44:29 +0100242 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500243 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA, value);
244}
245
246void bcm43xx_shm_write16(struct bcm43xx_private *bcm,
247 u16 routing, u16 offset,
248 u16 value)
249{
250 if (routing == BCM43xx_SHM_SHARED) {
251 if (offset & 0x0003) {
252 /* Unaligned access */
253 bcm43xx_shm_control_word(bcm, routing, offset >> 2);
Michael Buesch73733842006-03-12 19:44:29 +0100254 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500255 bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED,
256 value);
257 return;
258 }
259 offset >>= 2;
260 }
261 bcm43xx_shm_control_word(bcm, routing, offset);
Michael Buesch73733842006-03-12 19:44:29 +0100262 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500263 bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA, value);
264}
265
266void bcm43xx_tsf_read(struct bcm43xx_private *bcm, u64 *tsf)
267{
268 /* We need to be careful. As we read the TSF from multiple
269 * registers, we should take care of register overflows.
270 * In theory, the whole tsf read process should be atomic.
271 * We try to be atomic here, by restaring the read process,
272 * if any of the high registers changed (overflew).
273 */
274 if (bcm->current_core->rev >= 3) {
275 u32 low, high, high2;
276
277 do {
278 high = bcm43xx_read32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_HIGH);
279 low = bcm43xx_read32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_LOW);
280 high2 = bcm43xx_read32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_HIGH);
281 } while (unlikely(high != high2));
282
283 *tsf = high;
284 *tsf <<= 32;
285 *tsf |= low;
286 } else {
287 u64 tmp;
288 u16 v0, v1, v2, v3;
289 u16 test1, test2, test3;
290
291 do {
292 v3 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_3);
293 v2 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_2);
294 v1 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_1);
295 v0 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_0);
296
297 test3 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_3);
298 test2 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_2);
299 test1 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_1);
300 } while (v3 != test3 || v2 != test2 || v1 != test1);
301
302 *tsf = v3;
303 *tsf <<= 48;
304 tmp = v2;
305 tmp <<= 32;
306 *tsf |= tmp;
307 tmp = v1;
308 tmp <<= 16;
309 *tsf |= tmp;
310 *tsf |= v0;
311 }
312}
313
314void bcm43xx_tsf_write(struct bcm43xx_private *bcm, u64 tsf)
315{
316 u32 status;
317
318 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
319 status |= BCM43xx_SBF_TIME_UPDATE;
320 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, status);
Michael Buesch73733842006-03-12 19:44:29 +0100321 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500322
323 /* Be careful with the in-progress timer.
324 * First zero out the low register, so we have a full
325 * register-overflow duration to complete the operation.
326 */
327 if (bcm->current_core->rev >= 3) {
328 u32 lo = (tsf & 0x00000000FFFFFFFFULL);
329 u32 hi = (tsf & 0xFFFFFFFF00000000ULL) >> 32;
330
John W. Linvillef2223132006-01-23 16:59:58 -0500331 bcm43xx_write32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_LOW, 0);
Michael Buesch73733842006-03-12 19:44:29 +0100332 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500333 bcm43xx_write32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_HIGH, hi);
Michael Buesch73733842006-03-12 19:44:29 +0100334 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500335 bcm43xx_write32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_LOW, lo);
336 } else {
337 u16 v0 = (tsf & 0x000000000000FFFFULL);
338 u16 v1 = (tsf & 0x00000000FFFF0000ULL) >> 16;
339 u16 v2 = (tsf & 0x0000FFFF00000000ULL) >> 32;
340 u16 v3 = (tsf & 0xFFFF000000000000ULL) >> 48;
341
John W. Linvillef2223132006-01-23 16:59:58 -0500342 bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_0, 0);
Michael Buesch73733842006-03-12 19:44:29 +0100343 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500344 bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_3, v3);
Michael Buesch73733842006-03-12 19:44:29 +0100345 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500346 bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_2, v2);
Michael Buesch73733842006-03-12 19:44:29 +0100347 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500348 bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_1, v1);
Michael Buesch73733842006-03-12 19:44:29 +0100349 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500350 bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_0, v0);
351 }
352
353 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
354 status &= ~BCM43xx_SBF_TIME_UPDATE;
355 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, status);
356}
357
John W. Linvillef2223132006-01-23 16:59:58 -0500358static
359void bcm43xx_macfilter_set(struct bcm43xx_private *bcm,
360 u16 offset,
361 const u8 *mac)
362{
363 u16 data;
364
365 offset |= 0x0020;
366 bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_CONTROL, offset);
367
368 data = mac[0];
369 data |= mac[1] << 8;
370 bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_DATA, data);
371 data = mac[2];
372 data |= mac[3] << 8;
373 bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_DATA, data);
374 data = mac[4];
375 data |= mac[5] << 8;
376 bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_DATA, data);
377}
378
Michael Buesch489423c2006-02-13 00:11:07 +0100379static void bcm43xx_macfilter_clear(struct bcm43xx_private *bcm,
380 u16 offset)
John W. Linvillef2223132006-01-23 16:59:58 -0500381{
382 const u8 zero_addr[ETH_ALEN] = { 0 };
383
384 bcm43xx_macfilter_set(bcm, offset, zero_addr);
385}
386
387static void bcm43xx_write_mac_bssid_templates(struct bcm43xx_private *bcm)
388{
389 const u8 *mac = (const u8 *)(bcm->net_dev->dev_addr);
390 const u8 *bssid = (const u8 *)(bcm->ieee->bssid);
391 u8 mac_bssid[ETH_ALEN * 2];
392 int i;
393
394 memcpy(mac_bssid, mac, ETH_ALEN);
395 memcpy(mac_bssid + ETH_ALEN, bssid, ETH_ALEN);
396
397 /* Write our MAC address and BSSID to template ram */
398 for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32))
399 bcm43xx_ram_write(bcm, 0x20 + i, *((u32 *)(mac_bssid + i)));
400 for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32))
401 bcm43xx_ram_write(bcm, 0x78 + i, *((u32 *)(mac_bssid + i)));
402 for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32))
403 bcm43xx_ram_write(bcm, 0x478 + i, *((u32 *)(mac_bssid + i)));
404}
405
Michael Buesch489423c2006-02-13 00:11:07 +0100406static void bcm43xx_set_slot_time(struct bcm43xx_private *bcm, u16 slot_time)
John W. Linvillef2223132006-01-23 16:59:58 -0500407{
408 /* slot_time is in usec. */
Michael Buesche9357c02006-03-13 19:27:34 +0100409 if (bcm43xx_current_phy(bcm)->type != BCM43xx_PHYTYPE_G)
John W. Linvillef2223132006-01-23 16:59:58 -0500410 return;
411 bcm43xx_write16(bcm, 0x684, 510 + slot_time);
412 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0010, slot_time);
413}
414
Michael Buesch489423c2006-02-13 00:11:07 +0100415static void bcm43xx_short_slot_timing_enable(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -0500416{
417 bcm43xx_set_slot_time(bcm, 9);
418}
419
Michael Buesch489423c2006-02-13 00:11:07 +0100420static void bcm43xx_short_slot_timing_disable(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -0500421{
422 bcm43xx_set_slot_time(bcm, 20);
423}
424
425//FIXME: rename this func?
426static void bcm43xx_disassociate(struct bcm43xx_private *bcm)
427{
428 bcm43xx_mac_suspend(bcm);
429 bcm43xx_macfilter_clear(bcm, BCM43xx_MACFILTER_ASSOC);
430
431 bcm43xx_ram_write(bcm, 0x0026, 0x0000);
432 bcm43xx_ram_write(bcm, 0x0028, 0x0000);
433 bcm43xx_ram_write(bcm, 0x007E, 0x0000);
434 bcm43xx_ram_write(bcm, 0x0080, 0x0000);
435 bcm43xx_ram_write(bcm, 0x047E, 0x0000);
436 bcm43xx_ram_write(bcm, 0x0480, 0x0000);
437
438 if (bcm->current_core->rev < 3) {
439 bcm43xx_write16(bcm, 0x0610, 0x8000);
440 bcm43xx_write16(bcm, 0x060E, 0x0000);
441 } else
442 bcm43xx_write32(bcm, 0x0188, 0x80000000);
443
444 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0004, 0x000003ff);
445
Michael Buesche9357c02006-03-13 19:27:34 +0100446 if (bcm43xx_current_phy(bcm)->type == BCM43xx_PHYTYPE_G &&
John W. Linvillef2223132006-01-23 16:59:58 -0500447 ieee80211_is_ofdm_rate(bcm->softmac->txrates.default_rate))
448 bcm43xx_short_slot_timing_enable(bcm);
449
450 bcm43xx_mac_enable(bcm);
451}
452
453//FIXME: rename this func?
454static void bcm43xx_associate(struct bcm43xx_private *bcm,
455 const u8 *mac)
456{
457 memcpy(bcm->ieee->bssid, mac, ETH_ALEN);
458
459 bcm43xx_mac_suspend(bcm);
460 bcm43xx_macfilter_set(bcm, BCM43xx_MACFILTER_ASSOC, mac);
461 bcm43xx_write_mac_bssid_templates(bcm);
462 bcm43xx_mac_enable(bcm);
463}
464
465/* Enable a Generic IRQ. "mask" is the mask of which IRQs to enable.
466 * Returns the _previously_ enabled IRQ mask.
467 */
468static inline u32 bcm43xx_interrupt_enable(struct bcm43xx_private *bcm, u32 mask)
469{
470 u32 old_mask;
471
472 old_mask = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK);
473 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK, old_mask | mask);
474
475 return old_mask;
476}
477
478/* Disable a Generic IRQ. "mask" is the mask of which IRQs to disable.
479 * Returns the _previously_ enabled IRQ mask.
480 */
481static inline u32 bcm43xx_interrupt_disable(struct bcm43xx_private *bcm, u32 mask)
482{
483 u32 old_mask;
484
485 old_mask = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK);
486 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK, old_mask & ~mask);
487
488 return old_mask;
489}
490
491/* Make sure we don't receive more data from the device. */
492static int bcm43xx_disable_interrupts_sync(struct bcm43xx_private *bcm, u32 *oldstate)
493{
494 u32 old;
495 unsigned long flags;
496
Michael Bueschefccb642006-03-11 13:39:14 +0100497 bcm43xx_lock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -0500498 if (bcm43xx_is_initializing(bcm) || bcm->shutting_down) {
Michael Bueschefccb642006-03-11 13:39:14 +0100499 bcm43xx_unlock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -0500500 return -EBUSY;
501 }
502 old = bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
503 tasklet_disable(&bcm->isr_tasklet);
Michael Bueschefccb642006-03-11 13:39:14 +0100504 bcm43xx_unlock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -0500505 if (oldstate)
506 *oldstate = old;
507
508 return 0;
509}
510
511static int bcm43xx_read_radioinfo(struct bcm43xx_private *bcm)
512{
Michael Buesche9357c02006-03-13 19:27:34 +0100513 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
514 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -0500515 u32 radio_id;
516 u16 manufact;
517 u16 version;
518 u8 revision;
519 s8 i;
520
521 if (bcm->chip_id == 0x4317) {
522 if (bcm->chip_rev == 0x00)
523 radio_id = 0x3205017F;
524 else if (bcm->chip_rev == 0x01)
525 radio_id = 0x4205017F;
526 else
527 radio_id = 0x5205017F;
528 } else {
529 bcm43xx_write16(bcm, BCM43xx_MMIO_RADIO_CONTROL, BCM43xx_RADIOCTL_ID);
530 radio_id = bcm43xx_read16(bcm, BCM43xx_MMIO_RADIO_DATA_HIGH);
531 radio_id <<= 16;
532 bcm43xx_write16(bcm, BCM43xx_MMIO_RADIO_CONTROL, BCM43xx_RADIOCTL_ID);
533 radio_id |= bcm43xx_read16(bcm, BCM43xx_MMIO_RADIO_DATA_LOW);
534 }
535
536 manufact = (radio_id & 0x00000FFF);
537 version = (radio_id & 0x0FFFF000) >> 12;
538 revision = (radio_id & 0xF0000000) >> 28;
539
Michael Buesch489423c2006-02-13 00:11:07 +0100540 dprintk(KERN_INFO PFX "Detected Radio: ID: %x (Manuf: %x Ver: %x Rev: %x)\n",
John W. Linvillef2223132006-01-23 16:59:58 -0500541 radio_id, manufact, version, revision);
542
Michael Buesch489423c2006-02-13 00:11:07 +0100543 switch (phy->type) {
John W. Linvillef2223132006-01-23 16:59:58 -0500544 case BCM43xx_PHYTYPE_A:
545 if ((version != 0x2060) || (revision != 1) || (manufact != 0x17f))
546 goto err_unsupported_radio;
547 break;
548 case BCM43xx_PHYTYPE_B:
549 if ((version & 0xFFF0) != 0x2050)
550 goto err_unsupported_radio;
551 break;
552 case BCM43xx_PHYTYPE_G:
553 if (version != 0x2050)
554 goto err_unsupported_radio;
555 break;
556 }
557
Michael Buesch489423c2006-02-13 00:11:07 +0100558 radio->manufact = manufact;
559 radio->version = version;
560 radio->revision = revision;
John W. Linvillef2223132006-01-23 16:59:58 -0500561
562 /* Set default attenuation values. */
Michael Buesch489423c2006-02-13 00:11:07 +0100563 radio->txpower[0] = 2;
564 radio->txpower[1] = 2;
John W. Linvillef2223132006-01-23 16:59:58 -0500565 if (revision == 1)
Michael Buesch489423c2006-02-13 00:11:07 +0100566 radio->txpower[2] = 3;
John W. Linvillef2223132006-01-23 16:59:58 -0500567 else
Michael Buesch489423c2006-02-13 00:11:07 +0100568 radio->txpower[2] = 0;
Michael Buesche9357c02006-03-13 19:27:34 +0100569 if (phy->type == BCM43xx_PHYTYPE_A)
Michael Buesch489423c2006-02-13 00:11:07 +0100570 radio->txpower_desired = bcm->sprom.maxpower_aphy;
Michael Buesch393344f2006-02-05 15:28:20 +0100571 else
Michael Buesche9357c02006-03-13 19:27:34 +0100572 radio->txpower_desired = bcm->sprom.maxpower_bgphy;
John W. Linvillef2223132006-01-23 16:59:58 -0500573
574 /* Initialize the in-memory nrssi Lookup Table. */
575 for (i = 0; i < 64; i++)
Michael Buesch489423c2006-02-13 00:11:07 +0100576 radio->nrssi_lt[i] = i;
John W. Linvillef2223132006-01-23 16:59:58 -0500577
578 return 0;
579
580err_unsupported_radio:
581 printk(KERN_ERR PFX "Unsupported Radio connected to the PHY!\n");
582 return -ENODEV;
583}
584
585static const char * bcm43xx_locale_iso(u8 locale)
586{
587 /* ISO 3166-1 country codes.
588 * Note that there aren't ISO 3166-1 codes for
589 * all or locales. (Not all locales are countries)
590 */
591 switch (locale) {
592 case BCM43xx_LOCALE_WORLD:
593 case BCM43xx_LOCALE_ALL:
594 return "XX";
595 case BCM43xx_LOCALE_THAILAND:
596 return "TH";
597 case BCM43xx_LOCALE_ISRAEL:
598 return "IL";
599 case BCM43xx_LOCALE_JORDAN:
600 return "JO";
601 case BCM43xx_LOCALE_CHINA:
602 return "CN";
603 case BCM43xx_LOCALE_JAPAN:
604 case BCM43xx_LOCALE_JAPAN_HIGH:
605 return "JP";
606 case BCM43xx_LOCALE_USA_CANADA_ANZ:
607 case BCM43xx_LOCALE_USA_LOW:
608 return "US";
609 case BCM43xx_LOCALE_EUROPE:
610 return "EU";
611 case BCM43xx_LOCALE_NONE:
612 return " ";
613 }
614 assert(0);
615 return " ";
616}
617
618static const char * bcm43xx_locale_string(u8 locale)
619{
620 switch (locale) {
621 case BCM43xx_LOCALE_WORLD:
622 return "World";
623 case BCM43xx_LOCALE_THAILAND:
624 return "Thailand";
625 case BCM43xx_LOCALE_ISRAEL:
626 return "Israel";
627 case BCM43xx_LOCALE_JORDAN:
628 return "Jordan";
629 case BCM43xx_LOCALE_CHINA:
630 return "China";
631 case BCM43xx_LOCALE_JAPAN:
632 return "Japan";
633 case BCM43xx_LOCALE_USA_CANADA_ANZ:
634 return "USA/Canada/ANZ";
635 case BCM43xx_LOCALE_EUROPE:
636 return "Europe";
637 case BCM43xx_LOCALE_USA_LOW:
638 return "USAlow";
639 case BCM43xx_LOCALE_JAPAN_HIGH:
640 return "JapanHigh";
641 case BCM43xx_LOCALE_ALL:
642 return "All";
643 case BCM43xx_LOCALE_NONE:
644 return "None";
645 }
646 assert(0);
647 return "";
648}
649
650static inline u8 bcm43xx_crc8(u8 crc, u8 data)
651{
652 static const u8 t[] = {
653 0x00, 0xF7, 0xB9, 0x4E, 0x25, 0xD2, 0x9C, 0x6B,
654 0x4A, 0xBD, 0xF3, 0x04, 0x6F, 0x98, 0xD6, 0x21,
655 0x94, 0x63, 0x2D, 0xDA, 0xB1, 0x46, 0x08, 0xFF,
656 0xDE, 0x29, 0x67, 0x90, 0xFB, 0x0C, 0x42, 0xB5,
657 0x7F, 0x88, 0xC6, 0x31, 0x5A, 0xAD, 0xE3, 0x14,
658 0x35, 0xC2, 0x8C, 0x7B, 0x10, 0xE7, 0xA9, 0x5E,
659 0xEB, 0x1C, 0x52, 0xA5, 0xCE, 0x39, 0x77, 0x80,
660 0xA1, 0x56, 0x18, 0xEF, 0x84, 0x73, 0x3D, 0xCA,
661 0xFE, 0x09, 0x47, 0xB0, 0xDB, 0x2C, 0x62, 0x95,
662 0xB4, 0x43, 0x0D, 0xFA, 0x91, 0x66, 0x28, 0xDF,
663 0x6A, 0x9D, 0xD3, 0x24, 0x4F, 0xB8, 0xF6, 0x01,
664 0x20, 0xD7, 0x99, 0x6E, 0x05, 0xF2, 0xBC, 0x4B,
665 0x81, 0x76, 0x38, 0xCF, 0xA4, 0x53, 0x1D, 0xEA,
666 0xCB, 0x3C, 0x72, 0x85, 0xEE, 0x19, 0x57, 0xA0,
667 0x15, 0xE2, 0xAC, 0x5B, 0x30, 0xC7, 0x89, 0x7E,
668 0x5F, 0xA8, 0xE6, 0x11, 0x7A, 0x8D, 0xC3, 0x34,
669 0xAB, 0x5C, 0x12, 0xE5, 0x8E, 0x79, 0x37, 0xC0,
670 0xE1, 0x16, 0x58, 0xAF, 0xC4, 0x33, 0x7D, 0x8A,
671 0x3F, 0xC8, 0x86, 0x71, 0x1A, 0xED, 0xA3, 0x54,
672 0x75, 0x82, 0xCC, 0x3B, 0x50, 0xA7, 0xE9, 0x1E,
673 0xD4, 0x23, 0x6D, 0x9A, 0xF1, 0x06, 0x48, 0xBF,
674 0x9E, 0x69, 0x27, 0xD0, 0xBB, 0x4C, 0x02, 0xF5,
675 0x40, 0xB7, 0xF9, 0x0E, 0x65, 0x92, 0xDC, 0x2B,
676 0x0A, 0xFD, 0xB3, 0x44, 0x2F, 0xD8, 0x96, 0x61,
677 0x55, 0xA2, 0xEC, 0x1B, 0x70, 0x87, 0xC9, 0x3E,
678 0x1F, 0xE8, 0xA6, 0x51, 0x3A, 0xCD, 0x83, 0x74,
679 0xC1, 0x36, 0x78, 0x8F, 0xE4, 0x13, 0x5D, 0xAA,
680 0x8B, 0x7C, 0x32, 0xC5, 0xAE, 0x59, 0x17, 0xE0,
681 0x2A, 0xDD, 0x93, 0x64, 0x0F, 0xF8, 0xB6, 0x41,
682 0x60, 0x97, 0xD9, 0x2E, 0x45, 0xB2, 0xFC, 0x0B,
683 0xBE, 0x49, 0x07, 0xF0, 0x9B, 0x6C, 0x22, 0xD5,
684 0xF4, 0x03, 0x4D, 0xBA, 0xD1, 0x26, 0x68, 0x9F,
685 };
686 return t[crc ^ data];
687}
688
Michael Bueschad3f0862006-02-19 14:12:22 +0100689static u8 bcm43xx_sprom_crc(const u16 *sprom)
John W. Linvillef2223132006-01-23 16:59:58 -0500690{
691 int word;
692 u8 crc = 0xFF;
693
694 for (word = 0; word < BCM43xx_SPROM_SIZE - 1; word++) {
695 crc = bcm43xx_crc8(crc, sprom[word] & 0x00FF);
696 crc = bcm43xx_crc8(crc, (sprom[word] & 0xFF00) >> 8);
697 }
698 crc = bcm43xx_crc8(crc, sprom[BCM43xx_SPROM_VERSION] & 0x00FF);
699 crc ^= 0xFF;
700
701 return crc;
702}
703
Michael Bueschea0922b2006-02-19 14:09:20 +0100704int bcm43xx_sprom_read(struct bcm43xx_private *bcm, u16 *sprom)
John W. Linvillef2223132006-01-23 16:59:58 -0500705{
706 int i;
Michael Bueschea0922b2006-02-19 14:09:20 +0100707 u8 crc, expected_crc;
708
709 for (i = 0; i < BCM43xx_SPROM_SIZE; i++)
710 sprom[i] = bcm43xx_read16(bcm, BCM43xx_SPROM_BASE + (i * 2));
711 /* CRC-8 check. */
712 crc = bcm43xx_sprom_crc(sprom);
713 expected_crc = (sprom[BCM43xx_SPROM_VERSION] & 0xFF00) >> 8;
714 if (crc != expected_crc) {
715 printk(KERN_WARNING PFX "WARNING: Invalid SPROM checksum "
716 "(0x%02X, expected: 0x%02X)\n",
717 crc, expected_crc);
718 return -EINVAL;
719 }
720
721 return 0;
722}
723
724int bcm43xx_sprom_write(struct bcm43xx_private *bcm, const u16 *sprom)
725{
726 int i, err;
727 u8 crc, expected_crc;
728 u32 spromctl;
729
730 /* CRC-8 validation of the input data. */
731 crc = bcm43xx_sprom_crc(sprom);
732 expected_crc = (sprom[BCM43xx_SPROM_VERSION] & 0xFF00) >> 8;
733 if (crc != expected_crc) {
734 printk(KERN_ERR PFX "SPROM input data: Invalid CRC\n");
735 return -EINVAL;
736 }
737
738 printk(KERN_INFO PFX "Writing SPROM. Do NOT turn off the power! Please stand by...\n");
739 err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_SPROMCTL, &spromctl);
740 if (err)
741 goto err_ctlreg;
742 spromctl |= 0x10; /* SPROM WRITE enable. */
743 bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_SPROMCTL, spromctl);
744 if (err)
745 goto err_ctlreg;
746 /* We must burn lots of CPU cycles here, but that does not
747 * really matter as one does not write the SPROM every other minute...
748 */
749 printk(KERN_INFO PFX "[ 0%%");
750 mdelay(500);
751 for (i = 0; i < BCM43xx_SPROM_SIZE; i++) {
752 if (i == 16)
753 printk("25%%");
754 else if (i == 32)
755 printk("50%%");
756 else if (i == 48)
757 printk("75%%");
758 else if (i % 2)
759 printk(".");
760 bcm43xx_write16(bcm, BCM43xx_SPROM_BASE + (i * 2), sprom[i]);
Michael Bueschefccb642006-03-11 13:39:14 +0100761 mmiowb();
Michael Bueschea0922b2006-02-19 14:09:20 +0100762 mdelay(20);
763 }
764 spromctl &= ~0x10; /* SPROM WRITE enable. */
765 bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_SPROMCTL, spromctl);
766 if (err)
767 goto err_ctlreg;
768 mdelay(500);
769 printk("100%% ]\n");
770 printk(KERN_INFO PFX "SPROM written.\n");
771 bcm43xx_controller_restart(bcm, "SPROM update");
772
773 return 0;
774err_ctlreg:
775 printk(KERN_ERR PFX "Could not access SPROM control register.\n");
776 return -ENODEV;
777}
778
779static int bcm43xx_sprom_extract(struct bcm43xx_private *bcm)
780{
John W. Linvillef2223132006-01-23 16:59:58 -0500781 u16 value;
782 u16 *sprom;
John W. Linvillef2223132006-01-23 16:59:58 -0500783#ifdef CONFIG_BCM947XX
784 char *c;
785#endif
786
787 sprom = kzalloc(BCM43xx_SPROM_SIZE * sizeof(u16),
788 GFP_KERNEL);
789 if (!sprom) {
Michael Bueschea0922b2006-02-19 14:09:20 +0100790 printk(KERN_ERR PFX "sprom_extract OOM\n");
John W. Linvillef2223132006-01-23 16:59:58 -0500791 return -ENOMEM;
792 }
793#ifdef CONFIG_BCM947XX
794 sprom[BCM43xx_SPROM_BOARDFLAGS2] = atoi(nvram_get("boardflags2"));
795 sprom[BCM43xx_SPROM_BOARDFLAGS] = atoi(nvram_get("boardflags"));
796
797 if ((c = nvram_get("il0macaddr")) != NULL)
798 e_aton(c, (char *) &(sprom[BCM43xx_SPROM_IL0MACADDR]));
799
800 if ((c = nvram_get("et1macaddr")) != NULL)
801 e_aton(c, (char *) &(sprom[BCM43xx_SPROM_ET1MACADDR]));
802
803 sprom[BCM43xx_SPROM_PA0B0] = atoi(nvram_get("pa0b0"));
804 sprom[BCM43xx_SPROM_PA0B1] = atoi(nvram_get("pa0b1"));
805 sprom[BCM43xx_SPROM_PA0B2] = atoi(nvram_get("pa0b2"));
806
807 sprom[BCM43xx_SPROM_PA1B0] = atoi(nvram_get("pa1b0"));
808 sprom[BCM43xx_SPROM_PA1B1] = atoi(nvram_get("pa1b1"));
809 sprom[BCM43xx_SPROM_PA1B2] = atoi(nvram_get("pa1b2"));
810
811 sprom[BCM43xx_SPROM_BOARDREV] = atoi(nvram_get("boardrev"));
812#else
Michael Bueschea0922b2006-02-19 14:09:20 +0100813 bcm43xx_sprom_read(bcm, sprom);
John W. Linvillef2223132006-01-23 16:59:58 -0500814#endif
815
816 /* boardflags2 */
817 value = sprom[BCM43xx_SPROM_BOARDFLAGS2];
818 bcm->sprom.boardflags2 = value;
819
820 /* il0macaddr */
821 value = sprom[BCM43xx_SPROM_IL0MACADDR + 0];
822 *(((u16 *)bcm->sprom.il0macaddr) + 0) = cpu_to_be16(value);
823 value = sprom[BCM43xx_SPROM_IL0MACADDR + 1];
824 *(((u16 *)bcm->sprom.il0macaddr) + 1) = cpu_to_be16(value);
825 value = sprom[BCM43xx_SPROM_IL0MACADDR + 2];
826 *(((u16 *)bcm->sprom.il0macaddr) + 2) = cpu_to_be16(value);
827
828 /* et0macaddr */
829 value = sprom[BCM43xx_SPROM_ET0MACADDR + 0];
830 *(((u16 *)bcm->sprom.et0macaddr) + 0) = cpu_to_be16(value);
831 value = sprom[BCM43xx_SPROM_ET0MACADDR + 1];
832 *(((u16 *)bcm->sprom.et0macaddr) + 1) = cpu_to_be16(value);
833 value = sprom[BCM43xx_SPROM_ET0MACADDR + 2];
834 *(((u16 *)bcm->sprom.et0macaddr) + 2) = cpu_to_be16(value);
835
836 /* et1macaddr */
837 value = sprom[BCM43xx_SPROM_ET1MACADDR + 0];
838 *(((u16 *)bcm->sprom.et1macaddr) + 0) = cpu_to_be16(value);
839 value = sprom[BCM43xx_SPROM_ET1MACADDR + 1];
840 *(((u16 *)bcm->sprom.et1macaddr) + 1) = cpu_to_be16(value);
841 value = sprom[BCM43xx_SPROM_ET1MACADDR + 2];
842 *(((u16 *)bcm->sprom.et1macaddr) + 2) = cpu_to_be16(value);
843
844 /* ethernet phy settings */
845 value = sprom[BCM43xx_SPROM_ETHPHY];
846 bcm->sprom.et0phyaddr = (value & 0x001F);
847 bcm->sprom.et1phyaddr = (value & 0x03E0) >> 5;
848 bcm->sprom.et0mdcport = (value & (1 << 14)) >> 14;
849 bcm->sprom.et1mdcport = (value & (1 << 15)) >> 15;
850
851 /* boardrev, antennas, locale */
852 value = sprom[BCM43xx_SPROM_BOARDREV];
853 bcm->sprom.boardrev = (value & 0x00FF);
854 bcm->sprom.locale = (value & 0x0F00) >> 8;
855 bcm->sprom.antennas_aphy = (value & 0x3000) >> 12;
856 bcm->sprom.antennas_bgphy = (value & 0xC000) >> 14;
857 if (modparam_locale != -1) {
858 if (modparam_locale >= 0 && modparam_locale <= 11) {
859 bcm->sprom.locale = modparam_locale;
860 printk(KERN_WARNING PFX "Operating with modified "
861 "LocaleCode %u (%s)\n",
862 bcm->sprom.locale,
863 bcm43xx_locale_string(bcm->sprom.locale));
864 } else {
865 printk(KERN_WARNING PFX "Module parameter \"locale\" "
866 "invalid value. (0 - 11)\n");
867 }
868 }
869
870 /* pa0b* */
871 value = sprom[BCM43xx_SPROM_PA0B0];
872 bcm->sprom.pa0b0 = value;
873 value = sprom[BCM43xx_SPROM_PA0B1];
874 bcm->sprom.pa0b1 = value;
875 value = sprom[BCM43xx_SPROM_PA0B2];
876 bcm->sprom.pa0b2 = value;
877
878 /* wl0gpio* */
879 value = sprom[BCM43xx_SPROM_WL0GPIO0];
880 if (value == 0x0000)
881 value = 0xFFFF;
882 bcm->sprom.wl0gpio0 = value & 0x00FF;
883 bcm->sprom.wl0gpio1 = (value & 0xFF00) >> 8;
884 value = sprom[BCM43xx_SPROM_WL0GPIO2];
885 if (value == 0x0000)
886 value = 0xFFFF;
887 bcm->sprom.wl0gpio2 = value & 0x00FF;
888 bcm->sprom.wl0gpio3 = (value & 0xFF00) >> 8;
889
890 /* maxpower */
891 value = sprom[BCM43xx_SPROM_MAXPWR];
892 bcm->sprom.maxpower_aphy = (value & 0xFF00) >> 8;
893 bcm->sprom.maxpower_bgphy = value & 0x00FF;
894
895 /* pa1b* */
896 value = sprom[BCM43xx_SPROM_PA1B0];
897 bcm->sprom.pa1b0 = value;
898 value = sprom[BCM43xx_SPROM_PA1B1];
899 bcm->sprom.pa1b1 = value;
900 value = sprom[BCM43xx_SPROM_PA1B2];
901 bcm->sprom.pa1b2 = value;
902
903 /* idle tssi target */
904 value = sprom[BCM43xx_SPROM_IDL_TSSI_TGT];
905 bcm->sprom.idle_tssi_tgt_aphy = value & 0x00FF;
906 bcm->sprom.idle_tssi_tgt_bgphy = (value & 0xFF00) >> 8;
907
908 /* boardflags */
909 value = sprom[BCM43xx_SPROM_BOARDFLAGS];
910 if (value == 0xFFFF)
911 value = 0x0000;
912 bcm->sprom.boardflags = value;
913
914 /* antenna gain */
915 value = sprom[BCM43xx_SPROM_ANTENNA_GAIN];
916 if (value == 0x0000 || value == 0xFFFF)
917 value = 0x0202;
918 /* convert values to Q5.2 */
919 bcm->sprom.antennagain_aphy = ((value & 0xFF00) >> 8) * 4;
920 bcm->sprom.antennagain_bgphy = (value & 0x00FF) * 4;
921
922 kfree(sprom);
923
924 return 0;
925}
926
John W. Linvillef2223132006-01-23 16:59:58 -0500927static void bcm43xx_geo_init(struct bcm43xx_private *bcm)
928{
929 struct ieee80211_geo geo;
930 struct ieee80211_channel *chan;
931 int have_a = 0, have_bg = 0;
Michael Buesche9357c02006-03-13 19:27:34 +0100932 int i;
Michael Buesch9e4a3752006-02-02 18:43:25 +0100933 u8 channel;
John W. Linvillef2223132006-01-23 16:59:58 -0500934 struct bcm43xx_phyinfo *phy;
935 const char *iso_country;
936
937 memset(&geo, 0, sizeof(geo));
Michael Buesche9357c02006-03-13 19:27:34 +0100938 for (i = 0; i < bcm->nr_80211_available; i++) {
939 phy = &(bcm->core_80211_ext[i].phy);
John W. Linvillef2223132006-01-23 16:59:58 -0500940 switch (phy->type) {
941 case BCM43xx_PHYTYPE_B:
942 case BCM43xx_PHYTYPE_G:
943 have_bg = 1;
944 break;
945 case BCM43xx_PHYTYPE_A:
946 have_a = 1;
947 break;
948 default:
949 assert(0);
950 }
951 }
952 iso_country = bcm43xx_locale_iso(bcm->sprom.locale);
953
954 if (have_a) {
955 for (i = 0, channel = 0; channel < 201; channel++) {
John W. Linvillef2223132006-01-23 16:59:58 -0500956 chan = &geo.a[i++];
Michael Buesch10d8dd82006-02-19 22:08:48 +0100957 chan->freq = bcm43xx_channel_to_freq_a(channel);
John W. Linvillef2223132006-01-23 16:59:58 -0500958 chan->channel = channel;
John W. Linvillef2223132006-01-23 16:59:58 -0500959 }
960 geo.a_channels = i;
961 }
962 if (have_bg) {
963 for (i = 0, channel = 1; channel < 15; channel++) {
John W. Linvillef2223132006-01-23 16:59:58 -0500964 chan = &geo.bg[i++];
Michael Buesch10d8dd82006-02-19 22:08:48 +0100965 chan->freq = bcm43xx_channel_to_freq_bg(channel);
John W. Linvillef2223132006-01-23 16:59:58 -0500966 chan->channel = channel;
John W. Linvillef2223132006-01-23 16:59:58 -0500967 }
968 geo.bg_channels = i;
969 }
970 memcpy(geo.name, iso_country, 2);
971 if (0 /*TODO: Outdoor use only */)
972 geo.name[2] = 'O';
973 else if (0 /*TODO: Indoor use only */)
974 geo.name[2] = 'I';
975 else
976 geo.name[2] = ' ';
977 geo.name[3] = '\0';
978
979 ieee80211_set_geo(bcm->ieee, &geo);
980}
981
982/* DummyTransmission function, as documented on
983 * http://bcm-specs.sipsolutions.net/DummyTransmission
984 */
985void bcm43xx_dummy_transmission(struct bcm43xx_private *bcm)
986{
Michael Buesche9357c02006-03-13 19:27:34 +0100987 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
988 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -0500989 unsigned int i, max_loop;
990 u16 value = 0;
991 u32 buffer[5] = {
992 0x00000000,
993 0x0000D400,
994 0x00000000,
995 0x00000001,
996 0x00000000,
997 };
998
Michael Buesch73733842006-03-12 19:44:29 +0100999/* FIXME: It seems like a dummy_transmission corrupts the DMA engines,
1000 * once they are initialized. So avoid doing a dummy_transmission,
1001 * if the DMA engines are running.
1002 */
1003if (bcm->initialized)
1004return;
1005
Michael Buesch489423c2006-02-13 00:11:07 +01001006 switch (phy->type) {
John W. Linvillef2223132006-01-23 16:59:58 -05001007 case BCM43xx_PHYTYPE_A:
1008 max_loop = 0x1E;
1009 buffer[0] = 0xCC010200;
1010 break;
1011 case BCM43xx_PHYTYPE_B:
1012 case BCM43xx_PHYTYPE_G:
1013 max_loop = 0xFA;
1014 buffer[0] = 0x6E840B00;
1015 break;
1016 default:
1017 assert(0);
1018 return;
1019 }
1020
1021 for (i = 0; i < 5; i++)
1022 bcm43xx_ram_write(bcm, i * 4, buffer[i]);
1023
1024 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); /* dummy read */
1025
1026 bcm43xx_write16(bcm, 0x0568, 0x0000);
1027 bcm43xx_write16(bcm, 0x07C0, 0x0000);
Michael Buesch489423c2006-02-13 00:11:07 +01001028 bcm43xx_write16(bcm, 0x050C, ((phy->type == BCM43xx_PHYTYPE_A) ? 1 : 0));
John W. Linvillef2223132006-01-23 16:59:58 -05001029 bcm43xx_write16(bcm, 0x0508, 0x0000);
1030 bcm43xx_write16(bcm, 0x050A, 0x0000);
1031 bcm43xx_write16(bcm, 0x054C, 0x0000);
1032 bcm43xx_write16(bcm, 0x056A, 0x0014);
1033 bcm43xx_write16(bcm, 0x0568, 0x0826);
1034 bcm43xx_write16(bcm, 0x0500, 0x0000);
1035 bcm43xx_write16(bcm, 0x0502, 0x0030);
1036
Michael Buesch73733842006-03-12 19:44:29 +01001037 if (radio->version == 0x2050 && radio->revision <= 0x5)
1038 bcm43xx_radio_write16(bcm, 0x0051, 0x0017);
John W. Linvillef2223132006-01-23 16:59:58 -05001039 for (i = 0x00; i < max_loop; i++) {
1040 value = bcm43xx_read16(bcm, 0x050E);
Michael Buesch73733842006-03-12 19:44:29 +01001041 if (value & 0x0080)
John W. Linvillef2223132006-01-23 16:59:58 -05001042 break;
1043 udelay(10);
1044 }
1045 for (i = 0x00; i < 0x0A; i++) {
1046 value = bcm43xx_read16(bcm, 0x050E);
Michael Buesch73733842006-03-12 19:44:29 +01001047 if (value & 0x0400)
John W. Linvillef2223132006-01-23 16:59:58 -05001048 break;
1049 udelay(10);
1050 }
1051 for (i = 0x00; i < 0x0A; i++) {
1052 value = bcm43xx_read16(bcm, 0x0690);
Michael Buesch73733842006-03-12 19:44:29 +01001053 if (!(value & 0x0100))
John W. Linvillef2223132006-01-23 16:59:58 -05001054 break;
1055 udelay(10);
1056 }
Michael Buesch73733842006-03-12 19:44:29 +01001057 if (radio->version == 0x2050 && radio->revision <= 0x5)
1058 bcm43xx_radio_write16(bcm, 0x0051, 0x0037);
John W. Linvillef2223132006-01-23 16:59:58 -05001059}
1060
1061static void key_write(struct bcm43xx_private *bcm,
1062 u8 index, u8 algorithm, const u16 *key)
1063{
1064 unsigned int i, basic_wep = 0;
1065 u32 offset;
1066 u16 value;
1067
1068 /* Write associated key information */
1069 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x100 + (index * 2),
1070 ((index << 4) | (algorithm & 0x0F)));
1071
1072 /* The first 4 WEP keys need extra love */
1073 if (((algorithm == BCM43xx_SEC_ALGO_WEP) ||
1074 (algorithm == BCM43xx_SEC_ALGO_WEP104)) && (index < 4))
1075 basic_wep = 1;
1076
1077 /* Write key payload, 8 little endian words */
1078 offset = bcm->security_offset + (index * BCM43xx_SEC_KEYSIZE);
1079 for (i = 0; i < (BCM43xx_SEC_KEYSIZE / sizeof(u16)); i++) {
1080 value = cpu_to_le16(key[i]);
1081 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1082 offset + (i * 2), value);
1083
1084 if (!basic_wep)
1085 continue;
1086
1087 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1088 offset + (i * 2) + 4 * BCM43xx_SEC_KEYSIZE,
1089 value);
1090 }
1091}
1092
1093static void keymac_write(struct bcm43xx_private *bcm,
1094 u8 index, const u32 *addr)
1095{
1096 /* for keys 0-3 there is no associated mac address */
1097 if (index < 4)
1098 return;
1099
1100 index -= 4;
1101 if (bcm->current_core->rev >= 5) {
1102 bcm43xx_shm_write32(bcm,
1103 BCM43xx_SHM_HWMAC,
1104 index * 2,
1105 cpu_to_be32(*addr));
1106 bcm43xx_shm_write16(bcm,
1107 BCM43xx_SHM_HWMAC,
1108 (index * 2) + 1,
1109 cpu_to_be16(*((u16 *)(addr + 1))));
1110 } else {
1111 if (index < 8) {
1112 TODO(); /* Put them in the macaddress filter */
1113 } else {
1114 TODO();
1115 /* Put them BCM43xx_SHM_SHARED, stating index 0x0120.
1116 Keep in mind to update the count of keymacs in 0x003E as well! */
1117 }
1118 }
1119}
1120
1121static int bcm43xx_key_write(struct bcm43xx_private *bcm,
1122 u8 index, u8 algorithm,
1123 const u8 *_key, int key_len,
1124 const u8 *mac_addr)
1125{
1126 u8 key[BCM43xx_SEC_KEYSIZE] = { 0 };
1127
1128 if (index >= ARRAY_SIZE(bcm->key))
1129 return -EINVAL;
1130 if (key_len > ARRAY_SIZE(key))
1131 return -EINVAL;
1132 if (algorithm < 1 || algorithm > 5)
1133 return -EINVAL;
1134
1135 memcpy(key, _key, key_len);
1136 key_write(bcm, index, algorithm, (const u16 *)key);
1137 keymac_write(bcm, index, (const u32 *)mac_addr);
1138
1139 bcm->key[index].algorithm = algorithm;
1140
1141 return 0;
1142}
1143
1144static void bcm43xx_clear_keys(struct bcm43xx_private *bcm)
1145{
1146 static const u32 zero_mac[2] = { 0 };
1147 unsigned int i,j, nr_keys = 54;
1148 u16 offset;
1149
1150 if (bcm->current_core->rev < 5)
1151 nr_keys = 16;
1152 assert(nr_keys <= ARRAY_SIZE(bcm->key));
1153
1154 for (i = 0; i < nr_keys; i++) {
1155 bcm->key[i].enabled = 0;
1156 /* returns for i < 4 immediately */
1157 keymac_write(bcm, i, zero_mac);
1158 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1159 0x100 + (i * 2), 0x0000);
1160 for (j = 0; j < 8; j++) {
1161 offset = bcm->security_offset + (j * 4) + (i * BCM43xx_SEC_KEYSIZE);
1162 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1163 offset, 0x0000);
1164 }
1165 }
1166 dprintk(KERN_INFO PFX "Keys cleared\n");
1167}
1168
John W. Linvillef2223132006-01-23 16:59:58 -05001169/* Lowlevel core-switch function. This is only to be used in
1170 * bcm43xx_switch_core() and bcm43xx_probe_cores()
1171 */
1172static int _switch_core(struct bcm43xx_private *bcm, int core)
1173{
1174 int err;
1175 int attempts = 0;
Michael Buesch489423c2006-02-13 00:11:07 +01001176 u32 current_core;
John W. Linvillef2223132006-01-23 16:59:58 -05001177
1178 assert(core >= 0);
Michael Buesch489423c2006-02-13 00:11:07 +01001179 while (1) {
1180 err = bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_ACTIVE_CORE,
John W. Linvillef2223132006-01-23 16:59:58 -05001181 (core * 0x1000) + 0x18000000);
Michael Buesch489423c2006-02-13 00:11:07 +01001182 if (unlikely(err))
1183 goto error;
1184 err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_ACTIVE_CORE,
1185 &current_core);
1186 if (unlikely(err))
1187 goto error;
1188 current_core = (current_core - 0x18000000) / 0x1000;
1189 if (current_core == core)
1190 break;
John W. Linvillef2223132006-01-23 16:59:58 -05001191
Michael Buesch489423c2006-02-13 00:11:07 +01001192 if (unlikely(attempts++ > BCM43xx_SWITCH_CORE_MAX_RETRIES))
1193 goto error;
1194 udelay(10);
1195 }
1196#ifdef CONFIG_BCM947XX
1197 if (bcm->pci_dev->bus->number == 0)
1198 bcm->current_core_offset = 0x1000 * core;
1199 else
1200 bcm->current_core_offset = 0;
1201#endif
1202
1203 return 0;
1204error:
1205 printk(KERN_ERR PFX "Failed to switch to core %d\n", core);
1206 return -ENODEV;
John W. Linvillef2223132006-01-23 16:59:58 -05001207}
1208
1209int bcm43xx_switch_core(struct bcm43xx_private *bcm, struct bcm43xx_coreinfo *new_core)
1210{
1211 int err;
1212
Michael Buesch489423c2006-02-13 00:11:07 +01001213 if (unlikely(!new_core))
John W. Linvillef2223132006-01-23 16:59:58 -05001214 return 0;
Michael Buesche9357c02006-03-13 19:27:34 +01001215 if (!new_core->available)
John W. Linvillef2223132006-01-23 16:59:58 -05001216 return -ENODEV;
1217 if (bcm->current_core == new_core)
1218 return 0;
1219 err = _switch_core(bcm, new_core->index);
Michael Buesche9357c02006-03-13 19:27:34 +01001220 if (unlikely(err))
1221 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05001222
Michael Buesche9357c02006-03-13 19:27:34 +01001223 bcm->current_core = new_core;
1224 bcm->current_80211_core_idx = -1;
1225 if (new_core->id == BCM43xx_COREID_80211)
1226 bcm->current_80211_core_idx = (int)(new_core - &(bcm->core_80211[0]));
1227
1228out:
John W. Linvillef2223132006-01-23 16:59:58 -05001229 return err;
1230}
1231
Michael Buesch489423c2006-02-13 00:11:07 +01001232static int bcm43xx_core_enabled(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001233{
1234 u32 value;
1235
1236 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1237 value &= BCM43xx_SBTMSTATELOW_CLOCK | BCM43xx_SBTMSTATELOW_RESET
1238 | BCM43xx_SBTMSTATELOW_REJECT;
1239
1240 return (value == BCM43xx_SBTMSTATELOW_CLOCK);
1241}
1242
1243/* disable current core */
1244static int bcm43xx_core_disable(struct bcm43xx_private *bcm, u32 core_flags)
1245{
1246 u32 sbtmstatelow;
1247 u32 sbtmstatehigh;
1248 int i;
1249
1250 /* fetch sbtmstatelow from core information registers */
1251 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1252
1253 /* core is already in reset */
1254 if (sbtmstatelow & BCM43xx_SBTMSTATELOW_RESET)
1255 goto out;
1256
1257 if (sbtmstatelow & BCM43xx_SBTMSTATELOW_CLOCK) {
1258 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK |
1259 BCM43xx_SBTMSTATELOW_REJECT;
1260 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1261
1262 for (i = 0; i < 1000; i++) {
1263 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1264 if (sbtmstatelow & BCM43xx_SBTMSTATELOW_REJECT) {
1265 i = -1;
1266 break;
1267 }
1268 udelay(10);
1269 }
1270 if (i != -1) {
1271 printk(KERN_ERR PFX "Error: core_disable() REJECT timeout!\n");
1272 return -EBUSY;
1273 }
1274
1275 for (i = 0; i < 1000; i++) {
1276 sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH);
1277 if (!(sbtmstatehigh & BCM43xx_SBTMSTATEHIGH_BUSY)) {
1278 i = -1;
1279 break;
1280 }
1281 udelay(10);
1282 }
1283 if (i != -1) {
1284 printk(KERN_ERR PFX "Error: core_disable() BUSY timeout!\n");
1285 return -EBUSY;
1286 }
1287
1288 sbtmstatelow = BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK |
1289 BCM43xx_SBTMSTATELOW_REJECT |
1290 BCM43xx_SBTMSTATELOW_RESET |
1291 BCM43xx_SBTMSTATELOW_CLOCK |
1292 core_flags;
1293 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1294 udelay(10);
1295 }
1296
1297 sbtmstatelow = BCM43xx_SBTMSTATELOW_RESET |
1298 BCM43xx_SBTMSTATELOW_REJECT |
1299 core_flags;
1300 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1301
1302out:
Michael Buesche9357c02006-03-13 19:27:34 +01001303 bcm->current_core->enabled = 0;
1304
John W. Linvillef2223132006-01-23 16:59:58 -05001305 return 0;
1306}
1307
1308/* enable (reset) current core */
1309static int bcm43xx_core_enable(struct bcm43xx_private *bcm, u32 core_flags)
1310{
1311 u32 sbtmstatelow;
1312 u32 sbtmstatehigh;
1313 u32 sbimstate;
1314 int err;
1315
1316 err = bcm43xx_core_disable(bcm, core_flags);
1317 if (err)
1318 goto out;
1319
1320 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK |
1321 BCM43xx_SBTMSTATELOW_RESET |
1322 BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK |
1323 core_flags;
1324 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1325 udelay(1);
1326
1327 sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH);
1328 if (sbtmstatehigh & BCM43xx_SBTMSTATEHIGH_SERROR) {
1329 sbtmstatehigh = 0x00000000;
1330 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATEHIGH, sbtmstatehigh);
1331 }
1332
1333 sbimstate = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMSTATE);
1334 if (sbimstate & (BCM43xx_SBIMSTATE_IB_ERROR | BCM43xx_SBIMSTATE_TIMEOUT)) {
1335 sbimstate &= ~(BCM43xx_SBIMSTATE_IB_ERROR | BCM43xx_SBIMSTATE_TIMEOUT);
1336 bcm43xx_write32(bcm, BCM43xx_CIR_SBIMSTATE, sbimstate);
1337 }
1338
1339 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK |
1340 BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK |
1341 core_flags;
1342 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1343 udelay(1);
1344
1345 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK | core_flags;
1346 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1347 udelay(1);
1348
Michael Buesche9357c02006-03-13 19:27:34 +01001349 bcm->current_core->enabled = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05001350 assert(err == 0);
1351out:
1352 return err;
1353}
1354
1355/* http://bcm-specs.sipsolutions.net/80211CoreReset */
1356void bcm43xx_wireless_core_reset(struct bcm43xx_private *bcm, int connect_phy)
1357{
1358 u32 flags = 0x00040000;
1359
Michael Buesch77db31e2006-02-12 16:47:44 +01001360 if ((bcm43xx_core_enabled(bcm)) &&
1361 !bcm43xx_using_pio(bcm)) {
John W. Linvillef2223132006-01-23 16:59:58 -05001362//FIXME: Do we _really_ want #ifndef CONFIG_BCM947XX here?
1363#ifndef CONFIG_BCM947XX
1364 /* reset all used DMA controllers. */
1365 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA1_BASE);
1366 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA2_BASE);
1367 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA3_BASE);
1368 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA4_BASE);
1369 bcm43xx_dmacontroller_rx_reset(bcm, BCM43xx_MMIO_DMA1_BASE);
1370 if (bcm->current_core->rev < 5)
1371 bcm43xx_dmacontroller_rx_reset(bcm, BCM43xx_MMIO_DMA4_BASE);
1372#endif
1373 }
1374 if (bcm->shutting_down) {
1375 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
1376 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
1377 & ~(BCM43xx_SBF_MAC_ENABLED | 0x00000002));
1378 } else {
1379 if (connect_phy)
1380 flags |= 0x20000000;
1381 bcm43xx_phy_connect(bcm, connect_phy);
1382 bcm43xx_core_enable(bcm, flags);
1383 bcm43xx_write16(bcm, 0x03E6, 0x0000);
1384 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
1385 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
1386 | BCM43xx_SBF_400);
1387 }
1388}
1389
1390static void bcm43xx_wireless_core_disable(struct bcm43xx_private *bcm)
1391{
1392 bcm43xx_radio_turn_off(bcm);
1393 bcm43xx_write16(bcm, 0x03E6, 0x00F4);
1394 bcm43xx_core_disable(bcm, 0);
1395}
1396
1397/* Mark the current 80211 core inactive.
1398 * "active_80211_core" is the other 80211 core, which is used.
1399 */
1400static int bcm43xx_wireless_core_mark_inactive(struct bcm43xx_private *bcm,
1401 struct bcm43xx_coreinfo *active_80211_core)
1402{
1403 u32 sbtmstatelow;
1404 struct bcm43xx_coreinfo *old_core;
1405 int err = 0;
1406
1407 bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
1408 bcm43xx_radio_turn_off(bcm);
1409 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1410 sbtmstatelow &= ~0x200a0000;
1411 sbtmstatelow |= 0xa0000;
1412 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1413 udelay(1);
1414 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1415 sbtmstatelow &= ~0xa0000;
1416 sbtmstatelow |= 0x80000;
1417 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1418 udelay(1);
1419
Michael Buesche9357c02006-03-13 19:27:34 +01001420 if (bcm43xx_current_phy(bcm)->type == BCM43xx_PHYTYPE_G) {
John W. Linvillef2223132006-01-23 16:59:58 -05001421 old_core = bcm->current_core;
1422 err = bcm43xx_switch_core(bcm, active_80211_core);
1423 if (err)
1424 goto out;
1425 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1426 sbtmstatelow &= ~0x20000000;
1427 sbtmstatelow |= 0x20000000;
1428 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1429 err = bcm43xx_switch_core(bcm, old_core);
1430 }
1431
1432out:
1433 return err;
1434}
1435
Michael Buesch489423c2006-02-13 00:11:07 +01001436static void handle_irq_transmit_status(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001437{
1438 u32 v0, v1;
1439 u16 tmp;
1440 struct bcm43xx_xmitstatus stat;
1441
John W. Linvillef2223132006-01-23 16:59:58 -05001442 while (1) {
1443 v0 = bcm43xx_read32(bcm, BCM43xx_MMIO_XMITSTAT_0);
1444 if (!v0)
1445 break;
1446 v1 = bcm43xx_read32(bcm, BCM43xx_MMIO_XMITSTAT_1);
1447
1448 stat.cookie = (v0 >> 16) & 0x0000FFFF;
1449 tmp = (u16)((v0 & 0xFFF0) | ((v0 & 0xF) >> 1));
1450 stat.flags = tmp & 0xFF;
1451 stat.cnt1 = (tmp & 0x0F00) >> 8;
1452 stat.cnt2 = (tmp & 0xF000) >> 12;
1453 stat.seq = (u16)(v1 & 0xFFFF);
1454 stat.unknown = (u16)((v1 >> 16) & 0xFF);
1455
1456 bcm43xx_debugfs_log_txstat(bcm, &stat);
1457
1458 if (stat.flags & BCM43xx_TXSTAT_FLAG_IGNORE)
1459 continue;
1460 if (!(stat.flags & BCM43xx_TXSTAT_FLAG_ACK)) {
1461 //TODO: packet was not acked (was lost)
1462 }
1463 //TODO: There are more (unknown) flags to test. see bcm43xx_main.h
1464
Michael Buesch77db31e2006-02-12 16:47:44 +01001465 if (bcm43xx_using_pio(bcm))
John W. Linvillef2223132006-01-23 16:59:58 -05001466 bcm43xx_pio_handle_xmitstatus(bcm, &stat);
1467 else
1468 bcm43xx_dma_handle_xmitstatus(bcm, &stat);
1469 }
1470}
1471
Michael Buesch489423c2006-02-13 00:11:07 +01001472static void bcm43xx_generate_noise_sample(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001473{
1474 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x408, 0x7F7F);
1475 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x40A, 0x7F7F);
1476 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD,
1477 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD) | (1 << 4));
1478 assert(bcm->noisecalc.core_at_start == bcm->current_core);
Michael Buesche9357c02006-03-13 19:27:34 +01001479 assert(bcm->noisecalc.channel_at_start == bcm43xx_current_radio(bcm)->channel);
John W. Linvillef2223132006-01-23 16:59:58 -05001480}
1481
1482static void bcm43xx_calculate_link_quality(struct bcm43xx_private *bcm)
1483{
1484 /* Top half of Link Quality calculation. */
1485
1486 if (bcm->noisecalc.calculation_running)
1487 return;
1488 bcm->noisecalc.core_at_start = bcm->current_core;
Michael Buesche9357c02006-03-13 19:27:34 +01001489 bcm->noisecalc.channel_at_start = bcm43xx_current_radio(bcm)->channel;
John W. Linvillef2223132006-01-23 16:59:58 -05001490 bcm->noisecalc.calculation_running = 1;
1491 bcm->noisecalc.nr_samples = 0;
1492
1493 bcm43xx_generate_noise_sample(bcm);
1494}
1495
Michael Buesch489423c2006-02-13 00:11:07 +01001496static void handle_irq_noise(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001497{
Michael Buesche9357c02006-03-13 19:27:34 +01001498 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05001499 u16 tmp;
1500 u8 noise[4];
1501 u8 i, j;
1502 s32 average;
1503
1504 /* Bottom half of Link Quality calculation. */
1505
1506 assert(bcm->noisecalc.calculation_running);
1507 if (bcm->noisecalc.core_at_start != bcm->current_core ||
1508 bcm->noisecalc.channel_at_start != radio->channel)
1509 goto drop_calculation;
1510 tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x408);
1511 noise[0] = (tmp & 0x00FF);
1512 noise[1] = (tmp & 0xFF00) >> 8;
1513 tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x40A);
1514 noise[2] = (tmp & 0x00FF);
1515 noise[3] = (tmp & 0xFF00) >> 8;
1516 if (noise[0] == 0x7F || noise[1] == 0x7F ||
1517 noise[2] == 0x7F || noise[3] == 0x7F)
1518 goto generate_new;
1519
1520 /* Get the noise samples. */
1521 assert(bcm->noisecalc.nr_samples <= 8);
1522 i = bcm->noisecalc.nr_samples;
1523 noise[0] = limit_value(noise[0], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1524 noise[1] = limit_value(noise[1], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1525 noise[2] = limit_value(noise[2], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1526 noise[3] = limit_value(noise[3], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1527 bcm->noisecalc.samples[i][0] = radio->nrssi_lt[noise[0]];
1528 bcm->noisecalc.samples[i][1] = radio->nrssi_lt[noise[1]];
1529 bcm->noisecalc.samples[i][2] = radio->nrssi_lt[noise[2]];
1530 bcm->noisecalc.samples[i][3] = radio->nrssi_lt[noise[3]];
1531 bcm->noisecalc.nr_samples++;
1532 if (bcm->noisecalc.nr_samples == 8) {
1533 /* Calculate the Link Quality by the noise samples. */
1534 average = 0;
1535 for (i = 0; i < 8; i++) {
1536 for (j = 0; j < 4; j++)
1537 average += bcm->noisecalc.samples[i][j];
1538 }
1539 average /= (8 * 4);
1540 average *= 125;
1541 average += 64;
1542 average /= 128;
1543 tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x40C);
1544 tmp = (tmp / 128) & 0x1F;
1545 if (tmp >= 8)
1546 average += 2;
1547 else
1548 average -= 25;
1549 if (tmp == 8)
1550 average -= 72;
1551 else
1552 average -= 48;
1553
1554 if (average > -65)
1555 bcm->stats.link_quality = 0;
1556 else if (average > -75)
1557 bcm->stats.link_quality = 1;
1558 else if (average > -85)
1559 bcm->stats.link_quality = 2;
1560 else
1561 bcm->stats.link_quality = 3;
1562// dprintk(KERN_INFO PFX "Link Quality: %u (avg was %d)\n", bcm->stats.link_quality, average);
1563drop_calculation:
1564 bcm->noisecalc.calculation_running = 0;
1565 return;
1566 }
1567generate_new:
1568 bcm43xx_generate_noise_sample(bcm);
1569}
1570
Michael Buesch489423c2006-02-13 00:11:07 +01001571static void handle_irq_ps(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001572{
1573 if (bcm->ieee->iw_mode == IW_MODE_MASTER) {
1574 ///TODO: PS TBTT
1575 } else {
1576 if (1/*FIXME: the last PSpoll frame was sent successfully */)
1577 bcm43xx_power_saving_ctl_bits(bcm, -1, -1);
1578 }
1579 if (bcm->ieee->iw_mode == IW_MODE_ADHOC)
1580 bcm->reg124_set_0x4 = 1;
1581 //FIXME else set to false?
1582}
1583
Michael Buesch489423c2006-02-13 00:11:07 +01001584static void handle_irq_reg124(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001585{
1586 if (!bcm->reg124_set_0x4)
1587 return;
1588 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD,
1589 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD)
1590 | 0x4);
1591 //FIXME: reset reg124_set_0x4 to false?
1592}
1593
Michael Buesch489423c2006-02-13 00:11:07 +01001594static void handle_irq_pmq(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001595{
1596 u32 tmp;
1597
1598 //TODO: AP mode.
1599
1600 while (1) {
1601 tmp = bcm43xx_read32(bcm, BCM43xx_MMIO_PS_STATUS);
1602 if (!(tmp & 0x00000008))
1603 break;
1604 }
1605 /* 16bit write is odd, but correct. */
1606 bcm43xx_write16(bcm, BCM43xx_MMIO_PS_STATUS, 0x0002);
1607}
1608
1609static void bcm43xx_generate_beacon_template(struct bcm43xx_private *bcm,
1610 u16 ram_offset, u16 shm_size_offset)
1611{
1612 u32 value;
1613 u16 size = 0;
1614
1615 /* Timestamp. */
1616 //FIXME: assumption: The chip sets the timestamp
1617 value = 0;
1618 bcm43xx_ram_write(bcm, ram_offset++, value);
1619 bcm43xx_ram_write(bcm, ram_offset++, value);
1620 size += 8;
1621
1622 /* Beacon Interval / Capability Information */
1623 value = 0x0000;//FIXME: Which interval?
1624 value |= (1 << 0) << 16; /* ESS */
1625 value |= (1 << 2) << 16; /* CF Pollable */ //FIXME?
1626 value |= (1 << 3) << 16; /* CF Poll Request */ //FIXME?
1627 if (!bcm->ieee->open_wep)
1628 value |= (1 << 4) << 16; /* Privacy */
1629 bcm43xx_ram_write(bcm, ram_offset++, value);
1630 size += 4;
1631
1632 /* SSID */
1633 //TODO
1634
1635 /* FH Parameter Set */
1636 //TODO
1637
1638 /* DS Parameter Set */
1639 //TODO
1640
1641 /* CF Parameter Set */
1642 //TODO
1643
1644 /* TIM */
1645 //TODO
1646
1647 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, shm_size_offset, size);
1648}
1649
Michael Buesch489423c2006-02-13 00:11:07 +01001650static void handle_irq_beacon(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001651{
1652 u32 status;
1653
1654 bcm->irq_savedstate &= ~BCM43xx_IRQ_BEACON;
1655 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD);
1656
1657 if ((status & 0x1) && (status & 0x2)) {
1658 /* ACK beacon IRQ. */
1659 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON,
1660 BCM43xx_IRQ_BEACON);
1661 bcm->irq_savedstate |= BCM43xx_IRQ_BEACON;
1662 return;
1663 }
1664 if (!(status & 0x1)) {
1665 bcm43xx_generate_beacon_template(bcm, 0x68, 0x18);
1666 status |= 0x1;
1667 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, status);
1668 }
1669 if (!(status & 0x2)) {
1670 bcm43xx_generate_beacon_template(bcm, 0x468, 0x1A);
1671 status |= 0x2;
1672 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, status);
1673 }
1674}
1675
John W. Linvillef2223132006-01-23 16:59:58 -05001676/* Interrupt handler bottom-half */
1677static void bcm43xx_interrupt_tasklet(struct bcm43xx_private *bcm)
1678{
1679 u32 reason;
1680 u32 dma_reason[4];
1681 int activity = 0;
1682 unsigned long flags;
1683
1684#ifdef CONFIG_BCM43XX_DEBUG
1685 u32 _handled = 0x00000000;
1686# define bcmirq_handled(irq) do { _handled |= (irq); } while (0)
1687#else
1688# define bcmirq_handled(irq) do { /* nothing */ } while (0)
1689#endif /* CONFIG_BCM43XX_DEBUG*/
1690
Michael Bueschefccb642006-03-11 13:39:14 +01001691 bcm43xx_lock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05001692 reason = bcm->irq_reason;
1693 dma_reason[0] = bcm->dma_reason[0];
1694 dma_reason[1] = bcm->dma_reason[1];
1695 dma_reason[2] = bcm->dma_reason[2];
1696 dma_reason[3] = bcm->dma_reason[3];
1697
1698 if (unlikely(reason & BCM43xx_IRQ_XMIT_ERROR)) {
1699 /* TX error. We get this when Template Ram is written in wrong endianess
1700 * in dummy_tx(). We also get this if something is wrong with the TX header
1701 * on DMA or PIO queues.
1702 * Maybe we get this in other error conditions, too.
1703 */
Michael Buesch73733842006-03-12 19:44:29 +01001704 printkl(KERN_ERR PFX "FATAL ERROR: BCM43xx_IRQ_XMIT_ERROR\n");
John W. Linvillef2223132006-01-23 16:59:58 -05001705 bcmirq_handled(BCM43xx_IRQ_XMIT_ERROR);
1706 }
Michael Buesch73733842006-03-12 19:44:29 +01001707 if (unlikely((dma_reason[0] & BCM43xx_DMAIRQ_FATALMASK) |
1708 (dma_reason[1] & BCM43xx_DMAIRQ_FATALMASK) |
1709 (dma_reason[2] & BCM43xx_DMAIRQ_FATALMASK) |
1710 (dma_reason[3] & BCM43xx_DMAIRQ_FATALMASK))) {
1711 printkl(KERN_ERR PFX "FATAL ERROR: Fatal DMA error: "
1712 "0x%08X, 0x%08X, 0x%08X, 0x%08X\n",
1713 dma_reason[0], dma_reason[1],
1714 dma_reason[2], dma_reason[3]);
1715 bcm43xx_controller_restart(bcm, "DMA error");
1716 bcm43xx_unlock_mmio(bcm, flags);
1717 return;
1718 }
1719 if (unlikely((dma_reason[0] & BCM43xx_DMAIRQ_NONFATALMASK) |
1720 (dma_reason[1] & BCM43xx_DMAIRQ_NONFATALMASK) |
1721 (dma_reason[2] & BCM43xx_DMAIRQ_NONFATALMASK) |
1722 (dma_reason[3] & BCM43xx_DMAIRQ_NONFATALMASK))) {
1723 printkl(KERN_ERR PFX "DMA error: "
1724 "0x%08X, 0x%08X, 0x%08X, 0x%08X\n",
1725 dma_reason[0], dma_reason[1],
1726 dma_reason[2], dma_reason[3]);
1727 }
John W. Linvillef2223132006-01-23 16:59:58 -05001728
1729 if (reason & BCM43xx_IRQ_PS) {
1730 handle_irq_ps(bcm);
1731 bcmirq_handled(BCM43xx_IRQ_PS);
1732 }
1733
1734 if (reason & BCM43xx_IRQ_REG124) {
1735 handle_irq_reg124(bcm);
1736 bcmirq_handled(BCM43xx_IRQ_REG124);
1737 }
1738
1739 if (reason & BCM43xx_IRQ_BEACON) {
1740 if (bcm->ieee->iw_mode == IW_MODE_MASTER)
1741 handle_irq_beacon(bcm);
1742 bcmirq_handled(BCM43xx_IRQ_BEACON);
1743 }
1744
1745 if (reason & BCM43xx_IRQ_PMQ) {
1746 handle_irq_pmq(bcm);
1747 bcmirq_handled(BCM43xx_IRQ_PMQ);
1748 }
1749
1750 if (reason & BCM43xx_IRQ_SCAN) {
1751 /*TODO*/
1752 //bcmirq_handled(BCM43xx_IRQ_SCAN);
1753 }
1754
1755 if (reason & BCM43xx_IRQ_NOISE) {
1756 handle_irq_noise(bcm);
1757 bcmirq_handled(BCM43xx_IRQ_NOISE);
1758 }
1759
1760 /* Check the DMA reason registers for received data. */
1761 assert(!(dma_reason[1] & BCM43xx_DMAIRQ_RX_DONE));
1762 assert(!(dma_reason[2] & BCM43xx_DMAIRQ_RX_DONE));
1763 if (dma_reason[0] & BCM43xx_DMAIRQ_RX_DONE) {
Michael Buesch77db31e2006-02-12 16:47:44 +01001764 if (bcm43xx_using_pio(bcm))
Michael Buesche9357c02006-03-13 19:27:34 +01001765 bcm43xx_pio_rx(bcm43xx_current_pio(bcm)->queue0);
John W. Linvillef2223132006-01-23 16:59:58 -05001766 else
Michael Buesche9357c02006-03-13 19:27:34 +01001767 bcm43xx_dma_rx(bcm43xx_current_dma(bcm)->rx_ring0);
Michael Bueschdcfd7202006-02-12 20:25:55 +01001768 /* We intentionally don't set "activity" to 1, here. */
John W. Linvillef2223132006-01-23 16:59:58 -05001769 }
1770 if (dma_reason[3] & BCM43xx_DMAIRQ_RX_DONE) {
Michael Buesche1b1b582006-03-13 15:20:05 +01001771 if (bcm43xx_using_pio(bcm))
Michael Buesche9357c02006-03-13 19:27:34 +01001772 bcm43xx_pio_rx(bcm43xx_current_pio(bcm)->queue3);
Michael Buesche1b1b582006-03-13 15:20:05 +01001773 else
Michael Buesche9357c02006-03-13 19:27:34 +01001774 bcm43xx_dma_rx(bcm43xx_current_dma(bcm)->rx_ring1);
Michael Buesche1b1b582006-03-13 15:20:05 +01001775 activity = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05001776 }
1777 bcmirq_handled(BCM43xx_IRQ_RX);
1778
1779 if (reason & BCM43xx_IRQ_XMIT_STATUS) {
Michael Buesche1b1b582006-03-13 15:20:05 +01001780 handle_irq_transmit_status(bcm);
1781 activity = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05001782 //TODO: In AP mode, this also causes sending of powersave responses.
1783 bcmirq_handled(BCM43xx_IRQ_XMIT_STATUS);
1784 }
1785
1786 /* We get spurious IRQs, althought they are masked.
1787 * Assume they are void and ignore them.
1788 */
1789 bcmirq_handled(~(bcm->irq_savedstate));
1790 /* IRQ_PIO_WORKAROUND is handled in the top-half. */
1791 bcmirq_handled(BCM43xx_IRQ_PIO_WORKAROUND);
1792#ifdef CONFIG_BCM43XX_DEBUG
1793 if (unlikely(reason & ~_handled)) {
1794 printkl(KERN_WARNING PFX
1795 "Unhandled IRQ! Reason: 0x%08x, Unhandled: 0x%08x, "
1796 "DMA: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
1797 reason, (reason & ~_handled),
1798 dma_reason[0], dma_reason[1],
1799 dma_reason[2], dma_reason[3]);
1800 }
1801#endif
1802#undef bcmirq_handled
1803
1804 if (!modparam_noleds)
1805 bcm43xx_leds_update(bcm, activity);
1806 bcm43xx_interrupt_enable(bcm, bcm->irq_savedstate);
Michael Bueschefccb642006-03-11 13:39:14 +01001807 bcm43xx_unlock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05001808}
1809
Michael Buesch489423c2006-02-13 00:11:07 +01001810static void bcm43xx_interrupt_ack(struct bcm43xx_private *bcm,
1811 u32 reason, u32 mask)
John W. Linvillef2223132006-01-23 16:59:58 -05001812{
1813 bcm->dma_reason[0] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA1_REASON)
1814 & 0x0001dc00;
1815 bcm->dma_reason[1] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA2_REASON)
1816 & 0x0000dc00;
1817 bcm->dma_reason[2] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA3_REASON)
1818 & 0x0000dc00;
1819 bcm->dma_reason[3] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA4_REASON)
1820 & 0x0001dc00;
1821
Michael Buesch77db31e2006-02-12 16:47:44 +01001822 if (bcm43xx_using_pio(bcm) &&
John W. Linvillef2223132006-01-23 16:59:58 -05001823 (bcm->current_core->rev < 3) &&
1824 (!(reason & BCM43xx_IRQ_PIO_WORKAROUND))) {
1825 /* Apply a PIO specific workaround to the dma_reasons */
1826
1827#define apply_pio_workaround(BASE, QNUM) \
1828 do { \
1829 if (bcm43xx_read16(bcm, BASE + BCM43xx_PIO_RXCTL) & BCM43xx_PIO_RXCTL_DATAAVAILABLE) \
1830 bcm->dma_reason[QNUM] |= 0x00010000; \
1831 else \
1832 bcm->dma_reason[QNUM] &= ~0x00010000; \
1833 } while (0)
1834
1835 apply_pio_workaround(BCM43xx_MMIO_PIO1_BASE, 0);
1836 apply_pio_workaround(BCM43xx_MMIO_PIO2_BASE, 1);
1837 apply_pio_workaround(BCM43xx_MMIO_PIO3_BASE, 2);
1838 apply_pio_workaround(BCM43xx_MMIO_PIO4_BASE, 3);
1839
1840#undef apply_pio_workaround
1841 }
1842
1843 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON,
1844 reason & mask);
1845
1846 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA1_REASON,
1847 bcm->dma_reason[0]);
1848 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA2_REASON,
1849 bcm->dma_reason[1]);
1850 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA3_REASON,
1851 bcm->dma_reason[2]);
1852 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA4_REASON,
1853 bcm->dma_reason[3]);
1854}
1855
1856/* Interrupt handler top-half */
1857static irqreturn_t bcm43xx_interrupt_handler(int irq, void *dev_id, struct pt_regs *regs)
1858{
Michael Bueschefccb642006-03-11 13:39:14 +01001859 irqreturn_t ret = IRQ_HANDLED;
John W. Linvillef2223132006-01-23 16:59:58 -05001860 struct bcm43xx_private *bcm = dev_id;
1861 u32 reason, mask;
1862
1863 if (!bcm)
1864 return IRQ_NONE;
1865
Michael Bueschefccb642006-03-11 13:39:14 +01001866 spin_lock(&bcm->_lock);
John W. Linvillef2223132006-01-23 16:59:58 -05001867
1868 reason = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
1869 if (reason == 0xffffffff) {
1870 /* irq not for us (shared irq) */
Michael Bueschefccb642006-03-11 13:39:14 +01001871 ret = IRQ_NONE;
1872 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05001873 }
1874 mask = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK);
Michael Bueschefccb642006-03-11 13:39:14 +01001875 if (!(reason & mask))
1876 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05001877
1878 bcm43xx_interrupt_ack(bcm, reason, mask);
1879
Michael Bueschbf7b8762006-02-21 17:58:18 +01001880 /* Only accept IRQs, if we are initialized properly.
1881 * This avoids an RX race while initializing.
1882 * We should probably not enable IRQs before we are initialized
1883 * completely, but some careful work is needed to fix this. I think it
1884 * is best to stay with this cheap workaround for now... .
1885 */
1886 if (likely(bcm->initialized)) {
1887 /* disable all IRQs. They are enabled again in the bottom half. */
1888 bcm->irq_savedstate = bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
1889 /* save the reason code and call our bottom half. */
1890 bcm->irq_reason = reason;
1891 tasklet_schedule(&bcm->isr_tasklet);
1892 }
John W. Linvillef2223132006-01-23 16:59:58 -05001893
Michael Bueschefccb642006-03-11 13:39:14 +01001894out:
1895 mmiowb();
1896 spin_unlock(&bcm->_lock);
John W. Linvillef2223132006-01-23 16:59:58 -05001897
Michael Bueschefccb642006-03-11 13:39:14 +01001898 return ret;
John W. Linvillef2223132006-01-23 16:59:58 -05001899}
1900
Michael Buescha4a600d2006-02-01 22:09:52 +01001901static void bcm43xx_release_firmware(struct bcm43xx_private *bcm, int force)
John W. Linvillef2223132006-01-23 16:59:58 -05001902{
Michael Buescha4a600d2006-02-01 22:09:52 +01001903 if (bcm->firmware_norelease && !force)
John W. Linvillef2223132006-01-23 16:59:58 -05001904 return; /* Suspending or controller reset. */
1905 release_firmware(bcm->ucode);
1906 bcm->ucode = NULL;
1907 release_firmware(bcm->pcm);
1908 bcm->pcm = NULL;
1909 release_firmware(bcm->initvals0);
1910 bcm->initvals0 = NULL;
1911 release_firmware(bcm->initvals1);
1912 bcm->initvals1 = NULL;
1913}
1914
1915static int bcm43xx_request_firmware(struct bcm43xx_private *bcm)
1916{
Michael Buesche9357c02006-03-13 19:27:34 +01001917 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05001918 u8 rev = bcm->current_core->rev;
1919 int err = 0;
1920 int nr;
1921 char buf[22 + sizeof(modparam_fwpostfix) - 1] = { 0 };
1922
1923 if (!bcm->ucode) {
1924 snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_microcode%d%s.fw",
1925 (rev >= 5 ? 5 : rev),
1926 modparam_fwpostfix);
1927 err = request_firmware(&bcm->ucode, buf, &bcm->pci_dev->dev);
1928 if (err) {
1929 printk(KERN_ERR PFX
1930 "Error: Microcode \"%s\" not available or load failed.\n",
1931 buf);
1932 goto error;
1933 }
1934 }
1935
1936 if (!bcm->pcm) {
1937 snprintf(buf, ARRAY_SIZE(buf),
1938 "bcm43xx_pcm%d%s.fw",
1939 (rev < 5 ? 4 : 5),
1940 modparam_fwpostfix);
1941 err = request_firmware(&bcm->pcm, buf, &bcm->pci_dev->dev);
1942 if (err) {
1943 printk(KERN_ERR PFX
1944 "Error: PCM \"%s\" not available or load failed.\n",
1945 buf);
1946 goto error;
1947 }
1948 }
1949
1950 if (!bcm->initvals0) {
1951 if (rev == 2 || rev == 4) {
1952 switch (phy->type) {
1953 case BCM43xx_PHYTYPE_A:
1954 nr = 3;
1955 break;
1956 case BCM43xx_PHYTYPE_B:
1957 case BCM43xx_PHYTYPE_G:
1958 nr = 1;
1959 break;
1960 default:
1961 goto err_noinitval;
1962 }
1963
1964 } else if (rev >= 5) {
1965 switch (phy->type) {
1966 case BCM43xx_PHYTYPE_A:
1967 nr = 7;
1968 break;
1969 case BCM43xx_PHYTYPE_B:
1970 case BCM43xx_PHYTYPE_G:
1971 nr = 5;
1972 break;
1973 default:
1974 goto err_noinitval;
1975 }
1976 } else
1977 goto err_noinitval;
1978 snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_initval%02d%s.fw",
1979 nr, modparam_fwpostfix);
1980
1981 err = request_firmware(&bcm->initvals0, buf, &bcm->pci_dev->dev);
1982 if (err) {
1983 printk(KERN_ERR PFX
1984 "Error: InitVals \"%s\" not available or load failed.\n",
1985 buf);
1986 goto error;
1987 }
1988 if (bcm->initvals0->size % sizeof(struct bcm43xx_initval)) {
1989 printk(KERN_ERR PFX "InitVals fileformat error.\n");
1990 goto error;
1991 }
1992 }
1993
1994 if (!bcm->initvals1) {
1995 if (rev >= 5) {
1996 u32 sbtmstatehigh;
1997
1998 switch (phy->type) {
1999 case BCM43xx_PHYTYPE_A:
2000 sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH);
2001 if (sbtmstatehigh & 0x00010000)
2002 nr = 9;
2003 else
2004 nr = 10;
2005 break;
2006 case BCM43xx_PHYTYPE_B:
2007 case BCM43xx_PHYTYPE_G:
2008 nr = 6;
2009 break;
2010 default:
2011 goto err_noinitval;
2012 }
2013 snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_initval%02d%s.fw",
2014 nr, modparam_fwpostfix);
2015
2016 err = request_firmware(&bcm->initvals1, buf, &bcm->pci_dev->dev);
2017 if (err) {
2018 printk(KERN_ERR PFX
2019 "Error: InitVals \"%s\" not available or load failed.\n",
2020 buf);
2021 goto error;
2022 }
2023 if (bcm->initvals1->size % sizeof(struct bcm43xx_initval)) {
2024 printk(KERN_ERR PFX "InitVals fileformat error.\n");
2025 goto error;
2026 }
2027 }
2028 }
2029
2030out:
2031 return err;
2032error:
Michael Buescha4a600d2006-02-01 22:09:52 +01002033 bcm43xx_release_firmware(bcm, 1);
John W. Linvillef2223132006-01-23 16:59:58 -05002034 goto out;
2035err_noinitval:
2036 printk(KERN_ERR PFX "Error: No InitVals available!\n");
2037 err = -ENOENT;
2038 goto error;
2039}
2040
2041static void bcm43xx_upload_microcode(struct bcm43xx_private *bcm)
2042{
2043 const u32 *data;
2044 unsigned int i, len;
2045
John W. Linvillef2223132006-01-23 16:59:58 -05002046 /* Upload Microcode. */
2047 data = (u32 *)(bcm->ucode->data);
2048 len = bcm->ucode->size / sizeof(u32);
2049 bcm43xx_shm_control_word(bcm, BCM43xx_SHM_UCODE, 0x0000);
2050 for (i = 0; i < len; i++) {
2051 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA,
2052 be32_to_cpu(data[i]));
2053 udelay(10);
2054 }
2055
2056 /* Upload PCM data. */
2057 data = (u32 *)(bcm->pcm->data);
2058 len = bcm->pcm->size / sizeof(u32);
2059 bcm43xx_shm_control_word(bcm, BCM43xx_SHM_PCM, 0x01ea);
2060 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA, 0x00004000);
2061 bcm43xx_shm_control_word(bcm, BCM43xx_SHM_PCM, 0x01eb);
2062 for (i = 0; i < len; i++) {
2063 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA,
2064 be32_to_cpu(data[i]));
2065 udelay(10);
2066 }
John W. Linvillef2223132006-01-23 16:59:58 -05002067}
2068
Michael Buescha4a600d2006-02-01 22:09:52 +01002069static int bcm43xx_write_initvals(struct bcm43xx_private *bcm,
2070 const struct bcm43xx_initval *data,
2071 const unsigned int len)
John W. Linvillef2223132006-01-23 16:59:58 -05002072{
2073 u16 offset, size;
2074 u32 value;
2075 unsigned int i;
2076
2077 for (i = 0; i < len; i++) {
2078 offset = be16_to_cpu(data[i].offset);
2079 size = be16_to_cpu(data[i].size);
2080 value = be32_to_cpu(data[i].value);
2081
Michael Buescha4a600d2006-02-01 22:09:52 +01002082 if (unlikely(offset >= 0x1000))
2083 goto err_format;
2084 if (size == 2) {
2085 if (unlikely(value & 0xFFFF0000))
2086 goto err_format;
2087 bcm43xx_write16(bcm, offset, (u16)value);
2088 } else if (size == 4) {
John W. Linvillef2223132006-01-23 16:59:58 -05002089 bcm43xx_write32(bcm, offset, value);
Michael Buescha4a600d2006-02-01 22:09:52 +01002090 } else
2091 goto err_format;
John W. Linvillef2223132006-01-23 16:59:58 -05002092 }
Michael Buescha4a600d2006-02-01 22:09:52 +01002093
2094 return 0;
2095
2096err_format:
2097 printk(KERN_ERR PFX "InitVals (bcm43xx_initvalXX.fw) file-format error. "
2098 "Please fix your bcm43xx firmware files.\n");
2099 return -EPROTO;
John W. Linvillef2223132006-01-23 16:59:58 -05002100}
2101
Michael Buescha4a600d2006-02-01 22:09:52 +01002102static int bcm43xx_upload_initvals(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05002103{
Michael Buescha4a600d2006-02-01 22:09:52 +01002104 int err;
2105
Michael Buescha4a600d2006-02-01 22:09:52 +01002106 err = bcm43xx_write_initvals(bcm, (struct bcm43xx_initval *)bcm->initvals0->data,
2107 bcm->initvals0->size / sizeof(struct bcm43xx_initval));
2108 if (err)
2109 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05002110 if (bcm->initvals1) {
Michael Buescha4a600d2006-02-01 22:09:52 +01002111 err = bcm43xx_write_initvals(bcm, (struct bcm43xx_initval *)bcm->initvals1->data,
2112 bcm->initvals1->size / sizeof(struct bcm43xx_initval));
2113 if (err)
2114 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05002115 }
Michael Buescha4a600d2006-02-01 22:09:52 +01002116out:
Michael Buescha4a600d2006-02-01 22:09:52 +01002117 return err;
John W. Linvillef2223132006-01-23 16:59:58 -05002118}
2119
2120static int bcm43xx_initialize_irq(struct bcm43xx_private *bcm)
2121{
2122 int res;
2123 unsigned int i;
2124 u32 data;
2125
2126 bcm->irq = bcm->pci_dev->irq;
2127#ifdef CONFIG_BCM947XX
2128 if (bcm->pci_dev->bus->number == 0) {
2129 struct pci_dev *d = NULL;
2130 /* FIXME: we will probably need more device IDs here... */
2131 d = pci_find_device(PCI_VENDOR_ID_BROADCOM, 0x4324, NULL);
2132 if (d != NULL) {
2133 bcm->irq = d->irq;
2134 }
2135 }
2136#endif
2137 res = request_irq(bcm->irq, bcm43xx_interrupt_handler,
Michael Buesch65f3f192006-01-31 20:11:38 +01002138 SA_SHIRQ, KBUILD_MODNAME, bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05002139 if (res) {
2140 printk(KERN_ERR PFX "Cannot register IRQ%d\n", bcm->irq);
Michael Buesch489423c2006-02-13 00:11:07 +01002141 return -ENODEV;
John W. Linvillef2223132006-01-23 16:59:58 -05002142 }
2143 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, 0xffffffff);
2144 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, 0x00020402);
2145 i = 0;
2146 while (1) {
2147 data = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
2148 if (data == BCM43xx_IRQ_READY)
2149 break;
2150 i++;
2151 if (i >= BCM43xx_IRQWAIT_MAX_RETRIES) {
2152 printk(KERN_ERR PFX "Card IRQ register not responding. "
2153 "Giving up.\n");
2154 free_irq(bcm->irq, bcm);
2155 return -ENODEV;
2156 }
2157 udelay(10);
2158 }
2159 // dummy read
2160 bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
2161
2162 return 0;
2163}
2164
2165/* Switch to the core used to write the GPIO register.
2166 * This is either the ChipCommon, or the PCI core.
2167 */
Michael Buesch489423c2006-02-13 00:11:07 +01002168static int switch_to_gpio_core(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05002169{
2170 int err;
2171
2172 /* Where to find the GPIO register depends on the chipset.
2173 * If it has a ChipCommon, its register at offset 0x6c is the GPIO
2174 * control register. Otherwise the register at offset 0x6c in the
2175 * PCI core is the GPIO control register.
2176 */
2177 err = bcm43xx_switch_core(bcm, &bcm->core_chipcommon);
2178 if (err == -ENODEV) {
2179 err = bcm43xx_switch_core(bcm, &bcm->core_pci);
Michael Buesch489423c2006-02-13 00:11:07 +01002180 if (unlikely(err == -ENODEV)) {
John W. Linvillef2223132006-01-23 16:59:58 -05002181 printk(KERN_ERR PFX "gpio error: "
2182 "Neither ChipCommon nor PCI core available!\n");
2183 return -ENODEV;
Michael Buesch489423c2006-02-13 00:11:07 +01002184 } else if (unlikely(err != 0))
John W. Linvillef2223132006-01-23 16:59:58 -05002185 return -ENODEV;
Michael Buesch489423c2006-02-13 00:11:07 +01002186 } else if (unlikely(err != 0))
John W. Linvillef2223132006-01-23 16:59:58 -05002187 return -ENODEV;
2188
2189 return 0;
2190}
2191
2192/* Initialize the GPIOs
2193 * http://bcm-specs.sipsolutions.net/GPIO
2194 */
2195static int bcm43xx_gpio_init(struct bcm43xx_private *bcm)
2196{
2197 struct bcm43xx_coreinfo *old_core;
2198 int err;
2199 u32 mask, value;
2200
2201 value = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2202 value &= ~0xc000;
2203 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value);
2204
2205 mask = 0x0000001F;
2206 value = 0x0000000F;
2207 bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_CONTROL,
2208 bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_CONTROL) & 0xFFF0);
2209 bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_MASK,
2210 bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_MASK) | 0x000F);
2211
2212 old_core = bcm->current_core;
2213
2214 err = switch_to_gpio_core(bcm);
2215 if (err)
2216 return err;
2217
2218 if (bcm->current_core->rev >= 2){
2219 mask |= 0x10;
2220 value |= 0x10;
2221 }
2222 if (bcm->chip_id == 0x4301) {
2223 mask |= 0x60;
2224 value |= 0x60;
2225 }
2226 if (bcm->sprom.boardflags & BCM43xx_BFL_PACTRL) {
2227 mask |= 0x200;
2228 value |= 0x200;
2229 }
2230
2231 bcm43xx_write32(bcm, BCM43xx_GPIO_CONTROL,
2232 (bcm43xx_read32(bcm, BCM43xx_GPIO_CONTROL) & mask) | value);
2233
2234 err = bcm43xx_switch_core(bcm, old_core);
2235 assert(err == 0);
2236
2237 return 0;
2238}
2239
2240/* Turn off all GPIO stuff. Call this on module unload, for example. */
2241static int bcm43xx_gpio_cleanup(struct bcm43xx_private *bcm)
2242{
2243 struct bcm43xx_coreinfo *old_core;
2244 int err;
2245
2246 old_core = bcm->current_core;
2247 err = switch_to_gpio_core(bcm);
2248 if (err)
2249 return err;
2250 bcm43xx_write32(bcm, BCM43xx_GPIO_CONTROL, 0x00000000);
2251 err = bcm43xx_switch_core(bcm, old_core);
2252 assert(err == 0);
2253
2254 return 0;
2255}
2256
2257/* http://bcm-specs.sipsolutions.net/EnableMac */
2258void bcm43xx_mac_enable(struct bcm43xx_private *bcm)
2259{
2260 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
2261 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
2262 | BCM43xx_SBF_MAC_ENABLED);
2263 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, BCM43xx_IRQ_READY);
2264 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); /* dummy read */
2265 bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); /* dummy read */
2266 bcm43xx_power_saving_ctl_bits(bcm, -1, -1);
2267}
2268
2269/* http://bcm-specs.sipsolutions.net/SuspendMAC */
2270void bcm43xx_mac_suspend(struct bcm43xx_private *bcm)
2271{
2272 int i;
2273 u32 tmp;
2274
2275 bcm43xx_power_saving_ctl_bits(bcm, -1, 1);
2276 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
2277 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
2278 & ~BCM43xx_SBF_MAC_ENABLED);
2279 bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); /* dummy read */
Michael Buesch921e4852006-02-08 17:55:55 +01002280 for (i = 100000; i; i--) {
John W. Linvillef2223132006-01-23 16:59:58 -05002281 tmp = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
Michael Buesch921e4852006-02-08 17:55:55 +01002282 if (tmp & BCM43xx_IRQ_READY)
2283 return;
John W. Linvillef2223132006-01-23 16:59:58 -05002284 udelay(10);
2285 }
Michael Buesch921e4852006-02-08 17:55:55 +01002286 printkl(KERN_ERR PFX "MAC suspend failed\n");
John W. Linvillef2223132006-01-23 16:59:58 -05002287}
2288
2289void bcm43xx_set_iwmode(struct bcm43xx_private *bcm,
2290 int iw_mode)
2291{
2292 unsigned long flags;
2293 u32 status;
2294
2295 spin_lock_irqsave(&bcm->ieee->lock, flags);
2296 bcm->ieee->iw_mode = iw_mode;
2297 spin_unlock_irqrestore(&bcm->ieee->lock, flags);
2298 if (iw_mode == IW_MODE_MONITOR)
2299 bcm->net_dev->type = ARPHRD_IEEE80211;
2300 else
2301 bcm->net_dev->type = ARPHRD_ETHER;
2302
2303 if (!bcm->initialized)
2304 return;
2305
2306 bcm43xx_mac_suspend(bcm);
2307 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2308 /* Reset status to infrastructured mode */
2309 status &= ~(BCM43xx_SBF_MODE_AP | BCM43xx_SBF_MODE_MONITOR);
2310 /*FIXME: We actually set promiscuous mode as well, until we don't
2311 * get the HW mac filter working */
2312 status |= BCM43xx_SBF_MODE_NOTADHOC | BCM43xx_SBF_MODE_PROMISC;
2313
2314 switch (iw_mode) {
2315 case IW_MODE_MONITOR:
2316 status |= (BCM43xx_SBF_MODE_PROMISC |
2317 BCM43xx_SBF_MODE_MONITOR);
2318 break;
2319 case IW_MODE_ADHOC:
2320 status &= ~BCM43xx_SBF_MODE_NOTADHOC;
2321 break;
2322 case IW_MODE_MASTER:
2323 case IW_MODE_SECOND:
2324 case IW_MODE_REPEAT:
2325 /* TODO: No AP/Repeater mode for now :-/ */
2326 TODO();
2327 break;
2328 case IW_MODE_INFRA:
2329 /* nothing to be done here... */
2330 break;
2331 default:
2332 printk(KERN_ERR PFX "Unknown iwmode %d\n", iw_mode);
2333 }
2334
2335 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, status);
2336 bcm43xx_mac_enable(bcm);
2337}
2338
2339/* This is the opposite of bcm43xx_chip_init() */
2340static void bcm43xx_chip_cleanup(struct bcm43xx_private *bcm)
2341{
2342 bcm43xx_radio_turn_off(bcm);
2343 if (!modparam_noleds)
2344 bcm43xx_leds_exit(bcm);
2345 bcm43xx_gpio_cleanup(bcm);
2346 free_irq(bcm->irq, bcm);
Michael Buescha4a600d2006-02-01 22:09:52 +01002347 bcm43xx_release_firmware(bcm, 0);
John W. Linvillef2223132006-01-23 16:59:58 -05002348}
2349
2350/* Initialize the chip
2351 * http://bcm-specs.sipsolutions.net/ChipInit
2352 */
2353static int bcm43xx_chip_init(struct bcm43xx_private *bcm)
2354{
Michael Buesche9357c02006-03-13 19:27:34 +01002355 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
2356 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05002357 int err;
2358 int iw_mode = bcm->ieee->iw_mode;
2359 int tmp;
2360 u32 value32;
2361 u16 value16;
2362
2363 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
2364 BCM43xx_SBF_CORE_READY
2365 | BCM43xx_SBF_400);
2366
2367 err = bcm43xx_request_firmware(bcm);
2368 if (err)
2369 goto out;
2370 bcm43xx_upload_microcode(bcm);
2371
2372 err = bcm43xx_initialize_irq(bcm);
2373 if (err)
Michael Buescha4a600d2006-02-01 22:09:52 +01002374 goto err_release_fw;
John W. Linvillef2223132006-01-23 16:59:58 -05002375
2376 err = bcm43xx_gpio_init(bcm);
2377 if (err)
2378 goto err_free_irq;
2379
Michael Buescha4a600d2006-02-01 22:09:52 +01002380 err = bcm43xx_upload_initvals(bcm);
2381 if (err)
2382 goto err_gpio_cleanup;
John W. Linvillef2223132006-01-23 16:59:58 -05002383 bcm43xx_radio_turn_on(bcm);
2384
2385 if (modparam_noleds)
2386 bcm43xx_leds_turn_off(bcm);
2387 else
2388 bcm43xx_leds_update(bcm, 0);
2389
2390 bcm43xx_write16(bcm, 0x03E6, 0x0000);
2391 err = bcm43xx_phy_init(bcm);
2392 if (err)
2393 goto err_radio_off;
2394
2395 /* Select initial Interference Mitigation. */
Michael Buesche9357c02006-03-13 19:27:34 +01002396 tmp = radio->interfmode;
2397 radio->interfmode = BCM43xx_RADIO_INTERFMODE_NONE;
John W. Linvillef2223132006-01-23 16:59:58 -05002398 bcm43xx_radio_set_interference_mitigation(bcm, tmp);
2399
2400 bcm43xx_phy_set_antenna_diversity(bcm);
2401 bcm43xx_radio_set_txantenna(bcm, BCM43xx_RADIO_TXANTENNA_DEFAULT);
Michael Buesche9357c02006-03-13 19:27:34 +01002402 if (phy->type == BCM43xx_PHYTYPE_B) {
John W. Linvillef2223132006-01-23 16:59:58 -05002403 value16 = bcm43xx_read16(bcm, 0x005E);
2404 value16 |= 0x0004;
2405 bcm43xx_write16(bcm, 0x005E, value16);
2406 }
2407 bcm43xx_write32(bcm, 0x0100, 0x01000000);
2408 if (bcm->current_core->rev < 5)
2409 bcm43xx_write32(bcm, 0x010C, 0x01000000);
2410
2411 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2412 value32 &= ~ BCM43xx_SBF_MODE_NOTADHOC;
2413 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32);
2414 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2415 value32 |= BCM43xx_SBF_MODE_NOTADHOC;
2416 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32);
2417 /*FIXME: For now, use promiscuous mode at all times; otherwise we don't
2418 get broadcast or multicast packets */
2419 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2420 value32 |= BCM43xx_SBF_MODE_PROMISC;
2421 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32);
2422
2423 if (iw_mode == IW_MODE_MONITOR) {
2424 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2425 value32 |= BCM43xx_SBF_MODE_PROMISC;
2426 value32 |= BCM43xx_SBF_MODE_MONITOR;
2427 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32);
2428 }
2429 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2430 value32 |= 0x100000; //FIXME: What's this? Is this correct?
2431 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32);
2432
Michael Buesch77db31e2006-02-12 16:47:44 +01002433 if (bcm43xx_using_pio(bcm)) {
John W. Linvillef2223132006-01-23 16:59:58 -05002434 bcm43xx_write32(bcm, 0x0210, 0x00000100);
2435 bcm43xx_write32(bcm, 0x0230, 0x00000100);
2436 bcm43xx_write32(bcm, 0x0250, 0x00000100);
2437 bcm43xx_write32(bcm, 0x0270, 0x00000100);
2438 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0034, 0x0000);
2439 }
2440
2441 /* Probe Response Timeout value */
2442 /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
2443 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0074, 0x0000);
2444
2445 if (iw_mode != IW_MODE_ADHOC && iw_mode != IW_MODE_MASTER) {
2446 if ((bcm->chip_id == 0x4306) && (bcm->chip_rev == 3))
2447 bcm43xx_write16(bcm, 0x0612, 0x0064);
2448 else
2449 bcm43xx_write16(bcm, 0x0612, 0x0032);
2450 } else
2451 bcm43xx_write16(bcm, 0x0612, 0x0002);
2452
2453 if (bcm->current_core->rev < 3) {
2454 bcm43xx_write16(bcm, 0x060E, 0x0000);
2455 bcm43xx_write16(bcm, 0x0610, 0x8000);
2456 bcm43xx_write16(bcm, 0x0604, 0x0000);
2457 bcm43xx_write16(bcm, 0x0606, 0x0200);
2458 } else {
2459 bcm43xx_write32(bcm, 0x0188, 0x80000000);
2460 bcm43xx_write32(bcm, 0x018C, 0x02000000);
2461 }
2462 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, 0x00004000);
2463 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA1_IRQ_MASK, 0x0001DC00);
2464 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA2_IRQ_MASK, 0x0000DC00);
2465 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA3_IRQ_MASK, 0x0000DC00);
2466 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA4_IRQ_MASK, 0x0001DC00);
2467
2468 value32 = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
2469 value32 |= 0x00100000;
2470 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, value32);
2471
2472 bcm43xx_write16(bcm, BCM43xx_MMIO_POWERUP_DELAY, bcm43xx_pctl_powerup_delay(bcm));
2473
2474 assert(err == 0);
2475 dprintk(KERN_INFO PFX "Chip initialized\n");
2476out:
2477 return err;
2478
2479err_radio_off:
2480 bcm43xx_radio_turn_off(bcm);
Michael Buescha4a600d2006-02-01 22:09:52 +01002481err_gpio_cleanup:
John W. Linvillef2223132006-01-23 16:59:58 -05002482 bcm43xx_gpio_cleanup(bcm);
2483err_free_irq:
2484 free_irq(bcm->irq, bcm);
Michael Buescha4a600d2006-02-01 22:09:52 +01002485err_release_fw:
2486 bcm43xx_release_firmware(bcm, 1);
John W. Linvillef2223132006-01-23 16:59:58 -05002487 goto out;
2488}
2489
2490/* Validate chip access
2491 * http://bcm-specs.sipsolutions.net/ValidateChipAccess */
2492static int bcm43xx_validate_chip(struct bcm43xx_private *bcm)
2493{
John W. Linvillef2223132006-01-23 16:59:58 -05002494 u32 value;
2495 u32 shm_backup;
2496
2497 shm_backup = bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000);
2498 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, 0xAA5555AA);
Michael Buesch489423c2006-02-13 00:11:07 +01002499 if (bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000) != 0xAA5555AA)
2500 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002501 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, 0x55AAAA55);
Michael Buesch489423c2006-02-13 00:11:07 +01002502 if (bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000) != 0x55AAAA55)
2503 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002504 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, shm_backup);
2505
2506 value = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
Michael Buesch489423c2006-02-13 00:11:07 +01002507 if ((value | 0x80000000) != 0x80000400)
2508 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002509
2510 value = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
Michael Buesch489423c2006-02-13 00:11:07 +01002511 if (value != 0x00000000)
2512 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002513
Michael Buesch489423c2006-02-13 00:11:07 +01002514 return 0;
2515error:
2516 printk(KERN_ERR PFX "Failed to validate the chipaccess\n");
2517 return -ENODEV;
John W. Linvillef2223132006-01-23 16:59:58 -05002518}
2519
Michael Buesche9357c02006-03-13 19:27:34 +01002520void bcm43xx_init_struct_phyinfo(struct bcm43xx_phyinfo *phy)
2521{
2522 /* Initialize a "phyinfo" structure. The structure is already
2523 * zeroed out.
2524 */
2525 phy->antenna_diversity = 0xFFFF;
2526 phy->savedpctlreg = 0xFFFF;
2527 phy->minlowsig[0] = 0xFFFF;
2528 phy->minlowsig[1] = 0xFFFF;
2529 spin_lock_init(&phy->lock);
2530}
2531
2532void bcm43xx_init_struct_radioinfo(struct bcm43xx_radioinfo *radio)
2533{
2534 /* Initialize a "radioinfo" structure. The structure is already
2535 * zeroed out.
2536 */
2537 radio->interfmode = BCM43xx_RADIO_INTERFMODE_NONE;
2538 radio->channel = 0xFF;
2539 radio->initial_channel = 0xFF;
2540 radio->lofcal = 0xFFFF;
2541 radio->initval = 0xFFFF;
2542 radio->nrssi[0] = -1000;
2543 radio->nrssi[1] = -1000;
2544}
2545
John W. Linvillef2223132006-01-23 16:59:58 -05002546static int bcm43xx_probe_cores(struct bcm43xx_private *bcm)
2547{
2548 int err, i;
2549 int current_core;
2550 u32 core_vendor, core_id, core_rev;
2551 u32 sb_id_hi, chip_id_32 = 0;
2552 u16 pci_device, chip_id_16;
2553 u8 core_count;
2554
2555 memset(&bcm->core_chipcommon, 0, sizeof(struct bcm43xx_coreinfo));
2556 memset(&bcm->core_pci, 0, sizeof(struct bcm43xx_coreinfo));
John W. Linvillef2223132006-01-23 16:59:58 -05002557 memset(&bcm->core_80211, 0, sizeof(struct bcm43xx_coreinfo)
2558 * BCM43xx_MAX_80211_CORES);
Michael Buesche9357c02006-03-13 19:27:34 +01002559 memset(&bcm->core_80211_ext, 0, sizeof(struct bcm43xx_coreinfo_80211)
2560 * BCM43xx_MAX_80211_CORES);
2561 bcm->current_80211_core_idx = -1;
2562 bcm->nr_80211_available = 0;
2563 bcm->current_core = NULL;
2564 bcm->active_80211_core = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -05002565
2566 /* map core 0 */
2567 err = _switch_core(bcm, 0);
2568 if (err)
2569 goto out;
2570
2571 /* fetch sb_id_hi from core information registers */
2572 sb_id_hi = bcm43xx_read32(bcm, BCM43xx_CIR_SB_ID_HI);
2573
2574 core_id = (sb_id_hi & 0xFFF0) >> 4;
2575 core_rev = (sb_id_hi & 0xF);
2576 core_vendor = (sb_id_hi & 0xFFFF0000) >> 16;
2577
2578 /* if present, chipcommon is always core 0; read the chipid from it */
2579 if (core_id == BCM43xx_COREID_CHIPCOMMON) {
2580 chip_id_32 = bcm43xx_read32(bcm, 0);
2581 chip_id_16 = chip_id_32 & 0xFFFF;
Michael Buesche9357c02006-03-13 19:27:34 +01002582 bcm->core_chipcommon.available = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05002583 bcm->core_chipcommon.id = core_id;
2584 bcm->core_chipcommon.rev = core_rev;
2585 bcm->core_chipcommon.index = 0;
2586 /* While we are at it, also read the capabilities. */
2587 bcm->chipcommon_capabilities = bcm43xx_read32(bcm, BCM43xx_CHIPCOMMON_CAPABILITIES);
2588 } else {
2589 /* without a chipCommon, use a hard coded table. */
2590 pci_device = bcm->pci_dev->device;
2591 if (pci_device == 0x4301)
2592 chip_id_16 = 0x4301;
2593 else if ((pci_device >= 0x4305) && (pci_device <= 0x4307))
2594 chip_id_16 = 0x4307;
2595 else if ((pci_device >= 0x4402) && (pci_device <= 0x4403))
2596 chip_id_16 = 0x4402;
2597 else if ((pci_device >= 0x4610) && (pci_device <= 0x4615))
2598 chip_id_16 = 0x4610;
2599 else if ((pci_device >= 0x4710) && (pci_device <= 0x4715))
2600 chip_id_16 = 0x4710;
2601#ifdef CONFIG_BCM947XX
2602 else if ((pci_device >= 0x4320) && (pci_device <= 0x4325))
2603 chip_id_16 = 0x4309;
2604#endif
2605 else {
2606 printk(KERN_ERR PFX "Could not determine Chip ID\n");
2607 return -ENODEV;
2608 }
2609 }
2610
2611 /* ChipCommon with Core Rev >=4 encodes number of cores,
2612 * otherwise consult hardcoded table */
2613 if ((core_id == BCM43xx_COREID_CHIPCOMMON) && (core_rev >= 4)) {
2614 core_count = (chip_id_32 & 0x0F000000) >> 24;
2615 } else {
2616 switch (chip_id_16) {
2617 case 0x4610:
2618 case 0x4704:
2619 case 0x4710:
2620 core_count = 9;
2621 break;
2622 case 0x4310:
2623 core_count = 8;
2624 break;
2625 case 0x5365:
2626 core_count = 7;
2627 break;
2628 case 0x4306:
2629 core_count = 6;
2630 break;
2631 case 0x4301:
2632 case 0x4307:
2633 core_count = 5;
2634 break;
2635 case 0x4402:
2636 core_count = 3;
2637 break;
2638 default:
2639 /* SOL if we get here */
2640 assert(0);
2641 core_count = 1;
2642 }
2643 }
2644
2645 bcm->chip_id = chip_id_16;
2646 bcm->chip_rev = (chip_id_32 & 0x000f0000) >> 16;
2647
2648 dprintk(KERN_INFO PFX "Chip ID 0x%x, rev 0x%x\n",
2649 bcm->chip_id, bcm->chip_rev);
2650 dprintk(KERN_INFO PFX "Number of cores: %d\n", core_count);
Michael Buesche9357c02006-03-13 19:27:34 +01002651 if (bcm->core_chipcommon.available) {
John W. Linvillef2223132006-01-23 16:59:58 -05002652 dprintk(KERN_INFO PFX "Core 0: ID 0x%x, rev 0x%x, vendor 0x%x, %s\n",
2653 core_id, core_rev, core_vendor,
2654 bcm43xx_core_enabled(bcm) ? "enabled" : "disabled");
2655 }
2656
Michael Buesche9357c02006-03-13 19:27:34 +01002657 if (bcm->core_chipcommon.available)
John W. Linvillef2223132006-01-23 16:59:58 -05002658 current_core = 1;
2659 else
2660 current_core = 0;
2661 for ( ; current_core < core_count; current_core++) {
2662 struct bcm43xx_coreinfo *core;
Michael Buesche9357c02006-03-13 19:27:34 +01002663 struct bcm43xx_coreinfo_80211 *ext_80211;
John W. Linvillef2223132006-01-23 16:59:58 -05002664
2665 err = _switch_core(bcm, current_core);
2666 if (err)
2667 goto out;
2668 /* Gather information */
2669 /* fetch sb_id_hi from core information registers */
2670 sb_id_hi = bcm43xx_read32(bcm, BCM43xx_CIR_SB_ID_HI);
2671
2672 /* extract core_id, core_rev, core_vendor */
2673 core_id = (sb_id_hi & 0xFFF0) >> 4;
2674 core_rev = (sb_id_hi & 0xF);
2675 core_vendor = (sb_id_hi & 0xFFFF0000) >> 16;
2676
2677 dprintk(KERN_INFO PFX "Core %d: ID 0x%x, rev 0x%x, vendor 0x%x, %s\n",
2678 current_core, core_id, core_rev, core_vendor,
2679 bcm43xx_core_enabled(bcm) ? "enabled" : "disabled" );
2680
2681 core = NULL;
2682 switch (core_id) {
2683 case BCM43xx_COREID_PCI:
2684 core = &bcm->core_pci;
Michael Buesche9357c02006-03-13 19:27:34 +01002685 if (core->available) {
John W. Linvillef2223132006-01-23 16:59:58 -05002686 printk(KERN_WARNING PFX "Multiple PCI cores found.\n");
2687 continue;
2688 }
2689 break;
John W. Linvillef2223132006-01-23 16:59:58 -05002690 case BCM43xx_COREID_80211:
2691 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
2692 core = &(bcm->core_80211[i]);
Michael Buesche9357c02006-03-13 19:27:34 +01002693 ext_80211 = &(bcm->core_80211_ext[i]);
2694 if (!core->available)
John W. Linvillef2223132006-01-23 16:59:58 -05002695 break;
2696 core = NULL;
2697 }
2698 if (!core) {
2699 printk(KERN_WARNING PFX "More than %d cores of type 802.11 found.\n",
2700 BCM43xx_MAX_80211_CORES);
2701 continue;
2702 }
2703 if (i != 0) {
2704 /* More than one 80211 core is only supported
2705 * by special chips.
2706 * There are chips with two 80211 cores, but with
2707 * dangling pins on the second core. Be careful
2708 * and ignore these cores here.
2709 */
2710 if (bcm->pci_dev->device != 0x4324) {
2711 dprintk(KERN_INFO PFX "Ignoring additional 802.11 core.\n");
2712 continue;
2713 }
2714 }
2715 switch (core_rev) {
2716 case 2:
2717 case 4:
2718 case 5:
2719 case 6:
2720 case 7:
2721 case 9:
2722 break;
2723 default:
2724 printk(KERN_ERR PFX "Error: Unsupported 80211 core revision %u\n",
2725 core_rev);
2726 err = -ENODEV;
2727 goto out;
2728 }
Michael Buesche9357c02006-03-13 19:27:34 +01002729 bcm->nr_80211_available++;
2730 bcm43xx_init_struct_phyinfo(&ext_80211->phy);
2731 bcm43xx_init_struct_radioinfo(&ext_80211->radio);
John W. Linvillef2223132006-01-23 16:59:58 -05002732 break;
2733 case BCM43xx_COREID_CHIPCOMMON:
2734 printk(KERN_WARNING PFX "Multiple CHIPCOMMON cores found.\n");
2735 break;
John W. Linvillef2223132006-01-23 16:59:58 -05002736 }
2737 if (core) {
Michael Buesche9357c02006-03-13 19:27:34 +01002738 core->available = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05002739 core->id = core_id;
2740 core->rev = core_rev;
2741 core->index = current_core;
2742 }
2743 }
2744
Michael Buesche9357c02006-03-13 19:27:34 +01002745 if (!bcm->core_80211[0].available) {
John W. Linvillef2223132006-01-23 16:59:58 -05002746 printk(KERN_ERR PFX "Error: No 80211 core found!\n");
2747 err = -ENODEV;
2748 goto out;
2749 }
2750
2751 err = bcm43xx_switch_core(bcm, &bcm->core_80211[0]);
2752
2753 assert(err == 0);
2754out:
2755 return err;
2756}
2757
2758static void bcm43xx_gen_bssid(struct bcm43xx_private *bcm)
2759{
2760 const u8 *mac = (const u8*)(bcm->net_dev->dev_addr);
2761 u8 *bssid = bcm->ieee->bssid;
2762
2763 switch (bcm->ieee->iw_mode) {
2764 case IW_MODE_ADHOC:
2765 random_ether_addr(bssid);
2766 break;
2767 case IW_MODE_MASTER:
2768 case IW_MODE_INFRA:
2769 case IW_MODE_REPEAT:
2770 case IW_MODE_SECOND:
2771 case IW_MODE_MONITOR:
2772 memcpy(bssid, mac, ETH_ALEN);
2773 break;
2774 default:
2775 assert(0);
2776 }
2777}
2778
2779static void bcm43xx_rate_memory_write(struct bcm43xx_private *bcm,
2780 u16 rate,
2781 int is_ofdm)
2782{
2783 u16 offset;
2784
2785 if (is_ofdm) {
2786 offset = 0x480;
2787 offset += (bcm43xx_plcp_get_ratecode_ofdm(rate) & 0x000F) * 2;
2788 }
2789 else {
2790 offset = 0x4C0;
2791 offset += (bcm43xx_plcp_get_ratecode_cck(rate) & 0x000F) * 2;
2792 }
2793 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, offset + 0x20,
2794 bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, offset));
2795}
2796
2797static void bcm43xx_rate_memory_init(struct bcm43xx_private *bcm)
2798{
Michael Buesche9357c02006-03-13 19:27:34 +01002799 switch (bcm43xx_current_phy(bcm)->type) {
John W. Linvillef2223132006-01-23 16:59:58 -05002800 case BCM43xx_PHYTYPE_A:
2801 case BCM43xx_PHYTYPE_G:
2802 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_6MB, 1);
2803 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_12MB, 1);
2804 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_18MB, 1);
2805 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_24MB, 1);
2806 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_36MB, 1);
2807 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_48MB, 1);
2808 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_54MB, 1);
2809 case BCM43xx_PHYTYPE_B:
2810 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_1MB, 0);
2811 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_2MB, 0);
2812 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_5MB, 0);
2813 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_11MB, 0);
2814 break;
2815 default:
2816 assert(0);
2817 }
2818}
2819
2820static void bcm43xx_wireless_core_cleanup(struct bcm43xx_private *bcm)
2821{
2822 bcm43xx_chip_cleanup(bcm);
2823 bcm43xx_pio_free(bcm);
2824 bcm43xx_dma_free(bcm);
2825
Michael Buesche9357c02006-03-13 19:27:34 +01002826 bcm->current_core->initialized = 0;
John W. Linvillef2223132006-01-23 16:59:58 -05002827}
2828
2829/* http://bcm-specs.sipsolutions.net/80211Init */
2830static int bcm43xx_wireless_core_init(struct bcm43xx_private *bcm)
2831{
Michael Buesche9357c02006-03-13 19:27:34 +01002832 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
2833 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05002834 u32 ucodeflags;
2835 int err;
2836 u32 sbimconfiglow;
2837 u8 limit;
2838
2839 if (bcm->chip_rev < 5) {
2840 sbimconfiglow = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMCONFIGLOW);
2841 sbimconfiglow &= ~ BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_MASK;
2842 sbimconfiglow &= ~ BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_MASK;
2843 if (bcm->bustype == BCM43xx_BUSTYPE_PCI)
2844 sbimconfiglow |= 0x32;
2845 else if (bcm->bustype == BCM43xx_BUSTYPE_SB)
2846 sbimconfiglow |= 0x53;
2847 else
2848 assert(0);
2849 bcm43xx_write32(bcm, BCM43xx_CIR_SBIMCONFIGLOW, sbimconfiglow);
2850 }
2851
2852 bcm43xx_phy_calibrate(bcm);
2853 err = bcm43xx_chip_init(bcm);
2854 if (err)
2855 goto out;
2856
2857 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0016, bcm->current_core->rev);
2858 ucodeflags = bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, BCM43xx_UCODEFLAGS_OFFSET);
2859
2860 if (0 /*FIXME: which condition has to be used here? */)
2861 ucodeflags |= 0x00000010;
2862
2863 /* HW decryption needs to be set now */
2864 ucodeflags |= 0x40000000;
2865
Michael Buesche9357c02006-03-13 19:27:34 +01002866 if (phy->type == BCM43xx_PHYTYPE_G) {
John W. Linvillef2223132006-01-23 16:59:58 -05002867 ucodeflags |= BCM43xx_UCODEFLAG_UNKBGPHY;
Michael Buesche9357c02006-03-13 19:27:34 +01002868 if (phy->rev == 1)
John W. Linvillef2223132006-01-23 16:59:58 -05002869 ucodeflags |= BCM43xx_UCODEFLAG_UNKGPHY;
2870 if (bcm->sprom.boardflags & BCM43xx_BFL_PACTRL)
2871 ucodeflags |= BCM43xx_UCODEFLAG_UNKPACTRL;
Michael Buesche9357c02006-03-13 19:27:34 +01002872 } else if (phy->type == BCM43xx_PHYTYPE_B) {
John W. Linvillef2223132006-01-23 16:59:58 -05002873 ucodeflags |= BCM43xx_UCODEFLAG_UNKBGPHY;
Michael Buesche9357c02006-03-13 19:27:34 +01002874 if (phy->rev >= 2 && radio->version == 0x2050)
John W. Linvillef2223132006-01-23 16:59:58 -05002875 ucodeflags &= ~BCM43xx_UCODEFLAG_UNKGPHY;
2876 }
2877
2878 if (ucodeflags != bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED,
2879 BCM43xx_UCODEFLAGS_OFFSET)) {
2880 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED,
2881 BCM43xx_UCODEFLAGS_OFFSET, ucodeflags);
2882 }
2883
2884 /* Short/Long Retry Limit.
2885 * The retry-limit is a 4-bit counter. Enforce this to avoid overflowing
2886 * the chip-internal counter.
2887 */
2888 limit = limit_value(modparam_short_retry, 0, 0xF);
2889 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0006, limit);
2890 limit = limit_value(modparam_long_retry, 0, 0xF);
2891 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0007, limit);
2892
2893 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0044, 3);
2894 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0046, 2);
2895
2896 bcm43xx_rate_memory_init(bcm);
2897
2898 /* Minimum Contention Window */
Michael Buesche9357c02006-03-13 19:27:34 +01002899 if (phy->type == BCM43xx_PHYTYPE_B)
John W. Linvillef2223132006-01-23 16:59:58 -05002900 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0003, 0x0000001f);
2901 else
2902 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0003, 0x0000000f);
2903 /* Maximum Contention Window */
2904 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0004, 0x000003ff);
2905
2906 bcm43xx_gen_bssid(bcm);
2907 bcm43xx_write_mac_bssid_templates(bcm);
2908
2909 if (bcm->current_core->rev >= 5)
2910 bcm43xx_write16(bcm, 0x043C, 0x000C);
2911
Michael Buesch77db31e2006-02-12 16:47:44 +01002912 if (bcm43xx_using_pio(bcm))
John W. Linvillef2223132006-01-23 16:59:58 -05002913 err = bcm43xx_pio_init(bcm);
Michael Buesch77db31e2006-02-12 16:47:44 +01002914 else
2915 err = bcm43xx_dma_init(bcm);
2916 if (err)
2917 goto err_chip_cleanup;
John W. Linvillef2223132006-01-23 16:59:58 -05002918 bcm43xx_write16(bcm, 0x0612, 0x0050);
2919 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0416, 0x0050);
2920 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0414, 0x01F4);
2921
2922 bcm43xx_mac_enable(bcm);
2923 bcm43xx_interrupt_enable(bcm, bcm->irq_savedstate);
2924
Michael Buesche9357c02006-03-13 19:27:34 +01002925 bcm->current_core->initialized = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05002926out:
2927 return err;
2928
2929err_chip_cleanup:
2930 bcm43xx_chip_cleanup(bcm);
2931 goto out;
2932}
2933
2934static int bcm43xx_chipset_attach(struct bcm43xx_private *bcm)
2935{
2936 int err;
2937 u16 pci_status;
2938
2939 err = bcm43xx_pctl_set_crystal(bcm, 1);
2940 if (err)
2941 goto out;
2942 bcm43xx_pci_read_config16(bcm, PCI_STATUS, &pci_status);
2943 bcm43xx_pci_write_config16(bcm, PCI_STATUS, pci_status & ~PCI_STATUS_SIG_TARGET_ABORT);
2944
2945out:
2946 return err;
2947}
2948
2949static void bcm43xx_chipset_detach(struct bcm43xx_private *bcm)
2950{
2951 bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_SLOW);
2952 bcm43xx_pctl_set_crystal(bcm, 0);
2953}
2954
Michael Buesch489423c2006-02-13 00:11:07 +01002955static void bcm43xx_pcicore_broadcast_value(struct bcm43xx_private *bcm,
2956 u32 address,
2957 u32 data)
John W. Linvillef2223132006-01-23 16:59:58 -05002958{
2959 bcm43xx_write32(bcm, BCM43xx_PCICORE_BCAST_ADDR, address);
2960 bcm43xx_write32(bcm, BCM43xx_PCICORE_BCAST_DATA, data);
2961}
2962
2963static int bcm43xx_pcicore_commit_settings(struct bcm43xx_private *bcm)
2964{
2965 int err;
2966 struct bcm43xx_coreinfo *old_core;
2967
2968 old_core = bcm->current_core;
2969 err = bcm43xx_switch_core(bcm, &bcm->core_pci);
2970 if (err)
2971 goto out;
2972
2973 bcm43xx_pcicore_broadcast_value(bcm, 0xfd8, 0x00000000);
2974
2975 bcm43xx_switch_core(bcm, old_core);
2976 assert(err == 0);
2977out:
2978 return err;
2979}
2980
2981/* Make an I/O Core usable. "core_mask" is the bitmask of the cores to enable.
2982 * To enable core 0, pass a core_mask of 1<<0
2983 */
2984static int bcm43xx_setup_backplane_pci_connection(struct bcm43xx_private *bcm,
2985 u32 core_mask)
2986{
2987 u32 backplane_flag_nr;
2988 u32 value;
2989 struct bcm43xx_coreinfo *old_core;
2990 int err = 0;
2991
2992 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBTPSFLAG);
2993 backplane_flag_nr = value & BCM43xx_BACKPLANE_FLAG_NR_MASK;
2994
2995 old_core = bcm->current_core;
2996 err = bcm43xx_switch_core(bcm, &bcm->core_pci);
2997 if (err)
2998 goto out;
2999
3000 if (bcm->core_pci.rev < 6) {
3001 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBINTVEC);
3002 value |= (1 << backplane_flag_nr);
3003 bcm43xx_write32(bcm, BCM43xx_CIR_SBINTVEC, value);
3004 } else {
3005 err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_ICR, &value);
3006 if (err) {
3007 printk(KERN_ERR PFX "Error: ICR setup failure!\n");
3008 goto out_switch_back;
3009 }
3010 value |= core_mask << 8;
3011 err = bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_ICR, value);
3012 if (err) {
3013 printk(KERN_ERR PFX "Error: ICR setup failure!\n");
3014 goto out_switch_back;
3015 }
3016 }
3017
3018 value = bcm43xx_read32(bcm, BCM43xx_PCICORE_SBTOPCI2);
3019 value |= BCM43xx_SBTOPCI2_PREFETCH | BCM43xx_SBTOPCI2_BURST;
3020 bcm43xx_write32(bcm, BCM43xx_PCICORE_SBTOPCI2, value);
3021
3022 if (bcm->core_pci.rev < 5) {
3023 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMCONFIGLOW);
3024 value |= (2 << BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_SHIFT)
3025 & BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_MASK;
3026 value |= (3 << BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_SHIFT)
3027 & BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_MASK;
3028 bcm43xx_write32(bcm, BCM43xx_CIR_SBIMCONFIGLOW, value);
3029 err = bcm43xx_pcicore_commit_settings(bcm);
3030 assert(err == 0);
3031 }
3032
3033out_switch_back:
3034 err = bcm43xx_switch_core(bcm, old_core);
3035out:
3036 return err;
3037}
3038
3039static void bcm43xx_softmac_init(struct bcm43xx_private *bcm)
3040{
3041 ieee80211softmac_start(bcm->net_dev);
3042}
3043
Michael Bueschab4977f2006-02-12 22:40:39 +01003044static void bcm43xx_periodic_every120sec(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05003045{
Michael Buesche9357c02006-03-13 19:27:34 +01003046 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003047
Michael Bueschab4977f2006-02-12 22:40:39 +01003048 if (phy->type != BCM43xx_PHYTYPE_G || phy->rev < 2)
3049 return;
John W. Linvillef2223132006-01-23 16:59:58 -05003050
Michael Bueschab4977f2006-02-12 22:40:39 +01003051 bcm43xx_mac_suspend(bcm);
3052 bcm43xx_phy_lo_g_measure(bcm);
3053 bcm43xx_mac_enable(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003054}
3055
Michael Bueschab4977f2006-02-12 22:40:39 +01003056static void bcm43xx_periodic_every60sec(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05003057{
John W. Linvillef2223132006-01-23 16:59:58 -05003058 bcm43xx_phy_lo_mark_all_unused(bcm);
3059 if (bcm->sprom.boardflags & BCM43xx_BFL_RSSI) {
3060 bcm43xx_mac_suspend(bcm);
3061 bcm43xx_calc_nrssi_slope(bcm);
3062 bcm43xx_mac_enable(bcm);
3063 }
John W. Linvillef2223132006-01-23 16:59:58 -05003064}
3065
Michael Bueschab4977f2006-02-12 22:40:39 +01003066static void bcm43xx_periodic_every30sec(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05003067{
John W. Linvillef2223132006-01-23 16:59:58 -05003068 /* Update device statistics. */
3069 bcm43xx_calculate_link_quality(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003070}
John W. Linvillef2223132006-01-23 16:59:58 -05003071
Michael Bueschab4977f2006-02-12 22:40:39 +01003072static void bcm43xx_periodic_every15sec(struct bcm43xx_private *bcm)
3073{
Michael Buesche9357c02006-03-13 19:27:34 +01003074 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
3075 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003076
3077 if (phy->type == BCM43xx_PHYTYPE_G) {
3078 //TODO: update_aci_moving_average
3079 if (radio->aci_enable && radio->aci_wlan_automatic) {
3080 bcm43xx_mac_suspend(bcm);
3081 if (!radio->aci_enable && 1 /*TODO: not scanning? */) {
3082 if (0 /*TODO: bunch of conditions*/) {
3083 bcm43xx_radio_set_interference_mitigation(bcm,
3084 BCM43xx_RADIO_INTERFMODE_MANUALWLAN);
3085 }
3086 } else if (1/*TODO*/) {
3087 /*
3088 if ((aci_average > 1000) && !(bcm43xx_radio_aci_scan(bcm))) {
3089 bcm43xx_radio_set_interference_mitigation(bcm,
3090 BCM43xx_RADIO_INTERFMODE_NONE);
3091 }
3092 */
3093 }
3094 bcm43xx_mac_enable(bcm);
3095 } else if (radio->interfmode == BCM43xx_RADIO_INTERFMODE_NONWLAN &&
3096 phy->rev == 1) {
3097 //TODO: implement rev1 workaround
3098 }
John W. Linvillef2223132006-01-23 16:59:58 -05003099 }
Michael Bueschab4977f2006-02-12 22:40:39 +01003100 bcm43xx_phy_xmitpower(bcm); //FIXME: unless scanning?
3101 //TODO for APHY (temperature?)
3102}
3103
3104static void bcm43xx_periodic_task_handler(unsigned long d)
3105{
3106 struct bcm43xx_private *bcm = (struct bcm43xx_private *)d;
3107 unsigned long flags;
3108 unsigned int state;
3109
Michael Bueschefccb642006-03-11 13:39:14 +01003110 bcm43xx_lock_mmio(bcm, flags);
Michael Bueschab4977f2006-02-12 22:40:39 +01003111
3112 assert(bcm->initialized);
3113 state = bcm->periodic_state;
3114 if (state % 8 == 0)
3115 bcm43xx_periodic_every120sec(bcm);
3116 if (state % 4 == 0)
3117 bcm43xx_periodic_every60sec(bcm);
3118 if (state % 2 == 0)
3119 bcm43xx_periodic_every30sec(bcm);
3120 bcm43xx_periodic_every15sec(bcm);
3121 bcm->periodic_state = state + 1;
3122
3123 mod_timer(&bcm->periodic_tasks, jiffies + (HZ * 15));
3124
Michael Bueschefccb642006-03-11 13:39:14 +01003125 bcm43xx_unlock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003126}
3127
John W. Linvillef2223132006-01-23 16:59:58 -05003128static void bcm43xx_periodic_tasks_delete(struct bcm43xx_private *bcm)
3129{
Michael Bueschab4977f2006-02-12 22:40:39 +01003130 del_timer_sync(&bcm->periodic_tasks);
John W. Linvillef2223132006-01-23 16:59:58 -05003131}
3132
John W. Linvillef2223132006-01-23 16:59:58 -05003133static void bcm43xx_periodic_tasks_setup(struct bcm43xx_private *bcm)
3134{
Michael Bueschab4977f2006-02-12 22:40:39 +01003135 struct timer_list *timer = &(bcm->periodic_tasks);
John W. Linvillef2223132006-01-23 16:59:58 -05003136
Michael Buesch1d1a73c2006-02-21 18:19:59 +01003137 assert(bcm->initialized);
Michael Bueschab4977f2006-02-12 22:40:39 +01003138 setup_timer(timer,
3139 bcm43xx_periodic_task_handler,
3140 (unsigned long)bcm);
3141 timer->expires = jiffies;
3142 add_timer(timer);
John W. Linvillef2223132006-01-23 16:59:58 -05003143}
3144
3145static void bcm43xx_security_init(struct bcm43xx_private *bcm)
3146{
3147 bcm->security_offset = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED,
3148 0x0056) * 2;
3149 bcm43xx_clear_keys(bcm);
3150}
3151
3152/* This is the opposite of bcm43xx_init_board() */
3153static void bcm43xx_free_board(struct bcm43xx_private *bcm)
3154{
3155 int i, err;
3156 unsigned long flags;
3157
Michael Buesch367f8992006-02-28 15:32:19 +01003158 bcm43xx_sysfs_unregister(bcm);
3159
Michael Bueschab4977f2006-02-12 22:40:39 +01003160 bcm43xx_periodic_tasks_delete(bcm);
3161
Michael Bueschefccb642006-03-11 13:39:14 +01003162 bcm43xx_lock(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003163 bcm->initialized = 0;
3164 bcm->shutting_down = 1;
Michael Bueschefccb642006-03-11 13:39:14 +01003165 bcm43xx_unlock(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003166
John W. Linvillef2223132006-01-23 16:59:58 -05003167 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
Michael Buesche9357c02006-03-13 19:27:34 +01003168 if (!bcm->core_80211[i].available)
John W. Linvillef2223132006-01-23 16:59:58 -05003169 continue;
Michael Buesche9357c02006-03-13 19:27:34 +01003170 if (!bcm->core_80211[i].initialized)
John W. Linvillef2223132006-01-23 16:59:58 -05003171 continue;
3172
3173 err = bcm43xx_switch_core(bcm, &bcm->core_80211[i]);
3174 assert(err == 0);
3175 bcm43xx_wireless_core_cleanup(bcm);
3176 }
3177
3178 bcm43xx_pctl_set_crystal(bcm, 0);
3179
Michael Bueschefccb642006-03-11 13:39:14 +01003180 bcm43xx_lock(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003181 bcm->shutting_down = 0;
Michael Bueschefccb642006-03-11 13:39:14 +01003182 bcm43xx_unlock(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003183}
3184
3185static int bcm43xx_init_board(struct bcm43xx_private *bcm)
3186{
3187 int i, err;
John W. Linvillef2223132006-01-23 16:59:58 -05003188 int connect_phy;
3189 unsigned long flags;
3190
3191 might_sleep();
3192
Michael Bueschefccb642006-03-11 13:39:14 +01003193 bcm43xx_lock(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003194 bcm->initialized = 0;
3195 bcm->shutting_down = 0;
Michael Bueschefccb642006-03-11 13:39:14 +01003196 bcm43xx_unlock(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003197
3198 err = bcm43xx_pctl_set_crystal(bcm, 1);
3199 if (err)
3200 goto out;
3201 err = bcm43xx_pctl_init(bcm);
3202 if (err)
3203 goto err_crystal_off;
3204 err = bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_FAST);
3205 if (err)
3206 goto err_crystal_off;
3207
3208 tasklet_enable(&bcm->isr_tasklet);
Michael Buesche9357c02006-03-13 19:27:34 +01003209 for (i = 0; i < bcm->nr_80211_available; i++) {
John W. Linvillef2223132006-01-23 16:59:58 -05003210 err = bcm43xx_switch_core(bcm, &bcm->core_80211[i]);
3211 assert(err != -ENODEV);
3212 if (err)
3213 goto err_80211_unwind;
3214
3215 /* Enable the selected wireless core.
3216 * Connect PHY only on the first core.
3217 */
3218 if (!bcm43xx_core_enabled(bcm)) {
Michael Buesche9357c02006-03-13 19:27:34 +01003219 if (bcm->nr_80211_available == 1) {
3220 connect_phy = bcm43xx_current_phy(bcm)->connected;
John W. Linvillef2223132006-01-23 16:59:58 -05003221 } else {
3222 if (i == 0)
3223 connect_phy = 1;
3224 else
3225 connect_phy = 0;
3226 }
3227 bcm43xx_wireless_core_reset(bcm, connect_phy);
3228 }
3229
3230 if (i != 0)
3231 bcm43xx_wireless_core_mark_inactive(bcm, &bcm->core_80211[0]);
3232
3233 err = bcm43xx_wireless_core_init(bcm);
3234 if (err)
3235 goto err_80211_unwind;
3236
3237 if (i != 0) {
3238 bcm43xx_mac_suspend(bcm);
3239 bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
3240 bcm43xx_radio_turn_off(bcm);
3241 }
3242 }
3243 bcm->active_80211_core = &bcm->core_80211[0];
Michael Buesche9357c02006-03-13 19:27:34 +01003244 if (bcm->nr_80211_available >= 2) {
John W. Linvillef2223132006-01-23 16:59:58 -05003245 bcm43xx_switch_core(bcm, &bcm->core_80211[0]);
3246 bcm43xx_mac_enable(bcm);
3247 }
3248 bcm43xx_macfilter_clear(bcm, BCM43xx_MACFILTER_ASSOC);
3249 bcm43xx_macfilter_set(bcm, BCM43xx_MACFILTER_SELF, (u8 *)(bcm->net_dev->dev_addr));
3250 dprintk(KERN_INFO PFX "80211 cores initialized\n");
3251 bcm43xx_security_init(bcm);
3252 bcm43xx_softmac_init(bcm);
3253
3254 bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_DYNAMIC);
3255
Michael Buesche9357c02006-03-13 19:27:34 +01003256 if (bcm43xx_current_radio(bcm)->initial_channel != 0xFF) {
John W. Linvillef2223132006-01-23 16:59:58 -05003257 bcm43xx_mac_suspend(bcm);
Michael Buesche9357c02006-03-13 19:27:34 +01003258 bcm43xx_radio_selectchannel(bcm, bcm43xx_current_radio(bcm)->initial_channel, 0);
John W. Linvillef2223132006-01-23 16:59:58 -05003259 bcm43xx_mac_enable(bcm);
3260 }
Michael Bueschcad2b312006-02-21 18:08:55 +01003261
3262 /* Initialization of the board is done. Flag it as such. */
Michael Bueschefccb642006-03-11 13:39:14 +01003263 bcm43xx_lock(bcm, flags);
Michael Bueschcad2b312006-02-21 18:08:55 +01003264 bcm->initialized = 1;
Michael Bueschefccb642006-03-11 13:39:14 +01003265 bcm43xx_unlock(bcm, flags);
Michael Bueschcad2b312006-02-21 18:08:55 +01003266
John W. Linvillef2223132006-01-23 16:59:58 -05003267 bcm43xx_periodic_tasks_setup(bcm);
Michael Buesch367f8992006-02-28 15:32:19 +01003268 bcm43xx_sysfs_register(bcm);
3269 //FIXME: check for bcm43xx_sysfs_register failure. This function is a bit messy regarding unwinding, though...
John W. Linvillef2223132006-01-23 16:59:58 -05003270
3271 assert(err == 0);
3272out:
3273 return err;
3274
3275err_80211_unwind:
3276 tasklet_disable(&bcm->isr_tasklet);
3277 /* unwind all 80211 initialization */
Michael Buesche9357c02006-03-13 19:27:34 +01003278 for (i = 0; i < bcm->nr_80211_available; i++) {
3279 if (!bcm->core_80211[i].initialized)
John W. Linvillef2223132006-01-23 16:59:58 -05003280 continue;
3281 bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
3282 bcm43xx_wireless_core_cleanup(bcm);
3283 }
3284err_crystal_off:
3285 bcm43xx_pctl_set_crystal(bcm, 0);
3286 goto out;
3287}
3288
3289static void bcm43xx_detach_board(struct bcm43xx_private *bcm)
3290{
3291 struct pci_dev *pci_dev = bcm->pci_dev;
3292 int i;
3293
3294 bcm43xx_chipset_detach(bcm);
3295 /* Do _not_ access the chip, after it is detached. */
3296 iounmap(bcm->mmio_addr);
3297
3298 pci_release_regions(pci_dev);
3299 pci_disable_device(pci_dev);
3300
3301 /* Free allocated structures/fields */
3302 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
Michael Buesche9357c02006-03-13 19:27:34 +01003303 kfree(bcm->core_80211_ext[i].phy._lo_pairs);
3304 if (bcm->core_80211_ext[i].phy.dyn_tssi_tbl)
3305 kfree(bcm->core_80211_ext[i].phy.tssi2dbm);
John W. Linvillef2223132006-01-23 16:59:58 -05003306 }
3307}
3308
3309static int bcm43xx_read_phyinfo(struct bcm43xx_private *bcm)
3310{
Michael Buesche9357c02006-03-13 19:27:34 +01003311 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003312 u16 value;
3313 u8 phy_version;
3314 u8 phy_type;
3315 u8 phy_rev;
3316 int phy_rev_ok = 1;
3317 void *p;
3318
3319 value = bcm43xx_read16(bcm, BCM43xx_MMIO_PHY_VER);
3320
3321 phy_version = (value & 0xF000) >> 12;
3322 phy_type = (value & 0x0F00) >> 8;
3323 phy_rev = (value & 0x000F);
3324
3325 dprintk(KERN_INFO PFX "Detected PHY: Version: %x, Type %x, Revision %x\n",
3326 phy_version, phy_type, phy_rev);
3327
3328 switch (phy_type) {
3329 case BCM43xx_PHYTYPE_A:
3330 if (phy_rev >= 4)
3331 phy_rev_ok = 0;
3332 /*FIXME: We need to switch the ieee->modulation, etc.. flags,
3333 * if we switch 80211 cores after init is done.
3334 * As we do not implement on the fly switching between
3335 * wireless cores, I will leave this as a future task.
3336 */
3337 bcm->ieee->modulation = IEEE80211_OFDM_MODULATION;
3338 bcm->ieee->mode = IEEE_A;
3339 bcm->ieee->freq_band = IEEE80211_52GHZ_BAND |
3340 IEEE80211_24GHZ_BAND;
3341 break;
3342 case BCM43xx_PHYTYPE_B:
3343 if (phy_rev != 2 && phy_rev != 4 && phy_rev != 6 && phy_rev != 7)
3344 phy_rev_ok = 0;
3345 bcm->ieee->modulation = IEEE80211_CCK_MODULATION;
3346 bcm->ieee->mode = IEEE_B;
3347 bcm->ieee->freq_band = IEEE80211_24GHZ_BAND;
3348 break;
3349 case BCM43xx_PHYTYPE_G:
3350 if (phy_rev > 7)
3351 phy_rev_ok = 0;
3352 bcm->ieee->modulation = IEEE80211_OFDM_MODULATION |
3353 IEEE80211_CCK_MODULATION;
3354 bcm->ieee->mode = IEEE_G;
3355 bcm->ieee->freq_band = IEEE80211_24GHZ_BAND;
3356 break;
3357 default:
3358 printk(KERN_ERR PFX "Error: Unknown PHY Type %x\n",
3359 phy_type);
3360 return -ENODEV;
3361 };
3362 if (!phy_rev_ok) {
3363 printk(KERN_WARNING PFX "Invalid PHY Revision %x\n",
3364 phy_rev);
3365 }
3366
Michael Buesch489423c2006-02-13 00:11:07 +01003367 phy->version = phy_version;
3368 phy->type = phy_type;
3369 phy->rev = phy_rev;
John W. Linvillef2223132006-01-23 16:59:58 -05003370 if ((phy_type == BCM43xx_PHYTYPE_B) || (phy_type == BCM43xx_PHYTYPE_G)) {
3371 p = kzalloc(sizeof(struct bcm43xx_lopair) * BCM43xx_LO_COUNT,
3372 GFP_KERNEL);
3373 if (!p)
3374 return -ENOMEM;
Michael Buesch489423c2006-02-13 00:11:07 +01003375 phy->_lo_pairs = p;
John W. Linvillef2223132006-01-23 16:59:58 -05003376 }
3377
3378 return 0;
3379}
3380
3381static int bcm43xx_attach_board(struct bcm43xx_private *bcm)
3382{
3383 struct pci_dev *pci_dev = bcm->pci_dev;
3384 struct net_device *net_dev = bcm->net_dev;
3385 int err;
3386 int i;
3387 void __iomem *ioaddr;
3388 unsigned long mmio_start, mmio_end, mmio_flags, mmio_len;
John W. Linvillef2223132006-01-23 16:59:58 -05003389 u32 coremask;
3390
3391 err = pci_enable_device(pci_dev);
3392 if (err) {
3393 printk(KERN_ERR PFX "unable to wake up pci device (%i)\n", err);
3394 err = -ENODEV;
3395 goto out;
3396 }
3397
3398 mmio_start = pci_resource_start(pci_dev, 0);
3399 mmio_end = pci_resource_end(pci_dev, 0);
3400 mmio_flags = pci_resource_flags(pci_dev, 0);
3401 mmio_len = pci_resource_len(pci_dev, 0);
3402
3403 /* make sure PCI base addr is MMIO */
3404 if (!(mmio_flags & IORESOURCE_MEM)) {
3405 printk(KERN_ERR PFX
3406 "%s, region #0 not an MMIO resource, aborting\n",
3407 pci_name(pci_dev));
3408 err = -ENODEV;
3409 goto err_pci_disable;
3410 }
3411//FIXME: Why is this check disabled for BCM947XX? What is the IO_SIZE there?
3412#ifndef CONFIG_BCM947XX
3413 if (mmio_len != BCM43xx_IO_SIZE) {
3414 printk(KERN_ERR PFX
3415 "%s: invalid PCI mem region size(s), aborting\n",
3416 pci_name(pci_dev));
3417 err = -ENODEV;
3418 goto err_pci_disable;
3419 }
3420#endif
3421
Michael Buesch65f3f192006-01-31 20:11:38 +01003422 err = pci_request_regions(pci_dev, KBUILD_MODNAME);
John W. Linvillef2223132006-01-23 16:59:58 -05003423 if (err) {
3424 printk(KERN_ERR PFX
3425 "could not access PCI resources (%i)\n", err);
3426 goto err_pci_disable;
3427 }
3428
3429 /* enable PCI bus-mastering */
3430 pci_set_master(pci_dev);
3431
3432 /* ioremap MMIO region */
3433 ioaddr = ioremap(mmio_start, mmio_len);
3434 if (!ioaddr) {
3435 printk(KERN_ERR PFX "%s: cannot remap MMIO, aborting\n",
3436 pci_name(pci_dev));
3437 err = -EIO;
3438 goto err_pci_release;
3439 }
3440
3441 net_dev->base_addr = (unsigned long)ioaddr;
3442 bcm->mmio_addr = ioaddr;
3443 bcm->mmio_len = mmio_len;
3444
3445 bcm43xx_pci_read_config16(bcm, PCI_SUBSYSTEM_VENDOR_ID,
3446 &bcm->board_vendor);
3447 bcm43xx_pci_read_config16(bcm, PCI_SUBSYSTEM_ID,
3448 &bcm->board_type);
3449 bcm43xx_pci_read_config16(bcm, PCI_REVISION_ID,
3450 &bcm->board_revision);
3451
3452 err = bcm43xx_chipset_attach(bcm);
3453 if (err)
3454 goto err_iounmap;
3455 err = bcm43xx_pctl_init(bcm);
3456 if (err)
3457 goto err_chipset_detach;
3458 err = bcm43xx_probe_cores(bcm);
3459 if (err)
3460 goto err_chipset_detach;
3461
John W. Linvillef2223132006-01-23 16:59:58 -05003462 /* Attach all IO cores to the backplane. */
3463 coremask = 0;
Michael Buesche9357c02006-03-13 19:27:34 +01003464 for (i = 0; i < bcm->nr_80211_available; i++)
John W. Linvillef2223132006-01-23 16:59:58 -05003465 coremask |= (1 << bcm->core_80211[i].index);
3466 //FIXME: Also attach some non80211 cores?
3467 err = bcm43xx_setup_backplane_pci_connection(bcm, coremask);
3468 if (err) {
3469 printk(KERN_ERR PFX "Backplane->PCI connection failed!\n");
3470 goto err_chipset_detach;
3471 }
3472
Michael Bueschea0922b2006-02-19 14:09:20 +01003473 err = bcm43xx_sprom_extract(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003474 if (err)
3475 goto err_chipset_detach;
3476 err = bcm43xx_leds_init(bcm);
3477 if (err)
3478 goto err_chipset_detach;
3479
Michael Buesche9357c02006-03-13 19:27:34 +01003480 for (i = 0; i < bcm->nr_80211_available; i++) {
John W. Linvillef2223132006-01-23 16:59:58 -05003481 err = bcm43xx_switch_core(bcm, &bcm->core_80211[i]);
3482 assert(err != -ENODEV);
3483 if (err)
3484 goto err_80211_unwind;
3485
3486 /* Enable the selected wireless core.
3487 * Connect PHY only on the first core.
3488 */
3489 bcm43xx_wireless_core_reset(bcm, (i == 0));
3490
3491 err = bcm43xx_read_phyinfo(bcm);
3492 if (err && (i == 0))
3493 goto err_80211_unwind;
3494
3495 err = bcm43xx_read_radioinfo(bcm);
3496 if (err && (i == 0))
3497 goto err_80211_unwind;
3498
3499 err = bcm43xx_validate_chip(bcm);
3500 if (err && (i == 0))
3501 goto err_80211_unwind;
3502
3503 bcm43xx_radio_turn_off(bcm);
3504 err = bcm43xx_phy_init_tssi2dbm_table(bcm);
3505 if (err)
3506 goto err_80211_unwind;
3507 bcm43xx_wireless_core_disable(bcm);
3508 }
3509 bcm43xx_pctl_set_crystal(bcm, 0);
3510
3511 /* Set the MAC address in the networking subsystem */
Michael Buesche9357c02006-03-13 19:27:34 +01003512 if (bcm43xx_current_phy(bcm)->type == BCM43xx_PHYTYPE_A)
John W. Linvillef2223132006-01-23 16:59:58 -05003513 memcpy(bcm->net_dev->dev_addr, bcm->sprom.et1macaddr, 6);
3514 else
3515 memcpy(bcm->net_dev->dev_addr, bcm->sprom.il0macaddr, 6);
3516
3517 bcm43xx_geo_init(bcm);
3518
3519 snprintf(bcm->nick, IW_ESSID_MAX_SIZE,
3520 "Broadcom %04X", bcm->chip_id);
3521
3522 assert(err == 0);
3523out:
3524 return err;
3525
3526err_80211_unwind:
3527 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
Michael Buesche9357c02006-03-13 19:27:34 +01003528 kfree(bcm->core_80211_ext[i].phy._lo_pairs);
3529 if (bcm->core_80211_ext[i].phy.dyn_tssi_tbl)
3530 kfree(bcm->core_80211_ext[i].phy.tssi2dbm);
John W. Linvillef2223132006-01-23 16:59:58 -05003531 }
3532err_chipset_detach:
3533 bcm43xx_chipset_detach(bcm);
3534err_iounmap:
3535 iounmap(bcm->mmio_addr);
3536err_pci_release:
3537 pci_release_regions(pci_dev);
3538err_pci_disable:
3539 pci_disable_device(pci_dev);
3540 goto out;
3541}
3542
John W. Linvillef2223132006-01-23 16:59:58 -05003543/* Do the Hardware IO operations to send the txb */
3544static inline int bcm43xx_tx(struct bcm43xx_private *bcm,
3545 struct ieee80211_txb *txb)
3546{
3547 int err = -ENODEV;
3548
Michael Buesch77db31e2006-02-12 16:47:44 +01003549 if (bcm43xx_using_pio(bcm))
3550 err = bcm43xx_pio_tx(bcm, txb);
John W. Linvillef2223132006-01-23 16:59:58 -05003551 else
Michael Bueschea72ab22006-01-27 17:26:20 +01003552 err = bcm43xx_dma_tx(bcm, txb);
John W. Linvillef2223132006-01-23 16:59:58 -05003553
3554 return err;
3555}
3556
3557static void bcm43xx_ieee80211_set_chan(struct net_device *net_dev,
3558 u8 channel)
3559{
3560 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3561 unsigned long flags;
3562
Michael Bueschefccb642006-03-11 13:39:14 +01003563 bcm43xx_lock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003564 bcm43xx_mac_suspend(bcm);
3565 bcm43xx_radio_selectchannel(bcm, channel, 0);
3566 bcm43xx_mac_enable(bcm);
Michael Bueschefccb642006-03-11 13:39:14 +01003567 bcm43xx_unlock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003568}
3569
3570/* set_security() callback in struct ieee80211_device */
3571static void bcm43xx_ieee80211_set_security(struct net_device *net_dev,
3572 struct ieee80211_security *sec)
3573{
3574 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3575 struct ieee80211_security *secinfo = &bcm->ieee->sec;
3576 unsigned long flags;
3577 int keyidx;
3578
3579 dprintk(KERN_INFO PFX "set security called\n");
Michael Bueschefccb642006-03-11 13:39:14 +01003580
3581 bcm43xx_lock_mmio(bcm, flags);
3582
John W. Linvillef2223132006-01-23 16:59:58 -05003583 for (keyidx = 0; keyidx<WEP_KEYS; keyidx++)
3584 if (sec->flags & (1<<keyidx)) {
3585 secinfo->encode_alg[keyidx] = sec->encode_alg[keyidx];
3586 secinfo->key_sizes[keyidx] = sec->key_sizes[keyidx];
3587 memcpy(secinfo->keys[keyidx], sec->keys[keyidx], SCM_KEY_LEN);
3588 }
3589
3590 if (sec->flags & SEC_ACTIVE_KEY) {
3591 secinfo->active_key = sec->active_key;
3592 dprintk(KERN_INFO PFX " .active_key = %d\n", sec->active_key);
3593 }
3594 if (sec->flags & SEC_UNICAST_GROUP) {
3595 secinfo->unicast_uses_group = sec->unicast_uses_group;
3596 dprintk(KERN_INFO PFX " .unicast_uses_group = %d\n", sec->unicast_uses_group);
3597 }
3598 if (sec->flags & SEC_LEVEL) {
3599 secinfo->level = sec->level;
3600 dprintk(KERN_INFO PFX " .level = %d\n", sec->level);
3601 }
3602 if (sec->flags & SEC_ENABLED) {
3603 secinfo->enabled = sec->enabled;
3604 dprintk(KERN_INFO PFX " .enabled = %d\n", sec->enabled);
3605 }
3606 if (sec->flags & SEC_ENCRYPT) {
3607 secinfo->encrypt = sec->encrypt;
3608 dprintk(KERN_INFO PFX " .encrypt = %d\n", sec->encrypt);
3609 }
3610 if (bcm->initialized && !bcm->ieee->host_encrypt) {
3611 if (secinfo->enabled) {
3612 /* upload WEP keys to hardware */
3613 char null_address[6] = { 0 };
3614 u8 algorithm = 0;
3615 for (keyidx = 0; keyidx<WEP_KEYS; keyidx++) {
3616 if (!(sec->flags & (1<<keyidx)))
3617 continue;
3618 switch (sec->encode_alg[keyidx]) {
3619 case SEC_ALG_NONE: algorithm = BCM43xx_SEC_ALGO_NONE; break;
3620 case SEC_ALG_WEP:
3621 algorithm = BCM43xx_SEC_ALGO_WEP;
3622 if (secinfo->key_sizes[keyidx] == 13)
3623 algorithm = BCM43xx_SEC_ALGO_WEP104;
3624 break;
3625 case SEC_ALG_TKIP:
3626 FIXME();
3627 algorithm = BCM43xx_SEC_ALGO_TKIP;
3628 break;
3629 case SEC_ALG_CCMP:
3630 FIXME();
3631 algorithm = BCM43xx_SEC_ALGO_AES;
3632 break;
3633 default:
3634 assert(0);
3635 break;
3636 }
3637 bcm43xx_key_write(bcm, keyidx, algorithm, sec->keys[keyidx], secinfo->key_sizes[keyidx], &null_address[0]);
3638 bcm->key[keyidx].enabled = 1;
3639 bcm->key[keyidx].algorithm = algorithm;
3640 }
3641 } else
3642 bcm43xx_clear_keys(bcm);
3643 }
Michael Bueschefccb642006-03-11 13:39:14 +01003644 bcm43xx_unlock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003645}
3646
3647/* hard_start_xmit() callback in struct ieee80211_device */
3648static int bcm43xx_ieee80211_hard_start_xmit(struct ieee80211_txb *txb,
3649 struct net_device *net_dev,
3650 int pri)
3651{
3652 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3653 int err = -ENODEV;
3654 unsigned long flags;
3655
Michael Bueschefccb642006-03-11 13:39:14 +01003656 bcm43xx_lock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003657 if (likely(bcm->initialized))
3658 err = bcm43xx_tx(bcm, txb);
Michael Bueschefccb642006-03-11 13:39:14 +01003659 bcm43xx_unlock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003660
3661 return err;
3662}
3663
3664static struct net_device_stats * bcm43xx_net_get_stats(struct net_device *net_dev)
3665{
3666 return &(bcm43xx_priv(net_dev)->ieee->stats);
3667}
3668
3669static void bcm43xx_net_tx_timeout(struct net_device *net_dev)
3670{
3671 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
Michael Bueschefccb642006-03-11 13:39:14 +01003672 unsigned long flags;
John W. Linvillef2223132006-01-23 16:59:58 -05003673
Michael Bueschefccb642006-03-11 13:39:14 +01003674 bcm43xx_lock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003675 bcm43xx_controller_restart(bcm, "TX timeout");
Michael Bueschefccb642006-03-11 13:39:14 +01003676 bcm43xx_unlock_mmio(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003677}
3678
3679#ifdef CONFIG_NET_POLL_CONTROLLER
3680static void bcm43xx_net_poll_controller(struct net_device *net_dev)
3681{
3682 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3683 unsigned long flags;
3684
3685 local_irq_save(flags);
3686 bcm43xx_interrupt_handler(bcm->irq, bcm, NULL);
3687 local_irq_restore(flags);
3688}
3689#endif /* CONFIG_NET_POLL_CONTROLLER */
3690
3691static int bcm43xx_net_open(struct net_device *net_dev)
3692{
3693 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3694
3695 return bcm43xx_init_board(bcm);
3696}
3697
3698static int bcm43xx_net_stop(struct net_device *net_dev)
3699{
3700 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3701
3702 ieee80211softmac_stop(net_dev);
3703 bcm43xx_disable_interrupts_sync(bcm, NULL);
3704 bcm43xx_free_board(bcm);
3705
3706 return 0;
3707}
3708
Michael Buesch77db31e2006-02-12 16:47:44 +01003709static int bcm43xx_init_private(struct bcm43xx_private *bcm,
3710 struct net_device *net_dev,
Michael Bueschab4977f2006-02-12 22:40:39 +01003711 struct pci_dev *pci_dev)
John W. Linvillef2223132006-01-23 16:59:58 -05003712{
Michael Buesch4d5a9e0e2006-03-11 13:15:02 +01003713 int err;
3714
John W. Linvillef2223132006-01-23 16:59:58 -05003715 bcm->ieee = netdev_priv(net_dev);
3716 bcm->softmac = ieee80211_priv(net_dev);
3717 bcm->softmac->set_channel = bcm43xx_ieee80211_set_chan;
John W. Linvillef2223132006-01-23 16:59:58 -05003718
John W. Linvillef2223132006-01-23 16:59:58 -05003719 bcm->irq_savedstate = BCM43xx_IRQ_INITIAL;
3720 bcm->pci_dev = pci_dev;
3721 bcm->net_dev = net_dev;
Michael Buesch4d5a9e0e2006-03-11 13:15:02 +01003722 bcm->bad_frames_preempt = modparam_bad_frames_preempt;
Michael Bueschefccb642006-03-11 13:39:14 +01003723 spin_lock_init(&bcm->_lock);
John W. Linvillef2223132006-01-23 16:59:58 -05003724 tasklet_init(&bcm->isr_tasklet,
3725 (void (*)(unsigned long))bcm43xx_interrupt_tasklet,
3726 (unsigned long)bcm);
3727 tasklet_disable_nosync(&bcm->isr_tasklet);
3728 if (modparam_pio) {
Michael Buesch77db31e2006-02-12 16:47:44 +01003729 bcm->__using_pio = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05003730 } else {
Michael Buesch4d5a9e0e2006-03-11 13:15:02 +01003731 err = pci_set_dma_mask(pci_dev, DMA_30BIT_MASK);
3732 err |= pci_set_consistent_dma_mask(pci_dev, DMA_30BIT_MASK);
3733 if (err) {
Michael Buesch77db31e2006-02-12 16:47:44 +01003734#ifdef CONFIG_BCM43XX_PIO
John W. Linvillef2223132006-01-23 16:59:58 -05003735 printk(KERN_WARNING PFX "DMA not supported. Falling back to PIO.\n");
Michael Buesch77db31e2006-02-12 16:47:44 +01003736 bcm->__using_pio = 1;
3737#else
3738 printk(KERN_ERR PFX "FATAL: DMA not supported and PIO not configured. "
3739 "Recompile the driver with PIO support, please.\n");
3740 return -ENODEV;
3741#endif /* CONFIG_BCM43XX_PIO */
John W. Linvillef2223132006-01-23 16:59:58 -05003742 }
3743 }
3744 bcm->rts_threshold = BCM43xx_DEFAULT_RTS_THRESHOLD;
3745
3746 /* default to sw encryption for now */
3747 bcm->ieee->host_build_iv = 0;
3748 bcm->ieee->host_encrypt = 1;
3749 bcm->ieee->host_decrypt = 1;
3750
3751 bcm->ieee->iw_mode = BCM43xx_INITIAL_IWMODE;
3752 bcm->ieee->tx_headroom = sizeof(struct bcm43xx_txhdr);
3753 bcm->ieee->set_security = bcm43xx_ieee80211_set_security;
3754 bcm->ieee->hard_start_xmit = bcm43xx_ieee80211_hard_start_xmit;
Michael Buesch77db31e2006-02-12 16:47:44 +01003755
3756 return 0;
John W. Linvillef2223132006-01-23 16:59:58 -05003757}
3758
3759static int __devinit bcm43xx_init_one(struct pci_dev *pdev,
3760 const struct pci_device_id *ent)
3761{
3762 struct net_device *net_dev;
3763 struct bcm43xx_private *bcm;
John W. Linvillef2223132006-01-23 16:59:58 -05003764 int err;
3765
3766#ifdef CONFIG_BCM947XX
3767 if ((pdev->bus->number == 0) && (pdev->device != 0x0800))
3768 return -ENODEV;
3769#endif
3770
3771#ifdef DEBUG_SINGLE_DEVICE_ONLY
3772 if (strcmp(pci_name(pdev), DEBUG_SINGLE_DEVICE_ONLY))
3773 return -ENODEV;
3774#endif
3775
3776 net_dev = alloc_ieee80211softmac(sizeof(*bcm));
3777 if (!net_dev) {
3778 printk(KERN_ERR PFX
3779 "could not allocate ieee80211 device %s\n",
3780 pci_name(pdev));
3781 err = -ENOMEM;
3782 goto out;
3783 }
3784 /* initialize the net_device struct */
3785 SET_MODULE_OWNER(net_dev);
3786 SET_NETDEV_DEV(net_dev, &pdev->dev);
3787
3788 net_dev->open = bcm43xx_net_open;
3789 net_dev->stop = bcm43xx_net_stop;
3790 net_dev->get_stats = bcm43xx_net_get_stats;
3791 net_dev->tx_timeout = bcm43xx_net_tx_timeout;
3792#ifdef CONFIG_NET_POLL_CONTROLLER
3793 net_dev->poll_controller = bcm43xx_net_poll_controller;
3794#endif
3795 net_dev->wireless_handlers = &bcm43xx_wx_handlers_def;
3796 net_dev->irq = pdev->irq;
Michael Buesch6465ce12006-02-02 19:11:08 +01003797 SET_ETHTOOL_OPS(net_dev, &bcm43xx_ethtool_ops);
John W. Linvillef2223132006-01-23 16:59:58 -05003798
3799 /* initialize the bcm43xx_private struct */
3800 bcm = bcm43xx_priv(net_dev);
3801 memset(bcm, 0, sizeof(*bcm));
Michael Bueschab4977f2006-02-12 22:40:39 +01003802 err = bcm43xx_init_private(bcm, net_dev, pdev);
Michael Buesch77db31e2006-02-12 16:47:44 +01003803 if (err)
Michael Bueschab4977f2006-02-12 22:40:39 +01003804 goto err_free_netdev;
John W. Linvillef2223132006-01-23 16:59:58 -05003805
3806 pci_set_drvdata(pdev, net_dev);
3807
3808 err = bcm43xx_attach_board(bcm);
3809 if (err)
Michael Bueschab4977f2006-02-12 22:40:39 +01003810 goto err_free_netdev;
John W. Linvillef2223132006-01-23 16:59:58 -05003811
3812 err = register_netdev(net_dev);
3813 if (err) {
3814 printk(KERN_ERR PFX "Cannot register net device, "
3815 "aborting.\n");
3816 err = -ENOMEM;
3817 goto err_detach_board;
3818 }
3819
3820 bcm43xx_debugfs_add_device(bcm);
3821
3822 assert(err == 0);
3823out:
3824 return err;
3825
3826err_detach_board:
3827 bcm43xx_detach_board(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003828err_free_netdev:
3829 free_ieee80211softmac(net_dev);
3830 goto out;
3831}
3832
3833static void __devexit bcm43xx_remove_one(struct pci_dev *pdev)
3834{
3835 struct net_device *net_dev = pci_get_drvdata(pdev);
3836 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3837
3838 bcm43xx_debugfs_remove_device(bcm);
3839 unregister_netdev(net_dev);
3840 bcm43xx_detach_board(bcm);
3841 assert(bcm->ucode == NULL);
John W. Linvillef2223132006-01-23 16:59:58 -05003842 free_ieee80211softmac(net_dev);
3843}
3844
3845/* Hard-reset the chip. Do not call this directly.
3846 * Use bcm43xx_controller_restart()
3847 */
3848static void bcm43xx_chip_reset(void *_bcm)
3849{
3850 struct bcm43xx_private *bcm = _bcm;
3851 struct net_device *net_dev = bcm->net_dev;
3852 struct pci_dev *pci_dev = bcm->pci_dev;
John W. Linvillef2223132006-01-23 16:59:58 -05003853 int err;
3854 int was_initialized = bcm->initialized;
3855
3856 netif_stop_queue(bcm->net_dev);
3857 tasklet_disable(&bcm->isr_tasklet);
3858
3859 bcm->firmware_norelease = 1;
3860 if (was_initialized)
3861 bcm43xx_free_board(bcm);
3862 bcm->firmware_norelease = 0;
3863 bcm43xx_detach_board(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003864 err = bcm43xx_init_private(bcm, net_dev, pci_dev);
Michael Buesch77db31e2006-02-12 16:47:44 +01003865 if (err)
3866 goto failure;
John W. Linvillef2223132006-01-23 16:59:58 -05003867 err = bcm43xx_attach_board(bcm);
3868 if (err)
3869 goto failure;
3870 if (was_initialized) {
3871 err = bcm43xx_init_board(bcm);
3872 if (err)
3873 goto failure;
3874 }
3875 netif_wake_queue(bcm->net_dev);
3876 printk(KERN_INFO PFX "Controller restarted\n");
3877
3878 return;
3879failure:
3880 printk(KERN_ERR PFX "Controller restart failed\n");
3881}
3882
3883/* Hard-reset the chip.
3884 * This can be called from interrupt or process context.
3885 * Make sure to _not_ re-enable device interrupts after this has been called.
3886*/
3887void bcm43xx_controller_restart(struct bcm43xx_private *bcm, const char *reason)
3888{
3889 bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
Michael Buesch73733842006-03-12 19:44:29 +01003890 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); /* dummy read */
John W. Linvillef2223132006-01-23 16:59:58 -05003891 printk(KERN_ERR PFX "Controller RESET (%s) ...\n", reason);
3892 INIT_WORK(&bcm->restart_work, bcm43xx_chip_reset, bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003893 schedule_work(&bcm->restart_work);
John W. Linvillef2223132006-01-23 16:59:58 -05003894}
3895
3896#ifdef CONFIG_PM
3897
3898static int bcm43xx_suspend(struct pci_dev *pdev, pm_message_t state)
3899{
3900 struct net_device *net_dev = pci_get_drvdata(pdev);
3901 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3902 unsigned long flags;
3903 int try_to_shutdown = 0, err;
3904
3905 dprintk(KERN_INFO PFX "Suspending...\n");
3906
Michael Bueschefccb642006-03-11 13:39:14 +01003907 bcm43xx_lock(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003908 bcm->was_initialized = bcm->initialized;
3909 if (bcm->initialized)
3910 try_to_shutdown = 1;
Michael Bueschefccb642006-03-11 13:39:14 +01003911 bcm43xx_unlock(bcm, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003912
3913 netif_device_detach(net_dev);
3914 if (try_to_shutdown) {
3915 ieee80211softmac_stop(net_dev);
3916 err = bcm43xx_disable_interrupts_sync(bcm, &bcm->irq_savedstate);
3917 if (unlikely(err)) {
3918 dprintk(KERN_ERR PFX "Suspend failed.\n");
3919 return -EAGAIN;
3920 }
3921 bcm->firmware_norelease = 1;
3922 bcm43xx_free_board(bcm);
3923 bcm->firmware_norelease = 0;
3924 }
3925 bcm43xx_chipset_detach(bcm);
3926
3927 pci_save_state(pdev);
3928 pci_disable_device(pdev);
3929 pci_set_power_state(pdev, pci_choose_state(pdev, state));
3930
3931 dprintk(KERN_INFO PFX "Device suspended.\n");
3932
3933 return 0;
3934}
3935
3936static int bcm43xx_resume(struct pci_dev *pdev)
3937{
3938 struct net_device *net_dev = pci_get_drvdata(pdev);
3939 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3940 int err = 0;
3941
3942 dprintk(KERN_INFO PFX "Resuming...\n");
3943
3944 pci_set_power_state(pdev, 0);
3945 pci_enable_device(pdev);
3946 pci_restore_state(pdev);
3947
3948 bcm43xx_chipset_attach(bcm);
3949 if (bcm->was_initialized) {
3950 bcm->irq_savedstate = BCM43xx_IRQ_INITIAL;
3951 err = bcm43xx_init_board(bcm);
3952 }
3953 if (err) {
3954 printk(KERN_ERR PFX "Resume failed!\n");
3955 return err;
3956 }
3957
3958 netif_device_attach(net_dev);
3959
3960 /*FIXME: This should be handled by softmac instead. */
3961 schedule_work(&bcm->softmac->associnfo.work);
3962
3963 dprintk(KERN_INFO PFX "Device resumed.\n");
3964
3965 return 0;
3966}
3967
3968#endif /* CONFIG_PM */
3969
3970static struct pci_driver bcm43xx_pci_driver = {
Michael Buesch65f3f192006-01-31 20:11:38 +01003971 .name = KBUILD_MODNAME,
John W. Linvillef2223132006-01-23 16:59:58 -05003972 .id_table = bcm43xx_pci_tbl,
3973 .probe = bcm43xx_init_one,
3974 .remove = __devexit_p(bcm43xx_remove_one),
3975#ifdef CONFIG_PM
3976 .suspend = bcm43xx_suspend,
3977 .resume = bcm43xx_resume,
3978#endif /* CONFIG_PM */
3979};
3980
3981static int __init bcm43xx_init(void)
3982{
Michael Buesch65f3f192006-01-31 20:11:38 +01003983 printk(KERN_INFO KBUILD_MODNAME " driver\n");
John W. Linvillef2223132006-01-23 16:59:58 -05003984 bcm43xx_debugfs_init();
3985 return pci_register_driver(&bcm43xx_pci_driver);
3986}
3987
3988static void __exit bcm43xx_exit(void)
3989{
3990 pci_unregister_driver(&bcm43xx_pci_driver);
3991 bcm43xx_debugfs_exit();
3992}
3993
3994module_init(bcm43xx_init)
3995module_exit(bcm43xx_exit)
3996
3997/* vim: set ts=8 sw=8 sts=8: */