blob: 6dd475eb55109d871404822dacd0c1632f3b7213 [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. */
Michael Buesch58e55282006-07-08 22:02:18 +0200512static int bcm43xx_disable_interrupts_sync(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -0500513{
John W. Linvillef2223132006-01-23 16:59:58 -0500514 unsigned long flags;
515
Michael Bueschefa6a372006-06-27 21:38:40 +0200516 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch78ff56a2006-06-05 20:24:10 +0200517 if (unlikely(bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED)) {
Michael Bueschefa6a372006-06-27 21:38:40 +0200518 spin_unlock_irqrestore(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -0500519 return -EBUSY;
520 }
Michael Buesch58e55282006-07-08 22:02:18 +0200521 bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
Michael Bueschefa6a372006-06-27 21:38:40 +0200522 spin_unlock_irqrestore(&bcm->irq_lock, flags);
Michael Buesch91769e72006-06-05 20:24:21 +0200523 bcm43xx_synchronize_irq(bcm);
524
John W. Linvillef2223132006-01-23 16:59:58 -0500525 return 0;
526}
527
528static int bcm43xx_read_radioinfo(struct bcm43xx_private *bcm)
529{
Michael Buesche9357c02006-03-13 19:27:34 +0100530 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
531 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -0500532 u32 radio_id;
533 u16 manufact;
534 u16 version;
535 u8 revision;
John W. Linvillef2223132006-01-23 16:59:58 -0500536
537 if (bcm->chip_id == 0x4317) {
538 if (bcm->chip_rev == 0x00)
539 radio_id = 0x3205017F;
540 else if (bcm->chip_rev == 0x01)
541 radio_id = 0x4205017F;
542 else
543 radio_id = 0x5205017F;
544 } else {
545 bcm43xx_write16(bcm, BCM43xx_MMIO_RADIO_CONTROL, BCM43xx_RADIOCTL_ID);
546 radio_id = bcm43xx_read16(bcm, BCM43xx_MMIO_RADIO_DATA_HIGH);
547 radio_id <<= 16;
548 bcm43xx_write16(bcm, BCM43xx_MMIO_RADIO_CONTROL, BCM43xx_RADIOCTL_ID);
549 radio_id |= bcm43xx_read16(bcm, BCM43xx_MMIO_RADIO_DATA_LOW);
550 }
551
552 manufact = (radio_id & 0x00000FFF);
553 version = (radio_id & 0x0FFFF000) >> 12;
554 revision = (radio_id & 0xF0000000) >> 28;
555
Michael Buesch489423c2006-02-13 00:11:07 +0100556 dprintk(KERN_INFO PFX "Detected Radio: ID: %x (Manuf: %x Ver: %x Rev: %x)\n",
John W. Linvillef2223132006-01-23 16:59:58 -0500557 radio_id, manufact, version, revision);
558
Michael Buesch489423c2006-02-13 00:11:07 +0100559 switch (phy->type) {
John W. Linvillef2223132006-01-23 16:59:58 -0500560 case BCM43xx_PHYTYPE_A:
561 if ((version != 0x2060) || (revision != 1) || (manufact != 0x17f))
562 goto err_unsupported_radio;
563 break;
564 case BCM43xx_PHYTYPE_B:
565 if ((version & 0xFFF0) != 0x2050)
566 goto err_unsupported_radio;
567 break;
568 case BCM43xx_PHYTYPE_G:
569 if (version != 0x2050)
570 goto err_unsupported_radio;
571 break;
572 }
573
Michael Buesch489423c2006-02-13 00:11:07 +0100574 radio->manufact = manufact;
575 radio->version = version;
576 radio->revision = revision;
John W. Linvillef2223132006-01-23 16:59:58 -0500577
Michael Buesche9357c02006-03-13 19:27:34 +0100578 if (phy->type == BCM43xx_PHYTYPE_A)
Michael Buesch489423c2006-02-13 00:11:07 +0100579 radio->txpower_desired = bcm->sprom.maxpower_aphy;
Michael Buesch393344f2006-02-05 15:28:20 +0100580 else
Michael Buesche9357c02006-03-13 19:27:34 +0100581 radio->txpower_desired = bcm->sprom.maxpower_bgphy;
John W. Linvillef2223132006-01-23 16:59:58 -0500582
John W. Linvillef2223132006-01-23 16:59:58 -0500583 return 0;
584
585err_unsupported_radio:
586 printk(KERN_ERR PFX "Unsupported Radio connected to the PHY!\n");
587 return -ENODEV;
588}
589
590static const char * bcm43xx_locale_iso(u8 locale)
591{
592 /* ISO 3166-1 country codes.
593 * Note that there aren't ISO 3166-1 codes for
594 * all or locales. (Not all locales are countries)
595 */
596 switch (locale) {
597 case BCM43xx_LOCALE_WORLD:
598 case BCM43xx_LOCALE_ALL:
599 return "XX";
600 case BCM43xx_LOCALE_THAILAND:
601 return "TH";
602 case BCM43xx_LOCALE_ISRAEL:
603 return "IL";
604 case BCM43xx_LOCALE_JORDAN:
605 return "JO";
606 case BCM43xx_LOCALE_CHINA:
607 return "CN";
608 case BCM43xx_LOCALE_JAPAN:
609 case BCM43xx_LOCALE_JAPAN_HIGH:
610 return "JP";
611 case BCM43xx_LOCALE_USA_CANADA_ANZ:
612 case BCM43xx_LOCALE_USA_LOW:
613 return "US";
614 case BCM43xx_LOCALE_EUROPE:
615 return "EU";
616 case BCM43xx_LOCALE_NONE:
617 return " ";
618 }
619 assert(0);
620 return " ";
621}
622
623static const char * bcm43xx_locale_string(u8 locale)
624{
625 switch (locale) {
626 case BCM43xx_LOCALE_WORLD:
627 return "World";
628 case BCM43xx_LOCALE_THAILAND:
629 return "Thailand";
630 case BCM43xx_LOCALE_ISRAEL:
631 return "Israel";
632 case BCM43xx_LOCALE_JORDAN:
633 return "Jordan";
634 case BCM43xx_LOCALE_CHINA:
635 return "China";
636 case BCM43xx_LOCALE_JAPAN:
637 return "Japan";
638 case BCM43xx_LOCALE_USA_CANADA_ANZ:
639 return "USA/Canada/ANZ";
640 case BCM43xx_LOCALE_EUROPE:
641 return "Europe";
642 case BCM43xx_LOCALE_USA_LOW:
643 return "USAlow";
644 case BCM43xx_LOCALE_JAPAN_HIGH:
645 return "JapanHigh";
646 case BCM43xx_LOCALE_ALL:
647 return "All";
648 case BCM43xx_LOCALE_NONE:
649 return "None";
650 }
651 assert(0);
652 return "";
653}
654
655static inline u8 bcm43xx_crc8(u8 crc, u8 data)
656{
657 static const u8 t[] = {
658 0x00, 0xF7, 0xB9, 0x4E, 0x25, 0xD2, 0x9C, 0x6B,
659 0x4A, 0xBD, 0xF3, 0x04, 0x6F, 0x98, 0xD6, 0x21,
660 0x94, 0x63, 0x2D, 0xDA, 0xB1, 0x46, 0x08, 0xFF,
661 0xDE, 0x29, 0x67, 0x90, 0xFB, 0x0C, 0x42, 0xB5,
662 0x7F, 0x88, 0xC6, 0x31, 0x5A, 0xAD, 0xE3, 0x14,
663 0x35, 0xC2, 0x8C, 0x7B, 0x10, 0xE7, 0xA9, 0x5E,
664 0xEB, 0x1C, 0x52, 0xA5, 0xCE, 0x39, 0x77, 0x80,
665 0xA1, 0x56, 0x18, 0xEF, 0x84, 0x73, 0x3D, 0xCA,
666 0xFE, 0x09, 0x47, 0xB0, 0xDB, 0x2C, 0x62, 0x95,
667 0xB4, 0x43, 0x0D, 0xFA, 0x91, 0x66, 0x28, 0xDF,
668 0x6A, 0x9D, 0xD3, 0x24, 0x4F, 0xB8, 0xF6, 0x01,
669 0x20, 0xD7, 0x99, 0x6E, 0x05, 0xF2, 0xBC, 0x4B,
670 0x81, 0x76, 0x38, 0xCF, 0xA4, 0x53, 0x1D, 0xEA,
671 0xCB, 0x3C, 0x72, 0x85, 0xEE, 0x19, 0x57, 0xA0,
672 0x15, 0xE2, 0xAC, 0x5B, 0x30, 0xC7, 0x89, 0x7E,
673 0x5F, 0xA8, 0xE6, 0x11, 0x7A, 0x8D, 0xC3, 0x34,
674 0xAB, 0x5C, 0x12, 0xE5, 0x8E, 0x79, 0x37, 0xC0,
675 0xE1, 0x16, 0x58, 0xAF, 0xC4, 0x33, 0x7D, 0x8A,
676 0x3F, 0xC8, 0x86, 0x71, 0x1A, 0xED, 0xA3, 0x54,
677 0x75, 0x82, 0xCC, 0x3B, 0x50, 0xA7, 0xE9, 0x1E,
678 0xD4, 0x23, 0x6D, 0x9A, 0xF1, 0x06, 0x48, 0xBF,
679 0x9E, 0x69, 0x27, 0xD0, 0xBB, 0x4C, 0x02, 0xF5,
680 0x40, 0xB7, 0xF9, 0x0E, 0x65, 0x92, 0xDC, 0x2B,
681 0x0A, 0xFD, 0xB3, 0x44, 0x2F, 0xD8, 0x96, 0x61,
682 0x55, 0xA2, 0xEC, 0x1B, 0x70, 0x87, 0xC9, 0x3E,
683 0x1F, 0xE8, 0xA6, 0x51, 0x3A, 0xCD, 0x83, 0x74,
684 0xC1, 0x36, 0x78, 0x8F, 0xE4, 0x13, 0x5D, 0xAA,
685 0x8B, 0x7C, 0x32, 0xC5, 0xAE, 0x59, 0x17, 0xE0,
686 0x2A, 0xDD, 0x93, 0x64, 0x0F, 0xF8, 0xB6, 0x41,
687 0x60, 0x97, 0xD9, 0x2E, 0x45, 0xB2, 0xFC, 0x0B,
688 0xBE, 0x49, 0x07, 0xF0, 0x9B, 0x6C, 0x22, 0xD5,
689 0xF4, 0x03, 0x4D, 0xBA, 0xD1, 0x26, 0x68, 0x9F,
690 };
691 return t[crc ^ data];
692}
693
Michael Bueschad3f0862006-02-19 14:12:22 +0100694static u8 bcm43xx_sprom_crc(const u16 *sprom)
John W. Linvillef2223132006-01-23 16:59:58 -0500695{
696 int word;
697 u8 crc = 0xFF;
698
699 for (word = 0; word < BCM43xx_SPROM_SIZE - 1; word++) {
700 crc = bcm43xx_crc8(crc, sprom[word] & 0x00FF);
701 crc = bcm43xx_crc8(crc, (sprom[word] & 0xFF00) >> 8);
702 }
703 crc = bcm43xx_crc8(crc, sprom[BCM43xx_SPROM_VERSION] & 0x00FF);
704 crc ^= 0xFF;
705
706 return crc;
707}
708
Michael Bueschea0922b2006-02-19 14:09:20 +0100709int bcm43xx_sprom_read(struct bcm43xx_private *bcm, u16 *sprom)
John W. Linvillef2223132006-01-23 16:59:58 -0500710{
711 int i;
Michael Bueschea0922b2006-02-19 14:09:20 +0100712 u8 crc, expected_crc;
713
714 for (i = 0; i < BCM43xx_SPROM_SIZE; i++)
715 sprom[i] = bcm43xx_read16(bcm, BCM43xx_SPROM_BASE + (i * 2));
716 /* CRC-8 check. */
717 crc = bcm43xx_sprom_crc(sprom);
718 expected_crc = (sprom[BCM43xx_SPROM_VERSION] & 0xFF00) >> 8;
719 if (crc != expected_crc) {
720 printk(KERN_WARNING PFX "WARNING: Invalid SPROM checksum "
721 "(0x%02X, expected: 0x%02X)\n",
722 crc, expected_crc);
723 return -EINVAL;
724 }
725
726 return 0;
727}
728
729int bcm43xx_sprom_write(struct bcm43xx_private *bcm, const u16 *sprom)
730{
731 int i, err;
732 u8 crc, expected_crc;
733 u32 spromctl;
734
735 /* CRC-8 validation of the input data. */
736 crc = bcm43xx_sprom_crc(sprom);
737 expected_crc = (sprom[BCM43xx_SPROM_VERSION] & 0xFF00) >> 8;
738 if (crc != expected_crc) {
739 printk(KERN_ERR PFX "SPROM input data: Invalid CRC\n");
740 return -EINVAL;
741 }
742
743 printk(KERN_INFO PFX "Writing SPROM. Do NOT turn off the power! Please stand by...\n");
744 err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_SPROMCTL, &spromctl);
745 if (err)
746 goto err_ctlreg;
747 spromctl |= 0x10; /* SPROM WRITE enable. */
748 bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_SPROMCTL, spromctl);
749 if (err)
750 goto err_ctlreg;
751 /* We must burn lots of CPU cycles here, but that does not
752 * really matter as one does not write the SPROM every other minute...
753 */
754 printk(KERN_INFO PFX "[ 0%%");
755 mdelay(500);
756 for (i = 0; i < BCM43xx_SPROM_SIZE; i++) {
757 if (i == 16)
758 printk("25%%");
759 else if (i == 32)
760 printk("50%%");
761 else if (i == 48)
762 printk("75%%");
763 else if (i % 2)
764 printk(".");
765 bcm43xx_write16(bcm, BCM43xx_SPROM_BASE + (i * 2), sprom[i]);
Michael Bueschefccb642006-03-11 13:39:14 +0100766 mmiowb();
Michael Bueschea0922b2006-02-19 14:09:20 +0100767 mdelay(20);
768 }
769 spromctl &= ~0x10; /* SPROM WRITE enable. */
770 bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_SPROMCTL, spromctl);
771 if (err)
772 goto err_ctlreg;
773 mdelay(500);
774 printk("100%% ]\n");
775 printk(KERN_INFO PFX "SPROM written.\n");
776 bcm43xx_controller_restart(bcm, "SPROM update");
777
778 return 0;
779err_ctlreg:
780 printk(KERN_ERR PFX "Could not access SPROM control register.\n");
781 return -ENODEV;
782}
783
784static int bcm43xx_sprom_extract(struct bcm43xx_private *bcm)
785{
John W. Linvillef2223132006-01-23 16:59:58 -0500786 u16 value;
787 u16 *sprom;
John W. Linvillef2223132006-01-23 16:59:58 -0500788#ifdef CONFIG_BCM947XX
789 char *c;
790#endif
791
792 sprom = kzalloc(BCM43xx_SPROM_SIZE * sizeof(u16),
793 GFP_KERNEL);
794 if (!sprom) {
Michael Bueschea0922b2006-02-19 14:09:20 +0100795 printk(KERN_ERR PFX "sprom_extract OOM\n");
John W. Linvillef2223132006-01-23 16:59:58 -0500796 return -ENOMEM;
797 }
798#ifdef CONFIG_BCM947XX
799 sprom[BCM43xx_SPROM_BOARDFLAGS2] = atoi(nvram_get("boardflags2"));
800 sprom[BCM43xx_SPROM_BOARDFLAGS] = atoi(nvram_get("boardflags"));
801
802 if ((c = nvram_get("il0macaddr")) != NULL)
803 e_aton(c, (char *) &(sprom[BCM43xx_SPROM_IL0MACADDR]));
804
805 if ((c = nvram_get("et1macaddr")) != NULL)
806 e_aton(c, (char *) &(sprom[BCM43xx_SPROM_ET1MACADDR]));
807
808 sprom[BCM43xx_SPROM_PA0B0] = atoi(nvram_get("pa0b0"));
809 sprom[BCM43xx_SPROM_PA0B1] = atoi(nvram_get("pa0b1"));
810 sprom[BCM43xx_SPROM_PA0B2] = atoi(nvram_get("pa0b2"));
811
812 sprom[BCM43xx_SPROM_PA1B0] = atoi(nvram_get("pa1b0"));
813 sprom[BCM43xx_SPROM_PA1B1] = atoi(nvram_get("pa1b1"));
814 sprom[BCM43xx_SPROM_PA1B2] = atoi(nvram_get("pa1b2"));
815
816 sprom[BCM43xx_SPROM_BOARDREV] = atoi(nvram_get("boardrev"));
817#else
Michael Bueschea0922b2006-02-19 14:09:20 +0100818 bcm43xx_sprom_read(bcm, sprom);
John W. Linvillef2223132006-01-23 16:59:58 -0500819#endif
820
821 /* boardflags2 */
822 value = sprom[BCM43xx_SPROM_BOARDFLAGS2];
823 bcm->sprom.boardflags2 = value;
824
825 /* il0macaddr */
826 value = sprom[BCM43xx_SPROM_IL0MACADDR + 0];
827 *(((u16 *)bcm->sprom.il0macaddr) + 0) = cpu_to_be16(value);
828 value = sprom[BCM43xx_SPROM_IL0MACADDR + 1];
829 *(((u16 *)bcm->sprom.il0macaddr) + 1) = cpu_to_be16(value);
830 value = sprom[BCM43xx_SPROM_IL0MACADDR + 2];
831 *(((u16 *)bcm->sprom.il0macaddr) + 2) = cpu_to_be16(value);
832
833 /* et0macaddr */
834 value = sprom[BCM43xx_SPROM_ET0MACADDR + 0];
835 *(((u16 *)bcm->sprom.et0macaddr) + 0) = cpu_to_be16(value);
836 value = sprom[BCM43xx_SPROM_ET0MACADDR + 1];
837 *(((u16 *)bcm->sprom.et0macaddr) + 1) = cpu_to_be16(value);
838 value = sprom[BCM43xx_SPROM_ET0MACADDR + 2];
839 *(((u16 *)bcm->sprom.et0macaddr) + 2) = cpu_to_be16(value);
840
841 /* et1macaddr */
842 value = sprom[BCM43xx_SPROM_ET1MACADDR + 0];
843 *(((u16 *)bcm->sprom.et1macaddr) + 0) = cpu_to_be16(value);
844 value = sprom[BCM43xx_SPROM_ET1MACADDR + 1];
845 *(((u16 *)bcm->sprom.et1macaddr) + 1) = cpu_to_be16(value);
846 value = sprom[BCM43xx_SPROM_ET1MACADDR + 2];
847 *(((u16 *)bcm->sprom.et1macaddr) + 2) = cpu_to_be16(value);
848
849 /* ethernet phy settings */
850 value = sprom[BCM43xx_SPROM_ETHPHY];
851 bcm->sprom.et0phyaddr = (value & 0x001F);
852 bcm->sprom.et1phyaddr = (value & 0x03E0) >> 5;
853 bcm->sprom.et0mdcport = (value & (1 << 14)) >> 14;
854 bcm->sprom.et1mdcport = (value & (1 << 15)) >> 15;
855
856 /* boardrev, antennas, locale */
857 value = sprom[BCM43xx_SPROM_BOARDREV];
858 bcm->sprom.boardrev = (value & 0x00FF);
859 bcm->sprom.locale = (value & 0x0F00) >> 8;
860 bcm->sprom.antennas_aphy = (value & 0x3000) >> 12;
861 bcm->sprom.antennas_bgphy = (value & 0xC000) >> 14;
862 if (modparam_locale != -1) {
863 if (modparam_locale >= 0 && modparam_locale <= 11) {
864 bcm->sprom.locale = modparam_locale;
865 printk(KERN_WARNING PFX "Operating with modified "
866 "LocaleCode %u (%s)\n",
867 bcm->sprom.locale,
868 bcm43xx_locale_string(bcm->sprom.locale));
869 } else {
870 printk(KERN_WARNING PFX "Module parameter \"locale\" "
871 "invalid value. (0 - 11)\n");
872 }
873 }
874
875 /* pa0b* */
876 value = sprom[BCM43xx_SPROM_PA0B0];
877 bcm->sprom.pa0b0 = value;
878 value = sprom[BCM43xx_SPROM_PA0B1];
879 bcm->sprom.pa0b1 = value;
880 value = sprom[BCM43xx_SPROM_PA0B2];
881 bcm->sprom.pa0b2 = value;
882
883 /* wl0gpio* */
884 value = sprom[BCM43xx_SPROM_WL0GPIO0];
885 if (value == 0x0000)
886 value = 0xFFFF;
887 bcm->sprom.wl0gpio0 = value & 0x00FF;
888 bcm->sprom.wl0gpio1 = (value & 0xFF00) >> 8;
889 value = sprom[BCM43xx_SPROM_WL0GPIO2];
890 if (value == 0x0000)
891 value = 0xFFFF;
892 bcm->sprom.wl0gpio2 = value & 0x00FF;
893 bcm->sprom.wl0gpio3 = (value & 0xFF00) >> 8;
894
895 /* maxpower */
896 value = sprom[BCM43xx_SPROM_MAXPWR];
897 bcm->sprom.maxpower_aphy = (value & 0xFF00) >> 8;
898 bcm->sprom.maxpower_bgphy = value & 0x00FF;
899
900 /* pa1b* */
901 value = sprom[BCM43xx_SPROM_PA1B0];
902 bcm->sprom.pa1b0 = value;
903 value = sprom[BCM43xx_SPROM_PA1B1];
904 bcm->sprom.pa1b1 = value;
905 value = sprom[BCM43xx_SPROM_PA1B2];
906 bcm->sprom.pa1b2 = value;
907
908 /* idle tssi target */
909 value = sprom[BCM43xx_SPROM_IDL_TSSI_TGT];
910 bcm->sprom.idle_tssi_tgt_aphy = value & 0x00FF;
911 bcm->sprom.idle_tssi_tgt_bgphy = (value & 0xFF00) >> 8;
912
913 /* boardflags */
914 value = sprom[BCM43xx_SPROM_BOARDFLAGS];
915 if (value == 0xFFFF)
916 value = 0x0000;
917 bcm->sprom.boardflags = value;
Michael Bueschb3db5e52006-03-15 16:31:45 +0100918 /* boardflags workarounds */
919 if (bcm->board_vendor == PCI_VENDOR_ID_DELL &&
920 bcm->chip_id == 0x4301 &&
921 bcm->board_revision == 0x74)
922 bcm->sprom.boardflags |= BCM43xx_BFL_BTCOEXIST;
923 if (bcm->board_vendor == PCI_VENDOR_ID_APPLE &&
924 bcm->board_type == 0x4E &&
925 bcm->board_revision > 0x40)
926 bcm->sprom.boardflags |= BCM43xx_BFL_PACTRL;
John W. Linvillef2223132006-01-23 16:59:58 -0500927
928 /* antenna gain */
929 value = sprom[BCM43xx_SPROM_ANTENNA_GAIN];
930 if (value == 0x0000 || value == 0xFFFF)
931 value = 0x0202;
932 /* convert values to Q5.2 */
933 bcm->sprom.antennagain_aphy = ((value & 0xFF00) >> 8) * 4;
934 bcm->sprom.antennagain_bgphy = (value & 0x00FF) * 4;
935
936 kfree(sprom);
937
938 return 0;
939}
940
Michael Buesch869aaab2006-05-05 17:23:51 +0200941static int bcm43xx_geo_init(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -0500942{
Michael Buesch869aaab2006-05-05 17:23:51 +0200943 struct ieee80211_geo *geo;
John W. Linvillef2223132006-01-23 16:59:58 -0500944 struct ieee80211_channel *chan;
945 int have_a = 0, have_bg = 0;
Michael Buesche9357c02006-03-13 19:27:34 +0100946 int i;
Michael Buesch9e4a3752006-02-02 18:43:25 +0100947 u8 channel;
John W. Linvillef2223132006-01-23 16:59:58 -0500948 struct bcm43xx_phyinfo *phy;
949 const char *iso_country;
950
Michael Buesch869aaab2006-05-05 17:23:51 +0200951 geo = kzalloc(sizeof(*geo), GFP_KERNEL);
952 if (!geo)
953 return -ENOMEM;
954
Michael Buesche9357c02006-03-13 19:27:34 +0100955 for (i = 0; i < bcm->nr_80211_available; i++) {
956 phy = &(bcm->core_80211_ext[i].phy);
John W. Linvillef2223132006-01-23 16:59:58 -0500957 switch (phy->type) {
958 case BCM43xx_PHYTYPE_B:
959 case BCM43xx_PHYTYPE_G:
960 have_bg = 1;
961 break;
962 case BCM43xx_PHYTYPE_A:
963 have_a = 1;
964 break;
965 default:
966 assert(0);
967 }
968 }
969 iso_country = bcm43xx_locale_iso(bcm->sprom.locale);
970
971 if (have_a) {
Michael Buesch869aaab2006-05-05 17:23:51 +0200972 for (i = 0, channel = IEEE80211_52GHZ_MIN_CHANNEL;
973 channel <= IEEE80211_52GHZ_MAX_CHANNEL; channel++) {
974 chan = &geo->a[i++];
Michael Buesch10d8dd82006-02-19 22:08:48 +0100975 chan->freq = bcm43xx_channel_to_freq_a(channel);
John W. Linvillef2223132006-01-23 16:59:58 -0500976 chan->channel = channel;
John W. Linvillef2223132006-01-23 16:59:58 -0500977 }
Michael Buesch869aaab2006-05-05 17:23:51 +0200978 geo->a_channels = i;
John W. Linvillef2223132006-01-23 16:59:58 -0500979 }
980 if (have_bg) {
Michael Buesch869aaab2006-05-05 17:23:51 +0200981 for (i = 0, channel = IEEE80211_24GHZ_MIN_CHANNEL;
982 channel <= IEEE80211_24GHZ_MAX_CHANNEL; channel++) {
983 chan = &geo->bg[i++];
Michael Buesch10d8dd82006-02-19 22:08:48 +0100984 chan->freq = bcm43xx_channel_to_freq_bg(channel);
John W. Linvillef2223132006-01-23 16:59:58 -0500985 chan->channel = channel;
John W. Linvillef2223132006-01-23 16:59:58 -0500986 }
Michael Buesch869aaab2006-05-05 17:23:51 +0200987 geo->bg_channels = i;
John W. Linvillef2223132006-01-23 16:59:58 -0500988 }
Michael Buesch869aaab2006-05-05 17:23:51 +0200989 memcpy(geo->name, iso_country, 2);
John W. Linvillef2223132006-01-23 16:59:58 -0500990 if (0 /*TODO: Outdoor use only */)
Michael Buesch869aaab2006-05-05 17:23:51 +0200991 geo->name[2] = 'O';
John W. Linvillef2223132006-01-23 16:59:58 -0500992 else if (0 /*TODO: Indoor use only */)
Michael Buesch869aaab2006-05-05 17:23:51 +0200993 geo->name[2] = 'I';
John W. Linvillef2223132006-01-23 16:59:58 -0500994 else
Michael Buesch869aaab2006-05-05 17:23:51 +0200995 geo->name[2] = ' ';
996 geo->name[3] = '\0';
John W. Linvillef2223132006-01-23 16:59:58 -0500997
Michael Buesch869aaab2006-05-05 17:23:51 +0200998 ieee80211_set_geo(bcm->ieee, geo);
999 kfree(geo);
1000
1001 return 0;
John W. Linvillef2223132006-01-23 16:59:58 -05001002}
1003
1004/* DummyTransmission function, as documented on
1005 * http://bcm-specs.sipsolutions.net/DummyTransmission
1006 */
1007void bcm43xx_dummy_transmission(struct bcm43xx_private *bcm)
1008{
Michael Buesche9357c02006-03-13 19:27:34 +01001009 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
1010 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05001011 unsigned int i, max_loop;
1012 u16 value = 0;
1013 u32 buffer[5] = {
1014 0x00000000,
1015 0x0000D400,
1016 0x00000000,
1017 0x00000001,
1018 0x00000000,
1019 };
1020
Michael Buesch489423c2006-02-13 00:11:07 +01001021 switch (phy->type) {
John W. Linvillef2223132006-01-23 16:59:58 -05001022 case BCM43xx_PHYTYPE_A:
1023 max_loop = 0x1E;
1024 buffer[0] = 0xCC010200;
1025 break;
1026 case BCM43xx_PHYTYPE_B:
1027 case BCM43xx_PHYTYPE_G:
1028 max_loop = 0xFA;
1029 buffer[0] = 0x6E840B00;
1030 break;
1031 default:
1032 assert(0);
1033 return;
1034 }
1035
1036 for (i = 0; i < 5; i++)
1037 bcm43xx_ram_write(bcm, i * 4, buffer[i]);
1038
1039 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); /* dummy read */
1040
1041 bcm43xx_write16(bcm, 0x0568, 0x0000);
1042 bcm43xx_write16(bcm, 0x07C0, 0x0000);
Michael Buesch489423c2006-02-13 00:11:07 +01001043 bcm43xx_write16(bcm, 0x050C, ((phy->type == BCM43xx_PHYTYPE_A) ? 1 : 0));
John W. Linvillef2223132006-01-23 16:59:58 -05001044 bcm43xx_write16(bcm, 0x0508, 0x0000);
1045 bcm43xx_write16(bcm, 0x050A, 0x0000);
1046 bcm43xx_write16(bcm, 0x054C, 0x0000);
1047 bcm43xx_write16(bcm, 0x056A, 0x0014);
1048 bcm43xx_write16(bcm, 0x0568, 0x0826);
1049 bcm43xx_write16(bcm, 0x0500, 0x0000);
1050 bcm43xx_write16(bcm, 0x0502, 0x0030);
1051
Michael Buesch73733842006-03-12 19:44:29 +01001052 if (radio->version == 0x2050 && radio->revision <= 0x5)
1053 bcm43xx_radio_write16(bcm, 0x0051, 0x0017);
John W. Linvillef2223132006-01-23 16:59:58 -05001054 for (i = 0x00; i < max_loop; i++) {
1055 value = bcm43xx_read16(bcm, 0x050E);
Michael Buesch73733842006-03-12 19:44:29 +01001056 if (value & 0x0080)
John W. Linvillef2223132006-01-23 16:59:58 -05001057 break;
1058 udelay(10);
1059 }
1060 for (i = 0x00; i < 0x0A; i++) {
1061 value = bcm43xx_read16(bcm, 0x050E);
Michael Buesch73733842006-03-12 19:44:29 +01001062 if (value & 0x0400)
John W. Linvillef2223132006-01-23 16:59:58 -05001063 break;
1064 udelay(10);
1065 }
1066 for (i = 0x00; i < 0x0A; i++) {
1067 value = bcm43xx_read16(bcm, 0x0690);
Michael Buesch73733842006-03-12 19:44:29 +01001068 if (!(value & 0x0100))
John W. Linvillef2223132006-01-23 16:59:58 -05001069 break;
1070 udelay(10);
1071 }
Michael Buesch73733842006-03-12 19:44:29 +01001072 if (radio->version == 0x2050 && radio->revision <= 0x5)
1073 bcm43xx_radio_write16(bcm, 0x0051, 0x0037);
John W. Linvillef2223132006-01-23 16:59:58 -05001074}
1075
1076static void key_write(struct bcm43xx_private *bcm,
1077 u8 index, u8 algorithm, const u16 *key)
1078{
1079 unsigned int i, basic_wep = 0;
1080 u32 offset;
1081 u16 value;
1082
1083 /* Write associated key information */
1084 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x100 + (index * 2),
1085 ((index << 4) | (algorithm & 0x0F)));
1086
1087 /* The first 4 WEP keys need extra love */
1088 if (((algorithm == BCM43xx_SEC_ALGO_WEP) ||
1089 (algorithm == BCM43xx_SEC_ALGO_WEP104)) && (index < 4))
1090 basic_wep = 1;
1091
1092 /* Write key payload, 8 little endian words */
1093 offset = bcm->security_offset + (index * BCM43xx_SEC_KEYSIZE);
1094 for (i = 0; i < (BCM43xx_SEC_KEYSIZE / sizeof(u16)); i++) {
1095 value = cpu_to_le16(key[i]);
1096 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1097 offset + (i * 2), value);
1098
1099 if (!basic_wep)
1100 continue;
1101
1102 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1103 offset + (i * 2) + 4 * BCM43xx_SEC_KEYSIZE,
1104 value);
1105 }
1106}
1107
1108static void keymac_write(struct bcm43xx_private *bcm,
1109 u8 index, const u32 *addr)
1110{
1111 /* for keys 0-3 there is no associated mac address */
1112 if (index < 4)
1113 return;
1114
1115 index -= 4;
1116 if (bcm->current_core->rev >= 5) {
1117 bcm43xx_shm_write32(bcm,
1118 BCM43xx_SHM_HWMAC,
1119 index * 2,
1120 cpu_to_be32(*addr));
1121 bcm43xx_shm_write16(bcm,
1122 BCM43xx_SHM_HWMAC,
1123 (index * 2) + 1,
1124 cpu_to_be16(*((u16 *)(addr + 1))));
1125 } else {
1126 if (index < 8) {
1127 TODO(); /* Put them in the macaddress filter */
1128 } else {
1129 TODO();
1130 /* Put them BCM43xx_SHM_SHARED, stating index 0x0120.
1131 Keep in mind to update the count of keymacs in 0x003E as well! */
1132 }
1133 }
1134}
1135
1136static int bcm43xx_key_write(struct bcm43xx_private *bcm,
1137 u8 index, u8 algorithm,
1138 const u8 *_key, int key_len,
1139 const u8 *mac_addr)
1140{
1141 u8 key[BCM43xx_SEC_KEYSIZE] = { 0 };
1142
1143 if (index >= ARRAY_SIZE(bcm->key))
1144 return -EINVAL;
1145 if (key_len > ARRAY_SIZE(key))
1146 return -EINVAL;
1147 if (algorithm < 1 || algorithm > 5)
1148 return -EINVAL;
1149
1150 memcpy(key, _key, key_len);
1151 key_write(bcm, index, algorithm, (const u16 *)key);
1152 keymac_write(bcm, index, (const u32 *)mac_addr);
1153
1154 bcm->key[index].algorithm = algorithm;
1155
1156 return 0;
1157}
1158
1159static void bcm43xx_clear_keys(struct bcm43xx_private *bcm)
1160{
1161 static const u32 zero_mac[2] = { 0 };
1162 unsigned int i,j, nr_keys = 54;
1163 u16 offset;
1164
1165 if (bcm->current_core->rev < 5)
1166 nr_keys = 16;
1167 assert(nr_keys <= ARRAY_SIZE(bcm->key));
1168
1169 for (i = 0; i < nr_keys; i++) {
1170 bcm->key[i].enabled = 0;
1171 /* returns for i < 4 immediately */
1172 keymac_write(bcm, i, zero_mac);
1173 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1174 0x100 + (i * 2), 0x0000);
1175 for (j = 0; j < 8; j++) {
1176 offset = bcm->security_offset + (j * 4) + (i * BCM43xx_SEC_KEYSIZE);
1177 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
1178 offset, 0x0000);
1179 }
1180 }
1181 dprintk(KERN_INFO PFX "Keys cleared\n");
1182}
1183
John W. Linvillef2223132006-01-23 16:59:58 -05001184/* Lowlevel core-switch function. This is only to be used in
1185 * bcm43xx_switch_core() and bcm43xx_probe_cores()
1186 */
1187static int _switch_core(struct bcm43xx_private *bcm, int core)
1188{
1189 int err;
1190 int attempts = 0;
Michael Buesch489423c2006-02-13 00:11:07 +01001191 u32 current_core;
John W. Linvillef2223132006-01-23 16:59:58 -05001192
1193 assert(core >= 0);
Michael Buesch489423c2006-02-13 00:11:07 +01001194 while (1) {
1195 err = bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_ACTIVE_CORE,
John W. Linvillef2223132006-01-23 16:59:58 -05001196 (core * 0x1000) + 0x18000000);
Michael Buesch489423c2006-02-13 00:11:07 +01001197 if (unlikely(err))
1198 goto error;
1199 err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_ACTIVE_CORE,
1200 &current_core);
1201 if (unlikely(err))
1202 goto error;
1203 current_core = (current_core - 0x18000000) / 0x1000;
1204 if (current_core == core)
1205 break;
John W. Linvillef2223132006-01-23 16:59:58 -05001206
Michael Buesch489423c2006-02-13 00:11:07 +01001207 if (unlikely(attempts++ > BCM43xx_SWITCH_CORE_MAX_RETRIES))
1208 goto error;
1209 udelay(10);
1210 }
1211#ifdef CONFIG_BCM947XX
1212 if (bcm->pci_dev->bus->number == 0)
1213 bcm->current_core_offset = 0x1000 * core;
1214 else
1215 bcm->current_core_offset = 0;
1216#endif
1217
1218 return 0;
1219error:
1220 printk(KERN_ERR PFX "Failed to switch to core %d\n", core);
1221 return -ENODEV;
John W. Linvillef2223132006-01-23 16:59:58 -05001222}
1223
1224int bcm43xx_switch_core(struct bcm43xx_private *bcm, struct bcm43xx_coreinfo *new_core)
1225{
1226 int err;
1227
Michael Buesch489423c2006-02-13 00:11:07 +01001228 if (unlikely(!new_core))
John W. Linvillef2223132006-01-23 16:59:58 -05001229 return 0;
Michael Buesche9357c02006-03-13 19:27:34 +01001230 if (!new_core->available)
John W. Linvillef2223132006-01-23 16:59:58 -05001231 return -ENODEV;
1232 if (bcm->current_core == new_core)
1233 return 0;
1234 err = _switch_core(bcm, new_core->index);
Michael Buesche9357c02006-03-13 19:27:34 +01001235 if (unlikely(err))
1236 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05001237
Michael Buesche9357c02006-03-13 19:27:34 +01001238 bcm->current_core = new_core;
Michael Buesche9357c02006-03-13 19:27:34 +01001239out:
John W. Linvillef2223132006-01-23 16:59:58 -05001240 return err;
1241}
1242
Michael Buesch489423c2006-02-13 00:11:07 +01001243static int bcm43xx_core_enabled(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001244{
1245 u32 value;
1246
1247 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1248 value &= BCM43xx_SBTMSTATELOW_CLOCK | BCM43xx_SBTMSTATELOW_RESET
1249 | BCM43xx_SBTMSTATELOW_REJECT;
1250
1251 return (value == BCM43xx_SBTMSTATELOW_CLOCK);
1252}
1253
1254/* disable current core */
1255static int bcm43xx_core_disable(struct bcm43xx_private *bcm, u32 core_flags)
1256{
1257 u32 sbtmstatelow;
1258 u32 sbtmstatehigh;
1259 int i;
1260
1261 /* fetch sbtmstatelow from core information registers */
1262 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1263
1264 /* core is already in reset */
1265 if (sbtmstatelow & BCM43xx_SBTMSTATELOW_RESET)
1266 goto out;
1267
1268 if (sbtmstatelow & BCM43xx_SBTMSTATELOW_CLOCK) {
1269 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK |
1270 BCM43xx_SBTMSTATELOW_REJECT;
1271 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1272
1273 for (i = 0; i < 1000; i++) {
1274 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
1275 if (sbtmstatelow & BCM43xx_SBTMSTATELOW_REJECT) {
1276 i = -1;
1277 break;
1278 }
1279 udelay(10);
1280 }
1281 if (i != -1) {
1282 printk(KERN_ERR PFX "Error: core_disable() REJECT timeout!\n");
1283 return -EBUSY;
1284 }
1285
1286 for (i = 0; i < 1000; i++) {
1287 sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH);
1288 if (!(sbtmstatehigh & BCM43xx_SBTMSTATEHIGH_BUSY)) {
1289 i = -1;
1290 break;
1291 }
1292 udelay(10);
1293 }
1294 if (i != -1) {
1295 printk(KERN_ERR PFX "Error: core_disable() BUSY timeout!\n");
1296 return -EBUSY;
1297 }
1298
1299 sbtmstatelow = BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK |
1300 BCM43xx_SBTMSTATELOW_REJECT |
1301 BCM43xx_SBTMSTATELOW_RESET |
1302 BCM43xx_SBTMSTATELOW_CLOCK |
1303 core_flags;
1304 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1305 udelay(10);
1306 }
1307
1308 sbtmstatelow = BCM43xx_SBTMSTATELOW_RESET |
1309 BCM43xx_SBTMSTATELOW_REJECT |
1310 core_flags;
1311 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1312
1313out:
Michael Buesche9357c02006-03-13 19:27:34 +01001314 bcm->current_core->enabled = 0;
1315
John W. Linvillef2223132006-01-23 16:59:58 -05001316 return 0;
1317}
1318
1319/* enable (reset) current core */
1320static int bcm43xx_core_enable(struct bcm43xx_private *bcm, u32 core_flags)
1321{
1322 u32 sbtmstatelow;
1323 u32 sbtmstatehigh;
1324 u32 sbimstate;
1325 int err;
1326
1327 err = bcm43xx_core_disable(bcm, core_flags);
1328 if (err)
1329 goto out;
1330
1331 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK |
1332 BCM43xx_SBTMSTATELOW_RESET |
1333 BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK |
1334 core_flags;
1335 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1336 udelay(1);
1337
1338 sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH);
1339 if (sbtmstatehigh & BCM43xx_SBTMSTATEHIGH_SERROR) {
1340 sbtmstatehigh = 0x00000000;
1341 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATEHIGH, sbtmstatehigh);
1342 }
1343
1344 sbimstate = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMSTATE);
1345 if (sbimstate & (BCM43xx_SBIMSTATE_IB_ERROR | BCM43xx_SBIMSTATE_TIMEOUT)) {
1346 sbimstate &= ~(BCM43xx_SBIMSTATE_IB_ERROR | BCM43xx_SBIMSTATE_TIMEOUT);
1347 bcm43xx_write32(bcm, BCM43xx_CIR_SBIMSTATE, sbimstate);
1348 }
1349
1350 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK |
1351 BCM43xx_SBTMSTATELOW_FORCE_GATE_CLOCK |
1352 core_flags;
1353 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1354 udelay(1);
1355
1356 sbtmstatelow = BCM43xx_SBTMSTATELOW_CLOCK | core_flags;
1357 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1358 udelay(1);
1359
Michael Buesche9357c02006-03-13 19:27:34 +01001360 bcm->current_core->enabled = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05001361 assert(err == 0);
1362out:
1363 return err;
1364}
1365
1366/* http://bcm-specs.sipsolutions.net/80211CoreReset */
1367void bcm43xx_wireless_core_reset(struct bcm43xx_private *bcm, int connect_phy)
1368{
1369 u32 flags = 0x00040000;
1370
Michael Buesch77db31e2006-02-12 16:47:44 +01001371 if ((bcm43xx_core_enabled(bcm)) &&
1372 !bcm43xx_using_pio(bcm)) {
John W. Linvillef2223132006-01-23 16:59:58 -05001373//FIXME: Do we _really_ want #ifndef CONFIG_BCM947XX here?
Michael Buesch9218e022006-08-16 00:25:16 +02001374#if 0
John W. Linvillef2223132006-01-23 16:59:58 -05001375#ifndef CONFIG_BCM947XX
1376 /* reset all used DMA controllers. */
1377 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA1_BASE);
1378 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA2_BASE);
1379 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA3_BASE);
1380 bcm43xx_dmacontroller_tx_reset(bcm, BCM43xx_MMIO_DMA4_BASE);
1381 bcm43xx_dmacontroller_rx_reset(bcm, BCM43xx_MMIO_DMA1_BASE);
1382 if (bcm->current_core->rev < 5)
1383 bcm43xx_dmacontroller_rx_reset(bcm, BCM43xx_MMIO_DMA4_BASE);
1384#endif
Michael Buesch9218e022006-08-16 00:25:16 +02001385#endif
John W. Linvillef2223132006-01-23 16:59:58 -05001386 }
Michael Buesch78ff56a2006-06-05 20:24:10 +02001387 if (bcm43xx_status(bcm) == BCM43xx_STAT_SHUTTINGDOWN) {
John W. Linvillef2223132006-01-23 16:59:58 -05001388 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
1389 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
1390 & ~(BCM43xx_SBF_MAC_ENABLED | 0x00000002));
1391 } else {
1392 if (connect_phy)
1393 flags |= 0x20000000;
1394 bcm43xx_phy_connect(bcm, connect_phy);
1395 bcm43xx_core_enable(bcm, flags);
1396 bcm43xx_write16(bcm, 0x03E6, 0x0000);
1397 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
1398 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
1399 | BCM43xx_SBF_400);
1400 }
1401}
1402
1403static void bcm43xx_wireless_core_disable(struct bcm43xx_private *bcm)
1404{
1405 bcm43xx_radio_turn_off(bcm);
1406 bcm43xx_write16(bcm, 0x03E6, 0x00F4);
1407 bcm43xx_core_disable(bcm, 0);
1408}
1409
Michael Buesch58e55282006-07-08 22:02:18 +02001410/* Mark the current 80211 core inactive. */
1411static void bcm43xx_wireless_core_mark_inactive(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001412{
1413 u32 sbtmstatelow;
John W. Linvillef2223132006-01-23 16:59:58 -05001414
1415 bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
1416 bcm43xx_radio_turn_off(bcm);
1417 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
Michael Buesch58e55282006-07-08 22:02:18 +02001418 sbtmstatelow &= 0xDFF5FFFF;
1419 sbtmstatelow |= 0x000A0000;
John W. Linvillef2223132006-01-23 16:59:58 -05001420 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1421 udelay(1);
1422 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
Michael Buesch58e55282006-07-08 22:02:18 +02001423 sbtmstatelow &= 0xFFF5FFFF;
1424 sbtmstatelow |= 0x00080000;
John W. Linvillef2223132006-01-23 16:59:58 -05001425 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
1426 udelay(1);
John W. Linvillef2223132006-01-23 16:59:58 -05001427}
1428
Michael Buesch489423c2006-02-13 00:11:07 +01001429static void handle_irq_transmit_status(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001430{
1431 u32 v0, v1;
1432 u16 tmp;
1433 struct bcm43xx_xmitstatus stat;
1434
John W. Linvillef2223132006-01-23 16:59:58 -05001435 while (1) {
1436 v0 = bcm43xx_read32(bcm, BCM43xx_MMIO_XMITSTAT_0);
1437 if (!v0)
1438 break;
1439 v1 = bcm43xx_read32(bcm, BCM43xx_MMIO_XMITSTAT_1);
1440
1441 stat.cookie = (v0 >> 16) & 0x0000FFFF;
1442 tmp = (u16)((v0 & 0xFFF0) | ((v0 & 0xF) >> 1));
1443 stat.flags = tmp & 0xFF;
1444 stat.cnt1 = (tmp & 0x0F00) >> 8;
1445 stat.cnt2 = (tmp & 0xF000) >> 12;
1446 stat.seq = (u16)(v1 & 0xFFFF);
1447 stat.unknown = (u16)((v1 >> 16) & 0xFF);
1448
1449 bcm43xx_debugfs_log_txstat(bcm, &stat);
1450
1451 if (stat.flags & BCM43xx_TXSTAT_FLAG_IGNORE)
1452 continue;
1453 if (!(stat.flags & BCM43xx_TXSTAT_FLAG_ACK)) {
1454 //TODO: packet was not acked (was lost)
1455 }
1456 //TODO: There are more (unknown) flags to test. see bcm43xx_main.h
1457
Michael Buesch77db31e2006-02-12 16:47:44 +01001458 if (bcm43xx_using_pio(bcm))
John W. Linvillef2223132006-01-23 16:59:58 -05001459 bcm43xx_pio_handle_xmitstatus(bcm, &stat);
1460 else
1461 bcm43xx_dma_handle_xmitstatus(bcm, &stat);
1462 }
1463}
1464
Michael Buesch489423c2006-02-13 00:11:07 +01001465static void bcm43xx_generate_noise_sample(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001466{
1467 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x408, 0x7F7F);
1468 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x40A, 0x7F7F);
1469 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD,
1470 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD) | (1 << 4));
1471 assert(bcm->noisecalc.core_at_start == bcm->current_core);
Michael Buesche9357c02006-03-13 19:27:34 +01001472 assert(bcm->noisecalc.channel_at_start == bcm43xx_current_radio(bcm)->channel);
John W. Linvillef2223132006-01-23 16:59:58 -05001473}
1474
1475static void bcm43xx_calculate_link_quality(struct bcm43xx_private *bcm)
1476{
1477 /* Top half of Link Quality calculation. */
1478
1479 if (bcm->noisecalc.calculation_running)
1480 return;
1481 bcm->noisecalc.core_at_start = bcm->current_core;
Michael Buesche9357c02006-03-13 19:27:34 +01001482 bcm->noisecalc.channel_at_start = bcm43xx_current_radio(bcm)->channel;
John W. Linvillef2223132006-01-23 16:59:58 -05001483 bcm->noisecalc.calculation_running = 1;
1484 bcm->noisecalc.nr_samples = 0;
1485
1486 bcm43xx_generate_noise_sample(bcm);
1487}
1488
Michael Buesch489423c2006-02-13 00:11:07 +01001489static void handle_irq_noise(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001490{
Michael Buesche9357c02006-03-13 19:27:34 +01001491 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05001492 u16 tmp;
1493 u8 noise[4];
1494 u8 i, j;
1495 s32 average;
1496
1497 /* Bottom half of Link Quality calculation. */
1498
1499 assert(bcm->noisecalc.calculation_running);
1500 if (bcm->noisecalc.core_at_start != bcm->current_core ||
1501 bcm->noisecalc.channel_at_start != radio->channel)
1502 goto drop_calculation;
1503 tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x408);
1504 noise[0] = (tmp & 0x00FF);
1505 noise[1] = (tmp & 0xFF00) >> 8;
1506 tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x40A);
1507 noise[2] = (tmp & 0x00FF);
1508 noise[3] = (tmp & 0xFF00) >> 8;
1509 if (noise[0] == 0x7F || noise[1] == 0x7F ||
1510 noise[2] == 0x7F || noise[3] == 0x7F)
1511 goto generate_new;
1512
1513 /* Get the noise samples. */
Larry Finger522536f2006-06-28 19:11:21 -05001514 assert(bcm->noisecalc.nr_samples < 8);
John W. Linvillef2223132006-01-23 16:59:58 -05001515 i = bcm->noisecalc.nr_samples;
1516 noise[0] = limit_value(noise[0], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1517 noise[1] = limit_value(noise[1], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1518 noise[2] = limit_value(noise[2], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1519 noise[3] = limit_value(noise[3], 0, ARRAY_SIZE(radio->nrssi_lt) - 1);
1520 bcm->noisecalc.samples[i][0] = radio->nrssi_lt[noise[0]];
1521 bcm->noisecalc.samples[i][1] = radio->nrssi_lt[noise[1]];
1522 bcm->noisecalc.samples[i][2] = radio->nrssi_lt[noise[2]];
1523 bcm->noisecalc.samples[i][3] = radio->nrssi_lt[noise[3]];
1524 bcm->noisecalc.nr_samples++;
1525 if (bcm->noisecalc.nr_samples == 8) {
1526 /* Calculate the Link Quality by the noise samples. */
1527 average = 0;
1528 for (i = 0; i < 8; i++) {
1529 for (j = 0; j < 4; j++)
1530 average += bcm->noisecalc.samples[i][j];
1531 }
1532 average /= (8 * 4);
1533 average *= 125;
1534 average += 64;
1535 average /= 128;
Michael Buesch72fb8512006-03-22 18:10:19 +01001536
John W. Linvillef2223132006-01-23 16:59:58 -05001537 tmp = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, 0x40C);
1538 tmp = (tmp / 128) & 0x1F;
1539 if (tmp >= 8)
1540 average += 2;
1541 else
1542 average -= 25;
1543 if (tmp == 8)
1544 average -= 72;
1545 else
1546 average -= 48;
1547
Michael Buesch72fb8512006-03-22 18:10:19 +01001548/* FIXME: This is wrong, but people want fancy stats. well... */
1549bcm->stats.noise = average;
John W. Linvillef2223132006-01-23 16:59:58 -05001550 if (average > -65)
1551 bcm->stats.link_quality = 0;
1552 else if (average > -75)
1553 bcm->stats.link_quality = 1;
1554 else if (average > -85)
1555 bcm->stats.link_quality = 2;
1556 else
1557 bcm->stats.link_quality = 3;
1558// dprintk(KERN_INFO PFX "Link Quality: %u (avg was %d)\n", bcm->stats.link_quality, average);
1559drop_calculation:
1560 bcm->noisecalc.calculation_running = 0;
1561 return;
1562 }
1563generate_new:
1564 bcm43xx_generate_noise_sample(bcm);
1565}
1566
Michael Buesch489423c2006-02-13 00:11:07 +01001567static void handle_irq_ps(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001568{
1569 if (bcm->ieee->iw_mode == IW_MODE_MASTER) {
1570 ///TODO: PS TBTT
1571 } else {
1572 if (1/*FIXME: the last PSpoll frame was sent successfully */)
1573 bcm43xx_power_saving_ctl_bits(bcm, -1, -1);
1574 }
1575 if (bcm->ieee->iw_mode == IW_MODE_ADHOC)
1576 bcm->reg124_set_0x4 = 1;
1577 //FIXME else set to false?
1578}
1579
Michael Buesch489423c2006-02-13 00:11:07 +01001580static void handle_irq_reg124(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001581{
1582 if (!bcm->reg124_set_0x4)
1583 return;
1584 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD,
1585 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD)
1586 | 0x4);
1587 //FIXME: reset reg124_set_0x4 to false?
1588}
1589
Michael Buesch489423c2006-02-13 00:11:07 +01001590static void handle_irq_pmq(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001591{
1592 u32 tmp;
1593
1594 //TODO: AP mode.
1595
1596 while (1) {
1597 tmp = bcm43xx_read32(bcm, BCM43xx_MMIO_PS_STATUS);
1598 if (!(tmp & 0x00000008))
1599 break;
1600 }
1601 /* 16bit write is odd, but correct. */
1602 bcm43xx_write16(bcm, BCM43xx_MMIO_PS_STATUS, 0x0002);
1603}
1604
1605static void bcm43xx_generate_beacon_template(struct bcm43xx_private *bcm,
1606 u16 ram_offset, u16 shm_size_offset)
1607{
1608 u32 value;
1609 u16 size = 0;
1610
1611 /* Timestamp. */
1612 //FIXME: assumption: The chip sets the timestamp
1613 value = 0;
1614 bcm43xx_ram_write(bcm, ram_offset++, value);
1615 bcm43xx_ram_write(bcm, ram_offset++, value);
1616 size += 8;
1617
1618 /* Beacon Interval / Capability Information */
1619 value = 0x0000;//FIXME: Which interval?
1620 value |= (1 << 0) << 16; /* ESS */
1621 value |= (1 << 2) << 16; /* CF Pollable */ //FIXME?
1622 value |= (1 << 3) << 16; /* CF Poll Request */ //FIXME?
1623 if (!bcm->ieee->open_wep)
1624 value |= (1 << 4) << 16; /* Privacy */
1625 bcm43xx_ram_write(bcm, ram_offset++, value);
1626 size += 4;
1627
1628 /* SSID */
1629 //TODO
1630
1631 /* FH Parameter Set */
1632 //TODO
1633
1634 /* DS Parameter Set */
1635 //TODO
1636
1637 /* CF Parameter Set */
1638 //TODO
1639
1640 /* TIM */
1641 //TODO
1642
1643 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, shm_size_offset, size);
1644}
1645
Michael Buesch489423c2006-02-13 00:11:07 +01001646static void handle_irq_beacon(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05001647{
1648 u32 status;
1649
1650 bcm->irq_savedstate &= ~BCM43xx_IRQ_BEACON;
1651 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD);
1652
1653 if ((status & 0x1) && (status & 0x2)) {
1654 /* ACK beacon IRQ. */
1655 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON,
1656 BCM43xx_IRQ_BEACON);
1657 bcm->irq_savedstate |= BCM43xx_IRQ_BEACON;
1658 return;
1659 }
1660 if (!(status & 0x1)) {
1661 bcm43xx_generate_beacon_template(bcm, 0x68, 0x18);
1662 status |= 0x1;
1663 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, status);
1664 }
1665 if (!(status & 0x2)) {
1666 bcm43xx_generate_beacon_template(bcm, 0x468, 0x1A);
1667 status |= 0x2;
1668 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, status);
1669 }
1670}
1671
John W. Linvillef2223132006-01-23 16:59:58 -05001672/* Interrupt handler bottom-half */
1673static void bcm43xx_interrupt_tasklet(struct bcm43xx_private *bcm)
1674{
1675 u32 reason;
Michael Buesch9218e022006-08-16 00:25:16 +02001676 u32 dma_reason[6];
1677 u32 merged_dma_reason = 0;
1678 int i, activity = 0;
John W. Linvillef2223132006-01-23 16:59:58 -05001679 unsigned long flags;
1680
1681#ifdef CONFIG_BCM43XX_DEBUG
1682 u32 _handled = 0x00000000;
1683# define bcmirq_handled(irq) do { _handled |= (irq); } while (0)
1684#else
1685# define bcmirq_handled(irq) do { /* nothing */ } while (0)
1686#endif /* CONFIG_BCM43XX_DEBUG*/
1687
Michael Bueschefa6a372006-06-27 21:38:40 +02001688 spin_lock_irqsave(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05001689 reason = bcm->irq_reason;
Michael Buesch9218e022006-08-16 00:25:16 +02001690 for (i = 5; i >= 0; i--) {
1691 dma_reason[i] = bcm->dma_reason[i];
1692 merged_dma_reason |= dma_reason[i];
1693 }
John W. Linvillef2223132006-01-23 16:59:58 -05001694
1695 if (unlikely(reason & BCM43xx_IRQ_XMIT_ERROR)) {
1696 /* TX error. We get this when Template Ram is written in wrong endianess
1697 * in dummy_tx(). We also get this if something is wrong with the TX header
1698 * on DMA or PIO queues.
1699 * Maybe we get this in other error conditions, too.
1700 */
Michael Buesch73733842006-03-12 19:44:29 +01001701 printkl(KERN_ERR PFX "FATAL ERROR: BCM43xx_IRQ_XMIT_ERROR\n");
John W. Linvillef2223132006-01-23 16:59:58 -05001702 bcmirq_handled(BCM43xx_IRQ_XMIT_ERROR);
1703 }
Michael Buesch9218e022006-08-16 00:25:16 +02001704 if (unlikely(merged_dma_reason & BCM43xx_DMAIRQ_FATALMASK)) {
Michael Buesch73733842006-03-12 19:44:29 +01001705 printkl(KERN_ERR PFX "FATAL ERROR: Fatal DMA error: "
Michael Buesch9218e022006-08-16 00:25:16 +02001706 "0x%08X, 0x%08X, 0x%08X, "
1707 "0x%08X, 0x%08X, 0x%08X\n",
Michael Buesch73733842006-03-12 19:44:29 +01001708 dma_reason[0], dma_reason[1],
Michael Buesch9218e022006-08-16 00:25:16 +02001709 dma_reason[2], dma_reason[3],
1710 dma_reason[4], dma_reason[5]);
Michael Buesch73733842006-03-12 19:44:29 +01001711 bcm43xx_controller_restart(bcm, "DMA error");
Michael Buesch78ff56a2006-06-05 20:24:10 +02001712 mmiowb();
Michael Bueschefa6a372006-06-27 21:38:40 +02001713 spin_unlock_irqrestore(&bcm->irq_lock, flags);
Michael Buesch73733842006-03-12 19:44:29 +01001714 return;
1715 }
Michael Buesch9218e022006-08-16 00:25:16 +02001716 if (unlikely(merged_dma_reason & BCM43xx_DMAIRQ_NONFATALMASK)) {
Michael Buesch73733842006-03-12 19:44:29 +01001717 printkl(KERN_ERR PFX "DMA error: "
Michael Buesch9218e022006-08-16 00:25:16 +02001718 "0x%08X, 0x%08X, 0x%08X, "
1719 "0x%08X, 0x%08X, 0x%08X\n",
Michael Buesch73733842006-03-12 19:44:29 +01001720 dma_reason[0], dma_reason[1],
Michael Buesch9218e022006-08-16 00:25:16 +02001721 dma_reason[2], dma_reason[3],
1722 dma_reason[4], dma_reason[5]);
Michael Buesch73733842006-03-12 19:44:29 +01001723 }
John W. Linvillef2223132006-01-23 16:59:58 -05001724
1725 if (reason & BCM43xx_IRQ_PS) {
1726 handle_irq_ps(bcm);
1727 bcmirq_handled(BCM43xx_IRQ_PS);
1728 }
1729
1730 if (reason & BCM43xx_IRQ_REG124) {
1731 handle_irq_reg124(bcm);
1732 bcmirq_handled(BCM43xx_IRQ_REG124);
1733 }
1734
1735 if (reason & BCM43xx_IRQ_BEACON) {
1736 if (bcm->ieee->iw_mode == IW_MODE_MASTER)
1737 handle_irq_beacon(bcm);
1738 bcmirq_handled(BCM43xx_IRQ_BEACON);
1739 }
1740
1741 if (reason & BCM43xx_IRQ_PMQ) {
1742 handle_irq_pmq(bcm);
1743 bcmirq_handled(BCM43xx_IRQ_PMQ);
1744 }
1745
1746 if (reason & BCM43xx_IRQ_SCAN) {
1747 /*TODO*/
1748 //bcmirq_handled(BCM43xx_IRQ_SCAN);
1749 }
1750
1751 if (reason & BCM43xx_IRQ_NOISE) {
1752 handle_irq_noise(bcm);
1753 bcmirq_handled(BCM43xx_IRQ_NOISE);
1754 }
1755
1756 /* Check the DMA reason registers for received data. */
John W. Linvillef2223132006-01-23 16:59:58 -05001757 if (dma_reason[0] & BCM43xx_DMAIRQ_RX_DONE) {
Michael Buesch77db31e2006-02-12 16:47:44 +01001758 if (bcm43xx_using_pio(bcm))
Michael Buesche9357c02006-03-13 19:27:34 +01001759 bcm43xx_pio_rx(bcm43xx_current_pio(bcm)->queue0);
John W. Linvillef2223132006-01-23 16:59:58 -05001760 else
Michael Buesche9357c02006-03-13 19:27:34 +01001761 bcm43xx_dma_rx(bcm43xx_current_dma(bcm)->rx_ring0);
Michael Bueschdcfd7202006-02-12 20:25:55 +01001762 /* We intentionally don't set "activity" to 1, here. */
John W. Linvillef2223132006-01-23 16:59:58 -05001763 }
Michael Buesch9218e022006-08-16 00:25:16 +02001764 assert(!(dma_reason[1] & BCM43xx_DMAIRQ_RX_DONE));
1765 assert(!(dma_reason[2] & BCM43xx_DMAIRQ_RX_DONE));
John W. Linvillef2223132006-01-23 16:59:58 -05001766 if (dma_reason[3] & BCM43xx_DMAIRQ_RX_DONE) {
Michael Buesche1b1b582006-03-13 15:20:05 +01001767 if (bcm43xx_using_pio(bcm))
Michael Buesche9357c02006-03-13 19:27:34 +01001768 bcm43xx_pio_rx(bcm43xx_current_pio(bcm)->queue3);
Michael Buesche1b1b582006-03-13 15:20:05 +01001769 else
Michael Buesch9218e022006-08-16 00:25:16 +02001770 bcm43xx_dma_rx(bcm43xx_current_dma(bcm)->rx_ring3);
Michael Buesche1b1b582006-03-13 15:20:05 +01001771 activity = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05001772 }
Michael Buesch9218e022006-08-16 00:25:16 +02001773 assert(!(dma_reason[4] & BCM43xx_DMAIRQ_RX_DONE));
1774 assert(!(dma_reason[5] & BCM43xx_DMAIRQ_RX_DONE));
John W. Linvillef2223132006-01-23 16:59:58 -05001775 bcmirq_handled(BCM43xx_IRQ_RX);
1776
1777 if (reason & BCM43xx_IRQ_XMIT_STATUS) {
Michael Buesche1b1b582006-03-13 15:20:05 +01001778 handle_irq_transmit_status(bcm);
1779 activity = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05001780 //TODO: In AP mode, this also causes sending of powersave responses.
1781 bcmirq_handled(BCM43xx_IRQ_XMIT_STATUS);
1782 }
1783
John W. Linvillef2223132006-01-23 16:59:58 -05001784 /* IRQ_PIO_WORKAROUND is handled in the top-half. */
1785 bcmirq_handled(BCM43xx_IRQ_PIO_WORKAROUND);
1786#ifdef CONFIG_BCM43XX_DEBUG
1787 if (unlikely(reason & ~_handled)) {
1788 printkl(KERN_WARNING PFX
1789 "Unhandled IRQ! Reason: 0x%08x, Unhandled: 0x%08x, "
1790 "DMA: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
1791 reason, (reason & ~_handled),
1792 dma_reason[0], dma_reason[1],
1793 dma_reason[2], dma_reason[3]);
1794 }
1795#endif
1796#undef bcmirq_handled
1797
1798 if (!modparam_noleds)
1799 bcm43xx_leds_update(bcm, activity);
1800 bcm43xx_interrupt_enable(bcm, bcm->irq_savedstate);
Michael Buesch78ff56a2006-06-05 20:24:10 +02001801 mmiowb();
Michael Bueschefa6a372006-06-27 21:38:40 +02001802 spin_unlock_irqrestore(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05001803}
1804
Michael Buesch0ac59da2006-03-19 21:43:40 +01001805static void pio_irq_workaround(struct bcm43xx_private *bcm,
1806 u16 base, int queueidx)
John W. Linvillef2223132006-01-23 16:59:58 -05001807{
Michael Buesch0ac59da2006-03-19 21:43:40 +01001808 u16 rxctl;
John W. Linvillef2223132006-01-23 16:59:58 -05001809
Michael Buesch0ac59da2006-03-19 21:43:40 +01001810 rxctl = bcm43xx_read16(bcm, base + BCM43xx_PIO_RXCTL);
1811 if (rxctl & BCM43xx_PIO_RXCTL_DATAAVAILABLE)
1812 bcm->dma_reason[queueidx] |= BCM43xx_DMAIRQ_RX_DONE;
1813 else
1814 bcm->dma_reason[queueidx] &= ~BCM43xx_DMAIRQ_RX_DONE;
1815}
1816
1817static void bcm43xx_interrupt_ack(struct bcm43xx_private *bcm, u32 reason)
1818{
Michael Buesch77db31e2006-02-12 16:47:44 +01001819 if (bcm43xx_using_pio(bcm) &&
John W. Linvillef2223132006-01-23 16:59:58 -05001820 (bcm->current_core->rev < 3) &&
1821 (!(reason & BCM43xx_IRQ_PIO_WORKAROUND))) {
1822 /* Apply a PIO specific workaround to the dma_reasons */
Michael Buesch0ac59da2006-03-19 21:43:40 +01001823 pio_irq_workaround(bcm, BCM43xx_MMIO_PIO1_BASE, 0);
1824 pio_irq_workaround(bcm, BCM43xx_MMIO_PIO2_BASE, 1);
1825 pio_irq_workaround(bcm, BCM43xx_MMIO_PIO3_BASE, 2);
1826 pio_irq_workaround(bcm, BCM43xx_MMIO_PIO4_BASE, 3);
John W. Linvillef2223132006-01-23 16:59:58 -05001827 }
1828
Michael Buesch0ac59da2006-03-19 21:43:40 +01001829 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, reason);
John W. Linvillef2223132006-01-23 16:59:58 -05001830
Michael Buesch9218e022006-08-16 00:25:16 +02001831 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA0_REASON,
John W. Linvillef2223132006-01-23 16:59:58 -05001832 bcm->dma_reason[0]);
Michael Buesch9218e022006-08-16 00:25:16 +02001833 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA1_REASON,
John W. Linvillef2223132006-01-23 16:59:58 -05001834 bcm->dma_reason[1]);
Michael Buesch9218e022006-08-16 00:25:16 +02001835 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA2_REASON,
John W. Linvillef2223132006-01-23 16:59:58 -05001836 bcm->dma_reason[2]);
Michael Buesch9218e022006-08-16 00:25:16 +02001837 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA3_REASON,
John W. Linvillef2223132006-01-23 16:59:58 -05001838 bcm->dma_reason[3]);
Michael Buesch9218e022006-08-16 00:25:16 +02001839 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA4_REASON,
1840 bcm->dma_reason[4]);
1841 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA5_REASON,
1842 bcm->dma_reason[5]);
John W. Linvillef2223132006-01-23 16:59:58 -05001843}
1844
1845/* Interrupt handler top-half */
1846static irqreturn_t bcm43xx_interrupt_handler(int irq, void *dev_id, struct pt_regs *regs)
1847{
Michael Bueschefccb642006-03-11 13:39:14 +01001848 irqreturn_t ret = IRQ_HANDLED;
John W. Linvillef2223132006-01-23 16:59:58 -05001849 struct bcm43xx_private *bcm = dev_id;
Michael Buesch0ac59da2006-03-19 21:43:40 +01001850 u32 reason;
John W. Linvillef2223132006-01-23 16:59:58 -05001851
1852 if (!bcm)
1853 return IRQ_NONE;
1854
Michael Buesch78ff56a2006-06-05 20:24:10 +02001855 spin_lock(&bcm->irq_lock);
John W. Linvillef2223132006-01-23 16:59:58 -05001856
Michael Buesch58e55282006-07-08 22:02:18 +02001857 assert(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED);
1858 assert(bcm->current_core->id == BCM43xx_COREID_80211);
Michael Buescha1d79aa2006-06-17 15:19:05 +02001859
John W. Linvillef2223132006-01-23 16:59:58 -05001860 reason = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
1861 if (reason == 0xffffffff) {
1862 /* irq not for us (shared irq) */
Michael Bueschefccb642006-03-11 13:39:14 +01001863 ret = IRQ_NONE;
1864 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05001865 }
Michael Buesch0ac59da2006-03-19 21:43:40 +01001866 reason &= bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_MASK);
1867 if (!reason)
Michael Bueschefccb642006-03-11 13:39:14 +01001868 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05001869
Michael Buesch9218e022006-08-16 00:25:16 +02001870 bcm->dma_reason[0] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA0_REASON)
1871 & 0x0001DC00;
1872 bcm->dma_reason[1] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA1_REASON)
1873 & 0x0000DC00;
1874 bcm->dma_reason[2] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA2_REASON)
1875 & 0x0000DC00;
1876 bcm->dma_reason[3] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA3_REASON)
1877 & 0x0001DC00;
1878 bcm->dma_reason[4] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA4_REASON)
1879 & 0x0000DC00;
1880 bcm->dma_reason[5] = bcm43xx_read32(bcm, BCM43xx_MMIO_DMA5_REASON)
1881 & 0x0000DC00;
Michael Buesch0ac59da2006-03-19 21:43:40 +01001882
1883 bcm43xx_interrupt_ack(bcm, reason);
John W. Linvillef2223132006-01-23 16:59:58 -05001884
Michael Buescha1d79aa2006-06-17 15:19:05 +02001885 /* disable all IRQs. They are enabled again in the bottom half. */
1886 bcm->irq_savedstate = bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
1887 /* save the reason code and call our bottom half. */
1888 bcm->irq_reason = reason;
1889 tasklet_schedule(&bcm->isr_tasklet);
John W. Linvillef2223132006-01-23 16:59:58 -05001890
Michael Bueschefccb642006-03-11 13:39:14 +01001891out:
1892 mmiowb();
Michael Buesch78ff56a2006-06-05 20:24:10 +02001893 spin_unlock(&bcm->irq_lock);
John W. Linvillef2223132006-01-23 16:59:58 -05001894
Michael Bueschefccb642006-03-11 13:39:14 +01001895 return ret;
John W. Linvillef2223132006-01-23 16:59:58 -05001896}
1897
Michael Buescha4a600d2006-02-01 22:09:52 +01001898static void bcm43xx_release_firmware(struct bcm43xx_private *bcm, int force)
John W. Linvillef2223132006-01-23 16:59:58 -05001899{
Michael Buesch58e55282006-07-08 22:02:18 +02001900 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
1901
Michael Buescha4a600d2006-02-01 22:09:52 +01001902 if (bcm->firmware_norelease && !force)
John W. Linvillef2223132006-01-23 16:59:58 -05001903 return; /* Suspending or controller reset. */
Michael Buesch58e55282006-07-08 22:02:18 +02001904 release_firmware(phy->ucode);
1905 phy->ucode = NULL;
1906 release_firmware(phy->pcm);
1907 phy->pcm = NULL;
1908 release_firmware(phy->initvals0);
1909 phy->initvals0 = NULL;
1910 release_firmware(phy->initvals1);
1911 phy->initvals1 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -05001912}
1913
1914static int bcm43xx_request_firmware(struct bcm43xx_private *bcm)
1915{
Michael Buesche9357c02006-03-13 19:27:34 +01001916 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05001917 u8 rev = bcm->current_core->rev;
1918 int err = 0;
1919 int nr;
1920 char buf[22 + sizeof(modparam_fwpostfix) - 1] = { 0 };
1921
Michael Buesch58e55282006-07-08 22:02:18 +02001922 if (!phy->ucode) {
John W. Linvillef2223132006-01-23 16:59:58 -05001923 snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_microcode%d%s.fw",
1924 (rev >= 5 ? 5 : rev),
1925 modparam_fwpostfix);
Michael Buesch58e55282006-07-08 22:02:18 +02001926 err = request_firmware(&phy->ucode, buf, &bcm->pci_dev->dev);
John W. Linvillef2223132006-01-23 16:59:58 -05001927 if (err) {
1928 printk(KERN_ERR PFX
1929 "Error: Microcode \"%s\" not available or load failed.\n",
1930 buf);
1931 goto error;
1932 }
1933 }
1934
Michael Buesch58e55282006-07-08 22:02:18 +02001935 if (!phy->pcm) {
John W. Linvillef2223132006-01-23 16:59:58 -05001936 snprintf(buf, ARRAY_SIZE(buf),
1937 "bcm43xx_pcm%d%s.fw",
1938 (rev < 5 ? 4 : 5),
1939 modparam_fwpostfix);
Michael Buesch58e55282006-07-08 22:02:18 +02001940 err = request_firmware(&phy->pcm, buf, &bcm->pci_dev->dev);
John W. Linvillef2223132006-01-23 16:59:58 -05001941 if (err) {
1942 printk(KERN_ERR PFX
1943 "Error: PCM \"%s\" not available or load failed.\n",
1944 buf);
1945 goto error;
1946 }
1947 }
1948
Michael Buesch58e55282006-07-08 22:02:18 +02001949 if (!phy->initvals0) {
John W. Linvillef2223132006-01-23 16:59:58 -05001950 if (rev == 2 || rev == 4) {
1951 switch (phy->type) {
1952 case BCM43xx_PHYTYPE_A:
1953 nr = 3;
1954 break;
1955 case BCM43xx_PHYTYPE_B:
1956 case BCM43xx_PHYTYPE_G:
1957 nr = 1;
1958 break;
1959 default:
1960 goto err_noinitval;
1961 }
1962
1963 } else if (rev >= 5) {
1964 switch (phy->type) {
1965 case BCM43xx_PHYTYPE_A:
1966 nr = 7;
1967 break;
1968 case BCM43xx_PHYTYPE_B:
1969 case BCM43xx_PHYTYPE_G:
1970 nr = 5;
1971 break;
1972 default:
1973 goto err_noinitval;
1974 }
1975 } else
1976 goto err_noinitval;
1977 snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_initval%02d%s.fw",
1978 nr, modparam_fwpostfix);
1979
Michael Buesch58e55282006-07-08 22:02:18 +02001980 err = request_firmware(&phy->initvals0, buf, &bcm->pci_dev->dev);
John W. Linvillef2223132006-01-23 16:59:58 -05001981 if (err) {
1982 printk(KERN_ERR PFX
1983 "Error: InitVals \"%s\" not available or load failed.\n",
1984 buf);
1985 goto error;
1986 }
Michael Buesch58e55282006-07-08 22:02:18 +02001987 if (phy->initvals0->size % sizeof(struct bcm43xx_initval)) {
John W. Linvillef2223132006-01-23 16:59:58 -05001988 printk(KERN_ERR PFX "InitVals fileformat error.\n");
1989 goto error;
1990 }
1991 }
1992
Michael Buesch58e55282006-07-08 22:02:18 +02001993 if (!phy->initvals1) {
John W. Linvillef2223132006-01-23 16:59:58 -05001994 if (rev >= 5) {
1995 u32 sbtmstatehigh;
1996
1997 switch (phy->type) {
1998 case BCM43xx_PHYTYPE_A:
1999 sbtmstatehigh = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATEHIGH);
2000 if (sbtmstatehigh & 0x00010000)
2001 nr = 9;
2002 else
2003 nr = 10;
2004 break;
2005 case BCM43xx_PHYTYPE_B:
2006 case BCM43xx_PHYTYPE_G:
2007 nr = 6;
2008 break;
2009 default:
2010 goto err_noinitval;
2011 }
2012 snprintf(buf, ARRAY_SIZE(buf), "bcm43xx_initval%02d%s.fw",
2013 nr, modparam_fwpostfix);
2014
Michael Buesch58e55282006-07-08 22:02:18 +02002015 err = request_firmware(&phy->initvals1, buf, &bcm->pci_dev->dev);
John W. Linvillef2223132006-01-23 16:59:58 -05002016 if (err) {
2017 printk(KERN_ERR PFX
2018 "Error: InitVals \"%s\" not available or load failed.\n",
2019 buf);
2020 goto error;
2021 }
Michael Buesch58e55282006-07-08 22:02:18 +02002022 if (phy->initvals1->size % sizeof(struct bcm43xx_initval)) {
John W. Linvillef2223132006-01-23 16:59:58 -05002023 printk(KERN_ERR PFX "InitVals fileformat error.\n");
2024 goto error;
2025 }
2026 }
2027 }
2028
2029out:
2030 return err;
2031error:
Michael Buescha4a600d2006-02-01 22:09:52 +01002032 bcm43xx_release_firmware(bcm, 1);
John W. Linvillef2223132006-01-23 16:59:58 -05002033 goto out;
2034err_noinitval:
2035 printk(KERN_ERR PFX "Error: No InitVals available!\n");
2036 err = -ENOENT;
2037 goto error;
2038}
2039
2040static void bcm43xx_upload_microcode(struct bcm43xx_private *bcm)
2041{
Michael Buesch58e55282006-07-08 22:02:18 +02002042 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05002043 const u32 *data;
2044 unsigned int i, len;
2045
John W. Linvillef2223132006-01-23 16:59:58 -05002046 /* Upload Microcode. */
Michael Buesch58e55282006-07-08 22:02:18 +02002047 data = (u32 *)(phy->ucode->data);
2048 len = phy->ucode->size / sizeof(u32);
John W. Linvillef2223132006-01-23 16:59:58 -05002049 bcm43xx_shm_control_word(bcm, BCM43xx_SHM_UCODE, 0x0000);
2050 for (i = 0; i < len; i++) {
2051 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA,
2052 be32_to_cpu(data[i]));
2053 udelay(10);
2054 }
2055
2056 /* Upload PCM data. */
Michael Buesch58e55282006-07-08 22:02:18 +02002057 data = (u32 *)(phy->pcm->data);
2058 len = phy->pcm->size / sizeof(u32);
John W. Linvillef2223132006-01-23 16:59:58 -05002059 bcm43xx_shm_control_word(bcm, BCM43xx_SHM_PCM, 0x01ea);
2060 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA, 0x00004000);
2061 bcm43xx_shm_control_word(bcm, BCM43xx_SHM_PCM, 0x01eb);
2062 for (i = 0; i < len; i++) {
2063 bcm43xx_write32(bcm, BCM43xx_MMIO_SHM_DATA,
2064 be32_to_cpu(data[i]));
2065 udelay(10);
2066 }
John W. Linvillef2223132006-01-23 16:59:58 -05002067}
2068
Michael Buescha4a600d2006-02-01 22:09:52 +01002069static int bcm43xx_write_initvals(struct bcm43xx_private *bcm,
2070 const struct bcm43xx_initval *data,
2071 const unsigned int len)
John W. Linvillef2223132006-01-23 16:59:58 -05002072{
2073 u16 offset, size;
2074 u32 value;
2075 unsigned int i;
2076
2077 for (i = 0; i < len; i++) {
2078 offset = be16_to_cpu(data[i].offset);
2079 size = be16_to_cpu(data[i].size);
2080 value = be32_to_cpu(data[i].value);
2081
Michael Buescha4a600d2006-02-01 22:09:52 +01002082 if (unlikely(offset >= 0x1000))
2083 goto err_format;
2084 if (size == 2) {
2085 if (unlikely(value & 0xFFFF0000))
2086 goto err_format;
2087 bcm43xx_write16(bcm, offset, (u16)value);
2088 } else if (size == 4) {
John W. Linvillef2223132006-01-23 16:59:58 -05002089 bcm43xx_write32(bcm, offset, value);
Michael Buescha4a600d2006-02-01 22:09:52 +01002090 } else
2091 goto err_format;
John W. Linvillef2223132006-01-23 16:59:58 -05002092 }
Michael Buescha4a600d2006-02-01 22:09:52 +01002093
2094 return 0;
2095
2096err_format:
2097 printk(KERN_ERR PFX "InitVals (bcm43xx_initvalXX.fw) file-format error. "
2098 "Please fix your bcm43xx firmware files.\n");
2099 return -EPROTO;
John W. Linvillef2223132006-01-23 16:59:58 -05002100}
2101
Michael Buescha4a600d2006-02-01 22:09:52 +01002102static int bcm43xx_upload_initvals(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05002103{
Michael Buesch58e55282006-07-08 22:02:18 +02002104 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
Michael Buescha4a600d2006-02-01 22:09:52 +01002105 int err;
2106
Michael Buesch58e55282006-07-08 22:02:18 +02002107 err = bcm43xx_write_initvals(bcm, (struct bcm43xx_initval *)phy->initvals0->data,
2108 phy->initvals0->size / sizeof(struct bcm43xx_initval));
Michael Buescha4a600d2006-02-01 22:09:52 +01002109 if (err)
2110 goto out;
Michael Buesch58e55282006-07-08 22:02:18 +02002111 if (phy->initvals1) {
2112 err = bcm43xx_write_initvals(bcm, (struct bcm43xx_initval *)phy->initvals1->data,
2113 phy->initvals1->size / sizeof(struct bcm43xx_initval));
Michael Buescha4a600d2006-02-01 22:09:52 +01002114 if (err)
2115 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05002116 }
Michael Buescha4a600d2006-02-01 22:09:52 +01002117out:
Michael Buescha4a600d2006-02-01 22:09:52 +01002118 return err;
John W. Linvillef2223132006-01-23 16:59:58 -05002119}
2120
Jiri Slaby12a37682006-06-05 22:20:07 +02002121#ifdef CONFIG_BCM947XX
2122static struct pci_device_id bcm43xx_47xx_ids[] = {
2123 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4324) },
2124 { 0 }
2125};
2126#endif
2127
John W. Linvillef2223132006-01-23 16:59:58 -05002128static int bcm43xx_initialize_irq(struct bcm43xx_private *bcm)
2129{
Michael Buesch58e55282006-07-08 22:02:18 +02002130 int err;
John W. Linvillef2223132006-01-23 16:59:58 -05002131
2132 bcm->irq = bcm->pci_dev->irq;
2133#ifdef CONFIG_BCM947XX
2134 if (bcm->pci_dev->bus->number == 0) {
Jiri Slaby12a37682006-06-05 22:20:07 +02002135 struct pci_dev *d;
2136 struct pci_device_id *id;
2137 for (id = bcm43xx_47xx_ids; id->vendor; id++) {
2138 d = pci_get_device(id->vendor, id->device, NULL);
2139 if (d != NULL) {
2140 bcm->irq = d->irq;
2141 pci_dev_put(d);
2142 break;
2143 }
John W. Linvillef2223132006-01-23 16:59:58 -05002144 }
2145 }
2146#endif
Michael Buesch58e55282006-07-08 22:02:18 +02002147 err = request_irq(bcm->irq, bcm43xx_interrupt_handler,
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07002148 IRQF_SHARED, KBUILD_MODNAME, bcm);
Michael Buesch58e55282006-07-08 22:02:18 +02002149 if (err)
John W. Linvillef2223132006-01-23 16:59:58 -05002150 printk(KERN_ERR PFX "Cannot register IRQ%d\n", bcm->irq);
John W. Linvillef2223132006-01-23 16:59:58 -05002151
Michael Buesch58e55282006-07-08 22:02:18 +02002152 return err;
John W. Linvillef2223132006-01-23 16:59:58 -05002153}
2154
2155/* Switch to the core used to write the GPIO register.
2156 * This is either the ChipCommon, or the PCI core.
2157 */
Michael Buesch489423c2006-02-13 00:11:07 +01002158static int switch_to_gpio_core(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05002159{
2160 int err;
2161
2162 /* Where to find the GPIO register depends on the chipset.
2163 * If it has a ChipCommon, its register at offset 0x6c is the GPIO
2164 * control register. Otherwise the register at offset 0x6c in the
2165 * PCI core is the GPIO control register.
2166 */
2167 err = bcm43xx_switch_core(bcm, &bcm->core_chipcommon);
2168 if (err == -ENODEV) {
2169 err = bcm43xx_switch_core(bcm, &bcm->core_pci);
Michael Buesch489423c2006-02-13 00:11:07 +01002170 if (unlikely(err == -ENODEV)) {
John W. Linvillef2223132006-01-23 16:59:58 -05002171 printk(KERN_ERR PFX "gpio error: "
2172 "Neither ChipCommon nor PCI core available!\n");
Michael Buesch714eece2006-03-18 21:28:46 +01002173 }
2174 }
John W. Linvillef2223132006-01-23 16:59:58 -05002175
Michael Buesch714eece2006-03-18 21:28:46 +01002176 return err;
John W. Linvillef2223132006-01-23 16:59:58 -05002177}
2178
2179/* Initialize the GPIOs
2180 * http://bcm-specs.sipsolutions.net/GPIO
2181 */
2182static int bcm43xx_gpio_init(struct bcm43xx_private *bcm)
2183{
2184 struct bcm43xx_coreinfo *old_core;
2185 int err;
Michael Buesch714eece2006-03-18 21:28:46 +01002186 u32 mask, set;
John W. Linvillef2223132006-01-23 16:59:58 -05002187
Michael Buesch714eece2006-03-18 21:28:46 +01002188 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
2189 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
2190 & 0xFFFF3FFF);
John W. Linvillef2223132006-01-23 16:59:58 -05002191
Michael Buesch714eece2006-03-18 21:28:46 +01002192 bcm43xx_leds_switch_all(bcm, 0);
John W. Linvillef2223132006-01-23 16:59:58 -05002193 bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_MASK,
2194 bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_MASK) | 0x000F);
2195
Michael Buesch714eece2006-03-18 21:28:46 +01002196 mask = 0x0000001F;
2197 set = 0x0000000F;
John W. Linvillef2223132006-01-23 16:59:58 -05002198 if (bcm->chip_id == 0x4301) {
Michael Buesch714eece2006-03-18 21:28:46 +01002199 mask |= 0x0060;
2200 set |= 0x0060;
2201 }
2202 if (0 /* FIXME: conditional unknown */) {
2203 bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_MASK,
2204 bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_MASK)
2205 | 0x0100);
2206 mask |= 0x0180;
2207 set |= 0x0180;
John W. Linvillef2223132006-01-23 16:59:58 -05002208 }
2209 if (bcm->sprom.boardflags & BCM43xx_BFL_PACTRL) {
Michael Buesch714eece2006-03-18 21:28:46 +01002210 bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_MASK,
2211 bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_MASK)
2212 | 0x0200);
2213 mask |= 0x0200;
2214 set |= 0x0200;
John W. Linvillef2223132006-01-23 16:59:58 -05002215 }
Michael Buesch714eece2006-03-18 21:28:46 +01002216 if (bcm->current_core->rev >= 2)
2217 mask |= 0x0010; /* FIXME: This is redundant. */
John W. Linvillef2223132006-01-23 16:59:58 -05002218
Michael Buesch714eece2006-03-18 21:28:46 +01002219 old_core = bcm->current_core;
2220 err = switch_to_gpio_core(bcm);
2221 if (err)
2222 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -05002223 bcm43xx_write32(bcm, BCM43xx_GPIO_CONTROL,
Michael Buesch714eece2006-03-18 21:28:46 +01002224 (bcm43xx_read32(bcm, BCM43xx_GPIO_CONTROL) & mask) | set);
John W. Linvillef2223132006-01-23 16:59:58 -05002225 err = bcm43xx_switch_core(bcm, old_core);
Michael Buesch714eece2006-03-18 21:28:46 +01002226out:
2227 return err;
John W. Linvillef2223132006-01-23 16:59:58 -05002228}
2229
2230/* Turn off all GPIO stuff. Call this on module unload, for example. */
2231static int bcm43xx_gpio_cleanup(struct bcm43xx_private *bcm)
2232{
2233 struct bcm43xx_coreinfo *old_core;
2234 int err;
2235
2236 old_core = bcm->current_core;
2237 err = switch_to_gpio_core(bcm);
2238 if (err)
2239 return err;
2240 bcm43xx_write32(bcm, BCM43xx_GPIO_CONTROL, 0x00000000);
2241 err = bcm43xx_switch_core(bcm, old_core);
2242 assert(err == 0);
2243
2244 return 0;
2245}
2246
2247/* http://bcm-specs.sipsolutions.net/EnableMac */
2248void bcm43xx_mac_enable(struct bcm43xx_private *bcm)
2249{
Michael Buesch062caf42006-06-12 17:02:22 +02002250 bcm->mac_suspended--;
2251 assert(bcm->mac_suspended >= 0);
2252 if (bcm->mac_suspended == 0) {
2253 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
2254 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
2255 | BCM43xx_SBF_MAC_ENABLED);
2256 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, BCM43xx_IRQ_READY);
2257 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); /* dummy read */
2258 bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); /* dummy read */
2259 bcm43xx_power_saving_ctl_bits(bcm, -1, -1);
2260 }
John W. Linvillef2223132006-01-23 16:59:58 -05002261}
2262
2263/* http://bcm-specs.sipsolutions.net/SuspendMAC */
2264void bcm43xx_mac_suspend(struct bcm43xx_private *bcm)
2265{
2266 int i;
2267 u32 tmp;
2268
Michael Buesch062caf42006-06-12 17:02:22 +02002269 assert(bcm->mac_suspended >= 0);
2270 if (bcm->mac_suspended == 0) {
2271 bcm43xx_power_saving_ctl_bits(bcm, -1, 1);
2272 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
2273 bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD)
2274 & ~BCM43xx_SBF_MAC_ENABLED);
2275 bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); /* dummy read */
John W. Linville48c86da2006-07-31 14:54:57 -04002276 for (i = 10000; i; i--) {
Michael Buesch062caf42006-06-12 17:02:22 +02002277 tmp = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
2278 if (tmp & BCM43xx_IRQ_READY)
2279 goto out;
Michael Bueschb8e7cdb2006-06-27 17:56:44 +02002280 udelay(1);
Michael Buesch062caf42006-06-12 17:02:22 +02002281 }
2282 printkl(KERN_ERR PFX "MAC suspend failed\n");
John W. Linvillef2223132006-01-23 16:59:58 -05002283 }
Michael Buesch062caf42006-06-12 17:02:22 +02002284out:
2285 bcm->mac_suspended++;
John W. Linvillef2223132006-01-23 16:59:58 -05002286}
2287
2288void bcm43xx_set_iwmode(struct bcm43xx_private *bcm,
2289 int iw_mode)
2290{
2291 unsigned long flags;
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002292 struct net_device *net_dev = bcm->net_dev;
John W. Linvillef2223132006-01-23 16:59:58 -05002293 u32 status;
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002294 u16 value;
John W. Linvillef2223132006-01-23 16:59:58 -05002295
2296 spin_lock_irqsave(&bcm->ieee->lock, flags);
2297 bcm->ieee->iw_mode = iw_mode;
2298 spin_unlock_irqrestore(&bcm->ieee->lock, flags);
2299 if (iw_mode == IW_MODE_MONITOR)
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002300 net_dev->type = ARPHRD_IEEE80211;
John W. Linvillef2223132006-01-23 16:59:58 -05002301 else
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002302 net_dev->type = ARPHRD_ETHER;
John W. Linvillef2223132006-01-23 16:59:58 -05002303
John W. Linvillef2223132006-01-23 16:59:58 -05002304 status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2305 /* Reset status to infrastructured mode */
2306 status &= ~(BCM43xx_SBF_MODE_AP | BCM43xx_SBF_MODE_MONITOR);
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002307 status &= ~BCM43xx_SBF_MODE_PROMISC;
2308 status |= BCM43xx_SBF_MODE_NOTADHOC;
2309
2310/* FIXME: Always enable promisc mode, until we get the MAC filters working correctly. */
2311status |= BCM43xx_SBF_MODE_PROMISC;
John W. Linvillef2223132006-01-23 16:59:58 -05002312
2313 switch (iw_mode) {
2314 case IW_MODE_MONITOR:
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002315 status |= BCM43xx_SBF_MODE_MONITOR;
2316 status |= BCM43xx_SBF_MODE_PROMISC;
John W. Linvillef2223132006-01-23 16:59:58 -05002317 break;
2318 case IW_MODE_ADHOC:
2319 status &= ~BCM43xx_SBF_MODE_NOTADHOC;
2320 break;
2321 case IW_MODE_MASTER:
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002322 status |= BCM43xx_SBF_MODE_AP;
2323 break;
John W. Linvillef2223132006-01-23 16:59:58 -05002324 case IW_MODE_SECOND:
2325 case IW_MODE_REPEAT:
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002326 TODO(); /* TODO */
John W. Linvillef2223132006-01-23 16:59:58 -05002327 break;
2328 case IW_MODE_INFRA:
2329 /* nothing to be done here... */
2330 break;
2331 default:
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002332 dprintk(KERN_ERR PFX "Unknown mode in set_iwmode: %d\n", iw_mode);
John W. Linvillef2223132006-01-23 16:59:58 -05002333 }
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002334 if (net_dev->flags & IFF_PROMISC)
2335 status |= BCM43xx_SBF_MODE_PROMISC;
John W. Linvillef2223132006-01-23 16:59:58 -05002336 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, status);
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002337
2338 value = 0x0002;
2339 if (iw_mode != IW_MODE_ADHOC && iw_mode != IW_MODE_MASTER) {
2340 if (bcm->chip_id == 0x4306 && bcm->chip_rev == 3)
2341 value = 0x0064;
2342 else
2343 value = 0x0032;
2344 }
2345 bcm43xx_write16(bcm, 0x0612, value);
John W. Linvillef2223132006-01-23 16:59:58 -05002346}
2347
2348/* This is the opposite of bcm43xx_chip_init() */
2349static void bcm43xx_chip_cleanup(struct bcm43xx_private *bcm)
2350{
2351 bcm43xx_radio_turn_off(bcm);
2352 if (!modparam_noleds)
2353 bcm43xx_leds_exit(bcm);
2354 bcm43xx_gpio_cleanup(bcm);
Michael Buescha4a600d2006-02-01 22:09:52 +01002355 bcm43xx_release_firmware(bcm, 0);
John W. Linvillef2223132006-01-23 16:59:58 -05002356}
2357
2358/* Initialize the chip
2359 * http://bcm-specs.sipsolutions.net/ChipInit
2360 */
2361static int bcm43xx_chip_init(struct bcm43xx_private *bcm)
2362{
Michael Buesche9357c02006-03-13 19:27:34 +01002363 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
2364 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05002365 int err;
Michael Buesch58e55282006-07-08 22:02:18 +02002366 int i, tmp;
John W. Linvillef2223132006-01-23 16:59:58 -05002367 u32 value32;
2368 u16 value16;
2369
2370 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD,
2371 BCM43xx_SBF_CORE_READY
2372 | BCM43xx_SBF_400);
2373
2374 err = bcm43xx_request_firmware(bcm);
2375 if (err)
2376 goto out;
2377 bcm43xx_upload_microcode(bcm);
2378
Michael Buesch58e55282006-07-08 22:02:18 +02002379 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, 0xFFFFFFFF);
2380 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, 0x00020402);
2381 i = 0;
2382 while (1) {
2383 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
2384 if (value32 == BCM43xx_IRQ_READY)
2385 break;
2386 i++;
2387 if (i >= BCM43xx_IRQWAIT_MAX_RETRIES) {
2388 printk(KERN_ERR PFX "IRQ_READY timeout\n");
2389 err = -ENODEV;
2390 goto err_release_fw;
2391 }
2392 udelay(10);
2393 }
2394 bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); /* dummy read */
John W. Linvillef2223132006-01-23 16:59:58 -05002395
2396 err = bcm43xx_gpio_init(bcm);
2397 if (err)
Michael Buesch58e55282006-07-08 22:02:18 +02002398 goto err_release_fw;
John W. Linvillef2223132006-01-23 16:59:58 -05002399
Michael Buescha4a600d2006-02-01 22:09:52 +01002400 err = bcm43xx_upload_initvals(bcm);
2401 if (err)
2402 goto err_gpio_cleanup;
John W. Linvillef2223132006-01-23 16:59:58 -05002403 bcm43xx_radio_turn_on(bcm);
2404
John W. Linvillef2223132006-01-23 16:59:58 -05002405 bcm43xx_write16(bcm, 0x03E6, 0x0000);
2406 err = bcm43xx_phy_init(bcm);
2407 if (err)
2408 goto err_radio_off;
2409
2410 /* Select initial Interference Mitigation. */
Michael Buesche9357c02006-03-13 19:27:34 +01002411 tmp = radio->interfmode;
2412 radio->interfmode = BCM43xx_RADIO_INTERFMODE_NONE;
John W. Linvillef2223132006-01-23 16:59:58 -05002413 bcm43xx_radio_set_interference_mitigation(bcm, tmp);
2414
2415 bcm43xx_phy_set_antenna_diversity(bcm);
2416 bcm43xx_radio_set_txantenna(bcm, BCM43xx_RADIO_TXANTENNA_DEFAULT);
Michael Buesche9357c02006-03-13 19:27:34 +01002417 if (phy->type == BCM43xx_PHYTYPE_B) {
John W. Linvillef2223132006-01-23 16:59:58 -05002418 value16 = bcm43xx_read16(bcm, 0x005E);
2419 value16 |= 0x0004;
2420 bcm43xx_write16(bcm, 0x005E, value16);
2421 }
2422 bcm43xx_write32(bcm, 0x0100, 0x01000000);
2423 if (bcm->current_core->rev < 5)
2424 bcm43xx_write32(bcm, 0x010C, 0x01000000);
2425
2426 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2427 value32 &= ~ BCM43xx_SBF_MODE_NOTADHOC;
2428 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32);
2429 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
2430 value32 |= BCM43xx_SBF_MODE_NOTADHOC;
2431 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32);
John W. Linvillef2223132006-01-23 16:59:58 -05002432
John W. Linvillef2223132006-01-23 16:59:58 -05002433 value32 = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002434 value32 |= 0x100000;
John W. Linvillef2223132006-01-23 16:59:58 -05002435 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value32);
2436
Michael Buesch77db31e2006-02-12 16:47:44 +01002437 if (bcm43xx_using_pio(bcm)) {
John W. Linvillef2223132006-01-23 16:59:58 -05002438 bcm43xx_write32(bcm, 0x0210, 0x00000100);
2439 bcm43xx_write32(bcm, 0x0230, 0x00000100);
2440 bcm43xx_write32(bcm, 0x0250, 0x00000100);
2441 bcm43xx_write32(bcm, 0x0270, 0x00000100);
2442 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0034, 0x0000);
2443 }
2444
2445 /* Probe Response Timeout value */
2446 /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
2447 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0074, 0x0000);
2448
Michael Buesch6ab5b8e2006-03-19 17:18:48 +01002449 /* Initially set the wireless operation mode. */
2450 bcm43xx_set_iwmode(bcm, bcm->ieee->iw_mode);
John W. Linvillef2223132006-01-23 16:59:58 -05002451
2452 if (bcm->current_core->rev < 3) {
2453 bcm43xx_write16(bcm, 0x060E, 0x0000);
2454 bcm43xx_write16(bcm, 0x0610, 0x8000);
2455 bcm43xx_write16(bcm, 0x0604, 0x0000);
2456 bcm43xx_write16(bcm, 0x0606, 0x0200);
2457 } else {
2458 bcm43xx_write32(bcm, 0x0188, 0x80000000);
2459 bcm43xx_write32(bcm, 0x018C, 0x02000000);
2460 }
2461 bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON, 0x00004000);
Michael Buesch9218e022006-08-16 00:25:16 +02002462 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA0_IRQ_MASK, 0x0001DC00);
2463 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA1_IRQ_MASK, 0x0000DC00);
John W. Linvillef2223132006-01-23 16:59:58 -05002464 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA2_IRQ_MASK, 0x0000DC00);
Michael Buesch9218e022006-08-16 00:25:16 +02002465 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA3_IRQ_MASK, 0x0001DC00);
2466 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA4_IRQ_MASK, 0x0000DC00);
2467 bcm43xx_write32(bcm, BCM43xx_MMIO_DMA5_IRQ_MASK, 0x0000DC00);
John W. Linvillef2223132006-01-23 16:59:58 -05002468
2469 value32 = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
2470 value32 |= 0x00100000;
2471 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, value32);
2472
2473 bcm43xx_write16(bcm, BCM43xx_MMIO_POWERUP_DELAY, bcm43xx_pctl_powerup_delay(bcm));
2474
2475 assert(err == 0);
2476 dprintk(KERN_INFO PFX "Chip initialized\n");
2477out:
2478 return err;
2479
2480err_radio_off:
2481 bcm43xx_radio_turn_off(bcm);
Michael Buescha4a600d2006-02-01 22:09:52 +01002482err_gpio_cleanup:
John W. Linvillef2223132006-01-23 16:59:58 -05002483 bcm43xx_gpio_cleanup(bcm);
Michael Buescha4a600d2006-02-01 22:09:52 +01002484err_release_fw:
2485 bcm43xx_release_firmware(bcm, 1);
John W. Linvillef2223132006-01-23 16:59:58 -05002486 goto out;
2487}
2488
2489/* Validate chip access
2490 * http://bcm-specs.sipsolutions.net/ValidateChipAccess */
2491static int bcm43xx_validate_chip(struct bcm43xx_private *bcm)
2492{
John W. Linvillef2223132006-01-23 16:59:58 -05002493 u32 value;
2494 u32 shm_backup;
2495
2496 shm_backup = bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000);
2497 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, 0xAA5555AA);
Michael Buesch489423c2006-02-13 00:11:07 +01002498 if (bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000) != 0xAA5555AA)
2499 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002500 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, 0x55AAAA55);
Michael Buesch489423c2006-02-13 00:11:07 +01002501 if (bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, 0x0000) != 0x55AAAA55)
2502 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002503 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED, 0x0000, shm_backup);
2504
2505 value = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
Michael Buesch489423c2006-02-13 00:11:07 +01002506 if ((value | 0x80000000) != 0x80000400)
2507 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002508
2509 value = bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON);
Michael Buesch489423c2006-02-13 00:11:07 +01002510 if (value != 0x00000000)
2511 goto error;
John W. Linvillef2223132006-01-23 16:59:58 -05002512
Michael Buesch489423c2006-02-13 00:11:07 +01002513 return 0;
2514error:
2515 printk(KERN_ERR PFX "Failed to validate the chipaccess\n");
2516 return -ENODEV;
John W. Linvillef2223132006-01-23 16:59:58 -05002517}
2518
Michael Buesch8afceb12006-03-25 17:04:41 +01002519static void bcm43xx_init_struct_phyinfo(struct bcm43xx_phyinfo *phy)
Michael Buesche9357c02006-03-13 19:27:34 +01002520{
2521 /* Initialize a "phyinfo" structure. The structure is already
2522 * zeroed out.
Michael Buesch58e55282006-07-08 22:02:18 +02002523 * This is called on insmod time to initialize members.
Michael Buesche9357c02006-03-13 19:27:34 +01002524 */
Michael Buesche9357c02006-03-13 19:27:34 +01002525 phy->savedpctlreg = 0xFFFF;
Michael Buesche9357c02006-03-13 19:27:34 +01002526 spin_lock_init(&phy->lock);
2527}
2528
Michael Buesch8afceb12006-03-25 17:04:41 +01002529static void bcm43xx_init_struct_radioinfo(struct bcm43xx_radioinfo *radio)
Michael Buesche9357c02006-03-13 19:27:34 +01002530{
2531 /* Initialize a "radioinfo" structure. The structure is already
2532 * zeroed out.
Michael Buesch58e55282006-07-08 22:02:18 +02002533 * This is called on insmod time to initialize members.
Michael Buesche9357c02006-03-13 19:27:34 +01002534 */
2535 radio->interfmode = BCM43xx_RADIO_INTERFMODE_NONE;
2536 radio->channel = 0xFF;
2537 radio->initial_channel = 0xFF;
Michael Buesche9357c02006-03-13 19:27:34 +01002538}
2539
John W. Linvillef2223132006-01-23 16:59:58 -05002540static int bcm43xx_probe_cores(struct bcm43xx_private *bcm)
2541{
2542 int err, i;
2543 int current_core;
2544 u32 core_vendor, core_id, core_rev;
2545 u32 sb_id_hi, chip_id_32 = 0;
2546 u16 pci_device, chip_id_16;
2547 u8 core_count;
2548
2549 memset(&bcm->core_chipcommon, 0, sizeof(struct bcm43xx_coreinfo));
2550 memset(&bcm->core_pci, 0, sizeof(struct bcm43xx_coreinfo));
John W. Linvillef2223132006-01-23 16:59:58 -05002551 memset(&bcm->core_80211, 0, sizeof(struct bcm43xx_coreinfo)
2552 * BCM43xx_MAX_80211_CORES);
Michael Buesche9357c02006-03-13 19:27:34 +01002553 memset(&bcm->core_80211_ext, 0, sizeof(struct bcm43xx_coreinfo_80211)
2554 * BCM43xx_MAX_80211_CORES);
Michael Buesche9357c02006-03-13 19:27:34 +01002555 bcm->nr_80211_available = 0;
2556 bcm->current_core = NULL;
2557 bcm->active_80211_core = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -05002558
2559 /* map core 0 */
2560 err = _switch_core(bcm, 0);
2561 if (err)
2562 goto out;
2563
2564 /* fetch sb_id_hi from core information registers */
2565 sb_id_hi = bcm43xx_read32(bcm, BCM43xx_CIR_SB_ID_HI);
2566
2567 core_id = (sb_id_hi & 0xFFF0) >> 4;
2568 core_rev = (sb_id_hi & 0xF);
2569 core_vendor = (sb_id_hi & 0xFFFF0000) >> 16;
2570
2571 /* if present, chipcommon is always core 0; read the chipid from it */
2572 if (core_id == BCM43xx_COREID_CHIPCOMMON) {
2573 chip_id_32 = bcm43xx_read32(bcm, 0);
2574 chip_id_16 = chip_id_32 & 0xFFFF;
Michael Buesche9357c02006-03-13 19:27:34 +01002575 bcm->core_chipcommon.available = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05002576 bcm->core_chipcommon.id = core_id;
2577 bcm->core_chipcommon.rev = core_rev;
2578 bcm->core_chipcommon.index = 0;
2579 /* While we are at it, also read the capabilities. */
2580 bcm->chipcommon_capabilities = bcm43xx_read32(bcm, BCM43xx_CHIPCOMMON_CAPABILITIES);
2581 } else {
2582 /* without a chipCommon, use a hard coded table. */
2583 pci_device = bcm->pci_dev->device;
2584 if (pci_device == 0x4301)
2585 chip_id_16 = 0x4301;
2586 else if ((pci_device >= 0x4305) && (pci_device <= 0x4307))
2587 chip_id_16 = 0x4307;
2588 else if ((pci_device >= 0x4402) && (pci_device <= 0x4403))
2589 chip_id_16 = 0x4402;
2590 else if ((pci_device >= 0x4610) && (pci_device <= 0x4615))
2591 chip_id_16 = 0x4610;
2592 else if ((pci_device >= 0x4710) && (pci_device <= 0x4715))
2593 chip_id_16 = 0x4710;
2594#ifdef CONFIG_BCM947XX
2595 else if ((pci_device >= 0x4320) && (pci_device <= 0x4325))
2596 chip_id_16 = 0x4309;
2597#endif
2598 else {
2599 printk(KERN_ERR PFX "Could not determine Chip ID\n");
2600 return -ENODEV;
2601 }
2602 }
2603
2604 /* ChipCommon with Core Rev >=4 encodes number of cores,
2605 * otherwise consult hardcoded table */
2606 if ((core_id == BCM43xx_COREID_CHIPCOMMON) && (core_rev >= 4)) {
2607 core_count = (chip_id_32 & 0x0F000000) >> 24;
2608 } else {
2609 switch (chip_id_16) {
2610 case 0x4610:
2611 case 0x4704:
2612 case 0x4710:
2613 core_count = 9;
2614 break;
2615 case 0x4310:
2616 core_count = 8;
2617 break;
2618 case 0x5365:
2619 core_count = 7;
2620 break;
2621 case 0x4306:
2622 core_count = 6;
2623 break;
2624 case 0x4301:
2625 case 0x4307:
2626 core_count = 5;
2627 break;
2628 case 0x4402:
2629 core_count = 3;
2630 break;
2631 default:
2632 /* SOL if we get here */
2633 assert(0);
2634 core_count = 1;
2635 }
2636 }
2637
2638 bcm->chip_id = chip_id_16;
Michael Bueschadc40e92006-03-25 20:36:57 +01002639 bcm->chip_rev = (chip_id_32 & 0x000F0000) >> 16;
2640 bcm->chip_package = (chip_id_32 & 0x00F00000) >> 20;
John W. Linvillef2223132006-01-23 16:59:58 -05002641
2642 dprintk(KERN_INFO PFX "Chip ID 0x%x, rev 0x%x\n",
2643 bcm->chip_id, bcm->chip_rev);
2644 dprintk(KERN_INFO PFX "Number of cores: %d\n", core_count);
Michael Buesche9357c02006-03-13 19:27:34 +01002645 if (bcm->core_chipcommon.available) {
John W. Linvillef2223132006-01-23 16:59:58 -05002646 dprintk(KERN_INFO PFX "Core 0: ID 0x%x, rev 0x%x, vendor 0x%x, %s\n",
2647 core_id, core_rev, core_vendor,
2648 bcm43xx_core_enabled(bcm) ? "enabled" : "disabled");
2649 }
2650
Michael Buesche9357c02006-03-13 19:27:34 +01002651 if (bcm->core_chipcommon.available)
John W. Linvillef2223132006-01-23 16:59:58 -05002652 current_core = 1;
2653 else
2654 current_core = 0;
2655 for ( ; current_core < core_count; current_core++) {
2656 struct bcm43xx_coreinfo *core;
Michael Buesche9357c02006-03-13 19:27:34 +01002657 struct bcm43xx_coreinfo_80211 *ext_80211;
John W. Linvillef2223132006-01-23 16:59:58 -05002658
2659 err = _switch_core(bcm, current_core);
2660 if (err)
2661 goto out;
2662 /* Gather information */
2663 /* fetch sb_id_hi from core information registers */
2664 sb_id_hi = bcm43xx_read32(bcm, BCM43xx_CIR_SB_ID_HI);
2665
2666 /* extract core_id, core_rev, core_vendor */
2667 core_id = (sb_id_hi & 0xFFF0) >> 4;
2668 core_rev = (sb_id_hi & 0xF);
2669 core_vendor = (sb_id_hi & 0xFFFF0000) >> 16;
2670
2671 dprintk(KERN_INFO PFX "Core %d: ID 0x%x, rev 0x%x, vendor 0x%x, %s\n",
2672 current_core, core_id, core_rev, core_vendor,
2673 bcm43xx_core_enabled(bcm) ? "enabled" : "disabled" );
2674
2675 core = NULL;
2676 switch (core_id) {
2677 case BCM43xx_COREID_PCI:
2678 core = &bcm->core_pci;
Michael Buesche9357c02006-03-13 19:27:34 +01002679 if (core->available) {
John W. Linvillef2223132006-01-23 16:59:58 -05002680 printk(KERN_WARNING PFX "Multiple PCI cores found.\n");
2681 continue;
2682 }
2683 break;
John W. Linvillef2223132006-01-23 16:59:58 -05002684 case BCM43xx_COREID_80211:
2685 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
2686 core = &(bcm->core_80211[i]);
Michael Buesche9357c02006-03-13 19:27:34 +01002687 ext_80211 = &(bcm->core_80211_ext[i]);
2688 if (!core->available)
John W. Linvillef2223132006-01-23 16:59:58 -05002689 break;
2690 core = NULL;
2691 }
2692 if (!core) {
2693 printk(KERN_WARNING PFX "More than %d cores of type 802.11 found.\n",
2694 BCM43xx_MAX_80211_CORES);
2695 continue;
2696 }
2697 if (i != 0) {
2698 /* More than one 80211 core is only supported
2699 * by special chips.
2700 * There are chips with two 80211 cores, but with
2701 * dangling pins on the second core. Be careful
2702 * and ignore these cores here.
2703 */
2704 if (bcm->pci_dev->device != 0x4324) {
2705 dprintk(KERN_INFO PFX "Ignoring additional 802.11 core.\n");
2706 continue;
2707 }
2708 }
2709 switch (core_rev) {
2710 case 2:
2711 case 4:
2712 case 5:
2713 case 6:
2714 case 7:
2715 case 9:
2716 break;
2717 default:
2718 printk(KERN_ERR PFX "Error: Unsupported 80211 core revision %u\n",
2719 core_rev);
2720 err = -ENODEV;
2721 goto out;
2722 }
Michael Buesche9357c02006-03-13 19:27:34 +01002723 bcm->nr_80211_available++;
Michael Buesch58e55282006-07-08 22:02:18 +02002724 core->priv = ext_80211;
Michael Buesche9357c02006-03-13 19:27:34 +01002725 bcm43xx_init_struct_phyinfo(&ext_80211->phy);
2726 bcm43xx_init_struct_radioinfo(&ext_80211->radio);
John W. Linvillef2223132006-01-23 16:59:58 -05002727 break;
2728 case BCM43xx_COREID_CHIPCOMMON:
2729 printk(KERN_WARNING PFX "Multiple CHIPCOMMON cores found.\n");
2730 break;
John W. Linvillef2223132006-01-23 16:59:58 -05002731 }
2732 if (core) {
Michael Buesche9357c02006-03-13 19:27:34 +01002733 core->available = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05002734 core->id = core_id;
2735 core->rev = core_rev;
2736 core->index = current_core;
2737 }
2738 }
2739
Michael Buesche9357c02006-03-13 19:27:34 +01002740 if (!bcm->core_80211[0].available) {
John W. Linvillef2223132006-01-23 16:59:58 -05002741 printk(KERN_ERR PFX "Error: No 80211 core found!\n");
2742 err = -ENODEV;
2743 goto out;
2744 }
2745
2746 err = bcm43xx_switch_core(bcm, &bcm->core_80211[0]);
2747
2748 assert(err == 0);
2749out:
2750 return err;
2751}
2752
2753static void bcm43xx_gen_bssid(struct bcm43xx_private *bcm)
2754{
2755 const u8 *mac = (const u8*)(bcm->net_dev->dev_addr);
2756 u8 *bssid = bcm->ieee->bssid;
2757
2758 switch (bcm->ieee->iw_mode) {
2759 case IW_MODE_ADHOC:
2760 random_ether_addr(bssid);
2761 break;
2762 case IW_MODE_MASTER:
2763 case IW_MODE_INFRA:
2764 case IW_MODE_REPEAT:
2765 case IW_MODE_SECOND:
2766 case IW_MODE_MONITOR:
2767 memcpy(bssid, mac, ETH_ALEN);
2768 break;
2769 default:
2770 assert(0);
2771 }
2772}
2773
2774static void bcm43xx_rate_memory_write(struct bcm43xx_private *bcm,
2775 u16 rate,
2776 int is_ofdm)
2777{
2778 u16 offset;
2779
2780 if (is_ofdm) {
2781 offset = 0x480;
2782 offset += (bcm43xx_plcp_get_ratecode_ofdm(rate) & 0x000F) * 2;
2783 }
2784 else {
2785 offset = 0x4C0;
2786 offset += (bcm43xx_plcp_get_ratecode_cck(rate) & 0x000F) * 2;
2787 }
2788 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, offset + 0x20,
2789 bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, offset));
2790}
2791
2792static void bcm43xx_rate_memory_init(struct bcm43xx_private *bcm)
2793{
Michael Buesche9357c02006-03-13 19:27:34 +01002794 switch (bcm43xx_current_phy(bcm)->type) {
John W. Linvillef2223132006-01-23 16:59:58 -05002795 case BCM43xx_PHYTYPE_A:
2796 case BCM43xx_PHYTYPE_G:
2797 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_6MB, 1);
2798 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_12MB, 1);
2799 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_18MB, 1);
2800 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_24MB, 1);
2801 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_36MB, 1);
2802 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_48MB, 1);
2803 bcm43xx_rate_memory_write(bcm, IEEE80211_OFDM_RATE_54MB, 1);
2804 case BCM43xx_PHYTYPE_B:
2805 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_1MB, 0);
2806 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_2MB, 0);
2807 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_5MB, 0);
2808 bcm43xx_rate_memory_write(bcm, IEEE80211_CCK_RATE_11MB, 0);
2809 break;
2810 default:
2811 assert(0);
2812 }
2813}
2814
2815static void bcm43xx_wireless_core_cleanup(struct bcm43xx_private *bcm)
2816{
2817 bcm43xx_chip_cleanup(bcm);
2818 bcm43xx_pio_free(bcm);
2819 bcm43xx_dma_free(bcm);
2820
Michael Buesche9357c02006-03-13 19:27:34 +01002821 bcm->current_core->initialized = 0;
John W. Linvillef2223132006-01-23 16:59:58 -05002822}
2823
2824/* http://bcm-specs.sipsolutions.net/80211Init */
Michael Buesch58e55282006-07-08 22:02:18 +02002825static int bcm43xx_wireless_core_init(struct bcm43xx_private *bcm,
2826 int active_wlcore)
John W. Linvillef2223132006-01-23 16:59:58 -05002827{
Michael Buesche9357c02006-03-13 19:27:34 +01002828 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
2829 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05002830 u32 ucodeflags;
2831 int err;
2832 u32 sbimconfiglow;
2833 u8 limit;
2834
2835 if (bcm->chip_rev < 5) {
2836 sbimconfiglow = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMCONFIGLOW);
2837 sbimconfiglow &= ~ BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_MASK;
2838 sbimconfiglow &= ~ BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_MASK;
2839 if (bcm->bustype == BCM43xx_BUSTYPE_PCI)
2840 sbimconfiglow |= 0x32;
2841 else if (bcm->bustype == BCM43xx_BUSTYPE_SB)
2842 sbimconfiglow |= 0x53;
2843 else
2844 assert(0);
2845 bcm43xx_write32(bcm, BCM43xx_CIR_SBIMCONFIGLOW, sbimconfiglow);
2846 }
2847
2848 bcm43xx_phy_calibrate(bcm);
2849 err = bcm43xx_chip_init(bcm);
2850 if (err)
2851 goto out;
2852
2853 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0016, bcm->current_core->rev);
2854 ucodeflags = bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED, BCM43xx_UCODEFLAGS_OFFSET);
2855
2856 if (0 /*FIXME: which condition has to be used here? */)
2857 ucodeflags |= 0x00000010;
2858
2859 /* HW decryption needs to be set now */
2860 ucodeflags |= 0x40000000;
2861
Michael Buesche9357c02006-03-13 19:27:34 +01002862 if (phy->type == BCM43xx_PHYTYPE_G) {
John W. Linvillef2223132006-01-23 16:59:58 -05002863 ucodeflags |= BCM43xx_UCODEFLAG_UNKBGPHY;
Michael Buesche9357c02006-03-13 19:27:34 +01002864 if (phy->rev == 1)
John W. Linvillef2223132006-01-23 16:59:58 -05002865 ucodeflags |= BCM43xx_UCODEFLAG_UNKGPHY;
2866 if (bcm->sprom.boardflags & BCM43xx_BFL_PACTRL)
2867 ucodeflags |= BCM43xx_UCODEFLAG_UNKPACTRL;
Michael Buesche9357c02006-03-13 19:27:34 +01002868 } else if (phy->type == BCM43xx_PHYTYPE_B) {
John W. Linvillef2223132006-01-23 16:59:58 -05002869 ucodeflags |= BCM43xx_UCODEFLAG_UNKBGPHY;
Michael Buesche9357c02006-03-13 19:27:34 +01002870 if (phy->rev >= 2 && radio->version == 0x2050)
John W. Linvillef2223132006-01-23 16:59:58 -05002871 ucodeflags &= ~BCM43xx_UCODEFLAG_UNKGPHY;
2872 }
2873
2874 if (ucodeflags != bcm43xx_shm_read32(bcm, BCM43xx_SHM_SHARED,
2875 BCM43xx_UCODEFLAGS_OFFSET)) {
2876 bcm43xx_shm_write32(bcm, BCM43xx_SHM_SHARED,
2877 BCM43xx_UCODEFLAGS_OFFSET, ucodeflags);
2878 }
2879
2880 /* Short/Long Retry Limit.
2881 * The retry-limit is a 4-bit counter. Enforce this to avoid overflowing
2882 * the chip-internal counter.
2883 */
2884 limit = limit_value(modparam_short_retry, 0, 0xF);
2885 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0006, limit);
2886 limit = limit_value(modparam_long_retry, 0, 0xF);
2887 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0007, limit);
2888
2889 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0044, 3);
2890 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0046, 2);
2891
2892 bcm43xx_rate_memory_init(bcm);
2893
2894 /* Minimum Contention Window */
Michael Buesche9357c02006-03-13 19:27:34 +01002895 if (phy->type == BCM43xx_PHYTYPE_B)
John W. Linvillef2223132006-01-23 16:59:58 -05002896 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0003, 0x0000001f);
2897 else
2898 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0003, 0x0000000f);
2899 /* Maximum Contention Window */
2900 bcm43xx_shm_write32(bcm, BCM43xx_SHM_WIRELESS, 0x0004, 0x000003ff);
2901
2902 bcm43xx_gen_bssid(bcm);
2903 bcm43xx_write_mac_bssid_templates(bcm);
2904
2905 if (bcm->current_core->rev >= 5)
2906 bcm43xx_write16(bcm, 0x043C, 0x000C);
2907
Michael Buesch58e55282006-07-08 22:02:18 +02002908 if (active_wlcore) {
2909 if (bcm43xx_using_pio(bcm))
2910 err = bcm43xx_pio_init(bcm);
2911 else
2912 err = bcm43xx_dma_init(bcm);
2913 if (err)
2914 goto err_chip_cleanup;
2915 }
John W. Linvillef2223132006-01-23 16:59:58 -05002916 bcm43xx_write16(bcm, 0x0612, 0x0050);
2917 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0416, 0x0050);
2918 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED, 0x0414, 0x01F4);
2919
Michael Buesch58e55282006-07-08 22:02:18 +02002920 if (active_wlcore) {
2921 if (radio->initial_channel != 0xFF)
2922 bcm43xx_radio_selectchannel(bcm, radio->initial_channel, 0);
2923 }
John W. Linvillef2223132006-01-23 16:59:58 -05002924
Michael Buesch58e55282006-07-08 22:02:18 +02002925 /* Don't enable MAC/IRQ here, as it will race with the IRQ handler.
2926 * We enable it later.
2927 */
Michael Buesche9357c02006-03-13 19:27:34 +01002928 bcm->current_core->initialized = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05002929out:
2930 return err;
2931
2932err_chip_cleanup:
2933 bcm43xx_chip_cleanup(bcm);
2934 goto out;
2935}
2936
2937static int bcm43xx_chipset_attach(struct bcm43xx_private *bcm)
2938{
2939 int err;
2940 u16 pci_status;
2941
2942 err = bcm43xx_pctl_set_crystal(bcm, 1);
2943 if (err)
2944 goto out;
2945 bcm43xx_pci_read_config16(bcm, PCI_STATUS, &pci_status);
2946 bcm43xx_pci_write_config16(bcm, PCI_STATUS, pci_status & ~PCI_STATUS_SIG_TARGET_ABORT);
2947
2948out:
2949 return err;
2950}
2951
2952static void bcm43xx_chipset_detach(struct bcm43xx_private *bcm)
2953{
2954 bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_SLOW);
2955 bcm43xx_pctl_set_crystal(bcm, 0);
2956}
2957
Michael Buesch489423c2006-02-13 00:11:07 +01002958static void bcm43xx_pcicore_broadcast_value(struct bcm43xx_private *bcm,
2959 u32 address,
2960 u32 data)
John W. Linvillef2223132006-01-23 16:59:58 -05002961{
2962 bcm43xx_write32(bcm, BCM43xx_PCICORE_BCAST_ADDR, address);
2963 bcm43xx_write32(bcm, BCM43xx_PCICORE_BCAST_DATA, data);
2964}
2965
2966static int bcm43xx_pcicore_commit_settings(struct bcm43xx_private *bcm)
2967{
2968 int err;
2969 struct bcm43xx_coreinfo *old_core;
2970
2971 old_core = bcm->current_core;
2972 err = bcm43xx_switch_core(bcm, &bcm->core_pci);
2973 if (err)
2974 goto out;
2975
2976 bcm43xx_pcicore_broadcast_value(bcm, 0xfd8, 0x00000000);
2977
2978 bcm43xx_switch_core(bcm, old_core);
2979 assert(err == 0);
2980out:
2981 return err;
2982}
2983
2984/* Make an I/O Core usable. "core_mask" is the bitmask of the cores to enable.
2985 * To enable core 0, pass a core_mask of 1<<0
2986 */
2987static int bcm43xx_setup_backplane_pci_connection(struct bcm43xx_private *bcm,
2988 u32 core_mask)
2989{
2990 u32 backplane_flag_nr;
2991 u32 value;
2992 struct bcm43xx_coreinfo *old_core;
2993 int err = 0;
2994
2995 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBTPSFLAG);
2996 backplane_flag_nr = value & BCM43xx_BACKPLANE_FLAG_NR_MASK;
2997
2998 old_core = bcm->current_core;
2999 err = bcm43xx_switch_core(bcm, &bcm->core_pci);
3000 if (err)
3001 goto out;
3002
3003 if (bcm->core_pci.rev < 6) {
3004 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBINTVEC);
3005 value |= (1 << backplane_flag_nr);
3006 bcm43xx_write32(bcm, BCM43xx_CIR_SBINTVEC, value);
3007 } else {
3008 err = bcm43xx_pci_read_config32(bcm, BCM43xx_PCICFG_ICR, &value);
3009 if (err) {
3010 printk(KERN_ERR PFX "Error: ICR setup failure!\n");
3011 goto out_switch_back;
3012 }
3013 value |= core_mask << 8;
3014 err = bcm43xx_pci_write_config32(bcm, BCM43xx_PCICFG_ICR, value);
3015 if (err) {
3016 printk(KERN_ERR PFX "Error: ICR setup failure!\n");
3017 goto out_switch_back;
3018 }
3019 }
3020
3021 value = bcm43xx_read32(bcm, BCM43xx_PCICORE_SBTOPCI2);
3022 value |= BCM43xx_SBTOPCI2_PREFETCH | BCM43xx_SBTOPCI2_BURST;
3023 bcm43xx_write32(bcm, BCM43xx_PCICORE_SBTOPCI2, value);
3024
3025 if (bcm->core_pci.rev < 5) {
3026 value = bcm43xx_read32(bcm, BCM43xx_CIR_SBIMCONFIGLOW);
3027 value |= (2 << BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_SHIFT)
3028 & BCM43xx_SBIMCONFIGLOW_SERVICE_TOUT_MASK;
3029 value |= (3 << BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_SHIFT)
3030 & BCM43xx_SBIMCONFIGLOW_REQUEST_TOUT_MASK;
3031 bcm43xx_write32(bcm, BCM43xx_CIR_SBIMCONFIGLOW, value);
3032 err = bcm43xx_pcicore_commit_settings(bcm);
3033 assert(err == 0);
3034 }
3035
3036out_switch_back:
3037 err = bcm43xx_switch_core(bcm, old_core);
3038out:
3039 return err;
3040}
3041
Michael Bueschab4977f2006-02-12 22:40:39 +01003042static void bcm43xx_periodic_every120sec(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05003043{
Michael Buesche9357c02006-03-13 19:27:34 +01003044 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003045
Michael Bueschab4977f2006-02-12 22:40:39 +01003046 if (phy->type != BCM43xx_PHYTYPE_G || phy->rev < 2)
3047 return;
John W. Linvillef2223132006-01-23 16:59:58 -05003048
Michael Bueschab4977f2006-02-12 22:40:39 +01003049 bcm43xx_mac_suspend(bcm);
3050 bcm43xx_phy_lo_g_measure(bcm);
3051 bcm43xx_mac_enable(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003052}
3053
Michael Bueschab4977f2006-02-12 22:40:39 +01003054static void bcm43xx_periodic_every60sec(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05003055{
John W. Linvillef2223132006-01-23 16:59:58 -05003056 bcm43xx_phy_lo_mark_all_unused(bcm);
3057 if (bcm->sprom.boardflags & BCM43xx_BFL_RSSI) {
3058 bcm43xx_mac_suspend(bcm);
3059 bcm43xx_calc_nrssi_slope(bcm);
3060 bcm43xx_mac_enable(bcm);
3061 }
John W. Linvillef2223132006-01-23 16:59:58 -05003062}
3063
Michael Bueschab4977f2006-02-12 22:40:39 +01003064static void bcm43xx_periodic_every30sec(struct bcm43xx_private *bcm)
John W. Linvillef2223132006-01-23 16:59:58 -05003065{
John W. Linvillef2223132006-01-23 16:59:58 -05003066 /* Update device statistics. */
3067 bcm43xx_calculate_link_quality(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003068}
John W. Linvillef2223132006-01-23 16:59:58 -05003069
Michael Bueschab4977f2006-02-12 22:40:39 +01003070static void bcm43xx_periodic_every15sec(struct bcm43xx_private *bcm)
3071{
Michael Buesche9357c02006-03-13 19:27:34 +01003072 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
3073 struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003074
3075 if (phy->type == BCM43xx_PHYTYPE_G) {
3076 //TODO: update_aci_moving_average
3077 if (radio->aci_enable && radio->aci_wlan_automatic) {
3078 bcm43xx_mac_suspend(bcm);
3079 if (!radio->aci_enable && 1 /*TODO: not scanning? */) {
3080 if (0 /*TODO: bunch of conditions*/) {
3081 bcm43xx_radio_set_interference_mitigation(bcm,
3082 BCM43xx_RADIO_INTERFMODE_MANUALWLAN);
3083 }
3084 } else if (1/*TODO*/) {
3085 /*
3086 if ((aci_average > 1000) && !(bcm43xx_radio_aci_scan(bcm))) {
3087 bcm43xx_radio_set_interference_mitigation(bcm,
3088 BCM43xx_RADIO_INTERFMODE_NONE);
3089 }
3090 */
3091 }
3092 bcm43xx_mac_enable(bcm);
3093 } else if (radio->interfmode == BCM43xx_RADIO_INTERFMODE_NONWLAN &&
3094 phy->rev == 1) {
3095 //TODO: implement rev1 workaround
3096 }
John W. Linvillef2223132006-01-23 16:59:58 -05003097 }
Michael Bueschab4977f2006-02-12 22:40:39 +01003098 bcm43xx_phy_xmitpower(bcm); //FIXME: unless scanning?
3099 //TODO for APHY (temperature?)
3100}
3101
Michael Buesch91769e72006-06-05 20:24:21 +02003102static void do_periodic_work(struct bcm43xx_private *bcm)
Michael Bueschab4977f2006-02-12 22:40:39 +01003103{
Michael Bueschab4977f2006-02-12 22:40:39 +01003104 unsigned int state;
3105
Michael Bueschab4977f2006-02-12 22:40:39 +01003106 state = bcm->periodic_state;
3107 if (state % 8 == 0)
3108 bcm43xx_periodic_every120sec(bcm);
3109 if (state % 4 == 0)
3110 bcm43xx_periodic_every60sec(bcm);
3111 if (state % 2 == 0)
3112 bcm43xx_periodic_every30sec(bcm);
Michael Buesch91769e72006-06-05 20:24:21 +02003113 if (state % 1 == 0)
3114 bcm43xx_periodic_every15sec(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003115 bcm->periodic_state = state + 1;
3116
Michael Buesch78ff56a2006-06-05 20:24:10 +02003117 schedule_delayed_work(&bcm->periodic_work, HZ * 15);
Michael Buesch91769e72006-06-05 20:24:21 +02003118}
Michael Bueschab4977f2006-02-12 22:40:39 +01003119
Michael Buesch91769e72006-06-05 20:24:21 +02003120/* Estimate a "Badness" value based on the periodic work
3121 * state-machine state. "Badness" is worse (bigger), if the
3122 * periodic work will take longer.
3123 */
3124static int estimate_periodic_work_badness(unsigned int state)
3125{
3126 int badness = 0;
3127
3128 if (state % 8 == 0) /* every 120 sec */
3129 badness += 10;
3130 if (state % 4 == 0) /* every 60 sec */
3131 badness += 5;
3132 if (state % 2 == 0) /* every 30 sec */
3133 badness += 1;
3134 if (state % 1 == 0) /* every 15 sec */
3135 badness += 1;
3136
3137#define BADNESS_LIMIT 4
3138 return badness;
3139}
3140
3141static void bcm43xx_periodic_work_handler(void *d)
3142{
3143 struct bcm43xx_private *bcm = d;
3144 unsigned long flags;
3145 u32 savedirqs = 0;
3146 int badness;
3147
3148 badness = estimate_periodic_work_badness(bcm->periodic_state);
3149 if (badness > BADNESS_LIMIT) {
3150 /* Periodic work will take a long time, so we want it to
3151 * be preemtible.
3152 */
Michael Buesch91769e72006-06-05 20:24:21 +02003153 netif_stop_queue(bcm->net_dev);
Michael Buesch062caf42006-06-12 17:02:22 +02003154 synchronize_net();
Michael Bueschefa6a372006-06-27 21:38:40 +02003155 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch062caf42006-06-12 17:02:22 +02003156 bcm43xx_mac_suspend(bcm);
Michael Buesch91769e72006-06-05 20:24:21 +02003157 if (bcm43xx_using_pio(bcm))
3158 bcm43xx_pio_freeze_txqueues(bcm);
3159 savedirqs = bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
Michael Bueschefa6a372006-06-27 21:38:40 +02003160 spin_unlock_irqrestore(&bcm->irq_lock, flags);
3161 mutex_lock(&bcm->mutex);
Michael Buesch91769e72006-06-05 20:24:21 +02003162 bcm43xx_synchronize_irq(bcm);
3163 } else {
3164 /* Periodic work should take short time, so we want low
3165 * locking overhead.
3166 */
Michael Bueschefa6a372006-06-27 21:38:40 +02003167 mutex_lock(&bcm->mutex);
3168 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch91769e72006-06-05 20:24:21 +02003169 }
3170
3171 do_periodic_work(bcm);
3172
3173 if (badness > BADNESS_LIMIT) {
Michael Bueschefa6a372006-06-27 21:38:40 +02003174 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch91769e72006-06-05 20:24:21 +02003175 if (likely(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED)) {
3176 tasklet_enable(&bcm->isr_tasklet);
3177 bcm43xx_interrupt_enable(bcm, savedirqs);
3178 if (bcm43xx_using_pio(bcm))
3179 bcm43xx_pio_thaw_txqueues(bcm);
Michael Buesch062caf42006-06-12 17:02:22 +02003180 bcm43xx_mac_enable(bcm);
Michael Buesch91769e72006-06-05 20:24:21 +02003181 }
3182 netif_wake_queue(bcm->net_dev);
Michael Buesch91769e72006-06-05 20:24:21 +02003183 }
Michael Bueschefa6a372006-06-27 21:38:40 +02003184 mmiowb();
3185 spin_unlock_irqrestore(&bcm->irq_lock, flags);
3186 mutex_unlock(&bcm->mutex);
John W. Linvillef2223132006-01-23 16:59:58 -05003187}
3188
John W. Linvillef2223132006-01-23 16:59:58 -05003189static void bcm43xx_periodic_tasks_delete(struct bcm43xx_private *bcm)
3190{
Michael Buesch78ff56a2006-06-05 20:24:10 +02003191 cancel_rearming_delayed_work(&bcm->periodic_work);
John W. Linvillef2223132006-01-23 16:59:58 -05003192}
3193
John W. Linvillef2223132006-01-23 16:59:58 -05003194static void bcm43xx_periodic_tasks_setup(struct bcm43xx_private *bcm)
3195{
Michael Buesch78ff56a2006-06-05 20:24:10 +02003196 struct work_struct *work = &(bcm->periodic_work);
John W. Linvillef2223132006-01-23 16:59:58 -05003197
Michael Buesch78ff56a2006-06-05 20:24:10 +02003198 assert(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED);
3199 INIT_WORK(work, bcm43xx_periodic_work_handler, bcm);
3200 schedule_work(work);
John W. Linvillef2223132006-01-23 16:59:58 -05003201}
3202
3203static void bcm43xx_security_init(struct bcm43xx_private *bcm)
3204{
3205 bcm->security_offset = bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED,
3206 0x0056) * 2;
3207 bcm43xx_clear_keys(bcm);
3208}
3209
Michael Buesch71c0cd72006-06-26 00:25:04 -07003210static int bcm43xx_rng_read(struct hwrng *rng, u32 *data)
3211{
3212 struct bcm43xx_private *bcm = (struct bcm43xx_private *)rng->priv;
3213 unsigned long flags;
3214
John W. Linvillef1207ba2006-07-27 18:10:00 -04003215 spin_lock_irqsave(&(bcm)->irq_lock, flags);
Michael Buesch71c0cd72006-06-26 00:25:04 -07003216 *data = bcm43xx_read16(bcm, BCM43xx_MMIO_RNG);
John W. Linvillef1207ba2006-07-27 18:10:00 -04003217 spin_unlock_irqrestore(&(bcm)->irq_lock, flags);
Michael Buesch71c0cd72006-06-26 00:25:04 -07003218
3219 return (sizeof(u16));
3220}
3221
3222static void bcm43xx_rng_exit(struct bcm43xx_private *bcm)
3223{
3224 hwrng_unregister(&bcm->rng);
3225}
3226
3227static int bcm43xx_rng_init(struct bcm43xx_private *bcm)
3228{
3229 int err;
3230
3231 snprintf(bcm->rng_name, ARRAY_SIZE(bcm->rng_name),
3232 "%s_%s", KBUILD_MODNAME, bcm->net_dev->name);
3233 bcm->rng.name = bcm->rng_name;
3234 bcm->rng.data_read = bcm43xx_rng_read;
3235 bcm->rng.priv = (unsigned long)bcm;
3236 err = hwrng_register(&bcm->rng);
3237 if (err)
3238 printk(KERN_ERR PFX "RNG init failed (%d)\n", err);
3239
3240 return err;
3241}
3242
Michael Buesch58e55282006-07-08 22:02:18 +02003243static int bcm43xx_shutdown_all_wireless_cores(struct bcm43xx_private *bcm)
3244{
3245 int ret = 0;
3246 int i, err;
3247 struct bcm43xx_coreinfo *core;
3248
3249 bcm43xx_set_status(bcm, BCM43xx_STAT_SHUTTINGDOWN);
3250 for (i = 0; i < bcm->nr_80211_available; i++) {
3251 core = &(bcm->core_80211[i]);
3252 assert(core->available);
3253 if (!core->initialized)
3254 continue;
3255 err = bcm43xx_switch_core(bcm, core);
3256 if (err) {
3257 dprintk(KERN_ERR PFX "shutdown_all_wireless_cores "
3258 "switch_core failed (%d)\n", err);
3259 ret = err;
3260 continue;
3261 }
3262 bcm43xx_interrupt_disable(bcm, BCM43xx_IRQ_ALL);
3263 bcm43xx_read32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON); /* dummy read */
3264 bcm43xx_wireless_core_cleanup(bcm);
3265 if (core == bcm->active_80211_core)
3266 bcm->active_80211_core = NULL;
3267 }
3268 free_irq(bcm->irq, bcm);
3269 bcm43xx_set_status(bcm, BCM43xx_STAT_UNINIT);
3270
3271 return ret;
3272}
3273
John W. Linvillef2223132006-01-23 16:59:58 -05003274/* This is the opposite of bcm43xx_init_board() */
3275static void bcm43xx_free_board(struct bcm43xx_private *bcm)
3276{
Michael Buesch367f8992006-02-28 15:32:19 +01003277 bcm43xx_sysfs_unregister(bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01003278 bcm43xx_periodic_tasks_delete(bcm);
3279
John W. Linvillef1207ba2006-07-27 18:10:00 -04003280 mutex_lock(&(bcm)->mutex);
Michael Buesch58e55282006-07-08 22:02:18 +02003281 bcm43xx_shutdown_all_wireless_cores(bcm);
3282 bcm43xx_pctl_set_crystal(bcm, 0);
John W. Linvillef1207ba2006-07-27 18:10:00 -04003283 mutex_unlock(&(bcm)->mutex);
Michael Buesch58e55282006-07-08 22:02:18 +02003284}
John W. Linvillef2223132006-01-23 16:59:58 -05003285
Michael Buesch58e55282006-07-08 22:02:18 +02003286static void prepare_phydata_for_init(struct bcm43xx_phyinfo *phy)
3287{
3288 phy->antenna_diversity = 0xFFFF;
3289 memset(phy->minlowsig, 0xFF, sizeof(phy->minlowsig));
3290 memset(phy->minlowsigpos, 0, sizeof(phy->minlowsigpos));
3291
3292 /* Flags */
3293 phy->calibrated = 0;
3294 phy->is_locked = 0;
3295
3296 if (phy->_lo_pairs) {
3297 memset(phy->_lo_pairs, 0,
3298 sizeof(struct bcm43xx_lopair) * BCM43xx_LO_COUNT);
3299 }
3300 memset(phy->loopback_gain, 0, sizeof(phy->loopback_gain));
3301}
3302
3303static void prepare_radiodata_for_init(struct bcm43xx_private *bcm,
3304 struct bcm43xx_radioinfo *radio)
3305{
3306 int i;
3307
3308 /* Set default attenuation values. */
3309 radio->baseband_atten = bcm43xx_default_baseband_attenuation(bcm);
3310 radio->radio_atten = bcm43xx_default_radio_attenuation(bcm);
3311 radio->txctl1 = bcm43xx_default_txctl1(bcm);
3312 radio->txctl2 = 0xFFFF;
3313 radio->txpwr_offset = 0;
3314
3315 /* NRSSI */
3316 radio->nrssislope = 0;
3317 for (i = 0; i < ARRAY_SIZE(radio->nrssi); i++)
3318 radio->nrssi[i] = -1000;
3319 for (i = 0; i < ARRAY_SIZE(radio->nrssi_lt); i++)
3320 radio->nrssi_lt[i] = i;
3321
3322 radio->lofcal = 0xFFFF;
3323 radio->initval = 0xFFFF;
3324
3325 radio->aci_enable = 0;
3326 radio->aci_wlan_automatic = 0;
3327 radio->aci_hw_rssi = 0;
3328}
3329
3330static void prepare_priv_for_init(struct bcm43xx_private *bcm)
3331{
3332 int i;
3333 struct bcm43xx_coreinfo *core;
3334 struct bcm43xx_coreinfo_80211 *wlext;
3335
3336 assert(!bcm->active_80211_core);
3337
3338 bcm43xx_set_status(bcm, BCM43xx_STAT_INITIALIZING);
3339
3340 /* Flags */
3341 bcm->was_initialized = 0;
3342 bcm->reg124_set_0x4 = 0;
3343
3344 /* Stats */
3345 memset(&bcm->stats, 0, sizeof(bcm->stats));
3346
3347 /* Wireless core data */
John W. Linvillef2223132006-01-23 16:59:58 -05003348 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
Michael Buesch58e55282006-07-08 22:02:18 +02003349 core = &(bcm->core_80211[i]);
3350 wlext = core->priv;
John W. Linvillef2223132006-01-23 16:59:58 -05003351
Michael Buesch58e55282006-07-08 22:02:18 +02003352 if (!core->available)
3353 continue;
3354 assert(wlext == &(bcm->core_80211_ext[i]));
3355
3356 prepare_phydata_for_init(&wlext->phy);
3357 prepare_radiodata_for_init(bcm, &wlext->radio);
John W. Linvillef2223132006-01-23 16:59:58 -05003358 }
3359
Michael Buesch58e55282006-07-08 22:02:18 +02003360 /* IRQ related flags */
3361 bcm->irq_reason = 0;
3362 memset(bcm->dma_reason, 0, sizeof(bcm->dma_reason));
3363 bcm->irq_savedstate = BCM43xx_IRQ_INITIAL;
John W. Linvillef2223132006-01-23 16:59:58 -05003364
Michael Buesch58e55282006-07-08 22:02:18 +02003365 /* Noise calculation context */
3366 memset(&bcm->noisecalc, 0, sizeof(bcm->noisecalc));
3367
3368 /* Periodic work context */
3369 bcm->periodic_state = 0;
3370}
3371
3372static int wireless_core_up(struct bcm43xx_private *bcm,
3373 int active_wlcore)
3374{
3375 int err;
3376
3377 if (!bcm43xx_core_enabled(bcm))
3378 bcm43xx_wireless_core_reset(bcm, 1);
3379 if (!active_wlcore)
3380 bcm43xx_wireless_core_mark_inactive(bcm);
3381 err = bcm43xx_wireless_core_init(bcm, active_wlcore);
3382 if (err)
3383 goto out;
3384 if (!active_wlcore)
3385 bcm43xx_radio_turn_off(bcm);
3386out:
3387 return err;
3388}
3389
3390/* Select and enable the "to be used" wireless core.
3391 * Locking: bcm->mutex must be aquired before calling this.
3392 * bcm->irq_lock must not be aquired.
3393 */
3394int bcm43xx_select_wireless_core(struct bcm43xx_private *bcm,
3395 int phytype)
3396{
3397 int i, err;
3398 struct bcm43xx_coreinfo *active_core = NULL;
3399 struct bcm43xx_coreinfo_80211 *active_wlext = NULL;
3400 struct bcm43xx_coreinfo *core;
3401 struct bcm43xx_coreinfo_80211 *wlext;
3402 int adjust_active_sbtmstatelow = 0;
3403
3404 might_sleep();
3405
3406 if (phytype < 0) {
3407 /* If no phytype is requested, select the first core. */
3408 assert(bcm->core_80211[0].available);
3409 wlext = bcm->core_80211[0].priv;
3410 phytype = wlext->phy.type;
3411 }
3412 /* Find the requested core. */
3413 for (i = 0; i < bcm->nr_80211_available; i++) {
3414 core = &(bcm->core_80211[i]);
3415 wlext = core->priv;
3416 if (wlext->phy.type == phytype) {
3417 active_core = core;
3418 active_wlext = wlext;
3419 break;
3420 }
3421 }
3422 if (!active_core)
3423 return -ESRCH; /* No such PHYTYPE on this board. */
3424
3425 if (bcm->active_80211_core) {
3426 /* We already selected a wl core in the past.
3427 * So first clean up everything.
3428 */
3429 dprintk(KERN_INFO PFX "select_wireless_core: cleanup\n");
3430 ieee80211softmac_stop(bcm->net_dev);
3431 bcm43xx_set_status(bcm, BCM43xx_STAT_INITIALIZED);
3432 err = bcm43xx_disable_interrupts_sync(bcm);
3433 assert(!err);
3434 tasklet_enable(&bcm->isr_tasklet);
3435 err = bcm43xx_shutdown_all_wireless_cores(bcm);
3436 if (err)
3437 goto error;
3438 /* Ok, everything down, continue to re-initialize. */
3439 bcm43xx_set_status(bcm, BCM43xx_STAT_INITIALIZING);
3440 }
3441
3442 /* Reset all data structures. */
3443 prepare_priv_for_init(bcm);
3444
3445 err = bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_FAST);
3446 if (err)
3447 goto error;
3448
3449 /* Mark all unused cores "inactive". */
3450 for (i = 0; i < bcm->nr_80211_available; i++) {
3451 core = &(bcm->core_80211[i]);
3452 wlext = core->priv;
3453
3454 if (core == active_core)
3455 continue;
3456 err = bcm43xx_switch_core(bcm, core);
3457 if (err) {
3458 dprintk(KERN_ERR PFX "Could not switch to inactive "
3459 "802.11 core (%d)\n", err);
3460 goto error;
3461 }
3462 err = wireless_core_up(bcm, 0);
3463 if (err) {
3464 dprintk(KERN_ERR PFX "core_up for inactive 802.11 core "
3465 "failed (%d)\n", err);
3466 goto error;
3467 }
3468 adjust_active_sbtmstatelow = 1;
3469 }
3470
3471 /* Now initialize the active 802.11 core. */
3472 err = bcm43xx_switch_core(bcm, active_core);
3473 if (err) {
3474 dprintk(KERN_ERR PFX "Could not switch to active "
3475 "802.11 core (%d)\n", err);
3476 goto error;
3477 }
3478 if (adjust_active_sbtmstatelow &&
3479 active_wlext->phy.type == BCM43xx_PHYTYPE_G) {
3480 u32 sbtmstatelow;
3481
3482 sbtmstatelow = bcm43xx_read32(bcm, BCM43xx_CIR_SBTMSTATELOW);
3483 sbtmstatelow |= 0x20000000;
3484 bcm43xx_write32(bcm, BCM43xx_CIR_SBTMSTATELOW, sbtmstatelow);
3485 }
3486 err = wireless_core_up(bcm, 1);
3487 if (err) {
3488 dprintk(KERN_ERR PFX "core_up for active 802.11 core "
3489 "failed (%d)\n", err);
3490 goto error;
3491 }
3492 err = bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_DYNAMIC);
3493 if (err)
3494 goto error;
3495 bcm->active_80211_core = active_core;
3496
3497 bcm43xx_macfilter_clear(bcm, BCM43xx_MACFILTER_ASSOC);
3498 bcm43xx_macfilter_set(bcm, BCM43xx_MACFILTER_SELF, (u8 *)(bcm->net_dev->dev_addr));
3499 bcm43xx_security_init(bcm);
3500 ieee80211softmac_start(bcm->net_dev);
3501
3502 /* Let's go! Be careful after enabling the IRQs.
3503 * Don't switch cores, for example.
3504 */
3505 bcm43xx_mac_enable(bcm);
3506 bcm43xx_set_status(bcm, BCM43xx_STAT_INITIALIZED);
3507 err = bcm43xx_initialize_irq(bcm);
3508 if (err)
3509 goto error;
3510 bcm43xx_interrupt_enable(bcm, bcm->irq_savedstate);
3511
3512 dprintk(KERN_INFO PFX "Selected 802.11 core (phytype %d)\n",
3513 active_wlext->phy.type);
3514
3515 return 0;
3516
3517error:
Michael Buesch78ff56a2006-06-05 20:24:10 +02003518 bcm43xx_set_status(bcm, BCM43xx_STAT_UNINIT);
Michael Buesch58e55282006-07-08 22:02:18 +02003519 bcm43xx_pctl_set_clock(bcm, BCM43xx_PCTL_CLK_SLOW);
3520 return err;
John W. Linvillef2223132006-01-23 16:59:58 -05003521}
3522
3523static int bcm43xx_init_board(struct bcm43xx_private *bcm)
3524{
Michael Buesch58e55282006-07-08 22:02:18 +02003525 int err;
John W. Linvillef2223132006-01-23 16:59:58 -05003526
John W. Linvillef1207ba2006-07-27 18:10:00 -04003527 mutex_lock(&(bcm)->mutex);
John W. Linvillef2223132006-01-23 16:59:58 -05003528
Michael Buesch58e55282006-07-08 22:02:18 +02003529 tasklet_enable(&bcm->isr_tasklet);
John W. Linvillef2223132006-01-23 16:59:58 -05003530 err = bcm43xx_pctl_set_crystal(bcm, 1);
3531 if (err)
Michael Buesch58e55282006-07-08 22:02:18 +02003532 goto err_tasklet;
John W. Linvillef2223132006-01-23 16:59:58 -05003533 err = bcm43xx_pctl_init(bcm);
3534 if (err)
3535 goto err_crystal_off;
Michael Buesch58e55282006-07-08 22:02:18 +02003536 err = bcm43xx_select_wireless_core(bcm, -1);
John W. Linvillef2223132006-01-23 16:59:58 -05003537 if (err)
3538 goto err_crystal_off;
3539
John W. Linvillef2223132006-01-23 16:59:58 -05003540 bcm43xx_periodic_tasks_setup(bcm);
Michael Buesch58e55282006-07-08 22:02:18 +02003541 err = bcm43xx_sysfs_register(bcm);
3542 if (err)
3543 goto err_wlshutdown;
John W. Linvillef2223132006-01-23 16:59:58 -05003544
David Woodhousebc519f32006-05-05 17:38:27 +01003545 /*FIXME: This should be handled by softmac instead. */
3546 schedule_work(&bcm->softmac->associnfo.work);
3547
John W. Linvillef2223132006-01-23 16:59:58 -05003548out:
John W. Linvillef1207ba2006-07-27 18:10:00 -04003549 mutex_unlock(&(bcm)->mutex);
Michael Buesch78ff56a2006-06-05 20:24:10 +02003550
John W. Linvillef2223132006-01-23 16:59:58 -05003551 return err;
3552
Michael Buesch58e55282006-07-08 22:02:18 +02003553err_wlshutdown:
3554 bcm43xx_shutdown_all_wireless_cores(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003555err_crystal_off:
3556 bcm43xx_pctl_set_crystal(bcm, 0);
Michael Buesch58e55282006-07-08 22:02:18 +02003557err_tasklet:
3558 tasklet_disable(&bcm->isr_tasklet);
John W. Linvillef2223132006-01-23 16:59:58 -05003559 goto out;
3560}
3561
3562static void bcm43xx_detach_board(struct bcm43xx_private *bcm)
3563{
3564 struct pci_dev *pci_dev = bcm->pci_dev;
3565 int i;
3566
3567 bcm43xx_chipset_detach(bcm);
3568 /* Do _not_ access the chip, after it is detached. */
Michael Bueschcc935712006-04-10 02:08:33 +02003569 pci_iounmap(pci_dev, bcm->mmio_addr);
John W. Linvillef2223132006-01-23 16:59:58 -05003570 pci_release_regions(pci_dev);
3571 pci_disable_device(pci_dev);
3572
3573 /* Free allocated structures/fields */
3574 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
Michael Buesche9357c02006-03-13 19:27:34 +01003575 kfree(bcm->core_80211_ext[i].phy._lo_pairs);
3576 if (bcm->core_80211_ext[i].phy.dyn_tssi_tbl)
3577 kfree(bcm->core_80211_ext[i].phy.tssi2dbm);
John W. Linvillef2223132006-01-23 16:59:58 -05003578 }
3579}
3580
3581static int bcm43xx_read_phyinfo(struct bcm43xx_private *bcm)
3582{
Michael Buesche9357c02006-03-13 19:27:34 +01003583 struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003584 u16 value;
3585 u8 phy_version;
3586 u8 phy_type;
3587 u8 phy_rev;
3588 int phy_rev_ok = 1;
3589 void *p;
3590
3591 value = bcm43xx_read16(bcm, BCM43xx_MMIO_PHY_VER);
3592
3593 phy_version = (value & 0xF000) >> 12;
3594 phy_type = (value & 0x0F00) >> 8;
3595 phy_rev = (value & 0x000F);
3596
3597 dprintk(KERN_INFO PFX "Detected PHY: Version: %x, Type %x, Revision %x\n",
3598 phy_version, phy_type, phy_rev);
3599
3600 switch (phy_type) {
3601 case BCM43xx_PHYTYPE_A:
3602 if (phy_rev >= 4)
3603 phy_rev_ok = 0;
3604 /*FIXME: We need to switch the ieee->modulation, etc.. flags,
3605 * if we switch 80211 cores after init is done.
3606 * As we do not implement on the fly switching between
3607 * wireless cores, I will leave this as a future task.
3608 */
3609 bcm->ieee->modulation = IEEE80211_OFDM_MODULATION;
3610 bcm->ieee->mode = IEEE_A;
3611 bcm->ieee->freq_band = IEEE80211_52GHZ_BAND |
3612 IEEE80211_24GHZ_BAND;
3613 break;
3614 case BCM43xx_PHYTYPE_B:
3615 if (phy_rev != 2 && phy_rev != 4 && phy_rev != 6 && phy_rev != 7)
3616 phy_rev_ok = 0;
3617 bcm->ieee->modulation = IEEE80211_CCK_MODULATION;
3618 bcm->ieee->mode = IEEE_B;
3619 bcm->ieee->freq_band = IEEE80211_24GHZ_BAND;
3620 break;
3621 case BCM43xx_PHYTYPE_G:
3622 if (phy_rev > 7)
3623 phy_rev_ok = 0;
3624 bcm->ieee->modulation = IEEE80211_OFDM_MODULATION |
3625 IEEE80211_CCK_MODULATION;
3626 bcm->ieee->mode = IEEE_G;
3627 bcm->ieee->freq_band = IEEE80211_24GHZ_BAND;
3628 break;
3629 default:
3630 printk(KERN_ERR PFX "Error: Unknown PHY Type %x\n",
3631 phy_type);
3632 return -ENODEV;
3633 };
3634 if (!phy_rev_ok) {
3635 printk(KERN_WARNING PFX "Invalid PHY Revision %x\n",
3636 phy_rev);
3637 }
3638
Michael Buesch489423c2006-02-13 00:11:07 +01003639 phy->version = phy_version;
3640 phy->type = phy_type;
3641 phy->rev = phy_rev;
John W. Linvillef2223132006-01-23 16:59:58 -05003642 if ((phy_type == BCM43xx_PHYTYPE_B) || (phy_type == BCM43xx_PHYTYPE_G)) {
3643 p = kzalloc(sizeof(struct bcm43xx_lopair) * BCM43xx_LO_COUNT,
3644 GFP_KERNEL);
3645 if (!p)
3646 return -ENOMEM;
Michael Buesch489423c2006-02-13 00:11:07 +01003647 phy->_lo_pairs = p;
John W. Linvillef2223132006-01-23 16:59:58 -05003648 }
3649
3650 return 0;
3651}
3652
3653static int bcm43xx_attach_board(struct bcm43xx_private *bcm)
3654{
3655 struct pci_dev *pci_dev = bcm->pci_dev;
3656 struct net_device *net_dev = bcm->net_dev;
3657 int err;
3658 int i;
John W. Linvillef2223132006-01-23 16:59:58 -05003659 u32 coremask;
3660
3661 err = pci_enable_device(pci_dev);
3662 if (err) {
Michael Bueschcc935712006-04-10 02:08:33 +02003663 printk(KERN_ERR PFX "pci_enable_device() failed\n");
John W. Linvillef2223132006-01-23 16:59:58 -05003664 goto out;
3665 }
Michael Buesch65f3f192006-01-31 20:11:38 +01003666 err = pci_request_regions(pci_dev, KBUILD_MODNAME);
John W. Linvillef2223132006-01-23 16:59:58 -05003667 if (err) {
Michael Bueschcc935712006-04-10 02:08:33 +02003668 printk(KERN_ERR PFX "pci_request_regions() failed\n");
John W. Linvillef2223132006-01-23 16:59:58 -05003669 goto err_pci_disable;
3670 }
John W. Linvillef2223132006-01-23 16:59:58 -05003671 /* enable PCI bus-mastering */
3672 pci_set_master(pci_dev);
Michael Bueschcc935712006-04-10 02:08:33 +02003673 bcm->mmio_addr = pci_iomap(pci_dev, 0, ~0UL);
Michael Buesch4a1821e2006-03-18 20:19:12 +01003674 if (!bcm->mmio_addr) {
Michael Bueschcc935712006-04-10 02:08:33 +02003675 printk(KERN_ERR PFX "pci_iomap() failed\n");
John W. Linvillef2223132006-01-23 16:59:58 -05003676 err = -EIO;
3677 goto err_pci_release;
3678 }
Michael Buesch4a1821e2006-03-18 20:19:12 +01003679 net_dev->base_addr = (unsigned long)bcm->mmio_addr;
John W. Linvillef2223132006-01-23 16:59:58 -05003680
3681 bcm43xx_pci_read_config16(bcm, PCI_SUBSYSTEM_VENDOR_ID,
3682 &bcm->board_vendor);
3683 bcm43xx_pci_read_config16(bcm, PCI_SUBSYSTEM_ID,
3684 &bcm->board_type);
3685 bcm43xx_pci_read_config16(bcm, PCI_REVISION_ID,
3686 &bcm->board_revision);
3687
3688 err = bcm43xx_chipset_attach(bcm);
3689 if (err)
3690 goto err_iounmap;
3691 err = bcm43xx_pctl_init(bcm);
3692 if (err)
3693 goto err_chipset_detach;
3694 err = bcm43xx_probe_cores(bcm);
3695 if (err)
3696 goto err_chipset_detach;
3697
John W. Linvillef2223132006-01-23 16:59:58 -05003698 /* Attach all IO cores to the backplane. */
3699 coremask = 0;
Michael Buesche9357c02006-03-13 19:27:34 +01003700 for (i = 0; i < bcm->nr_80211_available; i++)
John W. Linvillef2223132006-01-23 16:59:58 -05003701 coremask |= (1 << bcm->core_80211[i].index);
3702 //FIXME: Also attach some non80211 cores?
3703 err = bcm43xx_setup_backplane_pci_connection(bcm, coremask);
3704 if (err) {
3705 printk(KERN_ERR PFX "Backplane->PCI connection failed!\n");
3706 goto err_chipset_detach;
3707 }
3708
Michael Bueschea0922b2006-02-19 14:09:20 +01003709 err = bcm43xx_sprom_extract(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05003710 if (err)
3711 goto err_chipset_detach;
3712 err = bcm43xx_leds_init(bcm);
3713 if (err)
3714 goto err_chipset_detach;
3715
Michael Buesche9357c02006-03-13 19:27:34 +01003716 for (i = 0; i < bcm->nr_80211_available; i++) {
John W. Linvillef2223132006-01-23 16:59:58 -05003717 err = bcm43xx_switch_core(bcm, &bcm->core_80211[i]);
3718 assert(err != -ENODEV);
3719 if (err)
3720 goto err_80211_unwind;
3721
3722 /* Enable the selected wireless core.
3723 * Connect PHY only on the first core.
3724 */
3725 bcm43xx_wireless_core_reset(bcm, (i == 0));
3726
3727 err = bcm43xx_read_phyinfo(bcm);
3728 if (err && (i == 0))
3729 goto err_80211_unwind;
3730
3731 err = bcm43xx_read_radioinfo(bcm);
3732 if (err && (i == 0))
3733 goto err_80211_unwind;
3734
3735 err = bcm43xx_validate_chip(bcm);
3736 if (err && (i == 0))
3737 goto err_80211_unwind;
3738
3739 bcm43xx_radio_turn_off(bcm);
3740 err = bcm43xx_phy_init_tssi2dbm_table(bcm);
3741 if (err)
3742 goto err_80211_unwind;
3743 bcm43xx_wireless_core_disable(bcm);
3744 }
Michael Buesch869aaab2006-05-05 17:23:51 +02003745 err = bcm43xx_geo_init(bcm);
3746 if (err)
3747 goto err_80211_unwind;
John W. Linvillef2223132006-01-23 16:59:58 -05003748 bcm43xx_pctl_set_crystal(bcm, 0);
3749
3750 /* Set the MAC address in the networking subsystem */
Stefano Briviof9f7b962006-05-05 01:26:29 +02003751 if (is_valid_ether_addr(bcm->sprom.et1macaddr))
John W. Linvillef2223132006-01-23 16:59:58 -05003752 memcpy(bcm->net_dev->dev_addr, bcm->sprom.et1macaddr, 6);
3753 else
3754 memcpy(bcm->net_dev->dev_addr, bcm->sprom.il0macaddr, 6);
3755
John W. Linvillef2223132006-01-23 16:59:58 -05003756 snprintf(bcm->nick, IW_ESSID_MAX_SIZE,
3757 "Broadcom %04X", bcm->chip_id);
3758
3759 assert(err == 0);
3760out:
3761 return err;
3762
3763err_80211_unwind:
3764 for (i = 0; i < BCM43xx_MAX_80211_CORES; i++) {
Michael Buesche9357c02006-03-13 19:27:34 +01003765 kfree(bcm->core_80211_ext[i].phy._lo_pairs);
3766 if (bcm->core_80211_ext[i].phy.dyn_tssi_tbl)
3767 kfree(bcm->core_80211_ext[i].phy.tssi2dbm);
John W. Linvillef2223132006-01-23 16:59:58 -05003768 }
3769err_chipset_detach:
3770 bcm43xx_chipset_detach(bcm);
3771err_iounmap:
Michael Bueschcc935712006-04-10 02:08:33 +02003772 pci_iounmap(pci_dev, bcm->mmio_addr);
John W. Linvillef2223132006-01-23 16:59:58 -05003773err_pci_release:
3774 pci_release_regions(pci_dev);
3775err_pci_disable:
3776 pci_disable_device(pci_dev);
3777 goto out;
3778}
3779
John W. Linvillef2223132006-01-23 16:59:58 -05003780/* Do the Hardware IO operations to send the txb */
3781static inline int bcm43xx_tx(struct bcm43xx_private *bcm,
3782 struct ieee80211_txb *txb)
3783{
3784 int err = -ENODEV;
3785
Michael Buesch77db31e2006-02-12 16:47:44 +01003786 if (bcm43xx_using_pio(bcm))
3787 err = bcm43xx_pio_tx(bcm, txb);
John W. Linvillef2223132006-01-23 16:59:58 -05003788 else
Michael Bueschea72ab22006-01-27 17:26:20 +01003789 err = bcm43xx_dma_tx(bcm, txb);
Michael Bueschb79367a2006-04-10 02:39:54 +02003790 bcm->net_dev->trans_start = jiffies;
John W. Linvillef2223132006-01-23 16:59:58 -05003791
3792 return err;
3793}
3794
3795static void bcm43xx_ieee80211_set_chan(struct net_device *net_dev,
3796 u8 channel)
3797{
3798 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
Michael Bueschec483782006-03-27 11:49:51 +02003799 struct bcm43xx_radioinfo *radio;
John W. Linvillef2223132006-01-23 16:59:58 -05003800 unsigned long flags;
3801
Michael Bueschefa6a372006-06-27 21:38:40 +02003802 mutex_lock(&bcm->mutex);
3803 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch78ff56a2006-06-05 20:24:10 +02003804 if (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED) {
Michael Bueschec483782006-03-27 11:49:51 +02003805 bcm43xx_mac_suspend(bcm);
3806 bcm43xx_radio_selectchannel(bcm, channel, 0);
3807 bcm43xx_mac_enable(bcm);
3808 } else {
3809 radio = bcm43xx_current_radio(bcm);
3810 radio->initial_channel = channel;
3811 }
Michael Bueschefa6a372006-06-27 21:38:40 +02003812 spin_unlock_irqrestore(&bcm->irq_lock, flags);
3813 mutex_unlock(&bcm->mutex);
John W. Linvillef2223132006-01-23 16:59:58 -05003814}
3815
3816/* set_security() callback in struct ieee80211_device */
3817static void bcm43xx_ieee80211_set_security(struct net_device *net_dev,
3818 struct ieee80211_security *sec)
3819{
3820 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3821 struct ieee80211_security *secinfo = &bcm->ieee->sec;
3822 unsigned long flags;
3823 int keyidx;
3824
Jason Lunzff7562a2006-06-04 23:05:49 +02003825 dprintk(KERN_INFO PFX "set security called");
Michael Bueschefccb642006-03-11 13:39:14 +01003826
Michael Bueschefa6a372006-06-27 21:38:40 +02003827 mutex_lock(&bcm->mutex);
3828 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Bueschefccb642006-03-11 13:39:14 +01003829
John W. Linvillef2223132006-01-23 16:59:58 -05003830 for (keyidx = 0; keyidx<WEP_KEYS; keyidx++)
3831 if (sec->flags & (1<<keyidx)) {
3832 secinfo->encode_alg[keyidx] = sec->encode_alg[keyidx];
3833 secinfo->key_sizes[keyidx] = sec->key_sizes[keyidx];
3834 memcpy(secinfo->keys[keyidx], sec->keys[keyidx], SCM_KEY_LEN);
3835 }
3836
3837 if (sec->flags & SEC_ACTIVE_KEY) {
3838 secinfo->active_key = sec->active_key;
Jason Lunzff7562a2006-06-04 23:05:49 +02003839 dprintk(", .active_key = %d", sec->active_key);
John W. Linvillef2223132006-01-23 16:59:58 -05003840 }
3841 if (sec->flags & SEC_UNICAST_GROUP) {
3842 secinfo->unicast_uses_group = sec->unicast_uses_group;
Jason Lunzff7562a2006-06-04 23:05:49 +02003843 dprintk(", .unicast_uses_group = %d", sec->unicast_uses_group);
John W. Linvillef2223132006-01-23 16:59:58 -05003844 }
3845 if (sec->flags & SEC_LEVEL) {
3846 secinfo->level = sec->level;
Jason Lunzff7562a2006-06-04 23:05:49 +02003847 dprintk(", .level = %d", sec->level);
John W. Linvillef2223132006-01-23 16:59:58 -05003848 }
3849 if (sec->flags & SEC_ENABLED) {
3850 secinfo->enabled = sec->enabled;
Jason Lunzff7562a2006-06-04 23:05:49 +02003851 dprintk(", .enabled = %d", sec->enabled);
John W. Linvillef2223132006-01-23 16:59:58 -05003852 }
3853 if (sec->flags & SEC_ENCRYPT) {
3854 secinfo->encrypt = sec->encrypt;
Jason Lunzff7562a2006-06-04 23:05:49 +02003855 dprintk(", .encrypt = %d", sec->encrypt);
John W. Linvillef2223132006-01-23 16:59:58 -05003856 }
Daniel Drake43592192006-06-16 20:50:22 +01003857 if (sec->flags & SEC_AUTH_MODE) {
3858 secinfo->auth_mode = sec->auth_mode;
Daniel Drake345f6b82006-07-11 23:16:34 +01003859 dprintk(", .auth_mode = %d", sec->auth_mode);
Daniel Drake43592192006-06-16 20:50:22 +01003860 }
Jason Lunzff7562a2006-06-04 23:05:49 +02003861 dprintk("\n");
Michael Buesch78ff56a2006-06-05 20:24:10 +02003862 if (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED &&
3863 !bcm->ieee->host_encrypt) {
John W. Linvillef2223132006-01-23 16:59:58 -05003864 if (secinfo->enabled) {
3865 /* upload WEP keys to hardware */
3866 char null_address[6] = { 0 };
3867 u8 algorithm = 0;
3868 for (keyidx = 0; keyidx<WEP_KEYS; keyidx++) {
3869 if (!(sec->flags & (1<<keyidx)))
3870 continue;
3871 switch (sec->encode_alg[keyidx]) {
3872 case SEC_ALG_NONE: algorithm = BCM43xx_SEC_ALGO_NONE; break;
3873 case SEC_ALG_WEP:
3874 algorithm = BCM43xx_SEC_ALGO_WEP;
3875 if (secinfo->key_sizes[keyidx] == 13)
3876 algorithm = BCM43xx_SEC_ALGO_WEP104;
3877 break;
3878 case SEC_ALG_TKIP:
3879 FIXME();
3880 algorithm = BCM43xx_SEC_ALGO_TKIP;
3881 break;
3882 case SEC_ALG_CCMP:
3883 FIXME();
3884 algorithm = BCM43xx_SEC_ALGO_AES;
3885 break;
3886 default:
3887 assert(0);
3888 break;
3889 }
3890 bcm43xx_key_write(bcm, keyidx, algorithm, sec->keys[keyidx], secinfo->key_sizes[keyidx], &null_address[0]);
3891 bcm->key[keyidx].enabled = 1;
3892 bcm->key[keyidx].algorithm = algorithm;
3893 }
3894 } else
3895 bcm43xx_clear_keys(bcm);
3896 }
Michael Bueschefa6a372006-06-27 21:38:40 +02003897 spin_unlock_irqrestore(&bcm->irq_lock, flags);
3898 mutex_unlock(&bcm->mutex);
John W. Linvillef2223132006-01-23 16:59:58 -05003899}
3900
3901/* hard_start_xmit() callback in struct ieee80211_device */
3902static int bcm43xx_ieee80211_hard_start_xmit(struct ieee80211_txb *txb,
3903 struct net_device *net_dev,
3904 int pri)
3905{
3906 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3907 int err = -ENODEV;
3908 unsigned long flags;
3909
Michael Bueschefa6a372006-06-27 21:38:40 +02003910 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch78ff56a2006-06-05 20:24:10 +02003911 if (likely(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED))
John W. Linvillef2223132006-01-23 16:59:58 -05003912 err = bcm43xx_tx(bcm, txb);
Michael Bueschefa6a372006-06-27 21:38:40 +02003913 spin_unlock_irqrestore(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003914
3915 return err;
3916}
3917
3918static struct net_device_stats * bcm43xx_net_get_stats(struct net_device *net_dev)
3919{
3920 return &(bcm43xx_priv(net_dev)->ieee->stats);
3921}
3922
3923static void bcm43xx_net_tx_timeout(struct net_device *net_dev)
3924{
3925 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
Michael Bueschefccb642006-03-11 13:39:14 +01003926 unsigned long flags;
John W. Linvillef2223132006-01-23 16:59:58 -05003927
Michael Bueschefa6a372006-06-27 21:38:40 +02003928 spin_lock_irqsave(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003929 bcm43xx_controller_restart(bcm, "TX timeout");
Michael Bueschefa6a372006-06-27 21:38:40 +02003930 spin_unlock_irqrestore(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -05003931}
3932
3933#ifdef CONFIG_NET_POLL_CONTROLLER
3934static void bcm43xx_net_poll_controller(struct net_device *net_dev)
3935{
3936 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3937 unsigned long flags;
3938
3939 local_irq_save(flags);
Michael Buesch58e55282006-07-08 22:02:18 +02003940 if (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED)
3941 bcm43xx_interrupt_handler(bcm->irq, bcm, NULL);
John W. Linvillef2223132006-01-23 16:59:58 -05003942 local_irq_restore(flags);
3943}
3944#endif /* CONFIG_NET_POLL_CONTROLLER */
3945
3946static int bcm43xx_net_open(struct net_device *net_dev)
3947{
3948 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
3949
3950 return bcm43xx_init_board(bcm);
3951}
3952
3953static int bcm43xx_net_stop(struct net_device *net_dev)
3954{
3955 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
Michael Buesch91769e72006-06-05 20:24:21 +02003956 int err;
John W. Linvillef2223132006-01-23 16:59:58 -05003957
3958 ieee80211softmac_stop(net_dev);
Michael Buesch58e55282006-07-08 22:02:18 +02003959 err = bcm43xx_disable_interrupts_sync(bcm);
Michael Buesch91769e72006-06-05 20:24:21 +02003960 assert(!err);
John W. Linvillef2223132006-01-23 16:59:58 -05003961 bcm43xx_free_board(bcm);
3962
3963 return 0;
3964}
3965
Michael Buesch77db31e2006-02-12 16:47:44 +01003966static int bcm43xx_init_private(struct bcm43xx_private *bcm,
3967 struct net_device *net_dev,
Michael Bueschab4977f2006-02-12 22:40:39 +01003968 struct pci_dev *pci_dev)
John W. Linvillef2223132006-01-23 16:59:58 -05003969{
Michael Buesch4d5a9e02006-03-11 13:15:02 +01003970 int err;
3971
Michael Buesch78ff56a2006-06-05 20:24:10 +02003972 bcm43xx_set_status(bcm, BCM43xx_STAT_UNINIT);
John W. Linvillef2223132006-01-23 16:59:58 -05003973 bcm->ieee = netdev_priv(net_dev);
3974 bcm->softmac = ieee80211_priv(net_dev);
3975 bcm->softmac->set_channel = bcm43xx_ieee80211_set_chan;
John W. Linvillef2223132006-01-23 16:59:58 -05003976
John W. Linvillef2223132006-01-23 16:59:58 -05003977 bcm->irq_savedstate = BCM43xx_IRQ_INITIAL;
Larry Finger894b6272006-07-31 14:20:44 -04003978 bcm->mac_suspended = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05003979 bcm->pci_dev = pci_dev;
3980 bcm->net_dev = net_dev;
Michael Buesch4d5a9e02006-03-11 13:15:02 +01003981 bcm->bad_frames_preempt = modparam_bad_frames_preempt;
Michael Buesch78ff56a2006-06-05 20:24:10 +02003982 spin_lock_init(&bcm->irq_lock);
Michael Bueschefa6a372006-06-27 21:38:40 +02003983 spin_lock_init(&bcm->leds_lock);
Michael Buesch78ff56a2006-06-05 20:24:10 +02003984 mutex_init(&bcm->mutex);
John W. Linvillef2223132006-01-23 16:59:58 -05003985 tasklet_init(&bcm->isr_tasklet,
3986 (void (*)(unsigned long))bcm43xx_interrupt_tasklet,
3987 (unsigned long)bcm);
3988 tasklet_disable_nosync(&bcm->isr_tasklet);
3989 if (modparam_pio) {
Michael Buesch77db31e2006-02-12 16:47:44 +01003990 bcm->__using_pio = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05003991 } else {
Michael Buesch4d5a9e02006-03-11 13:15:02 +01003992 err = pci_set_dma_mask(pci_dev, DMA_30BIT_MASK);
3993 err |= pci_set_consistent_dma_mask(pci_dev, DMA_30BIT_MASK);
3994 if (err) {
Michael Buesch77db31e2006-02-12 16:47:44 +01003995#ifdef CONFIG_BCM43XX_PIO
John W. Linvillef2223132006-01-23 16:59:58 -05003996 printk(KERN_WARNING PFX "DMA not supported. Falling back to PIO.\n");
Michael Buesch77db31e2006-02-12 16:47:44 +01003997 bcm->__using_pio = 1;
3998#else
3999 printk(KERN_ERR PFX "FATAL: DMA not supported and PIO not configured. "
4000 "Recompile the driver with PIO support, please.\n");
4001 return -ENODEV;
4002#endif /* CONFIG_BCM43XX_PIO */
John W. Linvillef2223132006-01-23 16:59:58 -05004003 }
4004 }
4005 bcm->rts_threshold = BCM43xx_DEFAULT_RTS_THRESHOLD;
4006
4007 /* default to sw encryption for now */
4008 bcm->ieee->host_build_iv = 0;
4009 bcm->ieee->host_encrypt = 1;
4010 bcm->ieee->host_decrypt = 1;
4011
4012 bcm->ieee->iw_mode = BCM43xx_INITIAL_IWMODE;
4013 bcm->ieee->tx_headroom = sizeof(struct bcm43xx_txhdr);
4014 bcm->ieee->set_security = bcm43xx_ieee80211_set_security;
4015 bcm->ieee->hard_start_xmit = bcm43xx_ieee80211_hard_start_xmit;
Michael Buesch77db31e2006-02-12 16:47:44 +01004016
4017 return 0;
John W. Linvillef2223132006-01-23 16:59:58 -05004018}
4019
4020static int __devinit bcm43xx_init_one(struct pci_dev *pdev,
4021 const struct pci_device_id *ent)
4022{
4023 struct net_device *net_dev;
4024 struct bcm43xx_private *bcm;
John W. Linvillef2223132006-01-23 16:59:58 -05004025 int err;
4026
4027#ifdef CONFIG_BCM947XX
4028 if ((pdev->bus->number == 0) && (pdev->device != 0x0800))
4029 return -ENODEV;
4030#endif
4031
4032#ifdef DEBUG_SINGLE_DEVICE_ONLY
4033 if (strcmp(pci_name(pdev), DEBUG_SINGLE_DEVICE_ONLY))
4034 return -ENODEV;
4035#endif
4036
4037 net_dev = alloc_ieee80211softmac(sizeof(*bcm));
4038 if (!net_dev) {
4039 printk(KERN_ERR PFX
4040 "could not allocate ieee80211 device %s\n",
4041 pci_name(pdev));
4042 err = -ENOMEM;
4043 goto out;
4044 }
4045 /* initialize the net_device struct */
4046 SET_MODULE_OWNER(net_dev);
4047 SET_NETDEV_DEV(net_dev, &pdev->dev);
4048
4049 net_dev->open = bcm43xx_net_open;
4050 net_dev->stop = bcm43xx_net_stop;
4051 net_dev->get_stats = bcm43xx_net_get_stats;
4052 net_dev->tx_timeout = bcm43xx_net_tx_timeout;
4053#ifdef CONFIG_NET_POLL_CONTROLLER
4054 net_dev->poll_controller = bcm43xx_net_poll_controller;
4055#endif
4056 net_dev->wireless_handlers = &bcm43xx_wx_handlers_def;
4057 net_dev->irq = pdev->irq;
Michael Buesch6465ce12006-02-02 19:11:08 +01004058 SET_ETHTOOL_OPS(net_dev, &bcm43xx_ethtool_ops);
John W. Linvillef2223132006-01-23 16:59:58 -05004059
4060 /* initialize the bcm43xx_private struct */
4061 bcm = bcm43xx_priv(net_dev);
4062 memset(bcm, 0, sizeof(*bcm));
Michael Bueschab4977f2006-02-12 22:40:39 +01004063 err = bcm43xx_init_private(bcm, net_dev, pdev);
Michael Buesch77db31e2006-02-12 16:47:44 +01004064 if (err)
Michael Bueschab4977f2006-02-12 22:40:39 +01004065 goto err_free_netdev;
John W. Linvillef2223132006-01-23 16:59:58 -05004066
4067 pci_set_drvdata(pdev, net_dev);
4068
4069 err = bcm43xx_attach_board(bcm);
4070 if (err)
Michael Bueschab4977f2006-02-12 22:40:39 +01004071 goto err_free_netdev;
John W. Linvillef2223132006-01-23 16:59:58 -05004072
4073 err = register_netdev(net_dev);
4074 if (err) {
4075 printk(KERN_ERR PFX "Cannot register net device, "
4076 "aborting.\n");
4077 err = -ENOMEM;
4078 goto err_detach_board;
4079 }
4080
4081 bcm43xx_debugfs_add_device(bcm);
4082
4083 assert(err == 0);
4084out:
4085 return err;
4086
4087err_detach_board:
4088 bcm43xx_detach_board(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05004089err_free_netdev:
4090 free_ieee80211softmac(net_dev);
4091 goto out;
4092}
4093
4094static void __devexit bcm43xx_remove_one(struct pci_dev *pdev)
4095{
4096 struct net_device *net_dev = pci_get_drvdata(pdev);
4097 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
4098
4099 bcm43xx_debugfs_remove_device(bcm);
4100 unregister_netdev(net_dev);
4101 bcm43xx_detach_board(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05004102 free_ieee80211softmac(net_dev);
4103}
4104
4105/* Hard-reset the chip. Do not call this directly.
4106 * Use bcm43xx_controller_restart()
4107 */
4108static void bcm43xx_chip_reset(void *_bcm)
4109{
4110 struct bcm43xx_private *bcm = _bcm;
Michael Buesch58e55282006-07-08 22:02:18 +02004111 struct bcm43xx_phyinfo *phy;
John W. Linvillef2223132006-01-23 16:59:58 -05004112 int err;
John W. Linvillef2223132006-01-23 16:59:58 -05004113
John W. Linvillef1207ba2006-07-27 18:10:00 -04004114 mutex_lock(&(bcm)->mutex);
Michael Buesch58e55282006-07-08 22:02:18 +02004115 phy = bcm43xx_current_phy(bcm);
4116 err = bcm43xx_select_wireless_core(bcm, phy->type);
John W. Linvillef1207ba2006-07-27 18:10:00 -04004117 mutex_unlock(&(bcm)->mutex);
John W. Linvillef2223132006-01-23 16:59:58 -05004118
Michael Buesch58e55282006-07-08 22:02:18 +02004119 printk(KERN_ERR PFX "Controller restart%s\n",
4120 (err == 0) ? "ed" : " failed");
John W. Linvillef2223132006-01-23 16:59:58 -05004121}
4122
4123/* Hard-reset the chip.
4124 * This can be called from interrupt or process context.
Michael Buesch58e55282006-07-08 22:02:18 +02004125 */
John W. Linvillef2223132006-01-23 16:59:58 -05004126void bcm43xx_controller_restart(struct bcm43xx_private *bcm, const char *reason)
4127{
Michael Buesch58e55282006-07-08 22:02:18 +02004128 assert(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED);
Michael Buesch78ff56a2006-06-05 20:24:10 +02004129 bcm43xx_set_status(bcm, BCM43xx_STAT_RESTARTING);
John W. Linvillef2223132006-01-23 16:59:58 -05004130 printk(KERN_ERR PFX "Controller RESET (%s) ...\n", reason);
4131 INIT_WORK(&bcm->restart_work, bcm43xx_chip_reset, bcm);
Michael Bueschab4977f2006-02-12 22:40:39 +01004132 schedule_work(&bcm->restart_work);
John W. Linvillef2223132006-01-23 16:59:58 -05004133}
4134
4135#ifdef CONFIG_PM
4136
4137static int bcm43xx_suspend(struct pci_dev *pdev, pm_message_t state)
4138{
4139 struct net_device *net_dev = pci_get_drvdata(pdev);
4140 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
Michael Buesch58e55282006-07-08 22:02:18 +02004141 int err;
John W. Linvillef2223132006-01-23 16:59:58 -05004142
4143 dprintk(KERN_INFO PFX "Suspending...\n");
4144
John W. Linvillef2223132006-01-23 16:59:58 -05004145 netif_device_detach(net_dev);
Michael Buesch58e55282006-07-08 22:02:18 +02004146 bcm->was_initialized = 0;
4147 if (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED) {
4148 bcm->was_initialized = 1;
John W. Linvillef2223132006-01-23 16:59:58 -05004149 ieee80211softmac_stop(net_dev);
Michael Buesch58e55282006-07-08 22:02:18 +02004150 err = bcm43xx_disable_interrupts_sync(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05004151 if (unlikely(err)) {
4152 dprintk(KERN_ERR PFX "Suspend failed.\n");
4153 return -EAGAIN;
4154 }
4155 bcm->firmware_norelease = 1;
4156 bcm43xx_free_board(bcm);
4157 bcm->firmware_norelease = 0;
4158 }
4159 bcm43xx_chipset_detach(bcm);
4160
4161 pci_save_state(pdev);
4162 pci_disable_device(pdev);
4163 pci_set_power_state(pdev, pci_choose_state(pdev, state));
4164
4165 dprintk(KERN_INFO PFX "Device suspended.\n");
4166
4167 return 0;
4168}
4169
4170static int bcm43xx_resume(struct pci_dev *pdev)
4171{
4172 struct net_device *net_dev = pci_get_drvdata(pdev);
4173 struct bcm43xx_private *bcm = bcm43xx_priv(net_dev);
4174 int err = 0;
4175
4176 dprintk(KERN_INFO PFX "Resuming...\n");
4177
4178 pci_set_power_state(pdev, 0);
4179 pci_enable_device(pdev);
4180 pci_restore_state(pdev);
4181
4182 bcm43xx_chipset_attach(bcm);
Michael Buesch58e55282006-07-08 22:02:18 +02004183 if (bcm->was_initialized)
John W. Linvillef2223132006-01-23 16:59:58 -05004184 err = bcm43xx_init_board(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -05004185 if (err) {
4186 printk(KERN_ERR PFX "Resume failed!\n");
4187 return err;
4188 }
John W. Linvillef2223132006-01-23 16:59:58 -05004189 netif_device_attach(net_dev);
Michael Buesch58e55282006-07-08 22:02:18 +02004190
John W. Linvillef2223132006-01-23 16:59:58 -05004191 dprintk(KERN_INFO PFX "Device resumed.\n");
4192
4193 return 0;
4194}
4195
4196#endif /* CONFIG_PM */
4197
4198static struct pci_driver bcm43xx_pci_driver = {
Michael Buesch65f3f192006-01-31 20:11:38 +01004199 .name = KBUILD_MODNAME,
John W. Linvillef2223132006-01-23 16:59:58 -05004200 .id_table = bcm43xx_pci_tbl,
4201 .probe = bcm43xx_init_one,
4202 .remove = __devexit_p(bcm43xx_remove_one),
4203#ifdef CONFIG_PM
4204 .suspend = bcm43xx_suspend,
4205 .resume = bcm43xx_resume,
4206#endif /* CONFIG_PM */
4207};
4208
4209static int __init bcm43xx_init(void)
4210{
Michael Buesch65f3f192006-01-31 20:11:38 +01004211 printk(KERN_INFO KBUILD_MODNAME " driver\n");
John W. Linvillef2223132006-01-23 16:59:58 -05004212 bcm43xx_debugfs_init();
4213 return pci_register_driver(&bcm43xx_pci_driver);
4214}
4215
4216static void __exit bcm43xx_exit(void)
4217{
4218 pci_unregister_driver(&bcm43xx_pci_driver);
4219 bcm43xx_debugfs_exit();
4220}
4221
4222module_init(bcm43xx_init)
4223module_exit(bcm43xx_exit)