blob: ef9bc80bee0140bdc606a96c8379c0f5f0102fa4 [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>
Michael Bueschd1ca6c42006-03-25 15:43:18 +010041#include <linux/dma-mapping.h>
John W. Linvillef2223132006-01-23 16:59:58 -050042#include <net/iw_handler.h>
43
44#include "bcm43xx.h"
45#include "bcm43xx_main.h"
46#include "bcm43xx_debugfs.h"
47#include "bcm43xx_radio.h"
48#include "bcm43xx_phy.h"
49#include "bcm43xx_dma.h"
50#include "bcm43xx_pio.h"
51#include "bcm43xx_power.h"
52#include "bcm43xx_wx.h"
Michael Buesch6465ce12006-02-02 19:11:08 +010053#include "bcm43xx_ethtool.h"
Michael Bueschf398f022006-02-23 21:15:39 +010054#include "bcm43xx_xmit.h"
Michael Bueschb35d6492006-04-13 02:32:58 +020055#include "bcm43xx_sysfs.h"
John W. Linvillef2223132006-01-23 16:59:58 -050056
57
58MODULE_DESCRIPTION("Broadcom BCM43xx wireless driver");
59MODULE_AUTHOR("Martin Langer");
60MODULE_AUTHOR("Stefano Brivio");
61MODULE_AUTHOR("Michael Buesch");
62MODULE_LICENSE("GPL");
63
64#ifdef CONFIG_BCM947XX
65extern char *nvram_get(char *name);
66#endif
67
Michael Buesch77db31e2006-02-12 16:47:44 +010068#if defined(CONFIG_BCM43XX_DMA) && defined(CONFIG_BCM43XX_PIO)
John W. Linvillef2223132006-01-23 16:59:58 -050069static int modparam_pio;
70module_param_named(pio, modparam_pio, int, 0444);
71MODULE_PARM_DESC(pio, "enable(1) / disable(0) PIO mode");
Michael Buesch77db31e2006-02-12 16:47:44 +010072#elif defined(CONFIG_BCM43XX_DMA)
73# define modparam_pio 0
74#elif defined(CONFIG_BCM43XX_PIO)
75# define modparam_pio 1
76#endif
John W. Linvillef2223132006-01-23 16:59:58 -050077
78static int modparam_bad_frames_preempt;
79module_param_named(bad_frames_preempt, modparam_bad_frames_preempt, int, 0444);
80MODULE_PARM_DESC(bad_frames_preempt, "enable(1) / disable(0) Bad Frames Preemption");
81
82static int modparam_short_retry = BCM43xx_DEFAULT_SHORT_RETRY_LIMIT;
83module_param_named(short_retry, modparam_short_retry, int, 0444);
84MODULE_PARM_DESC(short_retry, "Short-Retry-Limit (0 - 15)");
85
86static int modparam_long_retry = BCM43xx_DEFAULT_LONG_RETRY_LIMIT;
87module_param_named(long_retry, modparam_long_retry, int, 0444);
88MODULE_PARM_DESC(long_retry, "Long-Retry-Limit (0 - 15)");
89
90static int modparam_locale = -1;
91module_param_named(locale, modparam_locale, int, 0444);
92MODULE_PARM_DESC(country, "Select LocaleCode 0-11 (For travelers)");
93
John W. Linvillef2223132006-01-23 16:59:58 -050094static int modparam_noleds;
95module_param_named(noleds, modparam_noleds, int, 0444);
96MODULE_PARM_DESC(noleds, "Turn off all LED activity");
97
98#ifdef CONFIG_BCM43XX_DEBUG
99static char modparam_fwpostfix[64];
100module_param_string(fwpostfix, modparam_fwpostfix, 64, 0444);
101MODULE_PARM_DESC(fwpostfix, "Postfix for .fw files. Useful for debugging.");
102#else
103# define modparam_fwpostfix ""
104#endif /* CONFIG_BCM43XX_DEBUG*/
105
106
107/* If you want to debug with just a single device, enable this,
108 * where the string is the pci device ID (as given by the kernel's
109 * pci_name function) of the device to be used.
110 */
111//#define DEBUG_SINGLE_DEVICE_ONLY "0001:11:00.0"
112
113/* If you want to enable printing of each MMIO access, enable this. */
114//#define DEBUG_ENABLE_MMIO_PRINT
115
116/* If you want to enable printing of MMIO access within
117 * ucode/pcm upload, initvals write, enable this.
118 */
119//#define DEBUG_ENABLE_UCODE_MMIO_PRINT
120
121/* If you want to enable printing of PCI Config Space access, enable this */
122//#define DEBUG_ENABLE_PCILOG
123
124
Michael Buesch489423c2006-02-13 00:11:07 +0100125/* Detailed list maintained at:
126 * http://openfacts.berlios.de/index-en.phtml?title=Bcm43xxDevices
127 */
128 static struct pci_device_id bcm43xx_pci_tbl[] = {
129 /* Broadcom 4303 802.11b */
130 { PCI_VENDOR_ID_BROADCOM, 0x4301, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
Stefano Brivioec000ca92006-05-05 02:58:29 +0200131 /* Broadcom 4307 802.11b */
Michael Buesch489423c2006-02-13 00:11:07 +0100132 { PCI_VENDOR_ID_BROADCOM, 0x4307, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
Stefano Brivioec000ca92006-05-05 02:58:29 +0200133 /* Broadcom 4318 802.11b/g */
Michael Buesch489423c2006-02-13 00:11:07 +0100134 { PCI_VENDOR_ID_BROADCOM, 0x4318, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
Stefano Briviof03cc4f2006-05-05 03:02:25 +0200135 /* Broadcom 4319 802.11a/b/g */
136 { PCI_VENDOR_ID_BROADCOM, 0x4319, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
Michael Buesch489423c2006-02-13 00:11:07 +0100137 /* Broadcom 4306 802.11b/g */
138 { PCI_VENDOR_ID_BROADCOM, 0x4320, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
Stefano Brivioec000ca92006-05-05 02:58:29 +0200139 /* Broadcom 4306 802.11a */
Michael Buesch489423c2006-02-13 00:11:07 +0100140// { PCI_VENDOR_ID_BROADCOM, 0x4321, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
141 /* Broadcom 4309 802.11a/b/g */
142 { PCI_VENDOR_ID_BROADCOM, 0x4324, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
143 /* Broadcom 43XG 802.11b/g */
144 { PCI_VENDOR_ID_BROADCOM, 0x4325, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
John W. Linvillef2223132006-01-23 16:59:58 -0500145#ifdef CONFIG_BCM947XX
146 /* SB bus on BCM947xx */
147 { PCI_VENDOR_ID_BROADCOM, 0x0800, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
148#endif
Michael Buesch489423c2006-02-13 00:11:07 +0100149 { 0 },
John W. Linvillef2223132006-01-23 16:59:58 -0500150};
151MODULE_DEVICE_TABLE(pci, bcm43xx_pci_tbl);
152
153static void bcm43xx_ram_write(struct bcm43xx_private *bcm, u16 offset, u32 val)
154{
155 u32 status;
156
157 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
158 if (!(status & BCM43xx_SBF_XFER_REG_BYTESWAP))
159 val = swab32(val);
160
161 bcm43xx_write32(bcm, BCM43xx_MMIO_RAM_CONTROL, offset);
Michael Buesch73733842006-03-12 19:44:29 +0100162 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500163 bcm43xx_write32(bcm, BCM43xx_MMIO_RAM_DATA, val);
164}
165
166static inline
167void bcm43xx_shm_control_word(struct bcm43xx_private *bcm,
168 u16 routing, u16 offset)
169{
170 u32 control;
171
172 /* "offset" is the WORD offset. */
173
174 control = routing;
175 control <<= 16;
176 control |= offset;
177 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_CONTROL, control);
178}
179
180u32 bcm43xx_shm_read32(struct bcm43xx_private *bcm,
181 u16 routing, u16 offset)
182{
183 u32 ret;
184
185 if (routing == BCM43xx_SHM_SHARED) {
186 if (offset & 0x0003) {
187 /* Unaligned access */
188 bcm43xx_shm_control_word(bcm, routing, offset >> 2);
189 ret = bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED);
190 ret <<= 16;
191 bcm43xx_shm_control_word(bcm, routing, (offset >> 2) + 1);
192 ret |= bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA);
193
194 return ret;
195 }
196 offset >>= 2;
197 }
198 bcm43xx_shm_control_word(bcm, routing, offset);
199 ret = bcm43xx_read32(bcm, BCM43xx_MMIO_SHM_DATA);
200
201 return ret;
202}
203
204u16 bcm43xx_shm_read16(struct bcm43xx_private *bcm,
205 u16 routing, u16 offset)
206{
207 u16 ret;
208
209 if (routing == BCM43xx_SHM_SHARED) {
210 if (offset & 0x0003) {
211 /* Unaligned access */
212 bcm43xx_shm_control_word(bcm, routing, offset >> 2);
213 ret = bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED);
214
215 return ret;
216 }
217 offset >>= 2;
218 }
219 bcm43xx_shm_control_word(bcm, routing, offset);
220 ret = bcm43xx_read16(bcm, BCM43xx_MMIO_SHM_DATA);
221
222 return ret;
223}
224
225void bcm43xx_shm_write32(struct bcm43xx_private *bcm,
226 u16 routing, u16 offset,
227 u32 value)
228{
229 if (routing == BCM43xx_SHM_SHARED) {
230 if (offset & 0x0003) {
231 /* Unaligned access */
232 bcm43xx_shm_control_word(bcm, routing, offset >> 2);
Michael Buesch73733842006-03-12 19:44:29 +0100233 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500234 bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED,
235 (value >> 16) & 0xffff);
Michael Buesch73733842006-03-12 19:44:29 +0100236 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500237 bcm43xx_shm_control_word(bcm, routing, (offset >> 2) + 1);
Michael Buesch73733842006-03-12 19:44:29 +0100238 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500239 bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA,
240 value & 0xffff);
241 return;
242 }
243 offset >>= 2;
244 }
245 bcm43xx_shm_control_word(bcm, routing, offset);
Michael Buesch73733842006-03-12 19:44:29 +0100246 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500247 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA, value);
248}
249
250void bcm43xx_shm_write16(struct bcm43xx_private *bcm,
251 u16 routing, u16 offset,
252 u16 value)
253{
254 if (routing == BCM43xx_SHM_SHARED) {
255 if (offset & 0x0003) {
256 /* Unaligned access */
257 bcm43xx_shm_control_word(bcm, routing, offset >> 2);
Michael Buesch73733842006-03-12 19:44:29 +0100258 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500259 bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA_UNALIGNED,
260 value);
261 return;
262 }
263 offset >>= 2;
264 }
265 bcm43xx_shm_control_word(bcm, routing, offset);
Michael Buesch73733842006-03-12 19:44:29 +0100266 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500267 bcm43xx_write16(bcm, BCM43xx_MMIO_SHM_DATA, value);
268}
269
270void bcm43xx_tsf_read(struct bcm43xx_private *bcm, u64 *tsf)
271{
272 /* We need to be careful. As we read the TSF from multiple
273 * registers, we should take care of register overflows.
274 * In theory, the whole tsf read process should be atomic.
275 * We try to be atomic here, by restaring the read process,
276 * if any of the high registers changed (overflew).
277 */
278 if (bcm->current_core->rev >= 3) {
279 u32 low, high, high2;
280
281 do {
282 high = bcm43xx_read32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_HIGH);
283 low = bcm43xx_read32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_LOW);
284 high2 = bcm43xx_read32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_HIGH);
285 } while (unlikely(high != high2));
286
287 *tsf = high;
288 *tsf <<= 32;
289 *tsf |= low;
290 } else {
291 u64 tmp;
292 u16 v0, v1, v2, v3;
293 u16 test1, test2, test3;
294
295 do {
296 v3 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_3);
297 v2 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_2);
298 v1 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_1);
299 v0 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_0);
300
301 test3 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_3);
302 test2 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_2);
303 test1 = bcm43xx_read16(bcm, BCM43xx_MMIO_TSF_1);
304 } while (v3 != test3 || v2 != test2 || v1 != test1);
305
306 *tsf = v3;
307 *tsf <<= 48;
308 tmp = v2;
309 tmp <<= 32;
310 *tsf |= tmp;
311 tmp = v1;
312 tmp <<= 16;
313 *tsf |= tmp;
314 *tsf |= v0;
315 }
316}
317
318void bcm43xx_tsf_write(struct bcm43xx_private *bcm, u64 tsf)
319{
320 u32 status;
321
322 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
323 status |= BCM43xx_SBF_TIME_UPDATE;
324 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, status);
Michael Buesch73733842006-03-12 19:44:29 +0100325 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500326
327 /* Be careful with the in-progress timer.
328 * First zero out the low register, so we have a full
329 * register-overflow duration to complete the operation.
330 */
331 if (bcm->current_core->rev >= 3) {
332 u32 lo = (tsf & 0x00000000FFFFFFFFULL);
333 u32 hi = (tsf & 0xFFFFFFFF00000000ULL) >> 32;
334
John W. Linvillef2223132006-01-23 16:59:58 -0500335 bcm43xx_write32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_LOW, 0);
Michael Buesch73733842006-03-12 19:44:29 +0100336 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500337 bcm43xx_write32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_HIGH, hi);
Michael Buesch73733842006-03-12 19:44:29 +0100338 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500339 bcm43xx_write32(bcm, BCM43xx_MMIO_REV3PLUS_TSF_LOW, lo);
340 } else {
341 u16 v0 = (tsf & 0x000000000000FFFFULL);
342 u16 v1 = (tsf & 0x00000000FFFF0000ULL) >> 16;
343 u16 v2 = (tsf & 0x0000FFFF00000000ULL) >> 32;
344 u16 v3 = (tsf & 0xFFFF000000000000ULL) >> 48;
345
John W. Linvillef2223132006-01-23 16:59:58 -0500346 bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_0, 0);
Michael Buesch73733842006-03-12 19:44:29 +0100347 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500348 bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_3, v3);
Michael Buesch73733842006-03-12 19:44:29 +0100349 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500350 bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_2, v2);
Michael Buesch73733842006-03-12 19:44:29 +0100351 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500352 bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_1, v1);
Michael Buesch73733842006-03-12 19:44:29 +0100353 mmiowb();
John W. Linvillef2223132006-01-23 16:59:58 -0500354 bcm43xx_write16(bcm, BCM43xx_MMIO_TSF_0, v0);
355 }
356
357 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
358 status &= ~BCM43xx_SBF_TIME_UPDATE;
359 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, status);
360}
361
John W. Linvillef2223132006-01-23 16:59:58 -0500362static
363void bcm43xx_macfilter_set(struct bcm43xx_private *bcm,
364 u16 offset,
365 const u8 *mac)
366{
367 u16 data;
368
369 offset |= 0x0020;
370 bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_CONTROL, offset);
371
372 data = mac[0];
373 data |= mac[1] << 8;
374 bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_DATA, data);
375 data = mac[2];
376 data |= mac[3] << 8;
377 bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_DATA, data);
378 data = mac[4];
379 data |= mac[5] << 8;
380 bcm43xx_write16(bcm, BCM43xx_MMIO_MACFILTER_DATA, data);
381}
382
Michael Buesch489423c2006-02-13 00:11:07 +0100383static void bcm43xx_macfilter_clear(struct bcm43xx_private *bcm,
384 u16 offset)
John W. Linvillef2223132006-01-23 16:59:58 -0500385{
386 const u8 zero_addr[ETH_ALEN] = { 0 };
387
388 bcm43xx_macfilter_set(bcm, offset, zero_addr);
389}
390
391static void bcm43xx_write_mac_bssid_templates(struct bcm43xx_private *bcm)
392{
393 const u8 *mac = (const u8 *)(bcm->net_dev->dev_addr);
394 const u8 *bssid = (const u8 *)(bcm->ieee->bssid);
395 u8 mac_bssid[ETH_ALEN * 2];
396 int i;
397
398 memcpy(mac_bssid, mac, ETH_ALEN);
399 memcpy(mac_bssid + ETH_ALEN, bssid, ETH_ALEN);
400
401 /* Write our MAC address and BSSID to template ram */
402 for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32))
403 bcm43xx_ram_write(bcm, 0x20 + i, *((u32 *)(mac_bssid + i)));
404 for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32))
405 bcm43xx_ram_write(bcm, 0x78 + i, *((u32 *)(mac_bssid + i)));
406 for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32))
407 bcm43xx_ram_write(bcm, 0x478 + i, *((u32 *)(mac_bssid + i)));
408}
409
Michael Bueschb5e868e2006-03-25 16:27:32 +0100410//FIXME: Well, we should probably call them from somewhere.
411#if 0
Michael Buesch489423c2006-02-13 00:11:07 +0100412static void bcm43xx_set_slot_time(struct bcm43xx_private *bcm, u16 slot_time)
John W. Linvillef2223132006-01-23 16:59:58 -0500413{
414 /* slot_time is in usec. */
Michael Buesche9357c02006-03-13 19:27:34 +0100415 if (bcm43xx_current_phy(bcm)->type != BCM43xx_PHYTYPE_G)
John W. Linvillef2223132006-01-23 16:59:58 -0500416 return;
417 bcm43xx_write16(bcm, 0x684, 510 + slot_time);
418 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0010, slot_time);
419}
420
Michael Buesch489423c2006-02-13 00:11:07 +0100421static void bcm43xx_short_slot_timing_enable(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -0500422{
423 bcm43xx_set_slot_time(bcm, 9);
424}
425
Michael Buesch489423c2006-02-13 00:11:07 +0100426static void bcm43xx_short_slot_timing_disable(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -0500427{
428 bcm43xx_set_slot_time(bcm, 20);
429}
Michael Bueschb5e868e2006-03-25 16:27:32 +0100430#endif
John W. Linvillef2223132006-01-23 16:59:58 -0500431
Michael Bueschb5e868e2006-03-25 16:27:32 +0100432/* FIXME: To get the MAC-filter working, we need to implement the
433 * following functions (and rename them :)
434 */
435#if 0
John W. Linvillef2223132006-01-23 16:59:58 -0500436static void bcm43xx_disassociate(struct bcm43xx_private *bcm)
437{
438 bcm43xx_mac_suspend(bcm);
439 bcm43xx_macfilter_clear(bcm, BCM43xx_MACFILTER_ASSOC);
440
441 bcm43xx_ram_write(bcm, 0x0026, 0x0000);
442 bcm43xx_ram_write(bcm, 0x0028, 0x0000);
443 bcm43xx_ram_write(bcm, 0x007E, 0x0000);
444 bcm43xx_ram_write(bcm, 0x0080, 0x0000);
445 bcm43xx_ram_write(bcm, 0x047E, 0x0000);
446 bcm43xx_ram_write(bcm, 0x0480, 0x0000);
447
448 if (bcm->current_core->rev < 3) {
449 bcm43xx_write16(bcm, 0x0610, 0x8000);
450 bcm43xx_write16(bcm, 0x060E, 0x0000);
451 } else
452 bcm43xx_write32(bcm, 0x0188, 0x80000000);
453
454 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0004, 0x000003ff);
455
Michael Buesche9357c02006-03-13 19:27:34 +0100456 if (bcm43xx_current_phy(bcm)->type == BCM43xx_PHYTYPE_G &&
John W. Linvillef2223132006-01-23 16:59:58 -0500457 ieee80211_is_ofdm_rate(bcm->softmac->txrates.default_rate))
458 bcm43xx_short_slot_timing_enable(bcm);
459
460 bcm43xx_mac_enable(bcm);
461}
462
John W. Linvillef2223132006-01-23 16:59:58 -0500463static void bcm43xx_associate(struct bcm43xx_private *bcm,
464 const u8 *mac)
465{
466 memcpy(bcm->ieee->bssid, mac, ETH_ALEN);
467
468 bcm43xx_mac_suspend(bcm);
469 bcm43xx_macfilter_set(bcm, BCM43xx_MACFILTER_ASSOC, mac);
470 bcm43xx_write_mac_bssid_templates(bcm);
471 bcm43xx_mac_enable(bcm);
472}
Michael Bueschb5e868e2006-03-25 16:27:32 +0100473#endif
John W. Linvillef2223132006-01-23 16:59:58 -0500474
475/* Enable a Generic IRQ. "mask" is the mask of which IRQs to enable.
476 * Returns the _previously_ enabled IRQ mask.
477 */
478static inline u32 bcm43xx_interrupt_enable(struct bcm43xx_private *bcm, u32 mask)
479{
480 u32 old_mask;
481
482 old_mask = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK);
483 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK, old_mask | mask);
484
485 return old_mask;
486}
487
488/* Disable a Generic IRQ. "mask" is the mask of which IRQs to disable.
489 * Returns the _previously_ enabled IRQ mask.
490 */
491static inline u32 bcm43xx_interrupt_disable(struct bcm43xx_private *bcm, u32 mask)
492{
493 u32 old_mask;
494
495 old_mask = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK);
496 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK, old_mask & ~mask);
497
498 return old_mask;
499}
500
Michael Buesch91769e72006-06-05 20:24:21 +0200501/* Synchronize IRQ top- and bottom-half.
502 * IRQs must be masked before calling this.
503 * This must not be called with the irq_lock held.
504 */
505static void bcm43xx_synchronize_irq(struct bcm43xx_private *bcm)
506{
507 synchronize_irq(bcm->irq);
508 tasklet_disable(&bcm->isr_tasklet);
509}
510
John W. Linvillef2223132006-01-23 16:59:58 -0500511/* Make sure we don't receive more data from the device. */
512static int bcm43xx_disable_interrupts_sync(struct bcm43xx_private *bcm, u32 *oldstate)
513{
John W. Linvillef2223132006-01-23 16:59:58 -0500514 unsigned long flags;
Michael Buesch91769e72006-06-05 20:24:21 +0200515 u32 old;
John W. Linvillef2223132006-01-23 16:59:58 -0500516
Michael Bueschefa6a372006-06-27 21:38:40 +0200517 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch78ff56a2006-06-05 20:24:10 +0200518 if (unlikely(bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED)) {
Michael Bueschefa6a372006-06-27 21:38:40 +0200519 spin_unlock_irqrestore(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -0500520 return -EBUSY;
521 }
522 old = bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
Michael Bueschefa6a372006-06-27 21:38:40 +0200523 spin_unlock_irqrestore(&bcm->irq_lock, flags);
Michael Buesch91769e72006-06-05 20:24:21 +0200524 bcm43xx_synchronize_irq(bcm);
525
John W. Linvillef2223132006-01-23 16:59:58 -0500526 if (oldstate)
527 *oldstate = old;
528
529 return 0;
530}
531
532static int bcm43xx_read_radioinfo(struct bcm43xx_private *bcm)
533{
Michael Buesche9357c02006-03-13 19:27:34 +0100534 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
535 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -0500536 u32 radio_id;
537 u16 manufact;
538 u16 version;
539 u8 revision;
540 s8 i;
541
542 if (bcm->chip_id == 0x4317) {
543 if (bcm->chip_rev == 0x00)
544 radio_id = 0x3205017F;
545 else if (bcm->chip_rev == 0x01)
546 radio_id = 0x4205017F;
547 else
548 radio_id = 0x5205017F;
549 } else {
550 bcm43xx_write16(bcm, BCM43xx_MMIO_RADIO_CONTROL, BCM43xx_RADIOCTL_ID);
551 radio_id = bcm43xx_read16(bcm, BCM43xx_MMIO_RADIO_DATA_HIGH);
552 radio_id <<= 16;
553 bcm43xx_write16(bcm, BCM43xx_MMIO_RADIO_CONTROL, BCM43xx_RADIOCTL_ID);
554 radio_id |= bcm43xx_read16(bcm, BCM43xx_MMIO_RADIO_DATA_LOW);
555 }
556
557 manufact = (radio_id & 0x00000FFF);
558 version = (radio_id & 0x0FFFF000) >> 12;
559 revision = (radio_id & 0xF0000000) >> 28;
560
Michael Buesch489423c2006-02-13 00:11:07 +0100561 dprintk(KERN_INFO PFX "Detected Radio: ID: %x (Manuf: %x Ver: %x Rev: %x)\n",
John W. Linvillef2223132006-01-23 16:59:58 -0500562 radio_id, manufact, version, revision);
563
Michael Buesch489423c2006-02-13 00:11:07 +0100564 switch (phy->type) {
John W. Linvillef2223132006-01-23 16:59:58 -0500565 case BCM43xx_PHYTYPE_A:
566 if ((version != 0x2060) || (revision != 1) || (manufact != 0x17f))
567 goto err_unsupported_radio;
568 break;
569 case BCM43xx_PHYTYPE_B:
570 if ((version & 0xFFF0) != 0x2050)
571 goto err_unsupported_radio;
572 break;
573 case BCM43xx_PHYTYPE_G:
574 if (version != 0x2050)
575 goto err_unsupported_radio;
576 break;
577 }
578
Michael Buesch489423c2006-02-13 00:11:07 +0100579 radio->manufact = manufact;
580 radio->version = version;
581 radio->revision = revision;
John W. Linvillef2223132006-01-23 16:59:58 -0500582
583 /* Set default attenuation values. */
Michael Buesch6ecb2692006-03-20 00:01:04 +0100584 radio->baseband_atten = bcm43xx_default_baseband_attenuation(bcm);
585 radio->radio_atten = bcm43xx_default_radio_attenuation(bcm);
586 radio->txctl1 = bcm43xx_default_txctl1(bcm);
Michael Bueschadc40e92006-03-25 20:36:57 +0100587 radio->txctl2 = 0xFFFF;
Michael Buesche9357c02006-03-13 19:27:34 +0100588 if (phy->type == BCM43xx_PHYTYPE_A)
Michael Buesch489423c2006-02-13 00:11:07 +0100589 radio->txpower_desired = bcm->sprom.maxpower_aphy;
Michael Buesch393344f2006-02-05 15:28:20 +0100590 else
Michael Buesche9357c02006-03-13 19:27:34 +0100591 radio->txpower_desired = bcm->sprom.maxpower_bgphy;
John W. Linvillef2223132006-01-23 16:59:58 -0500592
593 /* Initialize the in-memory nrssi Lookup Table. */
594 for (i = 0; i < 64; i++)
Michael Buesch489423c2006-02-13 00:11:07 +0100595 radio->nrssi_lt[i] = i;
John W. Linvillef2223132006-01-23 16:59:58 -0500596
597 return 0;
598
599err_unsupported_radio:
600 printk(KERN_ERR PFX "Unsupported Radio connected to the PHY!\n");
601 return -ENODEV;
602}
603
604static const char * bcm43xx_locale_iso(u8 locale)
605{
606 /* ISO 3166-1 country codes.
607 * Note that there aren't ISO 3166-1 codes for
608 * all or locales. (Not all locales are countries)
609 */
610 switch (locale) {
611 case BCM43xx_LOCALE_WORLD:
612 case BCM43xx_LOCALE_ALL:
613 return "XX";
614 case BCM43xx_LOCALE_THAILAND:
615 return "TH";
616 case BCM43xx_LOCALE_ISRAEL:
617 return "IL";
618 case BCM43xx_LOCALE_JORDAN:
619 return "JO";
620 case BCM43xx_LOCALE_CHINA:
621 return "CN";
622 case BCM43xx_LOCALE_JAPAN:
623 case BCM43xx_LOCALE_JAPAN_HIGH:
624 return "JP";
625 case BCM43xx_LOCALE_USA_CANADA_ANZ:
626 case BCM43xx_LOCALE_USA_LOW:
627 return "US";
628 case BCM43xx_LOCALE_EUROPE:
629 return "EU";
630 case BCM43xx_LOCALE_NONE:
631 return " ";
632 }
633 assert(0);
634 return " ";
635}
636
637static const char * bcm43xx_locale_string(u8 locale)
638{
639 switch (locale) {
640 case BCM43xx_LOCALE_WORLD:
641 return "World";
642 case BCM43xx_LOCALE_THAILAND:
643 return "Thailand";
644 case BCM43xx_LOCALE_ISRAEL:
645 return "Israel";
646 case BCM43xx_LOCALE_JORDAN:
647 return "Jordan";
648 case BCM43xx_LOCALE_CHINA:
649 return "China";
650 case BCM43xx_LOCALE_JAPAN:
651 return "Japan";
652 case BCM43xx_LOCALE_USA_CANADA_ANZ:
653 return "USA/Canada/ANZ";
654 case BCM43xx_LOCALE_EUROPE:
655 return "Europe";
656 case BCM43xx_LOCALE_USA_LOW:
657 return "USAlow";
658 case BCM43xx_LOCALE_JAPAN_HIGH:
659 return "JapanHigh";
660 case BCM43xx_LOCALE_ALL:
661 return "All";
662 case BCM43xx_LOCALE_NONE:
663 return "None";
664 }
665 assert(0);
666 return "";
667}
668
669static inline u8 bcm43xx_crc8(u8 crc, u8 data)
670{
671 static const u8 t[] = {
672 0x00, 0xF7, 0xB9, 0x4E, 0x25, 0xD2, 0x9C, 0x6B,
673 0x4A, 0xBD, 0xF3, 0x04, 0x6F, 0x98, 0xD6, 0x21,
674 0x94, 0x63, 0x2D, 0xDA, 0xB1, 0x46, 0x08, 0xFF,
675 0xDE, 0x29, 0x67, 0x90, 0xFB, 0x0C, 0x42, 0xB5,
676 0x7F, 0x88, 0xC6, 0x31, 0x5A, 0xAD, 0xE3, 0x14,
677 0x35, 0xC2, 0x8C, 0x7B, 0x10, 0xE7, 0xA9, 0x5E,
678 0xEB, 0x1C, 0x52, 0xA5, 0xCE, 0x39, 0x77, 0x80,
679 0xA1, 0x56, 0x18, 0xEF, 0x84, 0x73, 0x3D, 0xCA,
680 0xFE, 0x09, 0x47, 0xB0, 0xDB, 0x2C, 0x62, 0x95,
681 0xB4, 0x43, 0x0D, 0xFA, 0x91, 0x66, 0x28, 0xDF,
682 0x6A, 0x9D, 0xD3, 0x24, 0x4F, 0xB8, 0xF6, 0x01,
683 0x20, 0xD7, 0x99, 0x6E, 0x05, 0xF2, 0xBC, 0x4B,
684 0x81, 0x76, 0x38, 0xCF, 0xA4, 0x53, 0x1D, 0xEA,
685 0xCB, 0x3C, 0x72, 0x85, 0xEE, 0x19, 0x57, 0xA0,
686 0x15, 0xE2, 0xAC, 0x5B, 0x30, 0xC7, 0x89, 0x7E,
687 0x5F, 0xA8, 0xE6, 0x11, 0x7A, 0x8D, 0xC3, 0x34,
688 0xAB, 0x5C, 0x12, 0xE5, 0x8E, 0x79, 0x37, 0xC0,
689 0xE1, 0x16, 0x58, 0xAF, 0xC4, 0x33, 0x7D, 0x8A,
690 0x3F, 0xC8, 0x86, 0x71, 0x1A, 0xED, 0xA3, 0x54,
691 0x75, 0x82, 0xCC, 0x3B, 0x50, 0xA7, 0xE9, 0x1E,
692 0xD4, 0x23, 0x6D, 0x9A, 0xF1, 0x06, 0x48, 0xBF,
693 0x9E, 0x69, 0x27, 0xD0, 0xBB, 0x4C, 0x02, 0xF5,
694 0x40, 0xB7, 0xF9, 0x0E, 0x65, 0x92, 0xDC, 0x2B,
695 0x0A, 0xFD, 0xB3, 0x44, 0x2F, 0xD8, 0x96, 0x61,
696 0x55, 0xA2, 0xEC, 0x1B, 0x70, 0x87, 0xC9, 0x3E,
697 0x1F, 0xE8, 0xA6, 0x51, 0x3A, 0xCD, 0x83, 0x74,
698 0xC1, 0x36, 0x78, 0x8F, 0xE4, 0x13, 0x5D, 0xAA,
699 0x8B, 0x7C, 0x32, 0xC5, 0xAE, 0x59, 0x17, 0xE0,
700 0x2A, 0xDD, 0x93, 0x64, 0x0F, 0xF8, 0xB6, 0x41,
701 0x60, 0x97, 0xD9, 0x2E, 0x45, 0xB2, 0xFC, 0x0B,
702 0xBE, 0x49, 0x07, 0xF0, 0x9B, 0x6C, 0x22, 0xD5,
703 0xF4, 0x03, 0x4D, 0xBA, 0xD1, 0x26, 0x68, 0x9F,
704 };
705 return t[crc ^ data];
706}
707
Michael Bueschad3f0862006-02-19 14:12:22 +0100708static u8 bcm43xx_sprom_crc(const u16 *sprom)
John W. Linvillef2223132006-01-23 16:59:58 -0500709{
710 int word;
711 u8 crc = 0xFF;
712
713 for (word = 0; word < BCM43xx_SPROM_SIZE - 1; word++) {
714 crc = bcm43xx_crc8(crc, sprom[word] & 0x00FF);
715 crc = bcm43xx_crc8(crc, (sprom[word] & 0xFF00) >> 8);
716 }
717 crc = bcm43xx_crc8(crc, sprom[BCM43xx_SPROM_VERSION] & 0x00FF);
718 crc ^= 0xFF;
719
720 return crc;
721}
722
Michael Bueschea0922b2006-02-19 14:09:20 +0100723int bcm43xx_sprom_read(struct bcm43xx_private *bcm, u16 *sprom)
John W. Linvillef2223132006-01-23 16:59:58 -0500724{
725 int i;
Michael Bueschea0922b2006-02-19 14:09:20 +0100726 u8 crc, expected_crc;
727
728 for (i = 0; i < BCM43xx_SPROM_SIZE; i++)
729 sprom[i] = bcm43xx_read16(bcm, BCM43xx_SPROM_BASE + (i * 2));
730 /* CRC-8 check. */
731 crc = bcm43xx_sprom_crc(sprom);
732 expected_crc = (sprom[BCM43xx_SPROM_VERSION] & 0xFF00) >> 8;
733 if (crc != expected_crc) {
734 printk(KERN_WARNING PFX "WARNING: Invalid SPROM checksum "
735 "(0x%02X, expected: 0x%02X)\n",
736 crc, expected_crc);
737 return -EINVAL;
738 }
739
740 return 0;
741}
742
743int bcm43xx_sprom_write(struct bcm43xx_private *bcm, const u16 *sprom)
744{
745 int i, err;
746 u8 crc, expected_crc;
747 u32 spromctl;
748
749 /* CRC-8 validation of the input data. */
750 crc = bcm43xx_sprom_crc(sprom);
751 expected_crc = (sprom[BCM43xx_SPROM_VERSION] & 0xFF00) >> 8;
752 if (crc != expected_crc) {
753 printk(KERN_ERR PFX "SPROM input data: Invalid CRC\n");
754 return -EINVAL;
755 }
756
757 printk(KERN_INFO PFX "Writing SPROM. Do NOT turn off the power! Please stand by...\n");
758 err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_SPROMCTL, &spromctl);
759 if (err)
760 goto err_ctlreg;
761 spromctl |= 0x10; /* SPROM WRITE enable. */
762 bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_SPROMCTL, spromctl);
763 if (err)
764 goto err_ctlreg;
765 /* We must burn lots of CPU cycles here, but that does not
766 * really matter as one does not write the SPROM every other minute...
767 */
768 printk(KERN_INFO PFX "[ 0%%");
769 mdelay(500);
770 for (i = 0; i < BCM43xx_SPROM_SIZE; i++) {
771 if (i == 16)
772 printk("25%%");
773 else if (i == 32)
774 printk("50%%");
775 else if (i == 48)
776 printk("75%%");
777 else if (i % 2)
778 printk(".");
779 bcm43xx_write16(bcm, BCM43xx_SPROM_BASE + (i * 2), sprom[i]);
Michael Bueschefccb642006-03-11 13:39:14 +0100780 mmiowb();
Michael Bueschea0922b2006-02-19 14:09:20 +0100781 mdelay(20);
782 }
783 spromctl &= ~0x10; /* SPROM WRITE enable. */
784 bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_SPROMCTL, spromctl);
785 if (err)
786 goto err_ctlreg;
787 mdelay(500);
788 printk("100%% ]\n");
789 printk(KERN_INFO PFX "SPROM written.\n");
790 bcm43xx_controller_restart(bcm, "SPROM update");
791
792 return 0;
793err_ctlreg:
794 printk(KERN_ERR PFX "Could not access SPROM control register.\n");
795 return -ENODEV;
796}
797
798static int bcm43xx_sprom_extract(struct bcm43xx_private *bcm)
799{
John W. Linvillef2223132006-01-23 16:59:58 -0500800 u16 value;
801 u16 *sprom;
John W. Linvillef2223132006-01-23 16:59:58 -0500802#ifdef CONFIG_BCM947XX
803 char *c;
804#endif
805
806 sprom = kzalloc(BCM43xx_SPROM_SIZE * sizeof(u16),
807 GFP_KERNEL);
808 if (!sprom) {
Michael Bueschea0922b2006-02-19 14:09:20 +0100809 printk(KERN_ERR PFX "sprom_extract OOM\n");
John W. Linvillef2223132006-01-23 16:59:58 -0500810 return -ENOMEM;
811 }
812#ifdef CONFIG_BCM947XX
813 sprom[BCM43xx_SPROM_BOARDFLAGS2] = atoi(nvram_get("boardflags2"));
814 sprom[BCM43xx_SPROM_BOARDFLAGS] = atoi(nvram_get("boardflags"));
815
816 if ((c = nvram_get("il0macaddr")) != NULL)
817 e_aton(c, (char *) &(sprom[BCM43xx_SPROM_IL0MACADDR]));
818
819 if ((c = nvram_get("et1macaddr")) != NULL)
820 e_aton(c, (char *) &(sprom[BCM43xx_SPROM_ET1MACADDR]));
821
822 sprom[BCM43xx_SPROM_PA0B0] = atoi(nvram_get("pa0b0"));
823 sprom[BCM43xx_SPROM_PA0B1] = atoi(nvram_get("pa0b1"));
824 sprom[BCM43xx_SPROM_PA0B2] = atoi(nvram_get("pa0b2"));
825
826 sprom[BCM43xx_SPROM_PA1B0] = atoi(nvram_get("pa1b0"));
827 sprom[BCM43xx_SPROM_PA1B1] = atoi(nvram_get("pa1b1"));
828 sprom[BCM43xx_SPROM_PA1B2] = atoi(nvram_get("pa1b2"));
829
830 sprom[BCM43xx_SPROM_BOARDREV] = atoi(nvram_get("boardrev"));
831#else
Michael Bueschea0922b2006-02-19 14:09:20 +0100832 bcm43xx_sprom_read(bcm, sprom);
John W. Linvillef2223132006-01-23 16:59:58 -0500833#endif
834
835 /* boardflags2 */
836 value = sprom[BCM43xx_SPROM_BOARDFLAGS2];
837 bcm->sprom.boardflags2 = value;
838
839 /* il0macaddr */
840 value = sprom[BCM43xx_SPROM_IL0MACADDR + 0];
841 *(((u16 *)bcm->sprom.il0macaddr) + 0) = cpu_to_be16(value);
842 value = sprom[BCM43xx_SPROM_IL0MACADDR + 1];
843 *(((u16 *)bcm->sprom.il0macaddr) + 1) = cpu_to_be16(value);
844 value = sprom[BCM43xx_SPROM_IL0MACADDR + 2];
845 *(((u16 *)bcm->sprom.il0macaddr) + 2) = cpu_to_be16(value);
846
847 /* et0macaddr */
848 value = sprom[BCM43xx_SPROM_ET0MACADDR + 0];
849 *(((u16 *)bcm->sprom.et0macaddr) + 0) = cpu_to_be16(value);
850 value = sprom[BCM43xx_SPROM_ET0MACADDR + 1];
851 *(((u16 *)bcm->sprom.et0macaddr) + 1) = cpu_to_be16(value);
852 value = sprom[BCM43xx_SPROM_ET0MACADDR + 2];
853 *(((u16 *)bcm->sprom.et0macaddr) + 2) = cpu_to_be16(value);
854
855 /* et1macaddr */
856 value = sprom[BCM43xx_SPROM_ET1MACADDR + 0];
857 *(((u16 *)bcm->sprom.et1macaddr) + 0) = cpu_to_be16(value);
858 value = sprom[BCM43xx_SPROM_ET1MACADDR + 1];
859 *(((u16 *)bcm->sprom.et1macaddr) + 1) = cpu_to_be16(value);
860 value = sprom[BCM43xx_SPROM_ET1MACADDR + 2];
861 *(((u16 *)bcm->sprom.et1macaddr) + 2) = cpu_to_be16(value);
862
863 /* ethernet phy settings */
864 value = sprom[BCM43xx_SPROM_ETHPHY];
865 bcm->sprom.et0phyaddr = (value & 0x001F);
866 bcm->sprom.et1phyaddr = (value & 0x03E0) >> 5;
867 bcm->sprom.et0mdcport = (value & (1 << 14)) >> 14;
868 bcm->sprom.et1mdcport = (value & (1 << 15)) >> 15;
869
870 /* boardrev, antennas, locale */
871 value = sprom[BCM43xx_SPROM_BOARDREV];
872 bcm->sprom.boardrev = (value & 0x00FF);
873 bcm->sprom.locale = (value & 0x0F00) >> 8;
874 bcm->sprom.antennas_aphy = (value & 0x3000) >> 12;
875 bcm->sprom.antennas_bgphy = (value & 0xC000) >> 14;
876 if (modparam_locale != -1) {
877 if (modparam_locale >= 0 && modparam_locale <= 11) {
878 bcm->sprom.locale = modparam_locale;
879 printk(KERN_WARNING PFX "Operating with modified "
880 "LocaleCode %u (%s)\n",
881 bcm->sprom.locale,
882 bcm43xx_locale_string(bcm->sprom.locale));
883 } else {
884 printk(KERN_WARNING PFX "Module parameter \"locale\" "
885 "invalid value. (0 - 11)\n");
886 }
887 }
888
889 /* pa0b* */
890 value = sprom[BCM43xx_SPROM_PA0B0];
891 bcm->sprom.pa0b0 = value;
892 value = sprom[BCM43xx_SPROM_PA0B1];
893 bcm->sprom.pa0b1 = value;
894 value = sprom[BCM43xx_SPROM_PA0B2];
895 bcm->sprom.pa0b2 = value;
896
897 /* wl0gpio* */
898 value = sprom[BCM43xx_SPROM_WL0GPIO0];
899 if (value == 0x0000)
900 value = 0xFFFF;
901 bcm->sprom.wl0gpio0 = value & 0x00FF;
902 bcm->sprom.wl0gpio1 = (value & 0xFF00) >> 8;
903 value = sprom[BCM43xx_SPROM_WL0GPIO2];
904 if (value == 0x0000)
905 value = 0xFFFF;
906 bcm->sprom.wl0gpio2 = value & 0x00FF;
907 bcm->sprom.wl0gpio3 = (value & 0xFF00) >> 8;
908
909 /* maxpower */
910 value = sprom[BCM43xx_SPROM_MAXPWR];
911 bcm->sprom.maxpower_aphy = (value & 0xFF00) >> 8;
912 bcm->sprom.maxpower_bgphy = value & 0x00FF;
913
914 /* pa1b* */
915 value = sprom[BCM43xx_SPROM_PA1B0];
916 bcm->sprom.pa1b0 = value;
917 value = sprom[BCM43xx_SPROM_PA1B1];
918 bcm->sprom.pa1b1 = value;
919 value = sprom[BCM43xx_SPROM_PA1B2];
920 bcm->sprom.pa1b2 = value;
921
922 /* idle tssi target */
923 value = sprom[BCM43xx_SPROM_IDL_TSSI_TGT];
924 bcm->sprom.idle_tssi_tgt_aphy = value & 0x00FF;
925 bcm->sprom.idle_tssi_tgt_bgphy = (value & 0xFF00) >> 8;
926
927 /* boardflags */
928 value = sprom[BCM43xx_SPROM_BOARDFLAGS];
929 if (value == 0xFFFF)
930 value = 0x0000;
931 bcm->sprom.boardflags = value;
Michael Bueschb3db5e52006-03-15 16:31:45 +0100932 /* boardflags workarounds */
933 if (bcm->board_vendor == PCI_VENDOR_ID_DELL &&
934 bcm->chip_id == 0x4301 &&
935 bcm->board_revision == 0x74)
936 bcm->sprom.boardflags |= BCM43xx_BFL_BTCOEXIST;
937 if (bcm->board_vendor == PCI_VENDOR_ID_APPLE &&
938 bcm->board_type == 0x4E &&
939 bcm->board_revision > 0x40)
940 bcm->sprom.boardflags |= BCM43xx_BFL_PACTRL;
John W. Linvillef2223132006-01-23 16:59:58 -0500941
942 /* antenna gain */
943 value = sprom[BCM43xx_SPROM_ANTENNA_GAIN];
944 if (value == 0x0000 || value == 0xFFFF)
945 value = 0x0202;
946 /* convert values to Q5.2 */
947 bcm->sprom.antennagain_aphy = ((value & 0xFF00) >> 8) * 4;
948 bcm->sprom.antennagain_bgphy = (value & 0x00FF) * 4;
949
950 kfree(sprom);
951
952 return 0;
953}
954
Michael Buesch869aaab2006-05-05 17:23:51 +0200955static int bcm43xx_geo_init(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -0500956{
Michael Buesch869aaab2006-05-05 17:23:51 +0200957 struct ieee80211_geo *geo;
John W. Linvillef2223132006-01-23 16:59:58 -0500958 struct ieee80211_channel *chan;
959 int have_a = 0, have_bg = 0;
Michael Buesche9357c02006-03-13 19:27:34 +0100960 int i;
Michael Buesch9e4a3752006-02-02 18:43:25 +0100961 u8 channel;
John W. Linvillef2223132006-01-23 16:59:58 -0500962 struct bcm43xx_phyinfo *phy;
963 const char *iso_country;
964
Michael Buesch869aaab2006-05-05 17:23:51 +0200965 geo = kzalloc(sizeof(*geo), GFP_KERNEL);
966 if (!geo)
967 return -ENOMEM;
968
Michael Buesche9357c02006-03-13 19:27:34 +0100969 for (i = 0; i < bcm->nr_80211_available; i++) {
970 phy = &(bcm->core_80211_ext[i].phy);
John W. Linvillef2223132006-01-23 16:59:58 -0500971 switch (phy->type) {
972 case BCM43xx_PHYTYPE_B:
973 case BCM43xx_PHYTYPE_G:
974 have_bg = 1;
975 break;
976 case BCM43xx_PHYTYPE_A:
977 have_a = 1;
978 break;
979 default:
980 assert(0);
981 }
982 }
983 iso_country = bcm43xx_locale_iso(bcm->sprom.locale);
984
985 if (have_a) {
Michael Buesch869aaab2006-05-05 17:23:51 +0200986 for (i = 0, channel = IEEE80211_52GHZ_MIN_CHANNEL;
987 channel <= IEEE80211_52GHZ_MAX_CHANNEL; channel++) {
988 chan = &geo->a[i++];
Michael Buesch10d8dd82006-02-19 22:08:48 +0100989 chan->freq = bcm43xx_channel_to_freq_a(channel);
John W. Linvillef2223132006-01-23 16:59:58 -0500990 chan->channel = channel;
John W. Linvillef2223132006-01-23 16:59:58 -0500991 }
Michael Buesch869aaab2006-05-05 17:23:51 +0200992 geo->a_channels = i;
John W. Linvillef2223132006-01-23 16:59:58 -0500993 }
994 if (have_bg) {
Michael Buesch869aaab2006-05-05 17:23:51 +0200995 for (i = 0, channel = IEEE80211_24GHZ_MIN_CHANNEL;
996 channel <= IEEE80211_24GHZ_MAX_CHANNEL; channel++) {
997 chan = &geo->bg[i++];
Michael Buesch10d8dd82006-02-19 22:08:48 +0100998 chan->freq = bcm43xx_channel_to_freq_bg(channel);
John W. Linvillef2223132006-01-23 16:59:58 -0500999 chan->channel = channel;
John W. Linvillef2223132006-01-23 16:59:58 -05001000 }
Michael Buesch869aaab2006-05-05 17:23:51 +02001001 geo->bg_channels = i;
John W. Linvillef2223132006-01-23 16:59:58 -05001002 }
Michael Buesch869aaab2006-05-05 17:23:51 +02001003 memcpy(geo->name, iso_country, 2);
John W. Linvillef2223132006-01-23 16:59:58 -05001004 if (0 /*TODO: Outdoor use only */)
Michael Buesch869aaab2006-05-05 17:23:51 +02001005 geo->name[2] = 'O';
John W. Linvillef2223132006-01-23 16:59:58 -05001006 else if (0 /*TODO: Indoor use only */)
Michael Buesch869aaab2006-05-05 17:23:51 +02001007 geo->name[2] = 'I';
John W. Linvillef2223132006-01-23 16:59:58 -05001008 else
Michael Buesch869aaab2006-05-05 17:23:51 +02001009 geo->name[2] = ' ';
1010 geo->name[3] = '\0';
John W. Linvillef2223132006-01-23 16:59:58 -05001011
Michael Buesch869aaab2006-05-05 17:23:51 +02001012 ieee80211_set_geo(bcm->ieee, geo);
1013 kfree(geo);
1014
1015 return 0;
John W. Linvillef2223132006-01-23 16:59:58 -05001016}
1017
1018/* DummyTransmission function, as documented on
1019 * http://bcm-specs.sipsolutions.net/DummyTransmission
1020 */
1021void bcm43xx_dummy_transmission(struct bcm43xx_private *bcm)
1022{
Michael Buesche9357c02006-03-13 19:27:34 +01001023 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
1024 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05001025 unsigned int i, max_loop;
1026 u16 value = 0;
1027 u32 buffer[5] = {
1028 0x00000000,
1029 0x0000D400,
1030 0x00000000,
1031 0x00000001,
1032 0x00000000,
1033 };
1034
Michael Buesch489423c2006-02-13 00:11:07 +01001035 switch (phy->type) {
John W. Linvillef2223132006-01-23 16:59:58 -05001036 case BCM43xx_PHYTYPE_A:
1037 max_loop = 0x1E;
1038 buffer[0] = 0xCC010200;
1039 break;
1040 case BCM43xx_PHYTYPE_B:
1041 case BCM43xx_PHYTYPE_G:
1042 max_loop = 0xFA;
1043 buffer[0] = 0x6E840B00;
1044 break;
1045 default:
1046 assert(0);
1047 return;
1048 }
1049
1050 for (i = 0; i < 5; i++)
1051 bcm43xx_ram_write(bcm, i * 4, buffer[i]);
1052
1053 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); /* dummy read */
1054
1055 bcm43xx_write16(bcm, 0x0568, 0x0000);
1056 bcm43xx_write16(bcm, 0x07C0, 0x0000);
Michael Buesch489423c2006-02-13 00:11:07 +01001057 bcm43xx_write16(bcm, 0x050C, ((phy->type == BCM43xx_PHYTYPE_A) ? 1 : 0));
John W. Linvillef2223132006-01-23 16:59:58 -05001058 bcm43xx_write16(bcm, 0x0508, 0x0000);
1059 bcm43xx_write16(bcm, 0x050A, 0x0000);
1060 bcm43xx_write16(bcm, 0x054C, 0x0000);
1061 bcm43xx_write16(bcm, 0x056A, 0x0014);
1062 bcm43xx_write16(bcm, 0x0568, 0x0826);
1063 bcm43xx_write16(bcm, 0x0500, 0x0000);
1064 bcm43xx_write16(bcm, 0x0502, 0x0030);
1065
Michael Buesch73733842006-03-12 19:44:29 +01001066 if (radio->version == 0x2050 && radio->revision <= 0x5)
1067 bcm43xx_radio_write16(bcm, 0x0051, 0x0017);
John W. Linvillef2223132006-01-23 16:59:58 -05001068 for (i = 0x00; i < max_loop; i++) {
1069 value = bcm43xx_read16(bcm, 0x050E);
Michael Buesch73733842006-03-12 19:44:29 +01001070 if (value & 0x0080)
John W. Linvillef2223132006-01-23 16:59:58 -05001071 break;
1072 udelay(10);
1073 }
1074 for (i = 0x00; i < 0x0A; i++) {
1075 value = bcm43xx_read16(bcm, 0x050E);
Michael Buesch73733842006-03-12 19:44:29 +01001076 if (value & 0x0400)
John W. Linvillef2223132006-01-23 16:59:58 -05001077 break;
1078 udelay(10);
1079 }
1080 for (i = 0x00; i < 0x0A; i++) {
1081 value = bcm43xx_read16(bcm, 0x0690);
Michael Buesch73733842006-03-12 19:44:29 +01001082 if (!(value & 0x0100))
John W. Linvillef2223132006-01-23 16:59:58 -05001083 break;
1084 udelay(10);
1085 }
Michael Buesch73733842006-03-12 19:44:29 +01001086 if (radio->version == 0x2050 && radio->revision <= 0x5)
1087 bcm43xx_radio_write16(bcm, 0x0051, 0x0037);
John W. Linvillef2223132006-01-23 16:59:58 -05001088}
1089
1090static void key_write(struct bcm43xx_private *bcm,
1091 u8 index, u8 algorithm, const u16 *key)
1092{
1093 unsigned int i, basic_wep = 0;
1094 u32 offset;
1095 u16 value;
1096
1097 /* Write associated key information */
1098 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x100 + (index * 2),
1099 ((index << 4) | (algorithm & 0x0F)));
1100
1101 /* The first 4 WEP keys need extra love */
1102 if (((algorithm == BCM43xx_SEC_ALGO_WEP) ||
1103 (algorithm == BCM43xx_SEC_ALGO_WEP104)) && (index < 4))
1104 basic_wep = 1;
1105
1106 /* Write key payload, 8 little endian words */
1107 offset = bcm->security_offset + (index * BCM43xx_SEC_KEYSIZE);
1108 for (i = 0; i < (BCM43xx_SEC_KEYSIZE / sizeof(u16)); i++) {
1109 value = cpu_to_le16(key[i]);
1110 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1111 offset + (i * 2), value);
1112
1113 if (!basic_wep)
1114 continue;
1115
1116 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1117 offset + (i * 2) + 4 * BCM43xx_SEC_KEYSIZE,
1118 value);
1119 }
1120}
1121
1122static void keymac_write(struct bcm43xx_private *bcm,
1123 u8 index, const u32 *addr)
1124{
1125 /* for keys 0-3 there is no associated mac address */
1126 if (index < 4)
1127 return;
1128
1129 index -= 4;
1130 if (bcm->current_core->rev >= 5) {
1131 bcm43xx_shm_write32(bcm,
1132 BCM43xx_SHM_HWMAC,
1133 index * 2,
1134 cpu_to_be32(*addr));
1135 bcm43xx_shm_write16(bcm,
1136 BCM43xx_SHM_HWMAC,
1137 (index * 2) + 1,
1138 cpu_to_be16(*((u16 *)(addr + 1))));
1139 } else {
1140 if (index < 8) {
1141 TODO(); /* Put them in the macaddress filter */
1142 } else {
1143 TODO();
1144 /* Put them BCM43xx_SHM_SHARED, stating index 0x0120.
1145 Keep in mind to update the count of keymacs in 0x003E as well! */
1146 }
1147 }
1148}
1149
1150static int bcm43xx_key_write(struct bcm43xx_private *bcm,
1151 u8 index, u8 algorithm,
1152 const u8 *_key, int key_len,
1153 const u8 *mac_addr)
1154{
1155 u8 key[BCM43xx_SEC_KEYSIZE] = { 0 };
1156
1157 if (index >= ARRAY_SIZE(bcm->key))
1158 return -EINVAL;
1159 if (key_len > ARRAY_SIZE(key))
1160 return -EINVAL;
1161 if (algorithm < 1 || algorithm > 5)
1162 return -EINVAL;
1163
1164 memcpy(key, _key, key_len);
1165 key_write(bcm, index, algorithm, (const u16 *)key);
1166 keymac_write(bcm, index, (const u32 *)mac_addr);
1167
1168 bcm->key[index].algorithm = algorithm;
1169
1170 return 0;
1171}
1172
1173static void bcm43xx_clear_keys(struct bcm43xx_private *bcm)
1174{
1175 static const u32 zero_mac[2] = { 0 };
1176 unsigned int i,j, nr_keys = 54;
1177 u16 offset;
1178
1179 if (bcm->current_core->rev < 5)
1180 nr_keys = 16;
1181 assert(nr_keys <= ARRAY_SIZE(bcm->key));
1182
1183 for (i = 0; i < nr_keys; i++) {
1184 bcm->key[i].enabled = 0;
1185 /* returns for i < 4 immediately */
1186 keymac_write(bcm, i, zero_mac);
1187 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1188 0x100 + (i * 2), 0x0000);
1189 for (j = 0; j < 8; j++) {
1190 offset = bcm->security_offset + (j * 4) + (i * BCM43xx_SEC_KEYSIZE);
1191 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1192 offset, 0x0000);
1193 }
1194 }
1195 dprintk(KERN_INFO PFX "Keys cleared\n");
1196}
1197
John W. Linvillef2223132006-01-23 16:59:58 -05001198/* Lowlevel core-switch function. This is only to be used in
1199 * bcm43xx_switch_core() and bcm43xx_probe_cores()
1200 */
1201static int _switch_core(struct bcm43xx_private *bcm, int core)
1202{
1203 int err;
1204 int attempts = 0;
Michael Buesch489423c2006-02-13 00:11:07 +01001205 u32 current_core;
John W. Linvillef2223132006-01-23 16:59:58 -05001206
1207 assert(core >= 0);
Michael Buesch489423c2006-02-13 00:11:07 +01001208 while (1) {
1209 err = bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_ACTIVE_CORE,
John W. Linvillef2223132006-01-23 16:59:58 -05001210 (core * 0x1000) + 0x18000000);
Michael Buesch489423c2006-02-13 00:11:07 +01001211 if (unlikely(err))
1212 goto error;
1213 err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_ACTIVE_CORE,
1214 &current_core);
1215 if (unlikely(err))
1216 goto error;
1217 current_core = (current_core - 0x18000000) / 0x1000;
1218 if (current_core == core)
1219 break;
John W. Linvillef2223132006-01-23 16:59:58 -05001220
Michael Buesch489423c2006-02-13 00:11:07 +01001221 if (unlikely(attempts++ > BCM43xx_SWITCH_CORE_MAX_RETRIES))
1222 goto error;
1223 udelay(10);
1224 }
1225#ifdef CONFIG_BCM947XX
1226 if (bcm->pci_dev->bus->number == 0)
1227 bcm->current_core_offset = 0x1000 * core;
1228 else
1229 bcm->current_core_offset = 0;
1230#endif
1231
1232 return 0;
1233error:
1234 printk(KERN_ERR PFX "Failed to switch to core %d\n", core);
1235 return -ENODEV;
John W. Linvillef2223132006-01-23 16:59:58 -05001236}
1237
1238int bcm43xx_switch_core(struct bcm43xx_private *bcm, struct bcm43xx_coreinfo *new_core)
1239{
1240 int err;
1241
Michael Buesch489423c2006-02-13 00:11:07 +01001242 if (unlikely(!new_core))
John W. Linvillef2223132006-01-23 16:59:58 -05001243 return 0;
Michael Buesche9357c02006-03-13 19:27:34 +01001244 if (!new_core->available)
John W. Linvillef2223132006-01-23 16:59:58 -05001245 return -ENODEV;
1246 if (bcm->current_core == new_core)
1247 return 0;
1248 err = _switch_core(bcm, new_core->index);
Michael Buesche9357c02006-03-13 19:27:34 +01001249 if (unlikely(err))
1250 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05001251
Michael Buesche9357c02006-03-13 19:27:34 +01001252 bcm->current_core = new_core;
1253 bcm->current_80211_core_idx = -1;
1254 if (new_core->id == BCM43xx_COREID_80211)
1255 bcm->current_80211_core_idx = (int)(new_core - &(bcm->core_80211[0]));
1256
1257out:
John W. Linvillef2223132006-01-23 16:59:58 -05001258 return err;
1259}
1260
Michael Buesch489423c2006-02-13 00:11:07 +01001261static int bcm43xx_core_enabled(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001262{
1263 u32 value;
1264
1265 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1266 value &= BCM43xx_SBTMSTATELOW_CLOCK | BCM43xx_SBTMSTATELOW_RESET
1267 | BCM43xx_SBTMSTATELOW_REJECT;
1268
1269 return (value == BCM43xx_SBTMSTATELOW_CLOCK);
1270}
1271
1272/* disable current core */
1273static int bcm43xx_core_disable(struct bcm43xx_private *bcm, u32 core_flags)
1274{
1275 u32 sbtmstatelow;
1276 u32 sbtmstatehigh;
1277 int i;
1278
1279 /* fetch sbtmstatelow from core information registers */
1280 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1281
1282 /* core is already in reset */
1283 if (sbtmstatelow & BCM43xx_SBTMSTATELOW_RESET)
1284 goto out;
1285
1286 if (sbtmstatelow & BCM43xx_SBTMSTATELOW_CLOCK) {
1287 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK |
1288 BCM43xx_SBTMSTATELOW_REJECT;
1289 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1290
1291 for (i = 0; i < 1000; i++) {
1292 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1293 if (sbtmstatelow & BCM43xx_SBTMSTATELOW_REJECT) {
1294 i = -1;
1295 break;
1296 }
1297 udelay(10);
1298 }
1299 if (i != -1) {
1300 printk(KERN_ERR PFX "Error: core_disable() REJECT timeout!\n");
1301 return -EBUSY;
1302 }
1303
1304 for (i = 0; i < 1000; i++) {
1305 sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH);
1306 if (!(sbtmstatehigh & BCM43xx_SBTMSTATEHIGH_BUSY)) {
1307 i = -1;
1308 break;
1309 }
1310 udelay(10);
1311 }
1312 if (i != -1) {
1313 printk(KERN_ERR PFX "Error: core_disable() BUSY timeout!\n");
1314 return -EBUSY;
1315 }
1316
1317 sbtmstatelow = BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK |
1318 BCM43xx_SBTMSTATELOW_REJECT |
1319 BCM43xx_SBTMSTATELOW_RESET |
1320 BCM43xx_SBTMSTATELOW_CLOCK |
1321 core_flags;
1322 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1323 udelay(10);
1324 }
1325
1326 sbtmstatelow = BCM43xx_SBTMSTATELOW_RESET |
1327 BCM43xx_SBTMSTATELOW_REJECT |
1328 core_flags;
1329 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1330
1331out:
Michael Buesche9357c02006-03-13 19:27:34 +01001332 bcm->current_core->enabled = 0;
1333
John W. Linvillef2223132006-01-23 16:59:58 -05001334 return 0;
1335}
1336
1337/* enable (reset) current core */
1338static int bcm43xx_core_enable(struct bcm43xx_private *bcm, u32 core_flags)
1339{
1340 u32 sbtmstatelow;
1341 u32 sbtmstatehigh;
1342 u32 sbimstate;
1343 int err;
1344
1345 err = bcm43xx_core_disable(bcm, core_flags);
1346 if (err)
1347 goto out;
1348
1349 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK |
1350 BCM43xx_SBTMSTATELOW_RESET |
1351 BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK |
1352 core_flags;
1353 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1354 udelay(1);
1355
1356 sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH);
1357 if (sbtmstatehigh & BCM43xx_SBTMSTATEHIGH_SERROR) {
1358 sbtmstatehigh = 0x00000000;
1359 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATEHIGH, sbtmstatehigh);
1360 }
1361
1362 sbimstate = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMSTATE);
1363 if (sbimstate & (BCM43xx_SBIMSTATE_IB_ERROR | BCM43xx_SBIMSTATE_TIMEOUT)) {
1364 sbimstate &= ~(BCM43xx_SBIMSTATE_IB_ERROR | BCM43xx_SBIMSTATE_TIMEOUT);
1365 bcm43xx_write32(bcm, BCM43xx_CIR_SBIMSTATE, sbimstate);
1366 }
1367
1368 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK |
1369 BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK |
1370 core_flags;
1371 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1372 udelay(1);
1373
1374 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK | core_flags;
1375 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1376 udelay(1);
1377
Michael Buesche9357c02006-03-13 19:27:34 +01001378 bcm->current_core->enabled = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05001379 assert(err == 0);
1380out:
1381 return err;
1382}
1383
1384/* http://bcm-specs.sipsolutions.net/80211CoreReset */
1385void bcm43xx_wireless_core_reset(struct bcm43xx_private *bcm, int connect_phy)
1386{
1387 u32 flags = 0x00040000;
1388
Michael Buesch77db31e2006-02-12 16:47:44 +01001389 if ((bcm43xx_core_enabled(bcm)) &&
1390 !bcm43xx_using_pio(bcm)) {
John W. Linvillef2223132006-01-23 16:59:58 -05001391//FIXME: Do we _really_ want #ifndef CONFIG_BCM947XX here?
1392#ifndef CONFIG_BCM947XX
1393 /* reset all used DMA controllers. */
1394 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA1_BASE);
1395 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA2_BASE);
1396 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA3_BASE);
1397 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA4_BASE);
1398 bcm43xx_dmacontroller_rx_reset(bcm, BCM43xx_MMIO_DMA1_BASE);
1399 if (bcm->current_core->rev < 5)
1400 bcm43xx_dmacontroller_rx_reset(bcm, BCM43xx_MMIO_DMA4_BASE);
1401#endif
1402 }
Michael Buesch78ff56a2006-06-05 20:24:10 +02001403 if (bcm43xx_status(bcm) == BCM43xx_STAT_SHUTTINGDOWN) {
John W. Linvillef2223132006-01-23 16:59:58 -05001404 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
1405 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
1406 & ~(BCM43xx_SBF_MAC_ENABLED | 0x00000002));
1407 } else {
1408 if (connect_phy)
1409 flags |= 0x20000000;
1410 bcm43xx_phy_connect(bcm, connect_phy);
1411 bcm43xx_core_enable(bcm, flags);
1412 bcm43xx_write16(bcm, 0x03E6, 0x0000);
1413 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
1414 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
1415 | BCM43xx_SBF_400);
1416 }
1417}
1418
1419static void bcm43xx_wireless_core_disable(struct bcm43xx_private *bcm)
1420{
1421 bcm43xx_radio_turn_off(bcm);
1422 bcm43xx_write16(bcm, 0x03E6, 0x00F4);
1423 bcm43xx_core_disable(bcm, 0);
1424}
1425
1426/* Mark the current 80211 core inactive.
1427 * "active_80211_core" is the other 80211 core, which is used.
1428 */
1429static int bcm43xx_wireless_core_mark_inactive(struct bcm43xx_private *bcm,
1430 struct bcm43xx_coreinfo *active_80211_core)
1431{
1432 u32 sbtmstatelow;
1433 struct bcm43xx_coreinfo *old_core;
1434 int err = 0;
1435
1436 bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
1437 bcm43xx_radio_turn_off(bcm);
1438 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1439 sbtmstatelow &= ~0x200a0000;
1440 sbtmstatelow |= 0xa0000;
1441 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1442 udelay(1);
1443 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1444 sbtmstatelow &= ~0xa0000;
1445 sbtmstatelow |= 0x80000;
1446 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1447 udelay(1);
1448
Michael Buesche9357c02006-03-13 19:27:34 +01001449 if (bcm43xx_current_phy(bcm)->type == BCM43xx_PHYTYPE_G) {
John W. Linvillef2223132006-01-23 16:59:58 -05001450 old_core = bcm->current_core;
1451 err = bcm43xx_switch_core(bcm, active_80211_core);
1452 if (err)
1453 goto out;
1454 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1455 sbtmstatelow &= ~0x20000000;
1456 sbtmstatelow |= 0x20000000;
1457 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1458 err = bcm43xx_switch_core(bcm, old_core);
1459 }
1460
1461out:
1462 return err;
1463}
1464
Michael Buesch489423c2006-02-13 00:11:07 +01001465static void handle_irq_transmit_status(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001466{
1467 u32 v0, v1;
1468 u16 tmp;
1469 struct bcm43xx_xmitstatus stat;
1470
John W. Linvillef2223132006-01-23 16:59:58 -05001471 while (1) {
1472 v0 = bcm43xx_read32(bcm, BCM43xx_MMIO_XMITSTAT_0);
1473 if (!v0)
1474 break;
1475 v1 = bcm43xx_read32(bcm, BCM43xx_MMIO_XMITSTAT_1);
1476
1477 stat.cookie = (v0 >> 16) & 0x0000FFFF;
1478 tmp = (u16)((v0 & 0xFFF0) | ((v0 & 0xF) >> 1));
1479 stat.flags = tmp & 0xFF;
1480 stat.cnt1 = (tmp & 0x0F00) >> 8;
1481 stat.cnt2 = (tmp & 0xF000) >> 12;
1482 stat.seq = (u16)(v1 & 0xFFFF);
1483 stat.unknown = (u16)((v1 >> 16) & 0xFF);
1484
1485 bcm43xx_debugfs_log_txstat(bcm, &stat);
1486
1487 if (stat.flags & BCM43xx_TXSTAT_FLAG_IGNORE)
1488 continue;
1489 if (!(stat.flags & BCM43xx_TXSTAT_FLAG_ACK)) {
1490 //TODO: packet was not acked (was lost)
1491 }
1492 //TODO: There are more (unknown) flags to test. see bcm43xx_main.h
1493
Michael Buesch77db31e2006-02-12 16:47:44 +01001494 if (bcm43xx_using_pio(bcm))
John W. Linvillef2223132006-01-23 16:59:58 -05001495 bcm43xx_pio_handle_xmitstatus(bcm, &stat);
1496 else
1497 bcm43xx_dma_handle_xmitstatus(bcm, &stat);
1498 }
1499}
1500
Michael Buesch489423c2006-02-13 00:11:07 +01001501static void bcm43xx_generate_noise_sample(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001502{
1503 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x408, 0x7F7F);
1504 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x40A, 0x7F7F);
1505 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD,
1506 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD) | (1 << 4));
1507 assert(bcm->noisecalc.core_at_start == bcm->current_core);
Michael Buesche9357c02006-03-13 19:27:34 +01001508 assert(bcm->noisecalc.channel_at_start == bcm43xx_current_radio(bcm)->channel);
John W. Linvillef2223132006-01-23 16:59:58 -05001509}
1510
1511static void bcm43xx_calculate_link_quality(struct bcm43xx_private *bcm)
1512{
1513 /* Top half of Link Quality calculation. */
1514
1515 if (bcm->noisecalc.calculation_running)
1516 return;
1517 bcm->noisecalc.core_at_start = bcm->current_core;
Michael Buesche9357c02006-03-13 19:27:34 +01001518 bcm->noisecalc.channel_at_start = bcm43xx_current_radio(bcm)->channel;
John W. Linvillef2223132006-01-23 16:59:58 -05001519 bcm->noisecalc.calculation_running = 1;
1520 bcm->noisecalc.nr_samples = 0;
1521
1522 bcm43xx_generate_noise_sample(bcm);
1523}
1524
Michael Buesch489423c2006-02-13 00:11:07 +01001525static void handle_irq_noise(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001526{
Michael Buesche9357c02006-03-13 19:27:34 +01001527 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05001528 u16 tmp;
1529 u8 noise[4];
1530 u8 i, j;
1531 s32 average;
1532
1533 /* Bottom half of Link Quality calculation. */
1534
1535 assert(bcm->noisecalc.calculation_running);
1536 if (bcm->noisecalc.core_at_start != bcm->current_core ||
1537 bcm->noisecalc.channel_at_start != radio->channel)
1538 goto drop_calculation;
1539 tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x408);
1540 noise[0] = (tmp & 0x00FF);
1541 noise[1] = (tmp & 0xFF00) >> 8;
1542 tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x40A);
1543 noise[2] = (tmp & 0x00FF);
1544 noise[3] = (tmp & 0xFF00) >> 8;
1545 if (noise[0] == 0x7F || noise[1] == 0x7F ||
1546 noise[2] == 0x7F || noise[3] == 0x7F)
1547 goto generate_new;
1548
1549 /* Get the noise samples. */
Larry Finger522536f2006-06-28 19:11:21 -05001550 assert(bcm->noisecalc.nr_samples < 8);
John W. Linvillef2223132006-01-23 16:59:58 -05001551 i = bcm->noisecalc.nr_samples;
1552 noise[0] = limit_value(noise[0], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1553 noise[1] = limit_value(noise[1], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1554 noise[2] = limit_value(noise[2], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1555 noise[3] = limit_value(noise[3], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1556 bcm->noisecalc.samples[i][0] = radio->nrssi_lt[noise[0]];
1557 bcm->noisecalc.samples[i][1] = radio->nrssi_lt[noise[1]];
1558 bcm->noisecalc.samples[i][2] = radio->nrssi_lt[noise[2]];
1559 bcm->noisecalc.samples[i][3] = radio->nrssi_lt[noise[3]];
1560 bcm->noisecalc.nr_samples++;
1561 if (bcm->noisecalc.nr_samples == 8) {
1562 /* Calculate the Link Quality by the noise samples. */
1563 average = 0;
1564 for (i = 0; i < 8; i++) {
1565 for (j = 0; j < 4; j++)
1566 average += bcm->noisecalc.samples[i][j];
1567 }
1568 average /= (8 * 4);
1569 average *= 125;
1570 average += 64;
1571 average /= 128;
Michael Buesch72fb8512006-03-22 18:10:19 +01001572
John W. Linvillef2223132006-01-23 16:59:58 -05001573 tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x40C);
1574 tmp = (tmp / 128) & 0x1F;
1575 if (tmp >= 8)
1576 average += 2;
1577 else
1578 average -= 25;
1579 if (tmp == 8)
1580 average -= 72;
1581 else
1582 average -= 48;
1583
Michael Buesch72fb8512006-03-22 18:10:19 +01001584/* FIXME: This is wrong, but people want fancy stats. well... */
1585bcm->stats.noise = average;
John W. Linvillef2223132006-01-23 16:59:58 -05001586 if (average > -65)
1587 bcm->stats.link_quality = 0;
1588 else if (average > -75)
1589 bcm->stats.link_quality = 1;
1590 else if (average > -85)
1591 bcm->stats.link_quality = 2;
1592 else
1593 bcm->stats.link_quality = 3;
1594// dprintk(KERN_INFO PFX "Link Quality: %u (avg was %d)\n", bcm->stats.link_quality, average);
1595drop_calculation:
1596 bcm->noisecalc.calculation_running = 0;
1597 return;
1598 }
1599generate_new:
1600 bcm43xx_generate_noise_sample(bcm);
1601}
1602
Michael Buesch489423c2006-02-13 00:11:07 +01001603static void handle_irq_ps(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001604{
1605 if (bcm->ieee->iw_mode == IW_MODE_MASTER) {
1606 ///TODO: PS TBTT
1607 } else {
1608 if (1/*FIXME: the last PSpoll frame was sent successfully */)
1609 bcm43xx_power_saving_ctl_bits(bcm, -1, -1);
1610 }
1611 if (bcm->ieee->iw_mode == IW_MODE_ADHOC)
1612 bcm->reg124_set_0x4 = 1;
1613 //FIXME else set to false?
1614}
1615
Michael Buesch489423c2006-02-13 00:11:07 +01001616static void handle_irq_reg124(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001617{
1618 if (!bcm->reg124_set_0x4)
1619 return;
1620 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD,
1621 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD)
1622 | 0x4);
1623 //FIXME: reset reg124_set_0x4 to false?
1624}
1625
Michael Buesch489423c2006-02-13 00:11:07 +01001626static void handle_irq_pmq(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001627{
1628 u32 tmp;
1629
1630 //TODO: AP mode.
1631
1632 while (1) {
1633 tmp = bcm43xx_read32(bcm, BCM43xx_MMIO_PS_STATUS);
1634 if (!(tmp & 0x00000008))
1635 break;
1636 }
1637 /* 16bit write is odd, but correct. */
1638 bcm43xx_write16(bcm, BCM43xx_MMIO_PS_STATUS, 0x0002);
1639}
1640
1641static void bcm43xx_generate_beacon_template(struct bcm43xx_private *bcm,
1642 u16 ram_offset, u16 shm_size_offset)
1643{
1644 u32 value;
1645 u16 size = 0;
1646
1647 /* Timestamp. */
1648 //FIXME: assumption: The chip sets the timestamp
1649 value = 0;
1650 bcm43xx_ram_write(bcm, ram_offset++, value);
1651 bcm43xx_ram_write(bcm, ram_offset++, value);
1652 size += 8;
1653
1654 /* Beacon Interval / Capability Information */
1655 value = 0x0000;//FIXME: Which interval?
1656 value |= (1 << 0) << 16; /* ESS */
1657 value |= (1 << 2) << 16; /* CF Pollable */ //FIXME?
1658 value |= (1 << 3) << 16; /* CF Poll Request */ //FIXME?
1659 if (!bcm->ieee->open_wep)
1660 value |= (1 << 4) << 16; /* Privacy */
1661 bcm43xx_ram_write(bcm, ram_offset++, value);
1662 size += 4;
1663
1664 /* SSID */
1665 //TODO
1666
1667 /* FH Parameter Set */
1668 //TODO
1669
1670 /* DS Parameter Set */
1671 //TODO
1672
1673 /* CF Parameter Set */
1674 //TODO
1675
1676 /* TIM */
1677 //TODO
1678
1679 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, shm_size_offset, size);
1680}
1681
Michael Buesch489423c2006-02-13 00:11:07 +01001682static void handle_irq_beacon(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001683{
1684 u32 status;
1685
1686 bcm->irq_savedstate &= ~BCM43xx_IRQ_BEACON;
1687 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD);
1688
1689 if ((status & 0x1) && (status & 0x2)) {
1690 /* ACK beacon IRQ. */
1691 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON,
1692 BCM43xx_IRQ_BEACON);
1693 bcm->irq_savedstate |= BCM43xx_IRQ_BEACON;
1694 return;
1695 }
1696 if (!(status & 0x1)) {
1697 bcm43xx_generate_beacon_template(bcm, 0x68, 0x18);
1698 status |= 0x1;
1699 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, status);
1700 }
1701 if (!(status & 0x2)) {
1702 bcm43xx_generate_beacon_template(bcm, 0x468, 0x1A);
1703 status |= 0x2;
1704 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, status);
1705 }
1706}
1707
John W. Linvillef2223132006-01-23 16:59:58 -05001708/* Interrupt handler bottom-half */
1709static void bcm43xx_interrupt_tasklet(struct bcm43xx_private *bcm)
1710{
1711 u32 reason;
1712 u32 dma_reason[4];
1713 int activity = 0;
1714 unsigned long flags;
1715
1716#ifdef CONFIG_BCM43XX_DEBUG
1717 u32 _handled = 0x00000000;
1718# define bcmirq_handled(irq) do { _handled |= (irq); } while (0)
1719#else
1720# define bcmirq_handled(irq) do { /* nothing */ } while (0)
1721#endif /* CONFIG_BCM43XX_DEBUG*/
1722
Michael Bueschefa6a372006-06-27 21:38:40 +02001723 spin_lock_irqsave(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05001724 reason = bcm->irq_reason;
1725 dma_reason[0] = bcm->dma_reason[0];
1726 dma_reason[1] = bcm->dma_reason[1];
1727 dma_reason[2] = bcm->dma_reason[2];
1728 dma_reason[3] = bcm->dma_reason[3];
1729
1730 if (unlikely(reason & BCM43xx_IRQ_XMIT_ERROR)) {
1731 /* TX error. We get this when Template Ram is written in wrong endianess
1732 * in dummy_tx(). We also get this if something is wrong with the TX header
1733 * on DMA or PIO queues.
1734 * Maybe we get this in other error conditions, too.
1735 */
Michael Buesch73733842006-03-12 19:44:29 +01001736 printkl(KERN_ERR PFX "FATAL ERROR: BCM43xx_IRQ_XMIT_ERROR\n");
John W. Linvillef2223132006-01-23 16:59:58 -05001737 bcmirq_handled(BCM43xx_IRQ_XMIT_ERROR);
1738 }
Michael Buesch73733842006-03-12 19:44:29 +01001739 if (unlikely((dma_reason[0] & BCM43xx_DMAIRQ_FATALMASK) |
1740 (dma_reason[1] & BCM43xx_DMAIRQ_FATALMASK) |
1741 (dma_reason[2] & BCM43xx_DMAIRQ_FATALMASK) |
1742 (dma_reason[3] & BCM43xx_DMAIRQ_FATALMASK))) {
1743 printkl(KERN_ERR PFX "FATAL ERROR: Fatal DMA error: "
1744 "0x%08X, 0x%08X, 0x%08X, 0x%08X\n",
1745 dma_reason[0], dma_reason[1],
1746 dma_reason[2], dma_reason[3]);
1747 bcm43xx_controller_restart(bcm, "DMA error");
Michael Buesch78ff56a2006-06-05 20:24:10 +02001748 mmiowb();
Michael Bueschefa6a372006-06-27 21:38:40 +02001749 spin_unlock_irqrestore(&bcm->irq_lock, flags);
Michael Buesch73733842006-03-12 19:44:29 +01001750 return;
1751 }
1752 if (unlikely((dma_reason[0] & BCM43xx_DMAIRQ_NONFATALMASK) |
1753 (dma_reason[1] & BCM43xx_DMAIRQ_NONFATALMASK) |
1754 (dma_reason[2] & BCM43xx_DMAIRQ_NONFATALMASK) |
1755 (dma_reason[3] & BCM43xx_DMAIRQ_NONFATALMASK))) {
1756 printkl(KERN_ERR PFX "DMA error: "
1757 "0x%08X, 0x%08X, 0x%08X, 0x%08X\n",
1758 dma_reason[0], dma_reason[1],
1759 dma_reason[2], dma_reason[3]);
1760 }
John W. Linvillef2223132006-01-23 16:59:58 -05001761
1762 if (reason & BCM43xx_IRQ_PS) {
1763 handle_irq_ps(bcm);
1764 bcmirq_handled(BCM43xx_IRQ_PS);
1765 }
1766
1767 if (reason & BCM43xx_IRQ_REG124) {
1768 handle_irq_reg124(bcm);
1769 bcmirq_handled(BCM43xx_IRQ_REG124);
1770 }
1771
1772 if (reason & BCM43xx_IRQ_BEACON) {
1773 if (bcm->ieee->iw_mode == IW_MODE_MASTER)
1774 handle_irq_beacon(bcm);
1775 bcmirq_handled(BCM43xx_IRQ_BEACON);
1776 }
1777
1778 if (reason & BCM43xx_IRQ_PMQ) {
1779 handle_irq_pmq(bcm);
1780 bcmirq_handled(BCM43xx_IRQ_PMQ);
1781 }
1782
1783 if (reason & BCM43xx_IRQ_SCAN) {
1784 /*TODO*/
1785 //bcmirq_handled(BCM43xx_IRQ_SCAN);
1786 }
1787
1788 if (reason & BCM43xx_IRQ_NOISE) {
1789 handle_irq_noise(bcm);
1790 bcmirq_handled(BCM43xx_IRQ_NOISE);
1791 }
1792
1793 /* Check the DMA reason registers for received data. */
1794 assert(!(dma_reason[1] & BCM43xx_DMAIRQ_RX_DONE));
1795 assert(!(dma_reason[2] & BCM43xx_DMAIRQ_RX_DONE));
1796 if (dma_reason[0] & BCM43xx_DMAIRQ_RX_DONE) {
Michael Buesch77db31e2006-02-12 16:47:44 +01001797 if (bcm43xx_using_pio(bcm))
Michael Buesche9357c02006-03-13 19:27:34 +01001798 bcm43xx_pio_rx(bcm43xx_current_pio(bcm)->queue0);
John W. Linvillef2223132006-01-23 16:59:58 -05001799 else
Michael Buesche9357c02006-03-13 19:27:34 +01001800 bcm43xx_dma_rx(bcm43xx_current_dma(bcm)->rx_ring0);
Michael Bueschdcfd7202006-02-12 20:25:55 +01001801 /* We intentionally don't set "activity" to 1, here. */
John W. Linvillef2223132006-01-23 16:59:58 -05001802 }
1803 if (dma_reason[3] & BCM43xx_DMAIRQ_RX_DONE) {
Michael Buesche1b1b582006-03-13 15:20:05 +01001804 if (bcm43xx_using_pio(bcm))
Michael Buesche9357c02006-03-13 19:27:34 +01001805 bcm43xx_pio_rx(bcm43xx_current_pio(bcm)->queue3);
Michael Buesche1b1b582006-03-13 15:20:05 +01001806 else
Michael Buesche9357c02006-03-13 19:27:34 +01001807 bcm43xx_dma_rx(bcm43xx_current_dma(bcm)->rx_ring1);
Michael Buesche1b1b582006-03-13 15:20:05 +01001808 activity = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05001809 }
1810 bcmirq_handled(BCM43xx_IRQ_RX);
1811
1812 if (reason & BCM43xx_IRQ_XMIT_STATUS) {
Michael Buesche1b1b582006-03-13 15:20:05 +01001813 handle_irq_transmit_status(bcm);
1814 activity = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05001815 //TODO: In AP mode, this also causes sending of powersave responses.
1816 bcmirq_handled(BCM43xx_IRQ_XMIT_STATUS);
1817 }
1818
John W. Linvillef2223132006-01-23 16:59:58 -05001819 /* IRQ_PIO_WORKAROUND is handled in the top-half. */
1820 bcmirq_handled(BCM43xx_IRQ_PIO_WORKAROUND);
1821#ifdef CONFIG_BCM43XX_DEBUG
1822 if (unlikely(reason & ~_handled)) {
1823 printkl(KERN_WARNING PFX
1824 "Unhandled IRQ! Reason: 0x%08x, Unhandled: 0x%08x, "
1825 "DMA: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
1826 reason, (reason & ~_handled),
1827 dma_reason[0], dma_reason[1],
1828 dma_reason[2], dma_reason[3]);
1829 }
1830#endif
1831#undef bcmirq_handled
1832
1833 if (!modparam_noleds)
1834 bcm43xx_leds_update(bcm, activity);
1835 bcm43xx_interrupt_enable(bcm, bcm->irq_savedstate);
Michael Buesch78ff56a2006-06-05 20:24:10 +02001836 mmiowb();
Michael Bueschefa6a372006-06-27 21:38:40 +02001837 spin_unlock_irqrestore(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05001838}
1839
Michael Buesch0ac59da2006-03-19 21:43:40 +01001840static void pio_irq_workaround(struct bcm43xx_private *bcm,
1841 u16 base, int queueidx)
John W. Linvillef2223132006-01-23 16:59:58 -05001842{
Michael Buesch0ac59da2006-03-19 21:43:40 +01001843 u16 rxctl;
John W. Linvillef2223132006-01-23 16:59:58 -05001844
Michael Buesch0ac59da2006-03-19 21:43:40 +01001845 rxctl = bcm43xx_read16(bcm, base + BCM43xx_PIO_RXCTL);
1846 if (rxctl & BCM43xx_PIO_RXCTL_DATAAVAILABLE)
1847 bcm->dma_reason[queueidx] |= BCM43xx_DMAIRQ_RX_DONE;
1848 else
1849 bcm->dma_reason[queueidx] &= ~BCM43xx_DMAIRQ_RX_DONE;
1850}
1851
1852static void bcm43xx_interrupt_ack(struct bcm43xx_private *bcm, u32 reason)
1853{
Michael Buesch77db31e2006-02-12 16:47:44 +01001854 if (bcm43xx_using_pio(bcm) &&
John W. Linvillef2223132006-01-23 16:59:58 -05001855 (bcm->current_core->rev < 3) &&
1856 (!(reason & BCM43xx_IRQ_PIO_WORKAROUND))) {
1857 /* Apply a PIO specific workaround to the dma_reasons */
Michael Buesch0ac59da2006-03-19 21:43:40 +01001858 pio_irq_workaround(bcm, BCM43xx_MMIO_PIO1_BASE, 0);
1859 pio_irq_workaround(bcm, BCM43xx_MMIO_PIO2_BASE, 1);
1860 pio_irq_workaround(bcm, BCM43xx_MMIO_PIO3_BASE, 2);
1861 pio_irq_workaround(bcm, BCM43xx_MMIO_PIO4_BASE, 3);
John W. Linvillef2223132006-01-23 16:59:58 -05001862 }
1863
Michael Buesch0ac59da2006-03-19 21:43:40 +01001864 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, reason);
John W. Linvillef2223132006-01-23 16:59:58 -05001865
1866 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA1_REASON,
1867 bcm->dma_reason[0]);
1868 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA2_REASON,
1869 bcm->dma_reason[1]);
1870 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA3_REASON,
1871 bcm->dma_reason[2]);
1872 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA4_REASON,
1873 bcm->dma_reason[3]);
1874}
1875
1876/* Interrupt handler top-half */
1877static irqreturn_t bcm43xx_interrupt_handler(int irq, void *dev_id, struct pt_regs *regs)
1878{
Michael Bueschefccb642006-03-11 13:39:14 +01001879 irqreturn_t ret = IRQ_HANDLED;
John W. Linvillef2223132006-01-23 16:59:58 -05001880 struct bcm43xx_private *bcm = dev_id;
Michael Buesch0ac59da2006-03-19 21:43:40 +01001881 u32 reason;
John W. Linvillef2223132006-01-23 16:59:58 -05001882
1883 if (!bcm)
1884 return IRQ_NONE;
1885
Michael Buesch78ff56a2006-06-05 20:24:10 +02001886 spin_lock(&bcm->irq_lock);
John W. Linvillef2223132006-01-23 16:59:58 -05001887
Michael Buescha1d79aa2006-06-17 15:19:05 +02001888 /* Only accept IRQs, if we are initialized properly.
1889 * This avoids an RX race while initializing.
1890 * We should probably not enable IRQs before we are initialized
1891 * completely, but some careful work is needed to fix this. I think it
1892 * is best to stay with this cheap workaround for now... .
1893 */
1894 if (unlikely(bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED))
1895 goto out;
1896
John W. Linvillef2223132006-01-23 16:59:58 -05001897 reason = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
1898 if (reason == 0xffffffff) {
1899 /* irq not for us (shared irq) */
Michael Bueschefccb642006-03-11 13:39:14 +01001900 ret = IRQ_NONE;
1901 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05001902 }
Michael Buesch0ac59da2006-03-19 21:43:40 +01001903 reason &= bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK);
1904 if (!reason)
Michael Bueschefccb642006-03-11 13:39:14 +01001905 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05001906
Michael Buesch0ac59da2006-03-19 21:43:40 +01001907 bcm->dma_reason[0] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA1_REASON)
1908 & 0x0001dc00;
1909 bcm->dma_reason[1] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA2_REASON)
1910 & 0x0000dc00;
1911 bcm->dma_reason[2] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA3_REASON)
1912 & 0x0000dc00;
1913 bcm->dma_reason[3] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA4_REASON)
1914 & 0x0001dc00;
1915
1916 bcm43xx_interrupt_ack(bcm, reason);
John W. Linvillef2223132006-01-23 16:59:58 -05001917
Michael Buescha1d79aa2006-06-17 15:19:05 +02001918 /* disable all IRQs. They are enabled again in the bottom half. */
1919 bcm->irq_savedstate = bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
1920 /* save the reason code and call our bottom half. */
1921 bcm->irq_reason = reason;
1922 tasklet_schedule(&bcm->isr_tasklet);
John W. Linvillef2223132006-01-23 16:59:58 -05001923
Michael Bueschefccb642006-03-11 13:39:14 +01001924out:
1925 mmiowb();
Michael Buesch78ff56a2006-06-05 20:24:10 +02001926 spin_unlock(&bcm->irq_lock);
John W. Linvillef2223132006-01-23 16:59:58 -05001927
Michael Bueschefccb642006-03-11 13:39:14 +01001928 return ret;
John W. Linvillef2223132006-01-23 16:59:58 -05001929}
1930
Michael Buescha4a600d2006-02-01 22:09:52 +01001931static void bcm43xx_release_firmware(struct bcm43xx_private *bcm, int force)
John W. Linvillef2223132006-01-23 16:59:58 -05001932{
Michael Buescha4a600d2006-02-01 22:09:52 +01001933 if (bcm->firmware_norelease && !force)
John W. Linvillef2223132006-01-23 16:59:58 -05001934 return; /* Suspending or controller reset. */
1935 release_firmware(bcm->ucode);
1936 bcm->ucode = NULL;
1937 release_firmware(bcm->pcm);
1938 bcm->pcm = NULL;
1939 release_firmware(bcm->initvals0);
1940 bcm->initvals0 = NULL;
1941 release_firmware(bcm->initvals1);
1942 bcm->initvals1 = NULL;
1943}
1944
1945static int bcm43xx_request_firmware(struct bcm43xx_private *bcm)
1946{
Michael Buesche9357c02006-03-13 19:27:34 +01001947 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05001948 u8 rev = bcm->current_core->rev;
1949 int err = 0;
1950 int nr;
1951 char buf[22 + sizeof(modparam_fwpostfix) - 1] = { 0 };
1952
1953 if (!bcm->ucode) {
1954 snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_microcode%d%s.fw",
1955 (rev >= 5 ? 5 : rev),
1956 modparam_fwpostfix);
1957 err = request_firmware(&bcm->ucode, buf, &bcm->pci_dev->dev);
1958 if (err) {
1959 printk(KERN_ERR PFX
1960 "Error: Microcode \"%s\" not available or load failed.\n",
1961 buf);
1962 goto error;
1963 }
1964 }
1965
1966 if (!bcm->pcm) {
1967 snprintf(buf, ARRAY_SIZE(buf),
1968 "bcm43xx_pcm%d%s.fw",
1969 (rev < 5 ? 4 : 5),
1970 modparam_fwpostfix);
1971 err = request_firmware(&bcm->pcm, buf, &bcm->pci_dev->dev);
1972 if (err) {
1973 printk(KERN_ERR PFX
1974 "Error: PCM \"%s\" not available or load failed.\n",
1975 buf);
1976 goto error;
1977 }
1978 }
1979
1980 if (!bcm->initvals0) {
1981 if (rev == 2 || rev == 4) {
1982 switch (phy->type) {
1983 case BCM43xx_PHYTYPE_A:
1984 nr = 3;
1985 break;
1986 case BCM43xx_PHYTYPE_B:
1987 case BCM43xx_PHYTYPE_G:
1988 nr = 1;
1989 break;
1990 default:
1991 goto err_noinitval;
1992 }
1993
1994 } else if (rev >= 5) {
1995 switch (phy->type) {
1996 case BCM43xx_PHYTYPE_A:
1997 nr = 7;
1998 break;
1999 case BCM43xx_PHYTYPE_B:
2000 case BCM43xx_PHYTYPE_G:
2001 nr = 5;
2002 break;
2003 default:
2004 goto err_noinitval;
2005 }
2006 } else
2007 goto err_noinitval;
2008 snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_initval%02d%s.fw",
2009 nr, modparam_fwpostfix);
2010
2011 err = request_firmware(&bcm->initvals0, buf, &bcm->pci_dev->dev);
2012 if (err) {
2013 printk(KERN_ERR PFX
2014 "Error: InitVals \"%s\" not available or load failed.\n",
2015 buf);
2016 goto error;
2017 }
2018 if (bcm->initvals0->size % sizeof(struct bcm43xx_initval)) {
2019 printk(KERN_ERR PFX "InitVals fileformat error.\n");
2020 goto error;
2021 }
2022 }
2023
2024 if (!bcm->initvals1) {
2025 if (rev >= 5) {
2026 u32 sbtmstatehigh;
2027
2028 switch (phy->type) {
2029 case BCM43xx_PHYTYPE_A:
2030 sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH);
2031 if (sbtmstatehigh & 0x00010000)
2032 nr = 9;
2033 else
2034 nr = 10;
2035 break;
2036 case BCM43xx_PHYTYPE_B:
2037 case BCM43xx_PHYTYPE_G:
2038 nr = 6;
2039 break;
2040 default:
2041 goto err_noinitval;
2042 }
2043 snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_initval%02d%s.fw",
2044 nr, modparam_fwpostfix);
2045
2046 err = request_firmware(&bcm->initvals1, buf, &bcm->pci_dev->dev);
2047 if (err) {
2048 printk(KERN_ERR PFX
2049 "Error: InitVals \"%s\" not available or load failed.\n",
2050 buf);
2051 goto error;
2052 }
2053 if (bcm->initvals1->size % sizeof(struct bcm43xx_initval)) {
2054 printk(KERN_ERR PFX "InitVals fileformat error.\n");
2055 goto error;
2056 }
2057 }
2058 }
2059
2060out:
2061 return err;
2062error:
Michael Buescha4a600d2006-02-01 22:09:52 +01002063 bcm43xx_release_firmware(bcm, 1);
John W. Linvillef2223132006-01-23 16:59:58 -05002064 goto out;
2065err_noinitval:
2066 printk(KERN_ERR PFX "Error: No InitVals available!\n");
2067 err = -ENOENT;
2068 goto error;
2069}
2070
2071static void bcm43xx_upload_microcode(struct bcm43xx_private *bcm)
2072{
2073 const u32 *data;
2074 unsigned int i, len;
2075
John W. Linvillef2223132006-01-23 16:59:58 -05002076 /* Upload Microcode. */
2077 data = (u32 *)(bcm->ucode->data);
2078 len = bcm->ucode->size / sizeof(u32);
2079 bcm43xx_shm_control_word(bcm, BCM43xx_SHM_UCODE, 0x0000);
2080 for (i = 0; i < len; i++) {
2081 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA,
2082 be32_to_cpu(data[i]));
2083 udelay(10);
2084 }
2085
2086 /* Upload PCM data. */
2087 data = (u32 *)(bcm->pcm->data);
2088 len = bcm->pcm->size / sizeof(u32);
2089 bcm43xx_shm_control_word(bcm, BCM43xx_SHM_PCM, 0x01ea);
2090 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA, 0x00004000);
2091 bcm43xx_shm_control_word(bcm, BCM43xx_SHM_PCM, 0x01eb);
2092 for (i = 0; i < len; i++) {
2093 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA,
2094 be32_to_cpu(data[i]));
2095 udelay(10);
2096 }
John W. Linvillef2223132006-01-23 16:59:58 -05002097}
2098
Michael Buescha4a600d2006-02-01 22:09:52 +01002099static int bcm43xx_write_initvals(struct bcm43xx_private *bcm,
2100 const struct bcm43xx_initval *data,
2101 const unsigned int len)
John W. Linvillef2223132006-01-23 16:59:58 -05002102{
2103 u16 offset, size;
2104 u32 value;
2105 unsigned int i;
2106
2107 for (i = 0; i < len; i++) {
2108 offset = be16_to_cpu(data[i].offset);
2109 size = be16_to_cpu(data[i].size);
2110 value = be32_to_cpu(data[i].value);
2111
Michael Buescha4a600d2006-02-01 22:09:52 +01002112 if (unlikely(offset >= 0x1000))
2113 goto err_format;
2114 if (size == 2) {
2115 if (unlikely(value & 0xFFFF0000))
2116 goto err_format;
2117 bcm43xx_write16(bcm, offset, (u16)value);
2118 } else if (size == 4) {
John W. Linvillef2223132006-01-23 16:59:58 -05002119 bcm43xx_write32(bcm, offset, value);
Michael Buescha4a600d2006-02-01 22:09:52 +01002120 } else
2121 goto err_format;
John W. Linvillef2223132006-01-23 16:59:58 -05002122 }
Michael Buescha4a600d2006-02-01 22:09:52 +01002123
2124 return 0;
2125
2126err_format:
2127 printk(KERN_ERR PFX "InitVals (bcm43xx_initvalXX.fw) file-format error. "
2128 "Please fix your bcm43xx firmware files.\n");
2129 return -EPROTO;
John W. Linvillef2223132006-01-23 16:59:58 -05002130}
2131
Michael Buescha4a600d2006-02-01 22:09:52 +01002132static int bcm43xx_upload_initvals(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05002133{
Michael Buescha4a600d2006-02-01 22:09:52 +01002134 int err;
2135
Michael Buescha4a600d2006-02-01 22:09:52 +01002136 err = bcm43xx_write_initvals(bcm, (struct bcm43xx_initval *)bcm->initvals0->data,
2137 bcm->initvals0->size / sizeof(struct bcm43xx_initval));
2138 if (err)
2139 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05002140 if (bcm->initvals1) {
Michael Buescha4a600d2006-02-01 22:09:52 +01002141 err = bcm43xx_write_initvals(bcm, (struct bcm43xx_initval *)bcm->initvals1->data,
2142 bcm->initvals1->size / sizeof(struct bcm43xx_initval));
2143 if (err)
2144 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05002145 }
Michael Buescha4a600d2006-02-01 22:09:52 +01002146out:
Michael Buescha4a600d2006-02-01 22:09:52 +01002147 return err;
John W. Linvillef2223132006-01-23 16:59:58 -05002148}
2149
Jiri Slaby12a37682006-06-05 22:20:07 +02002150#ifdef CONFIG_BCM947XX
2151static struct pci_device_id bcm43xx_47xx_ids[] = {
2152 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4324) },
2153 { 0 }
2154};
2155#endif
2156
John W. Linvillef2223132006-01-23 16:59:58 -05002157static int bcm43xx_initialize_irq(struct bcm43xx_private *bcm)
2158{
2159 int res;
2160 unsigned int i;
2161 u32 data;
2162
2163 bcm->irq = bcm->pci_dev->irq;
2164#ifdef CONFIG_BCM947XX
2165 if (bcm->pci_dev->bus->number == 0) {
Jiri Slaby12a37682006-06-05 22:20:07 +02002166 struct pci_dev *d;
2167 struct pci_device_id *id;
2168 for (id = bcm43xx_47xx_ids; id->vendor; id++) {
2169 d = pci_get_device(id->vendor, id->device, NULL);
2170 if (d != NULL) {
2171 bcm->irq = d->irq;
2172 pci_dev_put(d);
2173 break;
2174 }
John W. Linvillef2223132006-01-23 16:59:58 -05002175 }
2176 }
2177#endif
2178 res = request_irq(bcm->irq, bcm43xx_interrupt_handler,
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07002179 IRQF_SHARED, KBUILD_MODNAME, bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05002180 if (res) {
2181 printk(KERN_ERR PFX "Cannot register IRQ%d\n", bcm->irq);
Michael Buesch489423c2006-02-13 00:11:07 +01002182 return -ENODEV;
John W. Linvillef2223132006-01-23 16:59:58 -05002183 }
2184 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, 0xffffffff);
2185 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, 0x00020402);
2186 i = 0;
2187 while (1) {
2188 data = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
2189 if (data == BCM43xx_IRQ_READY)
2190 break;
2191 i++;
2192 if (i >= BCM43xx_IRQWAIT_MAX_RETRIES) {
2193 printk(KERN_ERR PFX "Card IRQ register not responding. "
2194 "Giving up.\n");
2195 free_irq(bcm->irq, bcm);
2196 return -ENODEV;
2197 }
2198 udelay(10);
2199 }
2200 // dummy read
2201 bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
2202
2203 return 0;
2204}
2205
2206/* Switch to the core used to write the GPIO register.
2207 * This is either the ChipCommon, or the PCI core.
2208 */
Michael Buesch489423c2006-02-13 00:11:07 +01002209static int switch_to_gpio_core(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05002210{
2211 int err;
2212
2213 /* Where to find the GPIO register depends on the chipset.
2214 * If it has a ChipCommon, its register at offset 0x6c is the GPIO
2215 * control register. Otherwise the register at offset 0x6c in the
2216 * PCI core is the GPIO control register.
2217 */
2218 err = bcm43xx_switch_core(bcm, &bcm->core_chipcommon);
2219 if (err == -ENODEV) {
2220 err = bcm43xx_switch_core(bcm, &bcm->core_pci);
Michael Buesch489423c2006-02-13 00:11:07 +01002221 if (unlikely(err == -ENODEV)) {
John W. Linvillef2223132006-01-23 16:59:58 -05002222 printk(KERN_ERR PFX "gpio error: "
2223 "Neither ChipCommon nor PCI core available!\n");
Michael Buesch714eece2006-03-18 21:28:46 +01002224 }
2225 }
John W. Linvillef2223132006-01-23 16:59:58 -05002226
Michael Buesch714eece2006-03-18 21:28:46 +01002227 return err;
John W. Linvillef2223132006-01-23 16:59:58 -05002228}
2229
2230/* Initialize the GPIOs
2231 * http://bcm-specs.sipsolutions.net/GPIO
2232 */
2233static int bcm43xx_gpio_init(struct bcm43xx_private *bcm)
2234{
2235 struct bcm43xx_coreinfo *old_core;
2236 int err;
Michael Buesch714eece2006-03-18 21:28:46 +01002237 u32 mask, set;
John W. Linvillef2223132006-01-23 16:59:58 -05002238
Michael Buesch714eece2006-03-18 21:28:46 +01002239 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
2240 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
2241 & 0xFFFF3FFF);
John W. Linvillef2223132006-01-23 16:59:58 -05002242
Michael Buesch714eece2006-03-18 21:28:46 +01002243 bcm43xx_leds_switch_all(bcm, 0);
John W. Linvillef2223132006-01-23 16:59:58 -05002244 bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_MASK,
2245 bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_MASK) | 0x000F);
2246
Michael Buesch714eece2006-03-18 21:28:46 +01002247 mask = 0x0000001F;
2248 set = 0x0000000F;
John W. Linvillef2223132006-01-23 16:59:58 -05002249 if (bcm->chip_id == 0x4301) {
Michael Buesch714eece2006-03-18 21:28:46 +01002250 mask |= 0x0060;
2251 set |= 0x0060;
2252 }
2253 if (0 /* FIXME: conditional unknown */) {
2254 bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_MASK,
2255 bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_MASK)
2256 | 0x0100);
2257 mask |= 0x0180;
2258 set |= 0x0180;
John W. Linvillef2223132006-01-23 16:59:58 -05002259 }
2260 if (bcm->sprom.boardflags & BCM43xx_BFL_PACTRL) {
Michael Buesch714eece2006-03-18 21:28:46 +01002261 bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_MASK,
2262 bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_MASK)
2263 | 0x0200);
2264 mask |= 0x0200;
2265 set |= 0x0200;
John W. Linvillef2223132006-01-23 16:59:58 -05002266 }
Michael Buesch714eece2006-03-18 21:28:46 +01002267 if (bcm->current_core->rev >= 2)
2268 mask |= 0x0010; /* FIXME: This is redundant. */
John W. Linvillef2223132006-01-23 16:59:58 -05002269
Michael Buesch714eece2006-03-18 21:28:46 +01002270 old_core = bcm->current_core;
2271 err = switch_to_gpio_core(bcm);
2272 if (err)
2273 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05002274 bcm43xx_write32(bcm, BCM43xx_GPIO_CONTROL,
Michael Buesch714eece2006-03-18 21:28:46 +01002275 (bcm43xx_read32(bcm, BCM43xx_GPIO_CONTROL) & mask) | set);
John W. Linvillef2223132006-01-23 16:59:58 -05002276 err = bcm43xx_switch_core(bcm, old_core);
Michael Buesch714eece2006-03-18 21:28:46 +01002277out:
2278 return err;
John W. Linvillef2223132006-01-23 16:59:58 -05002279}
2280
2281/* Turn off all GPIO stuff. Call this on module unload, for example. */
2282static int bcm43xx_gpio_cleanup(struct bcm43xx_private *bcm)
2283{
2284 struct bcm43xx_coreinfo *old_core;
2285 int err;
2286
2287 old_core = bcm->current_core;
2288 err = switch_to_gpio_core(bcm);
2289 if (err)
2290 return err;
2291 bcm43xx_write32(bcm, BCM43xx_GPIO_CONTROL, 0x00000000);
2292 err = bcm43xx_switch_core(bcm, old_core);
2293 assert(err == 0);
2294
2295 return 0;
2296}
2297
2298/* http://bcm-specs.sipsolutions.net/EnableMac */
2299void bcm43xx_mac_enable(struct bcm43xx_private *bcm)
2300{
2301 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
2302 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
2303 | BCM43xx_SBF_MAC_ENABLED);
2304 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, BCM43xx_IRQ_READY);
2305 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); /* dummy read */
2306 bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); /* dummy read */
2307 bcm43xx_power_saving_ctl_bits(bcm, -1, -1);
2308}
2309
2310/* http://bcm-specs.sipsolutions.net/SuspendMAC */
2311void bcm43xx_mac_suspend(struct bcm43xx_private *bcm)
2312{
2313 int i;
2314 u32 tmp;
2315
2316 bcm43xx_power_saving_ctl_bits(bcm, -1, 1);
2317 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
2318 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
2319 & ~BCM43xx_SBF_MAC_ENABLED);
2320 bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); /* dummy read */
Michael Buesch921e4852006-02-08 17:55:55 +01002321 for (i = 100000; i; i--) {
John W. Linvillef2223132006-01-23 16:59:58 -05002322 tmp = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
Michael Buesch921e4852006-02-08 17:55:55 +01002323 if (tmp & BCM43xx_IRQ_READY)
2324 return;
John W. Linvillef2223132006-01-23 16:59:58 -05002325 udelay(10);
2326 }
Michael Buesch921e4852006-02-08 17:55:55 +01002327 printkl(KERN_ERR PFX "MAC suspend failed\n");
John W. Linvillef2223132006-01-23 16:59:58 -05002328}
2329
2330void bcm43xx_set_iwmode(struct bcm43xx_private *bcm,
2331 int iw_mode)
2332{
2333 unsigned long flags;
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002334 struct net_device *net_dev = bcm->net_dev;
John W. Linvillef2223132006-01-23 16:59:58 -05002335 u32 status;
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002336 u16 value;
John W. Linvillef2223132006-01-23 16:59:58 -05002337
2338 spin_lock_irqsave(&bcm->ieee->lock, flags);
2339 bcm->ieee->iw_mode = iw_mode;
2340 spin_unlock_irqrestore(&bcm->ieee->lock, flags);
2341 if (iw_mode == IW_MODE_MONITOR)
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002342 net_dev->type = ARPHRD_IEEE80211;
John W. Linvillef2223132006-01-23 16:59:58 -05002343 else
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002344 net_dev->type = ARPHRD_ETHER;
John W. Linvillef2223132006-01-23 16:59:58 -05002345
John W. Linvillef2223132006-01-23 16:59:58 -05002346 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2347 /* Reset status to infrastructured mode */
2348 status &= ~(BCM43xx_SBF_MODE_AP | BCM43xx_SBF_MODE_MONITOR);
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002349 status &= ~BCM43xx_SBF_MODE_PROMISC;
2350 status |= BCM43xx_SBF_MODE_NOTADHOC;
2351
2352/* FIXME: Always enable promisc mode, until we get the MAC filters working correctly. */
2353status |= BCM43xx_SBF_MODE_PROMISC;
John W. Linvillef2223132006-01-23 16:59:58 -05002354
2355 switch (iw_mode) {
2356 case IW_MODE_MONITOR:
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002357 status |= BCM43xx_SBF_MODE_MONITOR;
2358 status |= BCM43xx_SBF_MODE_PROMISC;
John W. Linvillef2223132006-01-23 16:59:58 -05002359 break;
2360 case IW_MODE_ADHOC:
2361 status &= ~BCM43xx_SBF_MODE_NOTADHOC;
2362 break;
2363 case IW_MODE_MASTER:
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002364 status |= BCM43xx_SBF_MODE_AP;
2365 break;
John W. Linvillef2223132006-01-23 16:59:58 -05002366 case IW_MODE_SECOND:
2367 case IW_MODE_REPEAT:
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002368 TODO(); /* TODO */
John W. Linvillef2223132006-01-23 16:59:58 -05002369 break;
2370 case IW_MODE_INFRA:
2371 /* nothing to be done here... */
2372 break;
2373 default:
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002374 dprintk(KERN_ERR PFX "Unknown mode in set_iwmode: %d\n", iw_mode);
John W. Linvillef2223132006-01-23 16:59:58 -05002375 }
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002376 if (net_dev->flags & IFF_PROMISC)
2377 status |= BCM43xx_SBF_MODE_PROMISC;
John W. Linvillef2223132006-01-23 16:59:58 -05002378 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, status);
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002379
2380 value = 0x0002;
2381 if (iw_mode != IW_MODE_ADHOC && iw_mode != IW_MODE_MASTER) {
2382 if (bcm->chip_id == 0x4306 && bcm->chip_rev == 3)
2383 value = 0x0064;
2384 else
2385 value = 0x0032;
2386 }
2387 bcm43xx_write16(bcm, 0x0612, value);
John W. Linvillef2223132006-01-23 16:59:58 -05002388}
2389
2390/* This is the opposite of bcm43xx_chip_init() */
2391static void bcm43xx_chip_cleanup(struct bcm43xx_private *bcm)
2392{
2393 bcm43xx_radio_turn_off(bcm);
2394 if (!modparam_noleds)
2395 bcm43xx_leds_exit(bcm);
2396 bcm43xx_gpio_cleanup(bcm);
2397 free_irq(bcm->irq, bcm);
Michael Buescha4a600d2006-02-01 22:09:52 +01002398 bcm43xx_release_firmware(bcm, 0);
John W. Linvillef2223132006-01-23 16:59:58 -05002399}
2400
2401/* Initialize the chip
2402 * http://bcm-specs.sipsolutions.net/ChipInit
2403 */
2404static int bcm43xx_chip_init(struct bcm43xx_private *bcm)
2405{
Michael Buesche9357c02006-03-13 19:27:34 +01002406 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
2407 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05002408 int err;
John W. Linvillef2223132006-01-23 16:59:58 -05002409 int tmp;
2410 u32 value32;
2411 u16 value16;
2412
2413 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
2414 BCM43xx_SBF_CORE_READY
2415 | BCM43xx_SBF_400);
2416
2417 err = bcm43xx_request_firmware(bcm);
2418 if (err)
2419 goto out;
2420 bcm43xx_upload_microcode(bcm);
2421
2422 err = bcm43xx_initialize_irq(bcm);
2423 if (err)
Michael Buescha4a600d2006-02-01 22:09:52 +01002424 goto err_release_fw;
John W. Linvillef2223132006-01-23 16:59:58 -05002425
2426 err = bcm43xx_gpio_init(bcm);
2427 if (err)
2428 goto err_free_irq;
2429
Michael Buescha4a600d2006-02-01 22:09:52 +01002430 err = bcm43xx_upload_initvals(bcm);
2431 if (err)
2432 goto err_gpio_cleanup;
John W. Linvillef2223132006-01-23 16:59:58 -05002433 bcm43xx_radio_turn_on(bcm);
2434
John W. Linvillef2223132006-01-23 16:59:58 -05002435 bcm43xx_write16(bcm, 0x03E6, 0x0000);
2436 err = bcm43xx_phy_init(bcm);
2437 if (err)
2438 goto err_radio_off;
2439
2440 /* Select initial Interference Mitigation. */
Michael Buesche9357c02006-03-13 19:27:34 +01002441 tmp = radio->interfmode;
2442 radio->interfmode = BCM43xx_RADIO_INTERFMODE_NONE;
John W. Linvillef2223132006-01-23 16:59:58 -05002443 bcm43xx_radio_set_interference_mitigation(bcm, tmp);
2444
2445 bcm43xx_phy_set_antenna_diversity(bcm);
2446 bcm43xx_radio_set_txantenna(bcm, BCM43xx_RADIO_TXANTENNA_DEFAULT);
Michael Buesche9357c02006-03-13 19:27:34 +01002447 if (phy->type == BCM43xx_PHYTYPE_B) {
John W. Linvillef2223132006-01-23 16:59:58 -05002448 value16 = bcm43xx_read16(bcm, 0x005E);
2449 value16 |= 0x0004;
2450 bcm43xx_write16(bcm, 0x005E, value16);
2451 }
2452 bcm43xx_write32(bcm, 0x0100, 0x01000000);
2453 if (bcm->current_core->rev < 5)
2454 bcm43xx_write32(bcm, 0x010C, 0x01000000);
2455
2456 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2457 value32 &= ~ BCM43xx_SBF_MODE_NOTADHOC;
2458 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32);
2459 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2460 value32 |= BCM43xx_SBF_MODE_NOTADHOC;
2461 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32);
John W. Linvillef2223132006-01-23 16:59:58 -05002462
John W. Linvillef2223132006-01-23 16:59:58 -05002463 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002464 value32 |= 0x100000;
John W. Linvillef2223132006-01-23 16:59:58 -05002465 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32);
2466
Michael Buesch77db31e2006-02-12 16:47:44 +01002467 if (bcm43xx_using_pio(bcm)) {
John W. Linvillef2223132006-01-23 16:59:58 -05002468 bcm43xx_write32(bcm, 0x0210, 0x00000100);
2469 bcm43xx_write32(bcm, 0x0230, 0x00000100);
2470 bcm43xx_write32(bcm, 0x0250, 0x00000100);
2471 bcm43xx_write32(bcm, 0x0270, 0x00000100);
2472 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0034, 0x0000);
2473 }
2474
2475 /* Probe Response Timeout value */
2476 /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
2477 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0074, 0x0000);
2478
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002479 /* Initially set the wireless operation mode. */
2480 bcm43xx_set_iwmode(bcm, bcm->ieee->iw_mode);
John W. Linvillef2223132006-01-23 16:59:58 -05002481
2482 if (bcm->current_core->rev < 3) {
2483 bcm43xx_write16(bcm, 0x060E, 0x0000);
2484 bcm43xx_write16(bcm, 0x0610, 0x8000);
2485 bcm43xx_write16(bcm, 0x0604, 0x0000);
2486 bcm43xx_write16(bcm, 0x0606, 0x0200);
2487 } else {
2488 bcm43xx_write32(bcm, 0x0188, 0x80000000);
2489 bcm43xx_write32(bcm, 0x018C, 0x02000000);
2490 }
2491 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, 0x00004000);
2492 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA1_IRQ_MASK, 0x0001DC00);
2493 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA2_IRQ_MASK, 0x0000DC00);
2494 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA3_IRQ_MASK, 0x0000DC00);
2495 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA4_IRQ_MASK, 0x0001DC00);
2496
2497 value32 = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
2498 value32 |= 0x00100000;
2499 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, value32);
2500
2501 bcm43xx_write16(bcm, BCM43xx_MMIO_POWERUP_DELAY, bcm43xx_pctl_powerup_delay(bcm));
2502
2503 assert(err == 0);
2504 dprintk(KERN_INFO PFX "Chip initialized\n");
2505out:
2506 return err;
2507
2508err_radio_off:
2509 bcm43xx_radio_turn_off(bcm);
Michael Buescha4a600d2006-02-01 22:09:52 +01002510err_gpio_cleanup:
John W. Linvillef2223132006-01-23 16:59:58 -05002511 bcm43xx_gpio_cleanup(bcm);
2512err_free_irq:
2513 free_irq(bcm->irq, bcm);
Michael Buescha4a600d2006-02-01 22:09:52 +01002514err_release_fw:
2515 bcm43xx_release_firmware(bcm, 1);
John W. Linvillef2223132006-01-23 16:59:58 -05002516 goto out;
2517}
2518
2519/* Validate chip access
2520 * http://bcm-specs.sipsolutions.net/ValidateChipAccess */
2521static int bcm43xx_validate_chip(struct bcm43xx_private *bcm)
2522{
John W. Linvillef2223132006-01-23 16:59:58 -05002523 u32 value;
2524 u32 shm_backup;
2525
2526 shm_backup = bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000);
2527 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, 0xAA5555AA);
Michael Buesch489423c2006-02-13 00:11:07 +01002528 if (bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000) != 0xAA5555AA)
2529 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002530 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, 0x55AAAA55);
Michael Buesch489423c2006-02-13 00:11:07 +01002531 if (bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000) != 0x55AAAA55)
2532 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002533 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, shm_backup);
2534
2535 value = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
Michael Buesch489423c2006-02-13 00:11:07 +01002536 if ((value | 0x80000000) != 0x80000400)
2537 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002538
2539 value = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
Michael Buesch489423c2006-02-13 00:11:07 +01002540 if (value != 0x00000000)
2541 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002542
Michael Buesch489423c2006-02-13 00:11:07 +01002543 return 0;
2544error:
2545 printk(KERN_ERR PFX "Failed to validate the chipaccess\n");
2546 return -ENODEV;
John W. Linvillef2223132006-01-23 16:59:58 -05002547}
2548
Michael Buesch8afceb12006-03-25 17:04:41 +01002549static void bcm43xx_init_struct_phyinfo(struct bcm43xx_phyinfo *phy)
Michael Buesche9357c02006-03-13 19:27:34 +01002550{
2551 /* Initialize a "phyinfo" structure. The structure is already
2552 * zeroed out.
2553 */
2554 phy->antenna_diversity = 0xFFFF;
2555 phy->savedpctlreg = 0xFFFF;
2556 phy->minlowsig[0] = 0xFFFF;
2557 phy->minlowsig[1] = 0xFFFF;
2558 spin_lock_init(&phy->lock);
2559}
2560
Michael Buesch8afceb12006-03-25 17:04:41 +01002561static void bcm43xx_init_struct_radioinfo(struct bcm43xx_radioinfo *radio)
Michael Buesche9357c02006-03-13 19:27:34 +01002562{
2563 /* Initialize a "radioinfo" structure. The structure is already
2564 * zeroed out.
2565 */
2566 radio->interfmode = BCM43xx_RADIO_INTERFMODE_NONE;
2567 radio->channel = 0xFF;
2568 radio->initial_channel = 0xFF;
2569 radio->lofcal = 0xFFFF;
2570 radio->initval = 0xFFFF;
2571 radio->nrssi[0] = -1000;
2572 radio->nrssi[1] = -1000;
2573}
2574
John W. Linvillef2223132006-01-23 16:59:58 -05002575static int bcm43xx_probe_cores(struct bcm43xx_private *bcm)
2576{
2577 int err, i;
2578 int current_core;
2579 u32 core_vendor, core_id, core_rev;
2580 u32 sb_id_hi, chip_id_32 = 0;
2581 u16 pci_device, chip_id_16;
2582 u8 core_count;
2583
2584 memset(&bcm->core_chipcommon, 0, sizeof(struct bcm43xx_coreinfo));
2585 memset(&bcm->core_pci, 0, sizeof(struct bcm43xx_coreinfo));
John W. Linvillef2223132006-01-23 16:59:58 -05002586 memset(&bcm->core_80211, 0, sizeof(struct bcm43xx_coreinfo)
2587 * BCM43xx_MAX_80211_CORES);
Michael Buesche9357c02006-03-13 19:27:34 +01002588 memset(&bcm->core_80211_ext, 0, sizeof(struct bcm43xx_coreinfo_80211)
2589 * BCM43xx_MAX_80211_CORES);
2590 bcm->current_80211_core_idx = -1;
2591 bcm->nr_80211_available = 0;
2592 bcm->current_core = NULL;
2593 bcm->active_80211_core = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -05002594
2595 /* map core 0 */
2596 err = _switch_core(bcm, 0);
2597 if (err)
2598 goto out;
2599
2600 /* fetch sb_id_hi from core information registers */
2601 sb_id_hi = bcm43xx_read32(bcm, BCM43xx_CIR_SB_ID_HI);
2602
2603 core_id = (sb_id_hi & 0xFFF0) >> 4;
2604 core_rev = (sb_id_hi & 0xF);
2605 core_vendor = (sb_id_hi & 0xFFFF0000) >> 16;
2606
2607 /* if present, chipcommon is always core 0; read the chipid from it */
2608 if (core_id == BCM43xx_COREID_CHIPCOMMON) {
2609 chip_id_32 = bcm43xx_read32(bcm, 0);
2610 chip_id_16 = chip_id_32 & 0xFFFF;
Michael Buesche9357c02006-03-13 19:27:34 +01002611 bcm->core_chipcommon.available = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05002612 bcm->core_chipcommon.id = core_id;
2613 bcm->core_chipcommon.rev = core_rev;
2614 bcm->core_chipcommon.index = 0;
2615 /* While we are at it, also read the capabilities. */
2616 bcm->chipcommon_capabilities = bcm43xx_read32(bcm, BCM43xx_CHIPCOMMON_CAPABILITIES);
2617 } else {
2618 /* without a chipCommon, use a hard coded table. */
2619 pci_device = bcm->pci_dev->device;
2620 if (pci_device == 0x4301)
2621 chip_id_16 = 0x4301;
2622 else if ((pci_device >= 0x4305) && (pci_device <= 0x4307))
2623 chip_id_16 = 0x4307;
2624 else if ((pci_device >= 0x4402) && (pci_device <= 0x4403))
2625 chip_id_16 = 0x4402;
2626 else if ((pci_device >= 0x4610) && (pci_device <= 0x4615))
2627 chip_id_16 = 0x4610;
2628 else if ((pci_device >= 0x4710) && (pci_device <= 0x4715))
2629 chip_id_16 = 0x4710;
2630#ifdef CONFIG_BCM947XX
2631 else if ((pci_device >= 0x4320) && (pci_device <= 0x4325))
2632 chip_id_16 = 0x4309;
2633#endif
2634 else {
2635 printk(KERN_ERR PFX "Could not determine Chip ID\n");
2636 return -ENODEV;
2637 }
2638 }
2639
2640 /* ChipCommon with Core Rev >=4 encodes number of cores,
2641 * otherwise consult hardcoded table */
2642 if ((core_id == BCM43xx_COREID_CHIPCOMMON) && (core_rev >= 4)) {
2643 core_count = (chip_id_32 & 0x0F000000) >> 24;
2644 } else {
2645 switch (chip_id_16) {
2646 case 0x4610:
2647 case 0x4704:
2648 case 0x4710:
2649 core_count = 9;
2650 break;
2651 case 0x4310:
2652 core_count = 8;
2653 break;
2654 case 0x5365:
2655 core_count = 7;
2656 break;
2657 case 0x4306:
2658 core_count = 6;
2659 break;
2660 case 0x4301:
2661 case 0x4307:
2662 core_count = 5;
2663 break;
2664 case 0x4402:
2665 core_count = 3;
2666 break;
2667 default:
2668 /* SOL if we get here */
2669 assert(0);
2670 core_count = 1;
2671 }
2672 }
2673
2674 bcm->chip_id = chip_id_16;
Michael Bueschadc40e92006-03-25 20:36:57 +01002675 bcm->chip_rev = (chip_id_32 & 0x000F0000) >> 16;
2676 bcm->chip_package = (chip_id_32 & 0x00F00000) >> 20;
John W. Linvillef2223132006-01-23 16:59:58 -05002677
2678 dprintk(KERN_INFO PFX "Chip ID 0x%x, rev 0x%x\n",
2679 bcm->chip_id, bcm->chip_rev);
2680 dprintk(KERN_INFO PFX "Number of cores: %d\n", core_count);
Michael Buesche9357c02006-03-13 19:27:34 +01002681 if (bcm->core_chipcommon.available) {
John W. Linvillef2223132006-01-23 16:59:58 -05002682 dprintk(KERN_INFO PFX "Core 0: ID 0x%x, rev 0x%x, vendor 0x%x, %s\n",
2683 core_id, core_rev, core_vendor,
2684 bcm43xx_core_enabled(bcm) ? "enabled" : "disabled");
2685 }
2686
Michael Buesche9357c02006-03-13 19:27:34 +01002687 if (bcm->core_chipcommon.available)
John W. Linvillef2223132006-01-23 16:59:58 -05002688 current_core = 1;
2689 else
2690 current_core = 0;
2691 for ( ; current_core < core_count; current_core++) {
2692 struct bcm43xx_coreinfo *core;
Michael Buesche9357c02006-03-13 19:27:34 +01002693 struct bcm43xx_coreinfo_80211 *ext_80211;
John W. Linvillef2223132006-01-23 16:59:58 -05002694
2695 err = _switch_core(bcm, current_core);
2696 if (err)
2697 goto out;
2698 /* Gather information */
2699 /* fetch sb_id_hi from core information registers */
2700 sb_id_hi = bcm43xx_read32(bcm, BCM43xx_CIR_SB_ID_HI);
2701
2702 /* extract core_id, core_rev, core_vendor */
2703 core_id = (sb_id_hi & 0xFFF0) >> 4;
2704 core_rev = (sb_id_hi & 0xF);
2705 core_vendor = (sb_id_hi & 0xFFFF0000) >> 16;
2706
2707 dprintk(KERN_INFO PFX "Core %d: ID 0x%x, rev 0x%x, vendor 0x%x, %s\n",
2708 current_core, core_id, core_rev, core_vendor,
2709 bcm43xx_core_enabled(bcm) ? "enabled" : "disabled" );
2710
2711 core = NULL;
2712 switch (core_id) {
2713 case BCM43xx_COREID_PCI:
2714 core = &bcm->core_pci;
Michael Buesche9357c02006-03-13 19:27:34 +01002715 if (core->available) {
John W. Linvillef2223132006-01-23 16:59:58 -05002716 printk(KERN_WARNING PFX "Multiple PCI cores found.\n");
2717 continue;
2718 }
2719 break;
John W. Linvillef2223132006-01-23 16:59:58 -05002720 case BCM43xx_COREID_80211:
2721 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
2722 core = &(bcm->core_80211[i]);
Michael Buesche9357c02006-03-13 19:27:34 +01002723 ext_80211 = &(bcm->core_80211_ext[i]);
2724 if (!core->available)
John W. Linvillef2223132006-01-23 16:59:58 -05002725 break;
2726 core = NULL;
2727 }
2728 if (!core) {
2729 printk(KERN_WARNING PFX "More than %d cores of type 802.11 found.\n",
2730 BCM43xx_MAX_80211_CORES);
2731 continue;
2732 }
2733 if (i != 0) {
2734 /* More than one 80211 core is only supported
2735 * by special chips.
2736 * There are chips with two 80211 cores, but with
2737 * dangling pins on the second core. Be careful
2738 * and ignore these cores here.
2739 */
2740 if (bcm->pci_dev->device != 0x4324) {
2741 dprintk(KERN_INFO PFX "Ignoring additional 802.11 core.\n");
2742 continue;
2743 }
2744 }
2745 switch (core_rev) {
2746 case 2:
2747 case 4:
2748 case 5:
2749 case 6:
2750 case 7:
2751 case 9:
2752 break;
2753 default:
2754 printk(KERN_ERR PFX "Error: Unsupported 80211 core revision %u\n",
2755 core_rev);
2756 err = -ENODEV;
2757 goto out;
2758 }
Michael Buesche9357c02006-03-13 19:27:34 +01002759 bcm->nr_80211_available++;
2760 bcm43xx_init_struct_phyinfo(&ext_80211->phy);
2761 bcm43xx_init_struct_radioinfo(&ext_80211->radio);
John W. Linvillef2223132006-01-23 16:59:58 -05002762 break;
2763 case BCM43xx_COREID_CHIPCOMMON:
2764 printk(KERN_WARNING PFX "Multiple CHIPCOMMON cores found.\n");
2765 break;
John W. Linvillef2223132006-01-23 16:59:58 -05002766 }
2767 if (core) {
Michael Buesche9357c02006-03-13 19:27:34 +01002768 core->available = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05002769 core->id = core_id;
2770 core->rev = core_rev;
2771 core->index = current_core;
2772 }
2773 }
2774
Michael Buesche9357c02006-03-13 19:27:34 +01002775 if (!bcm->core_80211[0].available) {
John W. Linvillef2223132006-01-23 16:59:58 -05002776 printk(KERN_ERR PFX "Error: No 80211 core found!\n");
2777 err = -ENODEV;
2778 goto out;
2779 }
2780
2781 err = bcm43xx_switch_core(bcm, &bcm->core_80211[0]);
2782
2783 assert(err == 0);
2784out:
2785 return err;
2786}
2787
2788static void bcm43xx_gen_bssid(struct bcm43xx_private *bcm)
2789{
2790 const u8 *mac = (const u8*)(bcm->net_dev->dev_addr);
2791 u8 *bssid = bcm->ieee->bssid;
2792
2793 switch (bcm->ieee->iw_mode) {
2794 case IW_MODE_ADHOC:
2795 random_ether_addr(bssid);
2796 break;
2797 case IW_MODE_MASTER:
2798 case IW_MODE_INFRA:
2799 case IW_MODE_REPEAT:
2800 case IW_MODE_SECOND:
2801 case IW_MODE_MONITOR:
2802 memcpy(bssid, mac, ETH_ALEN);
2803 break;
2804 default:
2805 assert(0);
2806 }
2807}
2808
2809static void bcm43xx_rate_memory_write(struct bcm43xx_private *bcm,
2810 u16 rate,
2811 int is_ofdm)
2812{
2813 u16 offset;
2814
2815 if (is_ofdm) {
2816 offset = 0x480;
2817 offset += (bcm43xx_plcp_get_ratecode_ofdm(rate) & 0x000F) * 2;
2818 }
2819 else {
2820 offset = 0x4C0;
2821 offset += (bcm43xx_plcp_get_ratecode_cck(rate) & 0x000F) * 2;
2822 }
2823 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, offset + 0x20,
2824 bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, offset));
2825}
2826
2827static void bcm43xx_rate_memory_init(struct bcm43xx_private *bcm)
2828{
Michael Buesche9357c02006-03-13 19:27:34 +01002829 switch (bcm43xx_current_phy(bcm)->type) {
John W. Linvillef2223132006-01-23 16:59:58 -05002830 case BCM43xx_PHYTYPE_A:
2831 case BCM43xx_PHYTYPE_G:
2832 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_6MB, 1);
2833 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_12MB, 1);
2834 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_18MB, 1);
2835 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_24MB, 1);
2836 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_36MB, 1);
2837 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_48MB, 1);
2838 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_54MB, 1);
2839 case BCM43xx_PHYTYPE_B:
2840 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_1MB, 0);
2841 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_2MB, 0);
2842 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_5MB, 0);
2843 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_11MB, 0);
2844 break;
2845 default:
2846 assert(0);
2847 }
2848}
2849
2850static void bcm43xx_wireless_core_cleanup(struct bcm43xx_private *bcm)
2851{
2852 bcm43xx_chip_cleanup(bcm);
2853 bcm43xx_pio_free(bcm);
2854 bcm43xx_dma_free(bcm);
2855
Michael Buesche9357c02006-03-13 19:27:34 +01002856 bcm->current_core->initialized = 0;
John W. Linvillef2223132006-01-23 16:59:58 -05002857}
2858
2859/* http://bcm-specs.sipsolutions.net/80211Init */
2860static int bcm43xx_wireless_core_init(struct bcm43xx_private *bcm)
2861{
Michael Buesche9357c02006-03-13 19:27:34 +01002862 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
2863 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05002864 u32 ucodeflags;
2865 int err;
2866 u32 sbimconfiglow;
2867 u8 limit;
2868
2869 if (bcm->chip_rev < 5) {
2870 sbimconfiglow = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMCONFIGLOW);
2871 sbimconfiglow &= ~ BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_MASK;
2872 sbimconfiglow &= ~ BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_MASK;
2873 if (bcm->bustype == BCM43xx_BUSTYPE_PCI)
2874 sbimconfiglow |= 0x32;
2875 else if (bcm->bustype == BCM43xx_BUSTYPE_SB)
2876 sbimconfiglow |= 0x53;
2877 else
2878 assert(0);
2879 bcm43xx_write32(bcm, BCM43xx_CIR_SBIMCONFIGLOW, sbimconfiglow);
2880 }
2881
2882 bcm43xx_phy_calibrate(bcm);
2883 err = bcm43xx_chip_init(bcm);
2884 if (err)
2885 goto out;
2886
2887 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0016, bcm->current_core->rev);
2888 ucodeflags = bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, BCM43xx_UCODEFLAGS_OFFSET);
2889
2890 if (0 /*FIXME: which condition has to be used here? */)
2891 ucodeflags |= 0x00000010;
2892
2893 /* HW decryption needs to be set now */
2894 ucodeflags |= 0x40000000;
2895
Michael Buesche9357c02006-03-13 19:27:34 +01002896 if (phy->type == BCM43xx_PHYTYPE_G) {
John W. Linvillef2223132006-01-23 16:59:58 -05002897 ucodeflags |= BCM43xx_UCODEFLAG_UNKBGPHY;
Michael Buesche9357c02006-03-13 19:27:34 +01002898 if (phy->rev == 1)
John W. Linvillef2223132006-01-23 16:59:58 -05002899 ucodeflags |= BCM43xx_UCODEFLAG_UNKGPHY;
2900 if (bcm->sprom.boardflags & BCM43xx_BFL_PACTRL)
2901 ucodeflags |= BCM43xx_UCODEFLAG_UNKPACTRL;
Michael Buesche9357c02006-03-13 19:27:34 +01002902 } else if (phy->type == BCM43xx_PHYTYPE_B) {
John W. Linvillef2223132006-01-23 16:59:58 -05002903 ucodeflags |= BCM43xx_UCODEFLAG_UNKBGPHY;
Michael Buesche9357c02006-03-13 19:27:34 +01002904 if (phy->rev >= 2 && radio->version == 0x2050)
John W. Linvillef2223132006-01-23 16:59:58 -05002905 ucodeflags &= ~BCM43xx_UCODEFLAG_UNKGPHY;
2906 }
2907
2908 if (ucodeflags != bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED,
2909 BCM43xx_UCODEFLAGS_OFFSET)) {
2910 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED,
2911 BCM43xx_UCODEFLAGS_OFFSET, ucodeflags);
2912 }
2913
2914 /* Short/Long Retry Limit.
2915 * The retry-limit is a 4-bit counter. Enforce this to avoid overflowing
2916 * the chip-internal counter.
2917 */
2918 limit = limit_value(modparam_short_retry, 0, 0xF);
2919 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0006, limit);
2920 limit = limit_value(modparam_long_retry, 0, 0xF);
2921 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0007, limit);
2922
2923 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0044, 3);
2924 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0046, 2);
2925
2926 bcm43xx_rate_memory_init(bcm);
2927
2928 /* Minimum Contention Window */
Michael Buesche9357c02006-03-13 19:27:34 +01002929 if (phy->type == BCM43xx_PHYTYPE_B)
John W. Linvillef2223132006-01-23 16:59:58 -05002930 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0003, 0x0000001f);
2931 else
2932 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0003, 0x0000000f);
2933 /* Maximum Contention Window */
2934 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0004, 0x000003ff);
2935
2936 bcm43xx_gen_bssid(bcm);
2937 bcm43xx_write_mac_bssid_templates(bcm);
2938
2939 if (bcm->current_core->rev >= 5)
2940 bcm43xx_write16(bcm, 0x043C, 0x000C);
2941
Michael Buesch77db31e2006-02-12 16:47:44 +01002942 if (bcm43xx_using_pio(bcm))
John W. Linvillef2223132006-01-23 16:59:58 -05002943 err = bcm43xx_pio_init(bcm);
Michael Buesch77db31e2006-02-12 16:47:44 +01002944 else
2945 err = bcm43xx_dma_init(bcm);
2946 if (err)
2947 goto err_chip_cleanup;
John W. Linvillef2223132006-01-23 16:59:58 -05002948 bcm43xx_write16(bcm, 0x0612, 0x0050);
2949 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0416, 0x0050);
2950 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0414, 0x01F4);
2951
2952 bcm43xx_mac_enable(bcm);
2953 bcm43xx_interrupt_enable(bcm, bcm->irq_savedstate);
2954
Michael Buesche9357c02006-03-13 19:27:34 +01002955 bcm->current_core->initialized = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05002956out:
2957 return err;
2958
2959err_chip_cleanup:
2960 bcm43xx_chip_cleanup(bcm);
2961 goto out;
2962}
2963
2964static int bcm43xx_chipset_attach(struct bcm43xx_private *bcm)
2965{
2966 int err;
2967 u16 pci_status;
2968
2969 err = bcm43xx_pctl_set_crystal(bcm, 1);
2970 if (err)
2971 goto out;
2972 bcm43xx_pci_read_config16(bcm, PCI_STATUS, &pci_status);
2973 bcm43xx_pci_write_config16(bcm, PCI_STATUS, pci_status & ~PCI_STATUS_SIG_TARGET_ABORT);
2974
2975out:
2976 return err;
2977}
2978
2979static void bcm43xx_chipset_detach(struct bcm43xx_private *bcm)
2980{
2981 bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_SLOW);
2982 bcm43xx_pctl_set_crystal(bcm, 0);
2983}
2984
Michael Buesch489423c2006-02-13 00:11:07 +01002985static void bcm43xx_pcicore_broadcast_value(struct bcm43xx_private *bcm,
2986 u32 address,
2987 u32 data)
John W. Linvillef2223132006-01-23 16:59:58 -05002988{
2989 bcm43xx_write32(bcm, BCM43xx_PCICORE_BCAST_ADDR, address);
2990 bcm43xx_write32(bcm, BCM43xx_PCICORE_BCAST_DATA, data);
2991}
2992
2993static int bcm43xx_pcicore_commit_settings(struct bcm43xx_private *bcm)
2994{
2995 int err;
2996 struct bcm43xx_coreinfo *old_core;
2997
2998 old_core = bcm->current_core;
2999 err = bcm43xx_switch_core(bcm, &bcm->core_pci);
3000 if (err)
3001 goto out;
3002
3003 bcm43xx_pcicore_broadcast_value(bcm, 0xfd8, 0x00000000);
3004
3005 bcm43xx_switch_core(bcm, old_core);
3006 assert(err == 0);
3007out:
3008 return err;
3009}
3010
3011/* Make an I/O Core usable. "core_mask" is the bitmask of the cores to enable.
3012 * To enable core 0, pass a core_mask of 1<<0
3013 */
3014static int bcm43xx_setup_backplane_pci_connection(struct bcm43xx_private *bcm,
3015 u32 core_mask)
3016{
3017 u32 backplane_flag_nr;
3018 u32 value;
3019 struct bcm43xx_coreinfo *old_core;
3020 int err = 0;
3021
3022 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBTPSFLAG);
3023 backplane_flag_nr = value & BCM43xx_BACKPLANE_FLAG_NR_MASK;
3024
3025 old_core = bcm->current_core;
3026 err = bcm43xx_switch_core(bcm, &bcm->core_pci);
3027 if (err)
3028 goto out;
3029
3030 if (bcm->core_pci.rev < 6) {
3031 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBINTVEC);
3032 value |= (1 << backplane_flag_nr);
3033 bcm43xx_write32(bcm, BCM43xx_CIR_SBINTVEC, value);
3034 } else {
3035 err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_ICR, &value);
3036 if (err) {
3037 printk(KERN_ERR PFX "Error: ICR setup failure!\n");
3038 goto out_switch_back;
3039 }
3040 value |= core_mask << 8;
3041 err = bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_ICR, value);
3042 if (err) {
3043 printk(KERN_ERR PFX "Error: ICR setup failure!\n");
3044 goto out_switch_back;
3045 }
3046 }
3047
3048 value = bcm43xx_read32(bcm, BCM43xx_PCICORE_SBTOPCI2);
3049 value |= BCM43xx_SBTOPCI2_PREFETCH | BCM43xx_SBTOPCI2_BURST;
3050 bcm43xx_write32(bcm, BCM43xx_PCICORE_SBTOPCI2, value);
3051
3052 if (bcm->core_pci.rev < 5) {
3053 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMCONFIGLOW);
3054 value |= (2 << BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_SHIFT)
3055 & BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_MASK;
3056 value |= (3 << BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_SHIFT)
3057 & BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_MASK;
3058 bcm43xx_write32(bcm, BCM43xx_CIR_SBIMCONFIGLOW, value);
3059 err = bcm43xx_pcicore_commit_settings(bcm);
3060 assert(err == 0);
3061 }
3062
3063out_switch_back:
3064 err = bcm43xx_switch_core(bcm, old_core);
3065out:
3066 return err;
3067}
3068
3069static void bcm43xx_softmac_init(struct bcm43xx_private *bcm)
3070{
3071 ieee80211softmac_start(bcm->net_dev);
3072}
3073
Michael Bueschab4977f2006-02-12 22:40:39 +01003074static void bcm43xx_periodic_every120sec(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05003075{
Michael Buesche9357c02006-03-13 19:27:34 +01003076 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003077
Michael Bueschab4977f2006-02-12 22:40:39 +01003078 if (phy->type != BCM43xx_PHYTYPE_G || phy->rev < 2)
3079 return;
John W. Linvillef2223132006-01-23 16:59:58 -05003080
Michael Bueschab4977f2006-02-12 22:40:39 +01003081 bcm43xx_mac_suspend(bcm);
3082 bcm43xx_phy_lo_g_measure(bcm);
3083 bcm43xx_mac_enable(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003084}
3085
Michael Bueschab4977f2006-02-12 22:40:39 +01003086static void bcm43xx_periodic_every60sec(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05003087{
John W. Linvillef2223132006-01-23 16:59:58 -05003088 bcm43xx_phy_lo_mark_all_unused(bcm);
3089 if (bcm->sprom.boardflags & BCM43xx_BFL_RSSI) {
3090 bcm43xx_mac_suspend(bcm);
3091 bcm43xx_calc_nrssi_slope(bcm);
3092 bcm43xx_mac_enable(bcm);
3093 }
John W. Linvillef2223132006-01-23 16:59:58 -05003094}
3095
Michael Bueschab4977f2006-02-12 22:40:39 +01003096static void bcm43xx_periodic_every30sec(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05003097{
John W. Linvillef2223132006-01-23 16:59:58 -05003098 /* Update device statistics. */
3099 bcm43xx_calculate_link_quality(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003100}
John W. Linvillef2223132006-01-23 16:59:58 -05003101
Michael Bueschab4977f2006-02-12 22:40:39 +01003102static void bcm43xx_periodic_every15sec(struct bcm43xx_private *bcm)
3103{
Michael Buesche9357c02006-03-13 19:27:34 +01003104 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
3105 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003106
3107 if (phy->type == BCM43xx_PHYTYPE_G) {
3108 //TODO: update_aci_moving_average
3109 if (radio->aci_enable && radio->aci_wlan_automatic) {
3110 bcm43xx_mac_suspend(bcm);
3111 if (!radio->aci_enable && 1 /*TODO: not scanning? */) {
3112 if (0 /*TODO: bunch of conditions*/) {
3113 bcm43xx_radio_set_interference_mitigation(bcm,
3114 BCM43xx_RADIO_INTERFMODE_MANUALWLAN);
3115 }
3116 } else if (1/*TODO*/) {
3117 /*
3118 if ((aci_average > 1000) && !(bcm43xx_radio_aci_scan(bcm))) {
3119 bcm43xx_radio_set_interference_mitigation(bcm,
3120 BCM43xx_RADIO_INTERFMODE_NONE);
3121 }
3122 */
3123 }
3124 bcm43xx_mac_enable(bcm);
3125 } else if (radio->interfmode == BCM43xx_RADIO_INTERFMODE_NONWLAN &&
3126 phy->rev == 1) {
3127 //TODO: implement rev1 workaround
3128 }
John W. Linvillef2223132006-01-23 16:59:58 -05003129 }
Michael Bueschab4977f2006-02-12 22:40:39 +01003130 bcm43xx_phy_xmitpower(bcm); //FIXME: unless scanning?
3131 //TODO for APHY (temperature?)
3132}
3133
Michael Buesch91769e72006-06-05 20:24:21 +02003134static void do_periodic_work(struct bcm43xx_private *bcm)
Michael Bueschab4977f2006-02-12 22:40:39 +01003135{
Michael Bueschab4977f2006-02-12 22:40:39 +01003136 unsigned int state;
3137
Michael Bueschab4977f2006-02-12 22:40:39 +01003138 state = bcm->periodic_state;
3139 if (state % 8 == 0)
3140 bcm43xx_periodic_every120sec(bcm);
3141 if (state % 4 == 0)
3142 bcm43xx_periodic_every60sec(bcm);
3143 if (state % 2 == 0)
3144 bcm43xx_periodic_every30sec(bcm);
Michael Buesch91769e72006-06-05 20:24:21 +02003145 if (state % 1 == 0)
3146 bcm43xx_periodic_every15sec(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003147 bcm->periodic_state = state + 1;
3148
Michael Buesch78ff56a2006-06-05 20:24:10 +02003149 schedule_delayed_work(&bcm->periodic_work, HZ * 15);
Michael Buesch91769e72006-06-05 20:24:21 +02003150}
Michael Bueschab4977f2006-02-12 22:40:39 +01003151
Michael Buesch91769e72006-06-05 20:24:21 +02003152/* Estimate a "Badness" value based on the periodic work
3153 * state-machine state. "Badness" is worse (bigger), if the
3154 * periodic work will take longer.
3155 */
3156static int estimate_periodic_work_badness(unsigned int state)
3157{
3158 int badness = 0;
3159
3160 if (state % 8 == 0) /* every 120 sec */
3161 badness += 10;
3162 if (state % 4 == 0) /* every 60 sec */
3163 badness += 5;
3164 if (state % 2 == 0) /* every 30 sec */
3165 badness += 1;
3166 if (state % 1 == 0) /* every 15 sec */
3167 badness += 1;
3168
3169#define BADNESS_LIMIT 4
3170 return badness;
3171}
3172
3173static void bcm43xx_periodic_work_handler(void *d)
3174{
3175 struct bcm43xx_private *bcm = d;
3176 unsigned long flags;
3177 u32 savedirqs = 0;
3178 int badness;
3179
3180 badness = estimate_periodic_work_badness(bcm->periodic_state);
3181 if (badness > BADNESS_LIMIT) {
3182 /* Periodic work will take a long time, so we want it to
3183 * be preemtible.
3184 */
Michael Buesch91769e72006-06-05 20:24:21 +02003185 netif_stop_queue(bcm->net_dev);
Michael Bueschefa6a372006-06-27 21:38:40 +02003186 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch91769e72006-06-05 20:24:21 +02003187 if (bcm43xx_using_pio(bcm))
3188 bcm43xx_pio_freeze_txqueues(bcm);
3189 savedirqs = bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
Michael Bueschefa6a372006-06-27 21:38:40 +02003190 spin_unlock_irqrestore(&bcm->irq_lock, flags);
3191 mutex_lock(&bcm->mutex);
Michael Buesch91769e72006-06-05 20:24:21 +02003192 bcm43xx_synchronize_irq(bcm);
3193 } else {
3194 /* Periodic work should take short time, so we want low
3195 * locking overhead.
3196 */
Michael Bueschefa6a372006-06-27 21:38:40 +02003197 mutex_lock(&bcm->mutex);
3198 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch91769e72006-06-05 20:24:21 +02003199 }
3200
3201 do_periodic_work(bcm);
3202
3203 if (badness > BADNESS_LIMIT) {
Michael Bueschefa6a372006-06-27 21:38:40 +02003204 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch91769e72006-06-05 20:24:21 +02003205 if (likely(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED)) {
3206 tasklet_enable(&bcm->isr_tasklet);
3207 bcm43xx_interrupt_enable(bcm, savedirqs);
3208 if (bcm43xx_using_pio(bcm))
3209 bcm43xx_pio_thaw_txqueues(bcm);
3210 }
3211 netif_wake_queue(bcm->net_dev);
Michael Buesch91769e72006-06-05 20:24:21 +02003212 }
Michael Bueschefa6a372006-06-27 21:38:40 +02003213 mmiowb();
3214 spin_unlock_irqrestore(&bcm->irq_lock, flags);
3215 mutex_unlock(&bcm->mutex);
John W. Linvillef2223132006-01-23 16:59:58 -05003216}
3217
John W. Linvillef2223132006-01-23 16:59:58 -05003218static void bcm43xx_periodic_tasks_delete(struct bcm43xx_private *bcm)
3219{
Michael Buesch78ff56a2006-06-05 20:24:10 +02003220 cancel_rearming_delayed_work(&bcm->periodic_work);
John W. Linvillef2223132006-01-23 16:59:58 -05003221}
3222
John W. Linvillef2223132006-01-23 16:59:58 -05003223static void bcm43xx_periodic_tasks_setup(struct bcm43xx_private *bcm)
3224{
Michael Buesch78ff56a2006-06-05 20:24:10 +02003225 struct work_struct *work = &(bcm->periodic_work);
John W. Linvillef2223132006-01-23 16:59:58 -05003226
Michael Buesch78ff56a2006-06-05 20:24:10 +02003227 assert(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED);
3228 INIT_WORK(work, bcm43xx_periodic_work_handler, bcm);
3229 schedule_work(work);
John W. Linvillef2223132006-01-23 16:59:58 -05003230}
3231
3232static void bcm43xx_security_init(struct bcm43xx_private *bcm)
3233{
3234 bcm->security_offset = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED,
3235 0x0056) * 2;
3236 bcm43xx_clear_keys(bcm);
3237}
3238
Michael Buesch71c0cd72006-06-26 00:25:04 -07003239static int bcm43xx_rng_read(struct hwrng *rng, u32 *data)
3240{
3241 struct bcm43xx_private *bcm = (struct bcm43xx_private *)rng->priv;
3242 unsigned long flags;
3243
3244 bcm43xx_lock_irqonly(bcm, flags);
3245 *data = bcm43xx_read16(bcm, BCM43xx_MMIO_RNG);
3246 bcm43xx_unlock_irqonly(bcm, flags);
3247
3248 return (sizeof(u16));
3249}
3250
3251static void bcm43xx_rng_exit(struct bcm43xx_private *bcm)
3252{
3253 hwrng_unregister(&bcm->rng);
3254}
3255
3256static int bcm43xx_rng_init(struct bcm43xx_private *bcm)
3257{
3258 int err;
3259
3260 snprintf(bcm->rng_name, ARRAY_SIZE(bcm->rng_name),
3261 "%s_%s", KBUILD_MODNAME, bcm->net_dev->name);
3262 bcm->rng.name = bcm->rng_name;
3263 bcm->rng.data_read = bcm43xx_rng_read;
3264 bcm->rng.priv = (unsigned long)bcm;
3265 err = hwrng_register(&bcm->rng);
3266 if (err)
3267 printk(KERN_ERR PFX "RNG init failed (%d)\n", err);
3268
3269 return err;
3270}
3271
John W. Linvillef2223132006-01-23 16:59:58 -05003272/* This is the opposite of bcm43xx_init_board() */
3273static void bcm43xx_free_board(struct bcm43xx_private *bcm)
3274{
3275 int i, err;
John W. Linvillef2223132006-01-23 16:59:58 -05003276
Michael Bueschefa6a372006-06-27 21:38:40 +02003277 mutex_lock(&bcm->mutex);
Michael Buesch367f8992006-02-28 15:32:19 +01003278 bcm43xx_sysfs_unregister(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003279 bcm43xx_periodic_tasks_delete(bcm);
3280
Michael Buesch78ff56a2006-06-05 20:24:10 +02003281 bcm43xx_set_status(bcm, BCM43xx_STAT_SHUTTINGDOWN);
John W. Linvillef2223132006-01-23 16:59:58 -05003282
Michael Buesch71c0cd72006-06-26 00:25:04 -07003283 bcm43xx_rng_exit(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003284 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
Michael Buesche9357c02006-03-13 19:27:34 +01003285 if (!bcm->core_80211[i].available)
John W. Linvillef2223132006-01-23 16:59:58 -05003286 continue;
Michael Buesche9357c02006-03-13 19:27:34 +01003287 if (!bcm->core_80211[i].initialized)
John W. Linvillef2223132006-01-23 16:59:58 -05003288 continue;
3289
3290 err = bcm43xx_switch_core(bcm, &bcm->core_80211[i]);
3291 assert(err == 0);
3292 bcm43xx_wireless_core_cleanup(bcm);
3293 }
3294
3295 bcm43xx_pctl_set_crystal(bcm, 0);
3296
Michael Buesch78ff56a2006-06-05 20:24:10 +02003297 bcm43xx_set_status(bcm, BCM43xx_STAT_UNINIT);
Michael Bueschefa6a372006-06-27 21:38:40 +02003298 mutex_unlock(&bcm->mutex);
John W. Linvillef2223132006-01-23 16:59:58 -05003299}
3300
3301static int bcm43xx_init_board(struct bcm43xx_private *bcm)
3302{
3303 int i, err;
John W. Linvillef2223132006-01-23 16:59:58 -05003304 int connect_phy;
John W. Linvillef2223132006-01-23 16:59:58 -05003305
3306 might_sleep();
3307
Michael Bueschefa6a372006-06-27 21:38:40 +02003308 mutex_lock(&bcm->mutex);
Michael Buesch78ff56a2006-06-05 20:24:10 +02003309 bcm43xx_set_status(bcm, BCM43xx_STAT_INITIALIZING);
John W. Linvillef2223132006-01-23 16:59:58 -05003310
3311 err = bcm43xx_pctl_set_crystal(bcm, 1);
3312 if (err)
3313 goto out;
3314 err = bcm43xx_pctl_init(bcm);
3315 if (err)
3316 goto err_crystal_off;
3317 err = bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_FAST);
3318 if (err)
3319 goto err_crystal_off;
3320
3321 tasklet_enable(&bcm->isr_tasklet);
Michael Buesche9357c02006-03-13 19:27:34 +01003322 for (i = 0; i < bcm->nr_80211_available; i++) {
John W. Linvillef2223132006-01-23 16:59:58 -05003323 err = bcm43xx_switch_core(bcm, &bcm->core_80211[i]);
3324 assert(err != -ENODEV);
3325 if (err)
3326 goto err_80211_unwind;
3327
3328 /* Enable the selected wireless core.
3329 * Connect PHY only on the first core.
3330 */
3331 if (!bcm43xx_core_enabled(bcm)) {
Michael Buesche9357c02006-03-13 19:27:34 +01003332 if (bcm->nr_80211_available == 1) {
3333 connect_phy = bcm43xx_current_phy(bcm)->connected;
John W. Linvillef2223132006-01-23 16:59:58 -05003334 } else {
3335 if (i == 0)
3336 connect_phy = 1;
3337 else
3338 connect_phy = 0;
3339 }
3340 bcm43xx_wireless_core_reset(bcm, connect_phy);
3341 }
3342
3343 if (i != 0)
3344 bcm43xx_wireless_core_mark_inactive(bcm, &bcm->core_80211[0]);
3345
3346 err = bcm43xx_wireless_core_init(bcm);
3347 if (err)
3348 goto err_80211_unwind;
3349
3350 if (i != 0) {
3351 bcm43xx_mac_suspend(bcm);
3352 bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
3353 bcm43xx_radio_turn_off(bcm);
3354 }
3355 }
3356 bcm->active_80211_core = &bcm->core_80211[0];
Michael Buesche9357c02006-03-13 19:27:34 +01003357 if (bcm->nr_80211_available >= 2) {
John W. Linvillef2223132006-01-23 16:59:58 -05003358 bcm43xx_switch_core(bcm, &bcm->core_80211[0]);
3359 bcm43xx_mac_enable(bcm);
3360 }
Michael Buesch71c0cd72006-06-26 00:25:04 -07003361 err = bcm43xx_rng_init(bcm);
3362 if (err)
3363 goto err_80211_unwind;
John W. Linvillef2223132006-01-23 16:59:58 -05003364 bcm43xx_macfilter_clear(bcm, BCM43xx_MACFILTER_ASSOC);
3365 bcm43xx_macfilter_set(bcm, BCM43xx_MACFILTER_SELF, (u8 *)(bcm->net_dev->dev_addr));
3366 dprintk(KERN_INFO PFX "80211 cores initialized\n");
3367 bcm43xx_security_init(bcm);
3368 bcm43xx_softmac_init(bcm);
3369
3370 bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_DYNAMIC);
3371
Michael Buesche9357c02006-03-13 19:27:34 +01003372 if (bcm43xx_current_radio(bcm)->initial_channel != 0xFF) {
John W. Linvillef2223132006-01-23 16:59:58 -05003373 bcm43xx_mac_suspend(bcm);
Michael Buesche9357c02006-03-13 19:27:34 +01003374 bcm43xx_radio_selectchannel(bcm, bcm43xx_current_radio(bcm)->initial_channel, 0);
John W. Linvillef2223132006-01-23 16:59:58 -05003375 bcm43xx_mac_enable(bcm);
3376 }
Michael Bueschcad2b312006-02-21 18:08:55 +01003377
3378 /* Initialization of the board is done. Flag it as such. */
Michael Buesch78ff56a2006-06-05 20:24:10 +02003379 bcm43xx_set_status(bcm, BCM43xx_STAT_INITIALIZED);
Michael Bueschcad2b312006-02-21 18:08:55 +01003380
John W. Linvillef2223132006-01-23 16:59:58 -05003381 bcm43xx_periodic_tasks_setup(bcm);
Michael Buesch367f8992006-02-28 15:32:19 +01003382 bcm43xx_sysfs_register(bcm);
3383 //FIXME: check for bcm43xx_sysfs_register failure. This function is a bit messy regarding unwinding, though...
John W. Linvillef2223132006-01-23 16:59:58 -05003384
David Woodhousebc519f32006-05-05 17:38:27 +01003385 /*FIXME: This should be handled by softmac instead. */
3386 schedule_work(&bcm->softmac->associnfo.work);
3387
John W. Linvillef2223132006-01-23 16:59:58 -05003388 assert(err == 0);
3389out:
Michael Bueschefa6a372006-06-27 21:38:40 +02003390 mutex_unlock(&bcm->mutex);
Michael Buesch78ff56a2006-06-05 20:24:10 +02003391
John W. Linvillef2223132006-01-23 16:59:58 -05003392 return err;
3393
3394err_80211_unwind:
3395 tasklet_disable(&bcm->isr_tasklet);
3396 /* unwind all 80211 initialization */
Michael Buesche9357c02006-03-13 19:27:34 +01003397 for (i = 0; i < bcm->nr_80211_available; i++) {
3398 if (!bcm->core_80211[i].initialized)
John W. Linvillef2223132006-01-23 16:59:58 -05003399 continue;
3400 bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
3401 bcm43xx_wireless_core_cleanup(bcm);
3402 }
3403err_crystal_off:
3404 bcm43xx_pctl_set_crystal(bcm, 0);
3405 goto out;
3406}
3407
3408static void bcm43xx_detach_board(struct bcm43xx_private *bcm)
3409{
3410 struct pci_dev *pci_dev = bcm->pci_dev;
3411 int i;
3412
3413 bcm43xx_chipset_detach(bcm);
3414 /* Do _not_ access the chip, after it is detached. */
Michael Bueschcc935712006-04-10 02:08:33 +02003415 pci_iounmap(pci_dev, bcm->mmio_addr);
John W. Linvillef2223132006-01-23 16:59:58 -05003416 pci_release_regions(pci_dev);
3417 pci_disable_device(pci_dev);
3418
3419 /* Free allocated structures/fields */
3420 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
Michael Buesche9357c02006-03-13 19:27:34 +01003421 kfree(bcm->core_80211_ext[i].phy._lo_pairs);
3422 if (bcm->core_80211_ext[i].phy.dyn_tssi_tbl)
3423 kfree(bcm->core_80211_ext[i].phy.tssi2dbm);
John W. Linvillef2223132006-01-23 16:59:58 -05003424 }
3425}
3426
3427static int bcm43xx_read_phyinfo(struct bcm43xx_private *bcm)
3428{
Michael Buesche9357c02006-03-13 19:27:34 +01003429 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003430 u16 value;
3431 u8 phy_version;
3432 u8 phy_type;
3433 u8 phy_rev;
3434 int phy_rev_ok = 1;
3435 void *p;
3436
3437 value = bcm43xx_read16(bcm, BCM43xx_MMIO_PHY_VER);
3438
3439 phy_version = (value & 0xF000) >> 12;
3440 phy_type = (value & 0x0F00) >> 8;
3441 phy_rev = (value & 0x000F);
3442
3443 dprintk(KERN_INFO PFX "Detected PHY: Version: %x, Type %x, Revision %x\n",
3444 phy_version, phy_type, phy_rev);
3445
3446 switch (phy_type) {
3447 case BCM43xx_PHYTYPE_A:
3448 if (phy_rev >= 4)
3449 phy_rev_ok = 0;
3450 /*FIXME: We need to switch the ieee->modulation, etc.. flags,
3451 * if we switch 80211 cores after init is done.
3452 * As we do not implement on the fly switching between
3453 * wireless cores, I will leave this as a future task.
3454 */
3455 bcm->ieee->modulation = IEEE80211_OFDM_MODULATION;
3456 bcm->ieee->mode = IEEE_A;
3457 bcm->ieee->freq_band = IEEE80211_52GHZ_BAND |
3458 IEEE80211_24GHZ_BAND;
3459 break;
3460 case BCM43xx_PHYTYPE_B:
3461 if (phy_rev != 2 && phy_rev != 4 && phy_rev != 6 && phy_rev != 7)
3462 phy_rev_ok = 0;
3463 bcm->ieee->modulation = IEEE80211_CCK_MODULATION;
3464 bcm->ieee->mode = IEEE_B;
3465 bcm->ieee->freq_band = IEEE80211_24GHZ_BAND;
3466 break;
3467 case BCM43xx_PHYTYPE_G:
3468 if (phy_rev > 7)
3469 phy_rev_ok = 0;
3470 bcm->ieee->modulation = IEEE80211_OFDM_MODULATION |
3471 IEEE80211_CCK_MODULATION;
3472 bcm->ieee->mode = IEEE_G;
3473 bcm->ieee->freq_band = IEEE80211_24GHZ_BAND;
3474 break;
3475 default:
3476 printk(KERN_ERR PFX "Error: Unknown PHY Type %x\n",
3477 phy_type);
3478 return -ENODEV;
3479 };
3480 if (!phy_rev_ok) {
3481 printk(KERN_WARNING PFX "Invalid PHY Revision %x\n",
3482 phy_rev);
3483 }
3484
Michael Buesch489423c2006-02-13 00:11:07 +01003485 phy->version = phy_version;
3486 phy->type = phy_type;
3487 phy->rev = phy_rev;
John W. Linvillef2223132006-01-23 16:59:58 -05003488 if ((phy_type == BCM43xx_PHYTYPE_B) || (phy_type == BCM43xx_PHYTYPE_G)) {
3489 p = kzalloc(sizeof(struct bcm43xx_lopair) * BCM43xx_LO_COUNT,
3490 GFP_KERNEL);
3491 if (!p)
3492 return -ENOMEM;
Michael Buesch489423c2006-02-13 00:11:07 +01003493 phy->_lo_pairs = p;
John W. Linvillef2223132006-01-23 16:59:58 -05003494 }
3495
3496 return 0;
3497}
3498
3499static int bcm43xx_attach_board(struct bcm43xx_private *bcm)
3500{
3501 struct pci_dev *pci_dev = bcm->pci_dev;
3502 struct net_device *net_dev = bcm->net_dev;
3503 int err;
3504 int i;
John W. Linvillef2223132006-01-23 16:59:58 -05003505 u32 coremask;
3506
3507 err = pci_enable_device(pci_dev);
3508 if (err) {
Michael Bueschcc935712006-04-10 02:08:33 +02003509 printk(KERN_ERR PFX "pci_enable_device() failed\n");
John W. Linvillef2223132006-01-23 16:59:58 -05003510 goto out;
3511 }
Michael Buesch65f3f192006-01-31 20:11:38 +01003512 err = pci_request_regions(pci_dev, KBUILD_MODNAME);
John W. Linvillef2223132006-01-23 16:59:58 -05003513 if (err) {
Michael Bueschcc935712006-04-10 02:08:33 +02003514 printk(KERN_ERR PFX "pci_request_regions() failed\n");
John W. Linvillef2223132006-01-23 16:59:58 -05003515 goto err_pci_disable;
3516 }
John W. Linvillef2223132006-01-23 16:59:58 -05003517 /* enable PCI bus-mastering */
3518 pci_set_master(pci_dev);
Michael Bueschcc935712006-04-10 02:08:33 +02003519 bcm->mmio_addr = pci_iomap(pci_dev, 0, ~0UL);
Michael Buesch4a1821e2006-03-18 20:19:12 +01003520 if (!bcm->mmio_addr) {
Michael Bueschcc935712006-04-10 02:08:33 +02003521 printk(KERN_ERR PFX "pci_iomap() failed\n");
John W. Linvillef2223132006-01-23 16:59:58 -05003522 err = -EIO;
3523 goto err_pci_release;
3524 }
Michael Buesch4a1821e2006-03-18 20:19:12 +01003525 net_dev->base_addr = (unsigned long)bcm->mmio_addr;
John W. Linvillef2223132006-01-23 16:59:58 -05003526
3527 bcm43xx_pci_read_config16(bcm, PCI_SUBSYSTEM_VENDOR_ID,
3528 &bcm->board_vendor);
3529 bcm43xx_pci_read_config16(bcm, PCI_SUBSYSTEM_ID,
3530 &bcm->board_type);
3531 bcm43xx_pci_read_config16(bcm, PCI_REVISION_ID,
3532 &bcm->board_revision);
3533
3534 err = bcm43xx_chipset_attach(bcm);
3535 if (err)
3536 goto err_iounmap;
3537 err = bcm43xx_pctl_init(bcm);
3538 if (err)
3539 goto err_chipset_detach;
3540 err = bcm43xx_probe_cores(bcm);
3541 if (err)
3542 goto err_chipset_detach;
3543
John W. Linvillef2223132006-01-23 16:59:58 -05003544 /* Attach all IO cores to the backplane. */
3545 coremask = 0;
Michael Buesche9357c02006-03-13 19:27:34 +01003546 for (i = 0; i < bcm->nr_80211_available; i++)
John W. Linvillef2223132006-01-23 16:59:58 -05003547 coremask |= (1 << bcm->core_80211[i].index);
3548 //FIXME: Also attach some non80211 cores?
3549 err = bcm43xx_setup_backplane_pci_connection(bcm, coremask);
3550 if (err) {
3551 printk(KERN_ERR PFX "Backplane->PCI connection failed!\n");
3552 goto err_chipset_detach;
3553 }
3554
Michael Bueschea0922b2006-02-19 14:09:20 +01003555 err = bcm43xx_sprom_extract(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003556 if (err)
3557 goto err_chipset_detach;
3558 err = bcm43xx_leds_init(bcm);
3559 if (err)
3560 goto err_chipset_detach;
3561
Michael Buesche9357c02006-03-13 19:27:34 +01003562 for (i = 0; i < bcm->nr_80211_available; i++) {
John W. Linvillef2223132006-01-23 16:59:58 -05003563 err = bcm43xx_switch_core(bcm, &bcm->core_80211[i]);
3564 assert(err != -ENODEV);
3565 if (err)
3566 goto err_80211_unwind;
3567
3568 /* Enable the selected wireless core.
3569 * Connect PHY only on the first core.
3570 */
3571 bcm43xx_wireless_core_reset(bcm, (i == 0));
3572
3573 err = bcm43xx_read_phyinfo(bcm);
3574 if (err && (i == 0))
3575 goto err_80211_unwind;
3576
3577 err = bcm43xx_read_radioinfo(bcm);
3578 if (err && (i == 0))
3579 goto err_80211_unwind;
3580
3581 err = bcm43xx_validate_chip(bcm);
3582 if (err && (i == 0))
3583 goto err_80211_unwind;
3584
3585 bcm43xx_radio_turn_off(bcm);
3586 err = bcm43xx_phy_init_tssi2dbm_table(bcm);
3587 if (err)
3588 goto err_80211_unwind;
3589 bcm43xx_wireless_core_disable(bcm);
3590 }
Michael Buesch869aaab2006-05-05 17:23:51 +02003591 err = bcm43xx_geo_init(bcm);
3592 if (err)
3593 goto err_80211_unwind;
John W. Linvillef2223132006-01-23 16:59:58 -05003594 bcm43xx_pctl_set_crystal(bcm, 0);
3595
3596 /* Set the MAC address in the networking subsystem */
Stefano Briviof9f7b962006-05-05 01:26:29 +02003597 if (is_valid_ether_addr(bcm->sprom.et1macaddr))
John W. Linvillef2223132006-01-23 16:59:58 -05003598 memcpy(bcm->net_dev->dev_addr, bcm->sprom.et1macaddr, 6);
3599 else
3600 memcpy(bcm->net_dev->dev_addr, bcm->sprom.il0macaddr, 6);
3601
John W. Linvillef2223132006-01-23 16:59:58 -05003602 snprintf(bcm->nick, IW_ESSID_MAX_SIZE,
3603 "Broadcom %04X", bcm->chip_id);
3604
3605 assert(err == 0);
3606out:
3607 return err;
3608
3609err_80211_unwind:
3610 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
Michael Buesche9357c02006-03-13 19:27:34 +01003611 kfree(bcm->core_80211_ext[i].phy._lo_pairs);
3612 if (bcm->core_80211_ext[i].phy.dyn_tssi_tbl)
3613 kfree(bcm->core_80211_ext[i].phy.tssi2dbm);
John W. Linvillef2223132006-01-23 16:59:58 -05003614 }
3615err_chipset_detach:
3616 bcm43xx_chipset_detach(bcm);
3617err_iounmap:
Michael Bueschcc935712006-04-10 02:08:33 +02003618 pci_iounmap(pci_dev, bcm->mmio_addr);
John W. Linvillef2223132006-01-23 16:59:58 -05003619err_pci_release:
3620 pci_release_regions(pci_dev);
3621err_pci_disable:
3622 pci_disable_device(pci_dev);
3623 goto out;
3624}
3625
John W. Linvillef2223132006-01-23 16:59:58 -05003626/* Do the Hardware IO operations to send the txb */
3627static inline int bcm43xx_tx(struct bcm43xx_private *bcm,
3628 struct ieee80211_txb *txb)
3629{
3630 int err = -ENODEV;
3631
Michael Buesch77db31e2006-02-12 16:47:44 +01003632 if (bcm43xx_using_pio(bcm))
3633 err = bcm43xx_pio_tx(bcm, txb);
John W. Linvillef2223132006-01-23 16:59:58 -05003634 else
Michael Bueschea72ab22006-01-27 17:26:20 +01003635 err = bcm43xx_dma_tx(bcm, txb);
Michael Bueschb79367a2006-04-10 02:39:54 +02003636 bcm->net_dev->trans_start = jiffies;
John W. Linvillef2223132006-01-23 16:59:58 -05003637
3638 return err;
3639}
3640
3641static void bcm43xx_ieee80211_set_chan(struct net_device *net_dev,
3642 u8 channel)
3643{
3644 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
Michael Bueschec483782006-03-27 11:49:51 +02003645 struct bcm43xx_radioinfo *radio;
John W. Linvillef2223132006-01-23 16:59:58 -05003646 unsigned long flags;
3647
Michael Bueschefa6a372006-06-27 21:38:40 +02003648 mutex_lock(&bcm->mutex);
3649 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch78ff56a2006-06-05 20:24:10 +02003650 if (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED) {
Michael Bueschec483782006-03-27 11:49:51 +02003651 bcm43xx_mac_suspend(bcm);
3652 bcm43xx_radio_selectchannel(bcm, channel, 0);
3653 bcm43xx_mac_enable(bcm);
3654 } else {
3655 radio = bcm43xx_current_radio(bcm);
3656 radio->initial_channel = channel;
3657 }
Michael Bueschefa6a372006-06-27 21:38:40 +02003658 spin_unlock_irqrestore(&bcm->irq_lock, flags);
3659 mutex_unlock(&bcm->mutex);
John W. Linvillef2223132006-01-23 16:59:58 -05003660}
3661
3662/* set_security() callback in struct ieee80211_device */
3663static void bcm43xx_ieee80211_set_security(struct net_device *net_dev,
3664 struct ieee80211_security *sec)
3665{
3666 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3667 struct ieee80211_security *secinfo = &bcm->ieee->sec;
3668 unsigned long flags;
3669 int keyidx;
3670
Jason Lunzff7562a2006-06-04 23:05:49 +02003671 dprintk(KERN_INFO PFX "set security called");
Michael Bueschefccb642006-03-11 13:39:14 +01003672
Michael Bueschefa6a372006-06-27 21:38:40 +02003673 mutex_lock(&bcm->mutex);
3674 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Bueschefccb642006-03-11 13:39:14 +01003675
John W. Linvillef2223132006-01-23 16:59:58 -05003676 for (keyidx = 0; keyidx<WEP_KEYS; keyidx++)
3677 if (sec->flags & (1<<keyidx)) {
3678 secinfo->encode_alg[keyidx] = sec->encode_alg[keyidx];
3679 secinfo->key_sizes[keyidx] = sec->key_sizes[keyidx];
3680 memcpy(secinfo->keys[keyidx], sec->keys[keyidx], SCM_KEY_LEN);
3681 }
3682
3683 if (sec->flags & SEC_ACTIVE_KEY) {
3684 secinfo->active_key = sec->active_key;
Jason Lunzff7562a2006-06-04 23:05:49 +02003685 dprintk(", .active_key = %d", sec->active_key);
John W. Linvillef2223132006-01-23 16:59:58 -05003686 }
3687 if (sec->flags & SEC_UNICAST_GROUP) {
3688 secinfo->unicast_uses_group = sec->unicast_uses_group;
Jason Lunzff7562a2006-06-04 23:05:49 +02003689 dprintk(", .unicast_uses_group = %d", sec->unicast_uses_group);
John W. Linvillef2223132006-01-23 16:59:58 -05003690 }
3691 if (sec->flags & SEC_LEVEL) {
3692 secinfo->level = sec->level;
Jason Lunzff7562a2006-06-04 23:05:49 +02003693 dprintk(", .level = %d", sec->level);
John W. Linvillef2223132006-01-23 16:59:58 -05003694 }
3695 if (sec->flags & SEC_ENABLED) {
3696 secinfo->enabled = sec->enabled;
Jason Lunzff7562a2006-06-04 23:05:49 +02003697 dprintk(", .enabled = %d", sec->enabled);
John W. Linvillef2223132006-01-23 16:59:58 -05003698 }
3699 if (sec->flags & SEC_ENCRYPT) {
3700 secinfo->encrypt = sec->encrypt;
Jason Lunzff7562a2006-06-04 23:05:49 +02003701 dprintk(", .encrypt = %d", sec->encrypt);
John W. Linvillef2223132006-01-23 16:59:58 -05003702 }
Daniel Drake43592192006-06-16 20:50:22 +01003703 if (sec->flags & SEC_AUTH_MODE) {
3704 secinfo->auth_mode = sec->auth_mode;
3705 dprintk(", .auth_mode = %d\n", sec->auth_mode);
3706 }
Jason Lunzff7562a2006-06-04 23:05:49 +02003707 dprintk("\n");
Michael Buesch78ff56a2006-06-05 20:24:10 +02003708 if (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED &&
3709 !bcm->ieee->host_encrypt) {
John W. Linvillef2223132006-01-23 16:59:58 -05003710 if (secinfo->enabled) {
3711 /* upload WEP keys to hardware */
3712 char null_address[6] = { 0 };
3713 u8 algorithm = 0;
3714 for (keyidx = 0; keyidx<WEP_KEYS; keyidx++) {
3715 if (!(sec->flags & (1<<keyidx)))
3716 continue;
3717 switch (sec->encode_alg[keyidx]) {
3718 case SEC_ALG_NONE: algorithm = BCM43xx_SEC_ALGO_NONE; break;
3719 case SEC_ALG_WEP:
3720 algorithm = BCM43xx_SEC_ALGO_WEP;
3721 if (secinfo->key_sizes[keyidx] == 13)
3722 algorithm = BCM43xx_SEC_ALGO_WEP104;
3723 break;
3724 case SEC_ALG_TKIP:
3725 FIXME();
3726 algorithm = BCM43xx_SEC_ALGO_TKIP;
3727 break;
3728 case SEC_ALG_CCMP:
3729 FIXME();
3730 algorithm = BCM43xx_SEC_ALGO_AES;
3731 break;
3732 default:
3733 assert(0);
3734 break;
3735 }
3736 bcm43xx_key_write(bcm, keyidx, algorithm, sec->keys[keyidx], secinfo->key_sizes[keyidx], &null_address[0]);
3737 bcm->key[keyidx].enabled = 1;
3738 bcm->key[keyidx].algorithm = algorithm;
3739 }
3740 } else
3741 bcm43xx_clear_keys(bcm);
3742 }
Michael Bueschefa6a372006-06-27 21:38:40 +02003743 spin_unlock_irqrestore(&bcm->irq_lock, flags);
3744 mutex_unlock(&bcm->mutex);
John W. Linvillef2223132006-01-23 16:59:58 -05003745}
3746
3747/* hard_start_xmit() callback in struct ieee80211_device */
3748static int bcm43xx_ieee80211_hard_start_xmit(struct ieee80211_txb *txb,
3749 struct net_device *net_dev,
3750 int pri)
3751{
3752 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3753 int err = -ENODEV;
3754 unsigned long flags;
3755
Michael Bueschefa6a372006-06-27 21:38:40 +02003756 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch78ff56a2006-06-05 20:24:10 +02003757 if (likely(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED))
John W. Linvillef2223132006-01-23 16:59:58 -05003758 err = bcm43xx_tx(bcm, txb);
Michael Bueschefa6a372006-06-27 21:38:40 +02003759 spin_unlock_irqrestore(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003760
3761 return err;
3762}
3763
3764static struct net_device_stats * bcm43xx_net_get_stats(struct net_device *net_dev)
3765{
3766 return &(bcm43xx_priv(net_dev)->ieee->stats);
3767}
3768
3769static void bcm43xx_net_tx_timeout(struct net_device *net_dev)
3770{
3771 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
Michael Bueschefccb642006-03-11 13:39:14 +01003772 unsigned long flags;
John W. Linvillef2223132006-01-23 16:59:58 -05003773
Michael Bueschefa6a372006-06-27 21:38:40 +02003774 spin_lock_irqsave(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003775 bcm43xx_controller_restart(bcm, "TX timeout");
Michael Bueschefa6a372006-06-27 21:38:40 +02003776 spin_unlock_irqrestore(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003777}
3778
3779#ifdef CONFIG_NET_POLL_CONTROLLER
3780static void bcm43xx_net_poll_controller(struct net_device *net_dev)
3781{
3782 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3783 unsigned long flags;
3784
3785 local_irq_save(flags);
3786 bcm43xx_interrupt_handler(bcm->irq, bcm, NULL);
3787 local_irq_restore(flags);
3788}
3789#endif /* CONFIG_NET_POLL_CONTROLLER */
3790
3791static int bcm43xx_net_open(struct net_device *net_dev)
3792{
3793 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3794
3795 return bcm43xx_init_board(bcm);
3796}
3797
3798static int bcm43xx_net_stop(struct net_device *net_dev)
3799{
3800 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
Michael Buesch91769e72006-06-05 20:24:21 +02003801 int err;
John W. Linvillef2223132006-01-23 16:59:58 -05003802
3803 ieee80211softmac_stop(net_dev);
Michael Buesch91769e72006-06-05 20:24:21 +02003804 err = bcm43xx_disable_interrupts_sync(bcm, NULL);
3805 assert(!err);
John W. Linvillef2223132006-01-23 16:59:58 -05003806 bcm43xx_free_board(bcm);
3807
3808 return 0;
3809}
3810
Michael Buesch77db31e2006-02-12 16:47:44 +01003811static int bcm43xx_init_private(struct bcm43xx_private *bcm,
3812 struct net_device *net_dev,
Michael Bueschab4977f2006-02-12 22:40:39 +01003813 struct pci_dev *pci_dev)
John W. Linvillef2223132006-01-23 16:59:58 -05003814{
Michael Buesch4d5a9e02006-03-11 13:15:02 +01003815 int err;
3816
Michael Buesch78ff56a2006-06-05 20:24:10 +02003817 bcm43xx_set_status(bcm, BCM43xx_STAT_UNINIT);
John W. Linvillef2223132006-01-23 16:59:58 -05003818 bcm->ieee = netdev_priv(net_dev);
3819 bcm->softmac = ieee80211_priv(net_dev);
3820 bcm->softmac->set_channel = bcm43xx_ieee80211_set_chan;
John W. Linvillef2223132006-01-23 16:59:58 -05003821
John W. Linvillef2223132006-01-23 16:59:58 -05003822 bcm->irq_savedstate = BCM43xx_IRQ_INITIAL;
3823 bcm->pci_dev = pci_dev;
3824 bcm->net_dev = net_dev;
Michael Buesch4d5a9e02006-03-11 13:15:02 +01003825 bcm->bad_frames_preempt = modparam_bad_frames_preempt;
Michael Buesch78ff56a2006-06-05 20:24:10 +02003826 spin_lock_init(&bcm->irq_lock);
Michael Bueschefa6a372006-06-27 21:38:40 +02003827 spin_lock_init(&bcm->leds_lock);
Michael Buesch78ff56a2006-06-05 20:24:10 +02003828 mutex_init(&bcm->mutex);
John W. Linvillef2223132006-01-23 16:59:58 -05003829 tasklet_init(&bcm->isr_tasklet,
3830 (void (*)(unsigned long))bcm43xx_interrupt_tasklet,
3831 (unsigned long)bcm);
3832 tasklet_disable_nosync(&bcm->isr_tasklet);
3833 if (modparam_pio) {
Michael Buesch77db31e2006-02-12 16:47:44 +01003834 bcm->__using_pio = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05003835 } else {
Michael Buesch4d5a9e02006-03-11 13:15:02 +01003836 err = pci_set_dma_mask(pci_dev, DMA_30BIT_MASK);
3837 err |= pci_set_consistent_dma_mask(pci_dev, DMA_30BIT_MASK);
3838 if (err) {
Michael Buesch77db31e2006-02-12 16:47:44 +01003839#ifdef CONFIG_BCM43XX_PIO
John W. Linvillef2223132006-01-23 16:59:58 -05003840 printk(KERN_WARNING PFX "DMA not supported. Falling back to PIO.\n");
Michael Buesch77db31e2006-02-12 16:47:44 +01003841 bcm->__using_pio = 1;
3842#else
3843 printk(KERN_ERR PFX "FATAL: DMA not supported and PIO not configured. "
3844 "Recompile the driver with PIO support, please.\n");
3845 return -ENODEV;
3846#endif /* CONFIG_BCM43XX_PIO */
John W. Linvillef2223132006-01-23 16:59:58 -05003847 }
3848 }
3849 bcm->rts_threshold = BCM43xx_DEFAULT_RTS_THRESHOLD;
3850
3851 /* default to sw encryption for now */
3852 bcm->ieee->host_build_iv = 0;
3853 bcm->ieee->host_encrypt = 1;
3854 bcm->ieee->host_decrypt = 1;
3855
3856 bcm->ieee->iw_mode = BCM43xx_INITIAL_IWMODE;
3857 bcm->ieee->tx_headroom = sizeof(struct bcm43xx_txhdr);
3858 bcm->ieee->set_security = bcm43xx_ieee80211_set_security;
3859 bcm->ieee->hard_start_xmit = bcm43xx_ieee80211_hard_start_xmit;
Michael Buesch77db31e2006-02-12 16:47:44 +01003860
3861 return 0;
John W. Linvillef2223132006-01-23 16:59:58 -05003862}
3863
3864static int __devinit bcm43xx_init_one(struct pci_dev *pdev,
3865 const struct pci_device_id *ent)
3866{
3867 struct net_device *net_dev;
3868 struct bcm43xx_private *bcm;
John W. Linvillef2223132006-01-23 16:59:58 -05003869 int err;
3870
3871#ifdef CONFIG_BCM947XX
3872 if ((pdev->bus->number == 0) && (pdev->device != 0x0800))
3873 return -ENODEV;
3874#endif
3875
3876#ifdef DEBUG_SINGLE_DEVICE_ONLY
3877 if (strcmp(pci_name(pdev), DEBUG_SINGLE_DEVICE_ONLY))
3878 return -ENODEV;
3879#endif
3880
3881 net_dev = alloc_ieee80211softmac(sizeof(*bcm));
3882 if (!net_dev) {
3883 printk(KERN_ERR PFX
3884 "could not allocate ieee80211 device %s\n",
3885 pci_name(pdev));
3886 err = -ENOMEM;
3887 goto out;
3888 }
3889 /* initialize the net_device struct */
3890 SET_MODULE_OWNER(net_dev);
3891 SET_NETDEV_DEV(net_dev, &pdev->dev);
3892
3893 net_dev->open = bcm43xx_net_open;
3894 net_dev->stop = bcm43xx_net_stop;
3895 net_dev->get_stats = bcm43xx_net_get_stats;
3896 net_dev->tx_timeout = bcm43xx_net_tx_timeout;
3897#ifdef CONFIG_NET_POLL_CONTROLLER
3898 net_dev->poll_controller = bcm43xx_net_poll_controller;
3899#endif
3900 net_dev->wireless_handlers = &bcm43xx_wx_handlers_def;
3901 net_dev->irq = pdev->irq;
Michael Buesch6465ce12006-02-02 19:11:08 +01003902 SET_ETHTOOL_OPS(net_dev, &bcm43xx_ethtool_ops);
John W. Linvillef2223132006-01-23 16:59:58 -05003903
3904 /* initialize the bcm43xx_private struct */
3905 bcm = bcm43xx_priv(net_dev);
3906 memset(bcm, 0, sizeof(*bcm));
Michael Bueschab4977f2006-02-12 22:40:39 +01003907 err = bcm43xx_init_private(bcm, net_dev, pdev);
Michael Buesch77db31e2006-02-12 16:47:44 +01003908 if (err)
Michael Bueschab4977f2006-02-12 22:40:39 +01003909 goto err_free_netdev;
John W. Linvillef2223132006-01-23 16:59:58 -05003910
3911 pci_set_drvdata(pdev, net_dev);
3912
3913 err = bcm43xx_attach_board(bcm);
3914 if (err)
Michael Bueschab4977f2006-02-12 22:40:39 +01003915 goto err_free_netdev;
John W. Linvillef2223132006-01-23 16:59:58 -05003916
3917 err = register_netdev(net_dev);
3918 if (err) {
3919 printk(KERN_ERR PFX "Cannot register net device, "
3920 "aborting.\n");
3921 err = -ENOMEM;
3922 goto err_detach_board;
3923 }
3924
3925 bcm43xx_debugfs_add_device(bcm);
3926
3927 assert(err == 0);
3928out:
3929 return err;
3930
3931err_detach_board:
3932 bcm43xx_detach_board(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003933err_free_netdev:
3934 free_ieee80211softmac(net_dev);
3935 goto out;
3936}
3937
3938static void __devexit bcm43xx_remove_one(struct pci_dev *pdev)
3939{
3940 struct net_device *net_dev = pci_get_drvdata(pdev);
3941 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3942
3943 bcm43xx_debugfs_remove_device(bcm);
3944 unregister_netdev(net_dev);
3945 bcm43xx_detach_board(bcm);
3946 assert(bcm->ucode == NULL);
John W. Linvillef2223132006-01-23 16:59:58 -05003947 free_ieee80211softmac(net_dev);
3948}
3949
3950/* Hard-reset the chip. Do not call this directly.
3951 * Use bcm43xx_controller_restart()
3952 */
3953static void bcm43xx_chip_reset(void *_bcm)
3954{
3955 struct bcm43xx_private *bcm = _bcm;
3956 struct net_device *net_dev = bcm->net_dev;
3957 struct pci_dev *pci_dev = bcm->pci_dev;
John W. Linvillef2223132006-01-23 16:59:58 -05003958 int err;
Michael Buesch78ff56a2006-06-05 20:24:10 +02003959 int was_initialized = (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED);
John W. Linvillef2223132006-01-23 16:59:58 -05003960
3961 netif_stop_queue(bcm->net_dev);
3962 tasklet_disable(&bcm->isr_tasklet);
3963
3964 bcm->firmware_norelease = 1;
3965 if (was_initialized)
3966 bcm43xx_free_board(bcm);
3967 bcm->firmware_norelease = 0;
3968 bcm43xx_detach_board(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003969 err = bcm43xx_init_private(bcm, net_dev, pci_dev);
Michael Buesch77db31e2006-02-12 16:47:44 +01003970 if (err)
3971 goto failure;
John W. Linvillef2223132006-01-23 16:59:58 -05003972 err = bcm43xx_attach_board(bcm);
3973 if (err)
3974 goto failure;
3975 if (was_initialized) {
3976 err = bcm43xx_init_board(bcm);
3977 if (err)
3978 goto failure;
3979 }
3980 netif_wake_queue(bcm->net_dev);
3981 printk(KERN_INFO PFX "Controller restarted\n");
3982
3983 return;
3984failure:
3985 printk(KERN_ERR PFX "Controller restart failed\n");
3986}
3987
3988/* Hard-reset the chip.
3989 * This can be called from interrupt or process context.
3990 * Make sure to _not_ re-enable device interrupts after this has been called.
3991*/
3992void bcm43xx_controller_restart(struct bcm43xx_private *bcm, const char *reason)
3993{
Michael Buesch78ff56a2006-06-05 20:24:10 +02003994 bcm43xx_set_status(bcm, BCM43xx_STAT_RESTARTING);
John W. Linvillef2223132006-01-23 16:59:58 -05003995 bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
Michael Buesch73733842006-03-12 19:44:29 +01003996 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); /* dummy read */
John W. Linvillef2223132006-01-23 16:59:58 -05003997 printk(KERN_ERR PFX "Controller RESET (%s) ...\n", reason);
3998 INIT_WORK(&bcm->restart_work, bcm43xx_chip_reset, bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003999 schedule_work(&bcm->restart_work);
John W. Linvillef2223132006-01-23 16:59:58 -05004000}
4001
4002#ifdef CONFIG_PM
4003
4004static int bcm43xx_suspend(struct pci_dev *pdev, pm_message_t state)
4005{
4006 struct net_device *net_dev = pci_get_drvdata(pdev);
4007 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
John W. Linvillef2223132006-01-23 16:59:58 -05004008 int try_to_shutdown = 0, err;
4009
4010 dprintk(KERN_INFO PFX "Suspending...\n");
4011
Michael Buesch78ff56a2006-06-05 20:24:10 +02004012 bcm->was_initialized = (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED);
4013 if (bcm->was_initialized)
John W. Linvillef2223132006-01-23 16:59:58 -05004014 try_to_shutdown = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05004015
4016 netif_device_detach(net_dev);
4017 if (try_to_shutdown) {
4018 ieee80211softmac_stop(net_dev);
4019 err = bcm43xx_disable_interrupts_sync(bcm, &bcm->irq_savedstate);
4020 if (unlikely(err)) {
4021 dprintk(KERN_ERR PFX "Suspend failed.\n");
4022 return -EAGAIN;
4023 }
4024 bcm->firmware_norelease = 1;
4025 bcm43xx_free_board(bcm);
4026 bcm->firmware_norelease = 0;
4027 }
4028 bcm43xx_chipset_detach(bcm);
4029
4030 pci_save_state(pdev);
4031 pci_disable_device(pdev);
4032 pci_set_power_state(pdev, pci_choose_state(pdev, state));
4033
4034 dprintk(KERN_INFO PFX "Device suspended.\n");
4035
4036 return 0;
4037}
4038
4039static int bcm43xx_resume(struct pci_dev *pdev)
4040{
4041 struct net_device *net_dev = pci_get_drvdata(pdev);
4042 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
4043 int err = 0;
4044
4045 dprintk(KERN_INFO PFX "Resuming...\n");
4046
4047 pci_set_power_state(pdev, 0);
4048 pci_enable_device(pdev);
4049 pci_restore_state(pdev);
4050
4051 bcm43xx_chipset_attach(bcm);
4052 if (bcm->was_initialized) {
4053 bcm->irq_savedstate = BCM43xx_IRQ_INITIAL;
4054 err = bcm43xx_init_board(bcm);
4055 }
4056 if (err) {
4057 printk(KERN_ERR PFX "Resume failed!\n");
4058 return err;
4059 }
4060
4061 netif_device_attach(net_dev);
4062
John W. Linvillef2223132006-01-23 16:59:58 -05004063 dprintk(KERN_INFO PFX "Device resumed.\n");
4064
4065 return 0;
4066}
4067
4068#endif /* CONFIG_PM */
4069
4070static struct pci_driver bcm43xx_pci_driver = {
Michael Buesch65f3f192006-01-31 20:11:38 +01004071 .name = KBUILD_MODNAME,
John W. Linvillef2223132006-01-23 16:59:58 -05004072 .id_table = bcm43xx_pci_tbl,
4073 .probe = bcm43xx_init_one,
4074 .remove = __devexit_p(bcm43xx_remove_one),
4075#ifdef CONFIG_PM
4076 .suspend = bcm43xx_suspend,
4077 .resume = bcm43xx_resume,
4078#endif /* CONFIG_PM */
4079};
4080
4081static int __init bcm43xx_init(void)
4082{
Michael Buesch65f3f192006-01-31 20:11:38 +01004083 printk(KERN_INFO KBUILD_MODNAME " driver\n");
John W. Linvillef2223132006-01-23 16:59:58 -05004084 bcm43xx_debugfs_init();
4085 return pci_register_driver(&bcm43xx_pci_driver);
4086}
4087
4088static void __exit bcm43xx_exit(void)
4089{
4090 pci_unregister_driver(&bcm43xx_pci_driver);
4091 bcm43xx_debugfs_exit();
4092}
4093
4094module_init(bcm43xx_init)
4095module_exit(bcm43xx_exit)