3 * Broadcom B43legacy wireless driver
5 * Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>
6 * Copyright (c) 2005-2008 Stefano Brivio <stefano.brivio@polimi.it>
7 * Copyright (c) 2005, 2006 Michael Buesch <mb@bu3sch.de>
8 * Copyright (c) 2005 Danny van Dyk <kugelfang@gentoo.org>
9 * Copyright (c) 2005 Andreas Jaggi <andreas.jaggi@waterwave.ch>
10 * Copyright (c) 2007 Larry Finger <Larry.Finger@lwfinger.net>
12 * Some parts of the code in this file are derived from the ipw2200
13 * driver Copyright(c) 2003 - 2004 Intel Corporation.
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; see the file COPYING. If not, write to
27 * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
28 * Boston, MA 02110-1301, USA.
32 #include <linux/delay.h>
33 #include <linux/init.h>
34 #include <linux/moduleparam.h>
35 #include <linux/if_arp.h>
36 #include <linux/etherdevice.h>
37 #include <linux/firmware.h>
38 #include <linux/wireless.h>
39 #include <linux/workqueue.h>
40 #include <linux/sched.h>
41 #include <linux/skbuff.h>
42 #include <linux/dma-mapping.h>
43 #include <linux/slab.h>
45 #include <asm/unaligned.h>
47 #include "b43legacy.h"
58 MODULE_DESCRIPTION("Broadcom B43legacy wireless driver");
59 MODULE_AUTHOR("Martin Langer");
60 MODULE_AUTHOR("Stefano Brivio");
61 MODULE_AUTHOR("Michael Buesch");
62 MODULE_LICENSE("GPL");
64 MODULE_FIRMWARE(B43legacy_SUPPORTED_FIRMWARE_ID
);
65 MODULE_FIRMWARE("b43legacy/ucode2.fw");
66 MODULE_FIRMWARE("b43legacy/ucode4.fw");
68 #if defined(CONFIG_B43LEGACY_DMA) && defined(CONFIG_B43LEGACY_PIO)
69 static int modparam_pio
;
70 module_param_named(pio
, modparam_pio
, int, 0444);
71 MODULE_PARM_DESC(pio
, "enable(1) / disable(0) PIO mode");
72 #elif defined(CONFIG_B43LEGACY_DMA)
73 # define modparam_pio 0
74 #elif defined(CONFIG_B43LEGACY_PIO)
75 # define modparam_pio 1
78 static int modparam_bad_frames_preempt
;
79 module_param_named(bad_frames_preempt
, modparam_bad_frames_preempt
, int, 0444);
80 MODULE_PARM_DESC(bad_frames_preempt
, "enable(1) / disable(0) Bad Frames"
83 static char modparam_fwpostfix
[16];
84 module_param_string(fwpostfix
, modparam_fwpostfix
, 16, 0444);
85 MODULE_PARM_DESC(fwpostfix
, "Postfix for the firmware files to load.");
87 /* The following table supports BCM4301, BCM4303 and BCM4306/2 devices. */
88 static const struct ssb_device_id b43legacy_ssb_tbl
[] = {
89 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_80211
, 2),
90 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_80211
, 4),
93 MODULE_DEVICE_TABLE(ssb
, b43legacy_ssb_tbl
);
96 /* Channel and ratetables are shared for all devices.
97 * They can't be const, because ieee80211 puts some precalculated
98 * data in there. This data is the same for all devices, so we don't
99 * get concurrency issues */
100 #define RATETAB_ENT(_rateid, _flags) \
102 .bitrate = B43legacy_RATE_TO_100KBPS(_rateid), \
103 .hw_value = (_rateid), \
107 * NOTE: When changing this, sync with xmit.c's
108 * b43legacy_plcp_get_bitrate_idx_* functions!
110 static struct ieee80211_rate __b43legacy_ratetable
[] = {
111 RATETAB_ENT(B43legacy_CCK_RATE_1MB
, 0),
112 RATETAB_ENT(B43legacy_CCK_RATE_2MB
, IEEE80211_RATE_SHORT_PREAMBLE
),
113 RATETAB_ENT(B43legacy_CCK_RATE_5MB
, IEEE80211_RATE_SHORT_PREAMBLE
),
114 RATETAB_ENT(B43legacy_CCK_RATE_11MB
, IEEE80211_RATE_SHORT_PREAMBLE
),
115 RATETAB_ENT(B43legacy_OFDM_RATE_6MB
, 0),
116 RATETAB_ENT(B43legacy_OFDM_RATE_9MB
, 0),
117 RATETAB_ENT(B43legacy_OFDM_RATE_12MB
, 0),
118 RATETAB_ENT(B43legacy_OFDM_RATE_18MB
, 0),
119 RATETAB_ENT(B43legacy_OFDM_RATE_24MB
, 0),
120 RATETAB_ENT(B43legacy_OFDM_RATE_36MB
, 0),
121 RATETAB_ENT(B43legacy_OFDM_RATE_48MB
, 0),
122 RATETAB_ENT(B43legacy_OFDM_RATE_54MB
, 0),
124 #define b43legacy_b_ratetable (__b43legacy_ratetable + 0)
125 #define b43legacy_b_ratetable_size 4
126 #define b43legacy_g_ratetable (__b43legacy_ratetable + 0)
127 #define b43legacy_g_ratetable_size 12
129 #define CHANTAB_ENT(_chanid, _freq) \
131 .center_freq = (_freq), \
132 .hw_value = (_chanid), \
134 static struct ieee80211_channel b43legacy_bg_chantable
[] = {
135 CHANTAB_ENT(1, 2412),
136 CHANTAB_ENT(2, 2417),
137 CHANTAB_ENT(3, 2422),
138 CHANTAB_ENT(4, 2427),
139 CHANTAB_ENT(5, 2432),
140 CHANTAB_ENT(6, 2437),
141 CHANTAB_ENT(7, 2442),
142 CHANTAB_ENT(8, 2447),
143 CHANTAB_ENT(9, 2452),
144 CHANTAB_ENT(10, 2457),
145 CHANTAB_ENT(11, 2462),
146 CHANTAB_ENT(12, 2467),
147 CHANTAB_ENT(13, 2472),
148 CHANTAB_ENT(14, 2484),
151 static struct ieee80211_supported_band b43legacy_band_2GHz_BPHY
= {
152 .channels
= b43legacy_bg_chantable
,
153 .n_channels
= ARRAY_SIZE(b43legacy_bg_chantable
),
154 .bitrates
= b43legacy_b_ratetable
,
155 .n_bitrates
= b43legacy_b_ratetable_size
,
158 static struct ieee80211_supported_band b43legacy_band_2GHz_GPHY
= {
159 .channels
= b43legacy_bg_chantable
,
160 .n_channels
= ARRAY_SIZE(b43legacy_bg_chantable
),
161 .bitrates
= b43legacy_g_ratetable
,
162 .n_bitrates
= b43legacy_g_ratetable_size
,
165 static void b43legacy_wireless_core_exit(struct b43legacy_wldev
*dev
);
166 static int b43legacy_wireless_core_init(struct b43legacy_wldev
*dev
);
167 static void b43legacy_wireless_core_stop(struct b43legacy_wldev
*dev
);
168 static int b43legacy_wireless_core_start(struct b43legacy_wldev
*dev
);
171 static int b43legacy_ratelimit(struct b43legacy_wl
*wl
)
173 if (!wl
|| !wl
->current_dev
)
175 if (b43legacy_status(wl
->current_dev
) < B43legacy_STAT_STARTED
)
177 /* We are up and running.
178 * Ratelimit the messages to avoid DoS over the net. */
179 return net_ratelimit();
182 void b43legacyinfo(struct b43legacy_wl
*wl
, const char *fmt
, ...)
184 struct va_format vaf
;
187 if (!b43legacy_ratelimit(wl
))
195 printk(KERN_INFO
"b43legacy-%s: %pV",
196 (wl
&& wl
->hw
) ? wiphy_name(wl
->hw
->wiphy
) : "wlan", &vaf
);
201 void b43legacyerr(struct b43legacy_wl
*wl
, const char *fmt
, ...)
203 struct va_format vaf
;
206 if (!b43legacy_ratelimit(wl
))
214 printk(KERN_ERR
"b43legacy-%s ERROR: %pV",
215 (wl
&& wl
->hw
) ? wiphy_name(wl
->hw
->wiphy
) : "wlan", &vaf
);
220 void b43legacywarn(struct b43legacy_wl
*wl
, const char *fmt
, ...)
222 struct va_format vaf
;
225 if (!b43legacy_ratelimit(wl
))
233 printk(KERN_WARNING
"b43legacy-%s warning: %pV",
234 (wl
&& wl
->hw
) ? wiphy_name(wl
->hw
->wiphy
) : "wlan", &vaf
);
240 void b43legacydbg(struct b43legacy_wl
*wl
, const char *fmt
, ...)
242 struct va_format vaf
;
250 printk(KERN_DEBUG
"b43legacy-%s debug: %pV",
251 (wl
&& wl
->hw
) ? wiphy_name(wl
->hw
->wiphy
) : "wlan", &vaf
);
257 static void b43legacy_ram_write(struct b43legacy_wldev
*dev
, u16 offset
,
262 B43legacy_WARN_ON(offset
% 4 != 0);
264 status
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
265 if (status
& B43legacy_MACCTL_BE
)
268 b43legacy_write32(dev
, B43legacy_MMIO_RAM_CONTROL
, offset
);
270 b43legacy_write32(dev
, B43legacy_MMIO_RAM_DATA
, val
);
274 void b43legacy_shm_control_word(struct b43legacy_wldev
*dev
,
275 u16 routing
, u16 offset
)
279 /* "offset" is the WORD offset. */
284 b43legacy_write32(dev
, B43legacy_MMIO_SHM_CONTROL
, control
);
287 u32
b43legacy_shm_read32(struct b43legacy_wldev
*dev
,
288 u16 routing
, u16 offset
)
292 if (routing
== B43legacy_SHM_SHARED
) {
293 B43legacy_WARN_ON((offset
& 0x0001) != 0);
294 if (offset
& 0x0003) {
295 /* Unaligned access */
296 b43legacy_shm_control_word(dev
, routing
, offset
>> 2);
297 ret
= b43legacy_read16(dev
,
298 B43legacy_MMIO_SHM_DATA_UNALIGNED
);
300 b43legacy_shm_control_word(dev
, routing
,
302 ret
|= b43legacy_read16(dev
, B43legacy_MMIO_SHM_DATA
);
308 b43legacy_shm_control_word(dev
, routing
, offset
);
309 ret
= b43legacy_read32(dev
, B43legacy_MMIO_SHM_DATA
);
314 u16
b43legacy_shm_read16(struct b43legacy_wldev
*dev
,
315 u16 routing
, u16 offset
)
319 if (routing
== B43legacy_SHM_SHARED
) {
320 B43legacy_WARN_ON((offset
& 0x0001) != 0);
321 if (offset
& 0x0003) {
322 /* Unaligned access */
323 b43legacy_shm_control_word(dev
, routing
, offset
>> 2);
324 ret
= b43legacy_read16(dev
,
325 B43legacy_MMIO_SHM_DATA_UNALIGNED
);
331 b43legacy_shm_control_word(dev
, routing
, offset
);
332 ret
= b43legacy_read16(dev
, B43legacy_MMIO_SHM_DATA
);
337 void b43legacy_shm_write32(struct b43legacy_wldev
*dev
,
338 u16 routing
, u16 offset
,
341 if (routing
== B43legacy_SHM_SHARED
) {
342 B43legacy_WARN_ON((offset
& 0x0001) != 0);
343 if (offset
& 0x0003) {
344 /* Unaligned access */
345 b43legacy_shm_control_word(dev
, routing
, offset
>> 2);
347 b43legacy_write16(dev
,
348 B43legacy_MMIO_SHM_DATA_UNALIGNED
,
349 (value
>> 16) & 0xffff);
351 b43legacy_shm_control_word(dev
, routing
,
354 b43legacy_write16(dev
, B43legacy_MMIO_SHM_DATA
,
360 b43legacy_shm_control_word(dev
, routing
, offset
);
362 b43legacy_write32(dev
, B43legacy_MMIO_SHM_DATA
, value
);
365 void b43legacy_shm_write16(struct b43legacy_wldev
*dev
, u16 routing
, u16 offset
,
368 if (routing
== B43legacy_SHM_SHARED
) {
369 B43legacy_WARN_ON((offset
& 0x0001) != 0);
370 if (offset
& 0x0003) {
371 /* Unaligned access */
372 b43legacy_shm_control_word(dev
, routing
, offset
>> 2);
374 b43legacy_write16(dev
,
375 B43legacy_MMIO_SHM_DATA_UNALIGNED
,
381 b43legacy_shm_control_word(dev
, routing
, offset
);
383 b43legacy_write16(dev
, B43legacy_MMIO_SHM_DATA
, value
);
387 u32
b43legacy_hf_read(struct b43legacy_wldev
*dev
)
391 ret
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
392 B43legacy_SHM_SH_HOSTFHI
);
394 ret
|= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
395 B43legacy_SHM_SH_HOSTFLO
);
400 /* Write HostFlags */
401 void b43legacy_hf_write(struct b43legacy_wldev
*dev
, u32 value
)
403 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
404 B43legacy_SHM_SH_HOSTFLO
,
405 (value
& 0x0000FFFF));
406 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
407 B43legacy_SHM_SH_HOSTFHI
,
408 ((value
& 0xFFFF0000) >> 16));
411 void b43legacy_tsf_read(struct b43legacy_wldev
*dev
, u64
*tsf
)
413 /* We need to be careful. As we read the TSF from multiple
414 * registers, we should take care of register overflows.
415 * In theory, the whole tsf read process should be atomic.
416 * We try to be atomic here, by restaring the read process,
417 * if any of the high registers changed (overflew).
419 if (dev
->dev
->id
.revision
>= 3) {
425 high
= b43legacy_read32(dev
,
426 B43legacy_MMIO_REV3PLUS_TSF_HIGH
);
427 low
= b43legacy_read32(dev
,
428 B43legacy_MMIO_REV3PLUS_TSF_LOW
);
429 high2
= b43legacy_read32(dev
,
430 B43legacy_MMIO_REV3PLUS_TSF_HIGH
);
431 } while (unlikely(high
!= high2
));
447 v3
= b43legacy_read16(dev
, B43legacy_MMIO_TSF_3
);
448 v2
= b43legacy_read16(dev
, B43legacy_MMIO_TSF_2
);
449 v1
= b43legacy_read16(dev
, B43legacy_MMIO_TSF_1
);
450 v0
= b43legacy_read16(dev
, B43legacy_MMIO_TSF_0
);
452 test3
= b43legacy_read16(dev
, B43legacy_MMIO_TSF_3
);
453 test2
= b43legacy_read16(dev
, B43legacy_MMIO_TSF_2
);
454 test1
= b43legacy_read16(dev
, B43legacy_MMIO_TSF_1
);
455 } while (v3
!= test3
|| v2
!= test2
|| v1
!= test1
);
469 static void b43legacy_time_lock(struct b43legacy_wldev
*dev
)
473 status
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
474 status
|= B43legacy_MACCTL_TBTTHOLD
;
475 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
, status
);
479 static void b43legacy_time_unlock(struct b43legacy_wldev
*dev
)
483 status
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
484 status
&= ~B43legacy_MACCTL_TBTTHOLD
;
485 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
, status
);
488 static void b43legacy_tsf_write_locked(struct b43legacy_wldev
*dev
, u64 tsf
)
490 /* Be careful with the in-progress timer.
491 * First zero out the low register, so we have a full
492 * register-overflow duration to complete the operation.
494 if (dev
->dev
->id
.revision
>= 3) {
495 u32 lo
= (tsf
& 0x00000000FFFFFFFFULL
);
496 u32 hi
= (tsf
& 0xFFFFFFFF00000000ULL
) >> 32;
498 b43legacy_write32(dev
, B43legacy_MMIO_REV3PLUS_TSF_LOW
, 0);
500 b43legacy_write32(dev
, B43legacy_MMIO_REV3PLUS_TSF_HIGH
,
503 b43legacy_write32(dev
, B43legacy_MMIO_REV3PLUS_TSF_LOW
,
506 u16 v0
= (tsf
& 0x000000000000FFFFULL
);
507 u16 v1
= (tsf
& 0x00000000FFFF0000ULL
) >> 16;
508 u16 v2
= (tsf
& 0x0000FFFF00000000ULL
) >> 32;
509 u16 v3
= (tsf
& 0xFFFF000000000000ULL
) >> 48;
511 b43legacy_write16(dev
, B43legacy_MMIO_TSF_0
, 0);
513 b43legacy_write16(dev
, B43legacy_MMIO_TSF_3
, v3
);
515 b43legacy_write16(dev
, B43legacy_MMIO_TSF_2
, v2
);
517 b43legacy_write16(dev
, B43legacy_MMIO_TSF_1
, v1
);
519 b43legacy_write16(dev
, B43legacy_MMIO_TSF_0
, v0
);
523 void b43legacy_tsf_write(struct b43legacy_wldev
*dev
, u64 tsf
)
525 b43legacy_time_lock(dev
);
526 b43legacy_tsf_write_locked(dev
, tsf
);
527 b43legacy_time_unlock(dev
);
531 void b43legacy_macfilter_set(struct b43legacy_wldev
*dev
,
532 u16 offset
, const u8
*mac
)
534 static const u8 zero_addr
[ETH_ALEN
] = { 0 };
541 b43legacy_write16(dev
, B43legacy_MMIO_MACFILTER_CONTROL
, offset
);
545 b43legacy_write16(dev
, B43legacy_MMIO_MACFILTER_DATA
, data
);
548 b43legacy_write16(dev
, B43legacy_MMIO_MACFILTER_DATA
, data
);
551 b43legacy_write16(dev
, B43legacy_MMIO_MACFILTER_DATA
, data
);
554 static void b43legacy_write_mac_bssid_templates(struct b43legacy_wldev
*dev
)
556 static const u8 zero_addr
[ETH_ALEN
] = { 0 };
557 const u8
*mac
= dev
->wl
->mac_addr
;
558 const u8
*bssid
= dev
->wl
->bssid
;
559 u8 mac_bssid
[ETH_ALEN
* 2];
568 b43legacy_macfilter_set(dev
, B43legacy_MACFILTER_BSSID
, bssid
);
570 memcpy(mac_bssid
, mac
, ETH_ALEN
);
571 memcpy(mac_bssid
+ ETH_ALEN
, bssid
, ETH_ALEN
);
573 /* Write our MAC address and BSSID to template ram */
574 for (i
= 0; i
< ARRAY_SIZE(mac_bssid
); i
+= sizeof(u32
)) {
575 tmp
= (u32
)(mac_bssid
[i
+ 0]);
576 tmp
|= (u32
)(mac_bssid
[i
+ 1]) << 8;
577 tmp
|= (u32
)(mac_bssid
[i
+ 2]) << 16;
578 tmp
|= (u32
)(mac_bssid
[i
+ 3]) << 24;
579 b43legacy_ram_write(dev
, 0x20 + i
, tmp
);
580 b43legacy_ram_write(dev
, 0x78 + i
, tmp
);
581 b43legacy_ram_write(dev
, 0x478 + i
, tmp
);
585 static void b43legacy_upload_card_macaddress(struct b43legacy_wldev
*dev
)
587 b43legacy_write_mac_bssid_templates(dev
);
588 b43legacy_macfilter_set(dev
, B43legacy_MACFILTER_SELF
,
592 static void b43legacy_set_slot_time(struct b43legacy_wldev
*dev
,
595 /* slot_time is in usec. */
596 if (dev
->phy
.type
!= B43legacy_PHYTYPE_G
)
598 b43legacy_write16(dev
, 0x684, 510 + slot_time
);
599 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
, 0x0010,
603 static void b43legacy_short_slot_timing_enable(struct b43legacy_wldev
*dev
)
605 b43legacy_set_slot_time(dev
, 9);
608 static void b43legacy_short_slot_timing_disable(struct b43legacy_wldev
*dev
)
610 b43legacy_set_slot_time(dev
, 20);
613 /* Synchronize IRQ top- and bottom-half.
614 * IRQs must be masked before calling this.
615 * This must not be called with the irq_lock held.
617 static void b43legacy_synchronize_irq(struct b43legacy_wldev
*dev
)
619 synchronize_irq(dev
->dev
->irq
);
620 tasklet_kill(&dev
->isr_tasklet
);
623 /* DummyTransmission function, as documented on
624 * http://bcm-specs.sipsolutions.net/DummyTransmission
626 void b43legacy_dummy_transmission(struct b43legacy_wldev
*dev
)
628 struct b43legacy_phy
*phy
= &dev
->phy
;
630 unsigned int max_loop
;
641 case B43legacy_PHYTYPE_B
:
642 case B43legacy_PHYTYPE_G
:
644 buffer
[0] = 0x000B846E;
651 for (i
= 0; i
< 5; i
++)
652 b43legacy_ram_write(dev
, i
* 4, buffer
[i
]);
654 /* dummy read follows */
655 b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
657 b43legacy_write16(dev
, 0x0568, 0x0000);
658 b43legacy_write16(dev
, 0x07C0, 0x0000);
659 b43legacy_write16(dev
, 0x050C, 0x0000);
660 b43legacy_write16(dev
, 0x0508, 0x0000);
661 b43legacy_write16(dev
, 0x050A, 0x0000);
662 b43legacy_write16(dev
, 0x054C, 0x0000);
663 b43legacy_write16(dev
, 0x056A, 0x0014);
664 b43legacy_write16(dev
, 0x0568, 0x0826);
665 b43legacy_write16(dev
, 0x0500, 0x0000);
666 b43legacy_write16(dev
, 0x0502, 0x0030);
668 if (phy
->radio_ver
== 0x2050 && phy
->radio_rev
<= 0x5)
669 b43legacy_radio_write16(dev
, 0x0051, 0x0017);
670 for (i
= 0x00; i
< max_loop
; i
++) {
671 value
= b43legacy_read16(dev
, 0x050E);
676 for (i
= 0x00; i
< 0x0A; i
++) {
677 value
= b43legacy_read16(dev
, 0x050E);
682 for (i
= 0x00; i
< 0x0A; i
++) {
683 value
= b43legacy_read16(dev
, 0x0690);
684 if (!(value
& 0x0100))
688 if (phy
->radio_ver
== 0x2050 && phy
->radio_rev
<= 0x5)
689 b43legacy_radio_write16(dev
, 0x0051, 0x0037);
692 /* Turn the Analog ON/OFF */
693 static void b43legacy_switch_analog(struct b43legacy_wldev
*dev
, int on
)
695 b43legacy_write16(dev
, B43legacy_MMIO_PHY0
, on
? 0 : 0xF4);
698 void b43legacy_wireless_core_reset(struct b43legacy_wldev
*dev
, u32 flags
)
703 flags
|= B43legacy_TMSLOW_PHYCLKEN
;
704 flags
|= B43legacy_TMSLOW_PHYRESET
;
705 ssb_device_enable(dev
->dev
, flags
);
706 msleep(2); /* Wait for the PLL to turn on. */
708 /* Now take the PHY out of Reset again */
709 tmslow
= ssb_read32(dev
->dev
, SSB_TMSLOW
);
710 tmslow
|= SSB_TMSLOW_FGC
;
711 tmslow
&= ~B43legacy_TMSLOW_PHYRESET
;
712 ssb_write32(dev
->dev
, SSB_TMSLOW
, tmslow
);
713 ssb_read32(dev
->dev
, SSB_TMSLOW
); /* flush */
715 tmslow
&= ~SSB_TMSLOW_FGC
;
716 ssb_write32(dev
->dev
, SSB_TMSLOW
, tmslow
);
717 ssb_read32(dev
->dev
, SSB_TMSLOW
); /* flush */
721 b43legacy_switch_analog(dev
, 1);
723 macctl
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
724 macctl
&= ~B43legacy_MACCTL_GMODE
;
725 if (flags
& B43legacy_TMSLOW_GMODE
) {
726 macctl
|= B43legacy_MACCTL_GMODE
;
730 macctl
|= B43legacy_MACCTL_IHR_ENABLED
;
731 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
, macctl
);
734 static void handle_irq_transmit_status(struct b43legacy_wldev
*dev
)
739 struct b43legacy_txstatus stat
;
742 v0
= b43legacy_read32(dev
, B43legacy_MMIO_XMITSTAT_0
);
743 if (!(v0
& 0x00000001))
745 v1
= b43legacy_read32(dev
, B43legacy_MMIO_XMITSTAT_1
);
747 stat
.cookie
= (v0
>> 16);
748 stat
.seq
= (v1
& 0x0000FFFF);
749 stat
.phy_stat
= ((v1
& 0x00FF0000) >> 16);
750 tmp
= (v0
& 0x0000FFFF);
751 stat
.frame_count
= ((tmp
& 0xF000) >> 12);
752 stat
.rts_count
= ((tmp
& 0x0F00) >> 8);
753 stat
.supp_reason
= ((tmp
& 0x001C) >> 2);
754 stat
.pm_indicated
= !!(tmp
& 0x0080);
755 stat
.intermediate
= !!(tmp
& 0x0040);
756 stat
.for_ampdu
= !!(tmp
& 0x0020);
757 stat
.acked
= !!(tmp
& 0x0002);
759 b43legacy_handle_txstatus(dev
, &stat
);
763 static void drain_txstatus_queue(struct b43legacy_wldev
*dev
)
767 if (dev
->dev
->id
.revision
< 5)
769 /* Read all entries from the microcode TXstatus FIFO
770 * and throw them away.
773 dummy
= b43legacy_read32(dev
, B43legacy_MMIO_XMITSTAT_0
);
774 if (!(dummy
& 0x00000001))
776 dummy
= b43legacy_read32(dev
, B43legacy_MMIO_XMITSTAT_1
);
780 static u32
b43legacy_jssi_read(struct b43legacy_wldev
*dev
)
784 val
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
, 0x40A);
786 val
|= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
, 0x408);
791 static void b43legacy_jssi_write(struct b43legacy_wldev
*dev
, u32 jssi
)
793 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
, 0x408,
794 (jssi
& 0x0000FFFF));
795 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
, 0x40A,
796 (jssi
& 0xFFFF0000) >> 16);
799 static void b43legacy_generate_noise_sample(struct b43legacy_wldev
*dev
)
801 b43legacy_jssi_write(dev
, 0x7F7F7F7F);
802 b43legacy_write32(dev
, B43legacy_MMIO_MACCMD
,
803 b43legacy_read32(dev
, B43legacy_MMIO_MACCMD
)
804 | B43legacy_MACCMD_BGNOISE
);
805 B43legacy_WARN_ON(dev
->noisecalc
.channel_at_start
!=
809 static void b43legacy_calculate_link_quality(struct b43legacy_wldev
*dev
)
811 /* Top half of Link Quality calculation. */
813 if (dev
->noisecalc
.calculation_running
)
815 dev
->noisecalc
.channel_at_start
= dev
->phy
.channel
;
816 dev
->noisecalc
.calculation_running
= 1;
817 dev
->noisecalc
.nr_samples
= 0;
819 b43legacy_generate_noise_sample(dev
);
822 static void handle_irq_noise(struct b43legacy_wldev
*dev
)
824 struct b43legacy_phy
*phy
= &dev
->phy
;
831 /* Bottom half of Link Quality calculation. */
833 B43legacy_WARN_ON(!dev
->noisecalc
.calculation_running
);
834 if (dev
->noisecalc
.channel_at_start
!= phy
->channel
)
835 goto drop_calculation
;
836 *((__le32
*)noise
) = cpu_to_le32(b43legacy_jssi_read(dev
));
837 if (noise
[0] == 0x7F || noise
[1] == 0x7F ||
838 noise
[2] == 0x7F || noise
[3] == 0x7F)
841 /* Get the noise samples. */
842 B43legacy_WARN_ON(dev
->noisecalc
.nr_samples
>= 8);
843 i
= dev
->noisecalc
.nr_samples
;
844 noise
[0] = clamp_val(noise
[0], 0, ARRAY_SIZE(phy
->nrssi_lt
) - 1);
845 noise
[1] = clamp_val(noise
[1], 0, ARRAY_SIZE(phy
->nrssi_lt
) - 1);
846 noise
[2] = clamp_val(noise
[2], 0, ARRAY_SIZE(phy
->nrssi_lt
) - 1);
847 noise
[3] = clamp_val(noise
[3], 0, ARRAY_SIZE(phy
->nrssi_lt
) - 1);
848 dev
->noisecalc
.samples
[i
][0] = phy
->nrssi_lt
[noise
[0]];
849 dev
->noisecalc
.samples
[i
][1] = phy
->nrssi_lt
[noise
[1]];
850 dev
->noisecalc
.samples
[i
][2] = phy
->nrssi_lt
[noise
[2]];
851 dev
->noisecalc
.samples
[i
][3] = phy
->nrssi_lt
[noise
[3]];
852 dev
->noisecalc
.nr_samples
++;
853 if (dev
->noisecalc
.nr_samples
== 8) {
854 /* Calculate the Link Quality by the noise samples. */
856 for (i
= 0; i
< 8; i
++) {
857 for (j
= 0; j
< 4; j
++)
858 average
+= dev
->noisecalc
.samples
[i
][j
];
864 tmp
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
866 tmp
= (tmp
/ 128) & 0x1F;
876 dev
->stats
.link_noise
= average
;
878 dev
->noisecalc
.calculation_running
= 0;
882 b43legacy_generate_noise_sample(dev
);
885 static void handle_irq_tbtt_indication(struct b43legacy_wldev
*dev
)
887 if (b43legacy_is_mode(dev
->wl
, NL80211_IFTYPE_AP
)) {
890 if (1/*FIXME: the last PSpoll frame was sent successfully */)
891 b43legacy_power_saving_ctl_bits(dev
, -1, -1);
893 if (b43legacy_is_mode(dev
->wl
, NL80211_IFTYPE_ADHOC
))
897 static void handle_irq_atim_end(struct b43legacy_wldev
*dev
)
899 if (dev
->dfq_valid
) {
900 b43legacy_write32(dev
, B43legacy_MMIO_MACCMD
,
901 b43legacy_read32(dev
, B43legacy_MMIO_MACCMD
)
902 | B43legacy_MACCMD_DFQ_VALID
);
907 static void handle_irq_pmq(struct b43legacy_wldev
*dev
)
914 tmp
= b43legacy_read32(dev
, B43legacy_MMIO_PS_STATUS
);
915 if (!(tmp
& 0x00000008))
918 /* 16bit write is odd, but correct. */
919 b43legacy_write16(dev
, B43legacy_MMIO_PS_STATUS
, 0x0002);
922 static void b43legacy_write_template_common(struct b43legacy_wldev
*dev
,
923 const u8
*data
, u16 size
,
925 u16 shm_size_offset
, u8 rate
)
929 struct b43legacy_plcp_hdr4 plcp
;
932 b43legacy_generate_plcp_hdr(&plcp
, size
+ FCS_LEN
, rate
);
933 b43legacy_ram_write(dev
, ram_offset
, le32_to_cpu(plcp
.data
));
934 ram_offset
+= sizeof(u32
);
935 /* The PLCP is 6 bytes long, but we only wrote 4 bytes, yet.
936 * So leave the first two bytes of the next write blank.
938 tmp
= (u32
)(data
[0]) << 16;
939 tmp
|= (u32
)(data
[1]) << 24;
940 b43legacy_ram_write(dev
, ram_offset
, tmp
);
941 ram_offset
+= sizeof(u32
);
942 for (i
= 2; i
< size
; i
+= sizeof(u32
)) {
943 tmp
= (u32
)(data
[i
+ 0]);
945 tmp
|= (u32
)(data
[i
+ 1]) << 8;
947 tmp
|= (u32
)(data
[i
+ 2]) << 16;
949 tmp
|= (u32
)(data
[i
+ 3]) << 24;
950 b43legacy_ram_write(dev
, ram_offset
+ i
- 2, tmp
);
952 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
, shm_size_offset
,
953 size
+ sizeof(struct b43legacy_plcp_hdr6
));
956 /* Convert a b43legacy antenna number value to the PHY TX control value. */
957 static u16
b43legacy_antenna_to_phyctl(int antenna
)
960 case B43legacy_ANTENNA0
:
961 return B43legacy_TX4_PHY_ANT0
;
962 case B43legacy_ANTENNA1
:
963 return B43legacy_TX4_PHY_ANT1
;
965 return B43legacy_TX4_PHY_ANTLAST
;
968 static void b43legacy_write_beacon_template(struct b43legacy_wldev
*dev
,
973 unsigned int i
, len
, variable_len
;
974 const struct ieee80211_mgmt
*bcn
;
980 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(dev
->wl
->current_beacon
);
982 bcn
= (const struct ieee80211_mgmt
*)(dev
->wl
->current_beacon
->data
);
983 len
= min((size_t)dev
->wl
->current_beacon
->len
,
984 0x200 - sizeof(struct b43legacy_plcp_hdr6
));
985 rate
= ieee80211_get_tx_rate(dev
->wl
->hw
, info
)->hw_value
;
987 b43legacy_write_template_common(dev
, (const u8
*)bcn
, len
, ram_offset
,
988 shm_size_offset
, rate
);
990 /* Write the PHY TX control parameters. */
991 antenna
= B43legacy_ANTENNA_DEFAULT
;
992 antenna
= b43legacy_antenna_to_phyctl(antenna
);
993 ctl
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
994 B43legacy_SHM_SH_BEACPHYCTL
);
995 /* We can't send beacons with short preamble. Would get PHY errors. */
996 ctl
&= ~B43legacy_TX4_PHY_SHORTPRMBL
;
997 ctl
&= ~B43legacy_TX4_PHY_ANT
;
998 ctl
&= ~B43legacy_TX4_PHY_ENC
;
1000 ctl
|= B43legacy_TX4_PHY_ENC_CCK
;
1001 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
1002 B43legacy_SHM_SH_BEACPHYCTL
, ctl
);
1004 /* Find the position of the TIM and the DTIM_period value
1005 * and write them to SHM. */
1006 ie
= bcn
->u
.beacon
.variable
;
1007 variable_len
= len
- offsetof(struct ieee80211_mgmt
, u
.beacon
.variable
);
1008 for (i
= 0; i
< variable_len
- 2; ) {
1009 uint8_t ie_id
, ie_len
;
1016 /* This is the TIM Information Element */
1018 /* Check whether the ie_len is in the beacon data range. */
1019 if (variable_len
< ie_len
+ 2 + i
)
1021 /* A valid TIM is at least 4 bytes long. */
1026 tim_position
= sizeof(struct b43legacy_plcp_hdr6
);
1027 tim_position
+= offsetof(struct ieee80211_mgmt
,
1031 dtim_period
= ie
[i
+ 3];
1033 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
1034 B43legacy_SHM_SH_TIMPOS
, tim_position
);
1035 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
1036 B43legacy_SHM_SH_DTIMP
, dtim_period
);
1042 b43legacywarn(dev
->wl
, "Did not find a valid TIM IE in the "
1043 "beacon template packet. AP or IBSS operation "
1044 "may be broken.\n");
1046 b43legacydbg(dev
->wl
, "Updated beacon template\n");
1049 static void b43legacy_write_probe_resp_plcp(struct b43legacy_wldev
*dev
,
1050 u16 shm_offset
, u16 size
,
1051 struct ieee80211_rate
*rate
)
1053 struct b43legacy_plcp_hdr4 plcp
;
1058 b43legacy_generate_plcp_hdr(&plcp
, size
+ FCS_LEN
, rate
->hw_value
);
1059 dur
= ieee80211_generic_frame_duration(dev
->wl
->hw
,
1063 /* Write PLCP in two parts and timing for packet transfer */
1064 tmp
= le32_to_cpu(plcp
.data
);
1065 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
, shm_offset
,
1067 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
, shm_offset
+ 2,
1069 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
, shm_offset
+ 6,
1073 /* Instead of using custom probe response template, this function
1074 * just patches custom beacon template by:
1075 * 1) Changing packet type
1076 * 2) Patching duration field
1079 static const u8
*b43legacy_generate_probe_resp(struct b43legacy_wldev
*dev
,
1081 struct ieee80211_rate
*rate
)
1085 u16 src_size
, elem_size
, src_pos
, dest_pos
;
1087 struct ieee80211_hdr
*hdr
;
1090 src_size
= dev
->wl
->current_beacon
->len
;
1091 src_data
= (const u8
*)dev
->wl
->current_beacon
->data
;
1093 /* Get the start offset of the variable IEs in the packet. */
1094 ie_start
= offsetof(struct ieee80211_mgmt
, u
.probe_resp
.variable
);
1095 B43legacy_WARN_ON(ie_start
!= offsetof(struct ieee80211_mgmt
,
1096 u
.beacon
.variable
));
1098 if (B43legacy_WARN_ON(src_size
< ie_start
))
1101 dest_data
= kmalloc(src_size
, GFP_ATOMIC
);
1102 if (unlikely(!dest_data
))
1105 /* Copy the static data and all Information Elements, except the TIM. */
1106 memcpy(dest_data
, src_data
, ie_start
);
1108 dest_pos
= ie_start
;
1109 for ( ; src_pos
< src_size
- 2; src_pos
+= elem_size
) {
1110 elem_size
= src_data
[src_pos
+ 1] + 2;
1111 if (src_data
[src_pos
] == 5) {
1112 /* This is the TIM. */
1115 memcpy(dest_data
+ dest_pos
, src_data
+ src_pos
, elem_size
);
1116 dest_pos
+= elem_size
;
1118 *dest_size
= dest_pos
;
1119 hdr
= (struct ieee80211_hdr
*)dest_data
;
1121 /* Set the frame control. */
1122 hdr
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
1123 IEEE80211_STYPE_PROBE_RESP
);
1124 dur
= ieee80211_generic_frame_duration(dev
->wl
->hw
,
1128 hdr
->duration_id
= dur
;
1133 static void b43legacy_write_probe_resp_template(struct b43legacy_wldev
*dev
,
1135 u16 shm_size_offset
,
1136 struct ieee80211_rate
*rate
)
1138 const u8
*probe_resp_data
;
1141 size
= dev
->wl
->current_beacon
->len
;
1142 probe_resp_data
= b43legacy_generate_probe_resp(dev
, &size
, rate
);
1143 if (unlikely(!probe_resp_data
))
1146 /* Looks like PLCP headers plus packet timings are stored for
1147 * all possible basic rates
1149 b43legacy_write_probe_resp_plcp(dev
, 0x31A, size
,
1150 &b43legacy_b_ratetable
[0]);
1151 b43legacy_write_probe_resp_plcp(dev
, 0x32C, size
,
1152 &b43legacy_b_ratetable
[1]);
1153 b43legacy_write_probe_resp_plcp(dev
, 0x33E, size
,
1154 &b43legacy_b_ratetable
[2]);
1155 b43legacy_write_probe_resp_plcp(dev
, 0x350, size
,
1156 &b43legacy_b_ratetable
[3]);
1158 size
= min((size_t)size
,
1159 0x200 - sizeof(struct b43legacy_plcp_hdr6
));
1160 b43legacy_write_template_common(dev
, probe_resp_data
,
1162 shm_size_offset
, rate
->hw_value
);
1163 kfree(probe_resp_data
);
1166 static void b43legacy_upload_beacon0(struct b43legacy_wldev
*dev
)
1168 struct b43legacy_wl
*wl
= dev
->wl
;
1170 if (wl
->beacon0_uploaded
)
1172 b43legacy_write_beacon_template(dev
, 0x68, 0x18);
1173 /* FIXME: Probe resp upload doesn't really belong here,
1174 * but we don't use that feature anyway. */
1175 b43legacy_write_probe_resp_template(dev
, 0x268, 0x4A,
1176 &__b43legacy_ratetable
[3]);
1177 wl
->beacon0_uploaded
= 1;
1180 static void b43legacy_upload_beacon1(struct b43legacy_wldev
*dev
)
1182 struct b43legacy_wl
*wl
= dev
->wl
;
1184 if (wl
->beacon1_uploaded
)
1186 b43legacy_write_beacon_template(dev
, 0x468, 0x1A);
1187 wl
->beacon1_uploaded
= 1;
1190 static void handle_irq_beacon(struct b43legacy_wldev
*dev
)
1192 struct b43legacy_wl
*wl
= dev
->wl
;
1193 u32 cmd
, beacon0_valid
, beacon1_valid
;
1195 if (!b43legacy_is_mode(wl
, NL80211_IFTYPE_AP
))
1198 /* This is the bottom half of the asynchronous beacon update. */
1200 /* Ignore interrupt in the future. */
1201 dev
->irq_mask
&= ~B43legacy_IRQ_BEACON
;
1203 cmd
= b43legacy_read32(dev
, B43legacy_MMIO_MACCMD
);
1204 beacon0_valid
= (cmd
& B43legacy_MACCMD_BEACON0_VALID
);
1205 beacon1_valid
= (cmd
& B43legacy_MACCMD_BEACON1_VALID
);
1207 /* Schedule interrupt manually, if busy. */
1208 if (beacon0_valid
&& beacon1_valid
) {
1209 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_REASON
, B43legacy_IRQ_BEACON
);
1210 dev
->irq_mask
|= B43legacy_IRQ_BEACON
;
1214 if (unlikely(wl
->beacon_templates_virgin
)) {
1215 /* We never uploaded a beacon before.
1216 * Upload both templates now, but only mark one valid. */
1217 wl
->beacon_templates_virgin
= 0;
1218 b43legacy_upload_beacon0(dev
);
1219 b43legacy_upload_beacon1(dev
);
1220 cmd
= b43legacy_read32(dev
, B43legacy_MMIO_MACCMD
);
1221 cmd
|= B43legacy_MACCMD_BEACON0_VALID
;
1222 b43legacy_write32(dev
, B43legacy_MMIO_MACCMD
, cmd
);
1224 if (!beacon0_valid
) {
1225 b43legacy_upload_beacon0(dev
);
1226 cmd
= b43legacy_read32(dev
, B43legacy_MMIO_MACCMD
);
1227 cmd
|= B43legacy_MACCMD_BEACON0_VALID
;
1228 b43legacy_write32(dev
, B43legacy_MMIO_MACCMD
, cmd
);
1229 } else if (!beacon1_valid
) {
1230 b43legacy_upload_beacon1(dev
);
1231 cmd
= b43legacy_read32(dev
, B43legacy_MMIO_MACCMD
);
1232 cmd
|= B43legacy_MACCMD_BEACON1_VALID
;
1233 b43legacy_write32(dev
, B43legacy_MMIO_MACCMD
, cmd
);
1238 static void b43legacy_beacon_update_trigger_work(struct work_struct
*work
)
1240 struct b43legacy_wl
*wl
= container_of(work
, struct b43legacy_wl
,
1241 beacon_update_trigger
);
1242 struct b43legacy_wldev
*dev
;
1244 mutex_lock(&wl
->mutex
);
1245 dev
= wl
->current_dev
;
1246 if (likely(dev
&& (b43legacy_status(dev
) >= B43legacy_STAT_INITIALIZED
))) {
1247 spin_lock_irq(&wl
->irq_lock
);
1248 /* Update beacon right away or defer to IRQ. */
1249 handle_irq_beacon(dev
);
1250 /* The handler might have updated the IRQ mask. */
1251 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
,
1254 spin_unlock_irq(&wl
->irq_lock
);
1256 mutex_unlock(&wl
->mutex
);
1259 /* Asynchronously update the packet templates in template RAM.
1260 * Locking: Requires wl->irq_lock to be locked. */
1261 static void b43legacy_update_templates(struct b43legacy_wl
*wl
)
1263 struct sk_buff
*beacon
;
1264 /* This is the top half of the ansynchronous beacon update. The bottom
1265 * half is the beacon IRQ. Beacon update must be asynchronous to avoid
1266 * sending an invalid beacon. This can happen for example, if the
1267 * firmware transmits a beacon while we are updating it. */
1269 /* We could modify the existing beacon and set the aid bit in the TIM
1270 * field, but that would probably require resizing and moving of data
1271 * within the beacon template. Simply request a new beacon and let
1272 * mac80211 do the hard work. */
1273 beacon
= ieee80211_beacon_get(wl
->hw
, wl
->vif
);
1274 if (unlikely(!beacon
))
1277 if (wl
->current_beacon
)
1278 dev_kfree_skb_any(wl
->current_beacon
);
1279 wl
->current_beacon
= beacon
;
1280 wl
->beacon0_uploaded
= 0;
1281 wl
->beacon1_uploaded
= 0;
1282 ieee80211_queue_work(wl
->hw
, &wl
->beacon_update_trigger
);
1285 static void b43legacy_set_beacon_int(struct b43legacy_wldev
*dev
,
1288 b43legacy_time_lock(dev
);
1289 if (dev
->dev
->id
.revision
>= 3) {
1290 b43legacy_write32(dev
, B43legacy_MMIO_TSF_CFP_REP
,
1291 (beacon_int
<< 16));
1292 b43legacy_write32(dev
, B43legacy_MMIO_TSF_CFP_START
,
1293 (beacon_int
<< 10));
1295 b43legacy_write16(dev
, 0x606, (beacon_int
>> 6));
1296 b43legacy_write16(dev
, 0x610, beacon_int
);
1298 b43legacy_time_unlock(dev
);
1299 b43legacydbg(dev
->wl
, "Set beacon interval to %u\n", beacon_int
);
1302 static void handle_irq_ucode_debug(struct b43legacy_wldev
*dev
)
1306 /* Interrupt handler bottom-half */
1307 static void b43legacy_interrupt_tasklet(struct b43legacy_wldev
*dev
)
1310 u32 dma_reason
[ARRAY_SIZE(dev
->dma_reason
)];
1311 u32 merged_dma_reason
= 0;
1313 unsigned long flags
;
1315 spin_lock_irqsave(&dev
->wl
->irq_lock
, flags
);
1317 B43legacy_WARN_ON(b43legacy_status(dev
) <
1318 B43legacy_STAT_INITIALIZED
);
1320 reason
= dev
->irq_reason
;
1321 for (i
= 0; i
< ARRAY_SIZE(dma_reason
); i
++) {
1322 dma_reason
[i
] = dev
->dma_reason
[i
];
1323 merged_dma_reason
|= dma_reason
[i
];
1326 if (unlikely(reason
& B43legacy_IRQ_MAC_TXERR
))
1327 b43legacyerr(dev
->wl
, "MAC transmission error\n");
1329 if (unlikely(reason
& B43legacy_IRQ_PHY_TXERR
)) {
1330 b43legacyerr(dev
->wl
, "PHY transmission error\n");
1332 if (unlikely(atomic_dec_and_test(&dev
->phy
.txerr_cnt
))) {
1333 b43legacyerr(dev
->wl
, "Too many PHY TX errors, "
1334 "restarting the controller\n");
1335 b43legacy_controller_restart(dev
, "PHY TX errors");
1339 if (unlikely(merged_dma_reason
& (B43legacy_DMAIRQ_FATALMASK
|
1340 B43legacy_DMAIRQ_NONFATALMASK
))) {
1341 if (merged_dma_reason
& B43legacy_DMAIRQ_FATALMASK
) {
1342 b43legacyerr(dev
->wl
, "Fatal DMA error: "
1343 "0x%08X, 0x%08X, 0x%08X, "
1344 "0x%08X, 0x%08X, 0x%08X\n",
1345 dma_reason
[0], dma_reason
[1],
1346 dma_reason
[2], dma_reason
[3],
1347 dma_reason
[4], dma_reason
[5]);
1348 b43legacy_controller_restart(dev
, "DMA error");
1350 spin_unlock_irqrestore(&dev
->wl
->irq_lock
, flags
);
1353 if (merged_dma_reason
& B43legacy_DMAIRQ_NONFATALMASK
)
1354 b43legacyerr(dev
->wl
, "DMA error: "
1355 "0x%08X, 0x%08X, 0x%08X, "
1356 "0x%08X, 0x%08X, 0x%08X\n",
1357 dma_reason
[0], dma_reason
[1],
1358 dma_reason
[2], dma_reason
[3],
1359 dma_reason
[4], dma_reason
[5]);
1362 if (unlikely(reason
& B43legacy_IRQ_UCODE_DEBUG
))
1363 handle_irq_ucode_debug(dev
);
1364 if (reason
& B43legacy_IRQ_TBTT_INDI
)
1365 handle_irq_tbtt_indication(dev
);
1366 if (reason
& B43legacy_IRQ_ATIM_END
)
1367 handle_irq_atim_end(dev
);
1368 if (reason
& B43legacy_IRQ_BEACON
)
1369 handle_irq_beacon(dev
);
1370 if (reason
& B43legacy_IRQ_PMQ
)
1371 handle_irq_pmq(dev
);
1372 if (reason
& B43legacy_IRQ_TXFIFO_FLUSH_OK
)
1374 if (reason
& B43legacy_IRQ_NOISESAMPLE_OK
)
1375 handle_irq_noise(dev
);
1377 /* Check the DMA reason registers for received data. */
1378 if (dma_reason
[0] & B43legacy_DMAIRQ_RX_DONE
) {
1379 if (b43legacy_using_pio(dev
))
1380 b43legacy_pio_rx(dev
->pio
.queue0
);
1382 b43legacy_dma_rx(dev
->dma
.rx_ring0
);
1384 B43legacy_WARN_ON(dma_reason
[1] & B43legacy_DMAIRQ_RX_DONE
);
1385 B43legacy_WARN_ON(dma_reason
[2] & B43legacy_DMAIRQ_RX_DONE
);
1386 if (dma_reason
[3] & B43legacy_DMAIRQ_RX_DONE
) {
1387 if (b43legacy_using_pio(dev
))
1388 b43legacy_pio_rx(dev
->pio
.queue3
);
1390 b43legacy_dma_rx(dev
->dma
.rx_ring3
);
1392 B43legacy_WARN_ON(dma_reason
[4] & B43legacy_DMAIRQ_RX_DONE
);
1393 B43legacy_WARN_ON(dma_reason
[5] & B43legacy_DMAIRQ_RX_DONE
);
1395 if (reason
& B43legacy_IRQ_TX_OK
)
1396 handle_irq_transmit_status(dev
);
1398 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
, dev
->irq_mask
);
1400 spin_unlock_irqrestore(&dev
->wl
->irq_lock
, flags
);
1403 static void pio_irq_workaround(struct b43legacy_wldev
*dev
,
1404 u16 base
, int queueidx
)
1408 rxctl
= b43legacy_read16(dev
, base
+ B43legacy_PIO_RXCTL
);
1409 if (rxctl
& B43legacy_PIO_RXCTL_DATAAVAILABLE
)
1410 dev
->dma_reason
[queueidx
] |= B43legacy_DMAIRQ_RX_DONE
;
1412 dev
->dma_reason
[queueidx
] &= ~B43legacy_DMAIRQ_RX_DONE
;
1415 static void b43legacy_interrupt_ack(struct b43legacy_wldev
*dev
, u32 reason
)
1417 if (b43legacy_using_pio(dev
) &&
1418 (dev
->dev
->id
.revision
< 3) &&
1419 (!(reason
& B43legacy_IRQ_PIO_WORKAROUND
))) {
1420 /* Apply a PIO specific workaround to the dma_reasons */
1421 pio_irq_workaround(dev
, B43legacy_MMIO_PIO1_BASE
, 0);
1422 pio_irq_workaround(dev
, B43legacy_MMIO_PIO2_BASE
, 1);
1423 pio_irq_workaround(dev
, B43legacy_MMIO_PIO3_BASE
, 2);
1424 pio_irq_workaround(dev
, B43legacy_MMIO_PIO4_BASE
, 3);
1427 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_REASON
, reason
);
1429 b43legacy_write32(dev
, B43legacy_MMIO_DMA0_REASON
,
1430 dev
->dma_reason
[0]);
1431 b43legacy_write32(dev
, B43legacy_MMIO_DMA1_REASON
,
1432 dev
->dma_reason
[1]);
1433 b43legacy_write32(dev
, B43legacy_MMIO_DMA2_REASON
,
1434 dev
->dma_reason
[2]);
1435 b43legacy_write32(dev
, B43legacy_MMIO_DMA3_REASON
,
1436 dev
->dma_reason
[3]);
1437 b43legacy_write32(dev
, B43legacy_MMIO_DMA4_REASON
,
1438 dev
->dma_reason
[4]);
1439 b43legacy_write32(dev
, B43legacy_MMIO_DMA5_REASON
,
1440 dev
->dma_reason
[5]);
1443 /* Interrupt handler top-half */
1444 static irqreturn_t
b43legacy_interrupt_handler(int irq
, void *dev_id
)
1446 irqreturn_t ret
= IRQ_NONE
;
1447 struct b43legacy_wldev
*dev
= dev_id
;
1450 B43legacy_WARN_ON(!dev
);
1452 spin_lock(&dev
->wl
->irq_lock
);
1454 if (unlikely(b43legacy_status(dev
) < B43legacy_STAT_STARTED
))
1455 /* This can only happen on shared IRQ lines. */
1457 reason
= b43legacy_read32(dev
, B43legacy_MMIO_GEN_IRQ_REASON
);
1458 if (reason
== 0xffffffff) /* shared IRQ */
1461 reason
&= dev
->irq_mask
;
1465 dev
->dma_reason
[0] = b43legacy_read32(dev
,
1466 B43legacy_MMIO_DMA0_REASON
)
1468 dev
->dma_reason
[1] = b43legacy_read32(dev
,
1469 B43legacy_MMIO_DMA1_REASON
)
1471 dev
->dma_reason
[2] = b43legacy_read32(dev
,
1472 B43legacy_MMIO_DMA2_REASON
)
1474 dev
->dma_reason
[3] = b43legacy_read32(dev
,
1475 B43legacy_MMIO_DMA3_REASON
)
1477 dev
->dma_reason
[4] = b43legacy_read32(dev
,
1478 B43legacy_MMIO_DMA4_REASON
)
1480 dev
->dma_reason
[5] = b43legacy_read32(dev
,
1481 B43legacy_MMIO_DMA5_REASON
)
1484 b43legacy_interrupt_ack(dev
, reason
);
1485 /* Disable all IRQs. They are enabled again in the bottom half. */
1486 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
, 0);
1487 /* Save the reason code and call our bottom half. */
1488 dev
->irq_reason
= reason
;
1489 tasklet_schedule(&dev
->isr_tasklet
);
1492 spin_unlock(&dev
->wl
->irq_lock
);
1497 static void b43legacy_release_firmware(struct b43legacy_wldev
*dev
)
1499 release_firmware(dev
->fw
.ucode
);
1500 dev
->fw
.ucode
= NULL
;
1501 release_firmware(dev
->fw
.pcm
);
1503 release_firmware(dev
->fw
.initvals
);
1504 dev
->fw
.initvals
= NULL
;
1505 release_firmware(dev
->fw
.initvals_band
);
1506 dev
->fw
.initvals_band
= NULL
;
1509 static void b43legacy_print_fw_helptext(struct b43legacy_wl
*wl
)
1511 b43legacyerr(wl
, "You must go to http://linuxwireless.org/en/users/"
1512 "Drivers/b43#devicefirmware "
1513 "and download the correct firmware (version 3).\n");
1516 static int do_request_fw(struct b43legacy_wldev
*dev
,
1518 const struct firmware
**fw
)
1520 char path
[sizeof(modparam_fwpostfix
) + 32];
1521 struct b43legacy_fw_header
*hdr
;
1528 snprintf(path
, ARRAY_SIZE(path
),
1529 "b43legacy%s/%s.fw",
1530 modparam_fwpostfix
, name
);
1531 err
= request_firmware(fw
, path
, dev
->dev
->dev
);
1533 b43legacyerr(dev
->wl
, "Firmware file \"%s\" not found "
1534 "or load failed.\n", path
);
1537 if ((*fw
)->size
< sizeof(struct b43legacy_fw_header
))
1539 hdr
= (struct b43legacy_fw_header
*)((*fw
)->data
);
1540 switch (hdr
->type
) {
1541 case B43legacy_FW_TYPE_UCODE
:
1542 case B43legacy_FW_TYPE_PCM
:
1543 size
= be32_to_cpu(hdr
->size
);
1544 if (size
!= (*fw
)->size
- sizeof(struct b43legacy_fw_header
))
1547 case B43legacy_FW_TYPE_IV
:
1558 b43legacyerr(dev
->wl
, "Firmware file \"%s\" format error.\n", path
);
1562 static int b43legacy_request_firmware(struct b43legacy_wldev
*dev
)
1564 struct b43legacy_firmware
*fw
= &dev
->fw
;
1565 const u8 rev
= dev
->dev
->id
.revision
;
1566 const char *filename
;
1570 tmshigh
= ssb_read32(dev
->dev
, SSB_TMSHIGH
);
1573 filename
= "ucode2";
1575 filename
= "ucode4";
1577 filename
= "ucode5";
1578 err
= do_request_fw(dev
, filename
, &fw
->ucode
);
1587 err
= do_request_fw(dev
, filename
, &fw
->pcm
);
1591 if (!fw
->initvals
) {
1592 switch (dev
->phy
.type
) {
1593 case B43legacy_PHYTYPE_B
:
1594 case B43legacy_PHYTYPE_G
:
1595 if ((rev
>= 5) && (rev
<= 10))
1596 filename
= "b0g0initvals5";
1597 else if (rev
== 2 || rev
== 4)
1598 filename
= "b0g0initvals2";
1600 goto err_no_initvals
;
1603 goto err_no_initvals
;
1605 err
= do_request_fw(dev
, filename
, &fw
->initvals
);
1609 if (!fw
->initvals_band
) {
1610 switch (dev
->phy
.type
) {
1611 case B43legacy_PHYTYPE_B
:
1612 case B43legacy_PHYTYPE_G
:
1613 if ((rev
>= 5) && (rev
<= 10))
1614 filename
= "b0g0bsinitvals5";
1617 else if (rev
== 2 || rev
== 4)
1620 goto err_no_initvals
;
1623 goto err_no_initvals
;
1625 err
= do_request_fw(dev
, filename
, &fw
->initvals_band
);
1633 b43legacy_print_fw_helptext(dev
->wl
);
1638 b43legacyerr(dev
->wl
, "No Initial Values firmware file for PHY %u, "
1639 "core rev %u\n", dev
->phy
.type
, rev
);
1643 b43legacy_release_firmware(dev
);
1647 static int b43legacy_upload_microcode(struct b43legacy_wldev
*dev
)
1649 struct wiphy
*wiphy
= dev
->wl
->hw
->wiphy
;
1650 const size_t hdr_len
= sizeof(struct b43legacy_fw_header
);
1661 /* Jump the microcode PSM to offset 0 */
1662 macctl
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
1663 B43legacy_WARN_ON(macctl
& B43legacy_MACCTL_PSM_RUN
);
1664 macctl
|= B43legacy_MACCTL_PSM_JMP0
;
1665 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
, macctl
);
1666 /* Zero out all microcode PSM registers and shared memory. */
1667 for (i
= 0; i
< 64; i
++)
1668 b43legacy_shm_write16(dev
, B43legacy_SHM_WIRELESS
, i
, 0);
1669 for (i
= 0; i
< 4096; i
+= 2)
1670 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
, i
, 0);
1672 /* Upload Microcode. */
1673 data
= (__be32
*) (dev
->fw
.ucode
->data
+ hdr_len
);
1674 len
= (dev
->fw
.ucode
->size
- hdr_len
) / sizeof(__be32
);
1675 b43legacy_shm_control_word(dev
,
1676 B43legacy_SHM_UCODE
|
1677 B43legacy_SHM_AUTOINC_W
,
1679 for (i
= 0; i
< len
; i
++) {
1680 b43legacy_write32(dev
, B43legacy_MMIO_SHM_DATA
,
1681 be32_to_cpu(data
[i
]));
1686 /* Upload PCM data. */
1687 data
= (__be32
*) (dev
->fw
.pcm
->data
+ hdr_len
);
1688 len
= (dev
->fw
.pcm
->size
- hdr_len
) / sizeof(__be32
);
1689 b43legacy_shm_control_word(dev
, B43legacy_SHM_HW
, 0x01EA);
1690 b43legacy_write32(dev
, B43legacy_MMIO_SHM_DATA
, 0x00004000);
1691 /* No need for autoinc bit in SHM_HW */
1692 b43legacy_shm_control_word(dev
, B43legacy_SHM_HW
, 0x01EB);
1693 for (i
= 0; i
< len
; i
++) {
1694 b43legacy_write32(dev
, B43legacy_MMIO_SHM_DATA
,
1695 be32_to_cpu(data
[i
]));
1700 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_REASON
,
1703 /* Start the microcode PSM */
1704 macctl
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
1705 macctl
&= ~B43legacy_MACCTL_PSM_JMP0
;
1706 macctl
|= B43legacy_MACCTL_PSM_RUN
;
1707 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
, macctl
);
1709 /* Wait for the microcode to load and respond */
1712 tmp
= b43legacy_read32(dev
, B43legacy_MMIO_GEN_IRQ_REASON
);
1713 if (tmp
== B43legacy_IRQ_MAC_SUSPENDED
)
1716 if (i
>= B43legacy_IRQWAIT_MAX_RETRIES
) {
1717 b43legacyerr(dev
->wl
, "Microcode not responding\n");
1718 b43legacy_print_fw_helptext(dev
->wl
);
1722 msleep_interruptible(50);
1723 if (signal_pending(current
)) {
1728 /* dummy read follows */
1729 b43legacy_read32(dev
, B43legacy_MMIO_GEN_IRQ_REASON
);
1731 /* Get and check the revisions. */
1732 fwrev
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
1733 B43legacy_SHM_SH_UCODEREV
);
1734 fwpatch
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
1735 B43legacy_SHM_SH_UCODEPATCH
);
1736 fwdate
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
1737 B43legacy_SHM_SH_UCODEDATE
);
1738 fwtime
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
1739 B43legacy_SHM_SH_UCODETIME
);
1741 if (fwrev
> 0x128) {
1742 b43legacyerr(dev
->wl
, "YOU ARE TRYING TO LOAD V4 FIRMWARE."
1743 " Only firmware from binary drivers version 3.x"
1744 " is supported. You must change your firmware"
1746 b43legacy_print_fw_helptext(dev
->wl
);
1750 b43legacyinfo(dev
->wl
, "Loading firmware version 0x%X, patch level %u "
1751 "(20%.2i-%.2i-%.2i %.2i:%.2i:%.2i)\n", fwrev
, fwpatch
,
1752 (fwdate
>> 12) & 0xF, (fwdate
>> 8) & 0xF, fwdate
& 0xFF,
1753 (fwtime
>> 11) & 0x1F, (fwtime
>> 5) & 0x3F,
1756 dev
->fw
.rev
= fwrev
;
1757 dev
->fw
.patch
= fwpatch
;
1759 snprintf(wiphy
->fw_version
, sizeof(wiphy
->fw_version
), "%u.%u",
1760 dev
->fw
.rev
, dev
->fw
.patch
);
1761 wiphy
->hw_version
= dev
->dev
->id
.coreid
;
1766 macctl
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
1767 macctl
&= ~B43legacy_MACCTL_PSM_RUN
;
1768 macctl
|= B43legacy_MACCTL_PSM_JMP0
;
1769 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
, macctl
);
1774 static int b43legacy_write_initvals(struct b43legacy_wldev
*dev
,
1775 const struct b43legacy_iv
*ivals
,
1779 const struct b43legacy_iv
*iv
;
1784 BUILD_BUG_ON(sizeof(struct b43legacy_iv
) != 6);
1786 for (i
= 0; i
< count
; i
++) {
1787 if (array_size
< sizeof(iv
->offset_size
))
1789 array_size
-= sizeof(iv
->offset_size
);
1790 offset
= be16_to_cpu(iv
->offset_size
);
1791 bit32
= !!(offset
& B43legacy_IV_32BIT
);
1792 offset
&= B43legacy_IV_OFFSET_MASK
;
1793 if (offset
>= 0x1000)
1798 if (array_size
< sizeof(iv
->data
.d32
))
1800 array_size
-= sizeof(iv
->data
.d32
);
1802 value
= get_unaligned_be32(&iv
->data
.d32
);
1803 b43legacy_write32(dev
, offset
, value
);
1805 iv
= (const struct b43legacy_iv
*)((const uint8_t *)iv
+
1811 if (array_size
< sizeof(iv
->data
.d16
))
1813 array_size
-= sizeof(iv
->data
.d16
);
1815 value
= be16_to_cpu(iv
->data
.d16
);
1816 b43legacy_write16(dev
, offset
, value
);
1818 iv
= (const struct b43legacy_iv
*)((const uint8_t *)iv
+
1829 b43legacyerr(dev
->wl
, "Initial Values Firmware file-format error.\n");
1830 b43legacy_print_fw_helptext(dev
->wl
);
1835 static int b43legacy_upload_initvals(struct b43legacy_wldev
*dev
)
1837 const size_t hdr_len
= sizeof(struct b43legacy_fw_header
);
1838 const struct b43legacy_fw_header
*hdr
;
1839 struct b43legacy_firmware
*fw
= &dev
->fw
;
1840 const struct b43legacy_iv
*ivals
;
1844 hdr
= (const struct b43legacy_fw_header
*)(fw
->initvals
->data
);
1845 ivals
= (const struct b43legacy_iv
*)(fw
->initvals
->data
+ hdr_len
);
1846 count
= be32_to_cpu(hdr
->size
);
1847 err
= b43legacy_write_initvals(dev
, ivals
, count
,
1848 fw
->initvals
->size
- hdr_len
);
1851 if (fw
->initvals_band
) {
1852 hdr
= (const struct b43legacy_fw_header
*)
1853 (fw
->initvals_band
->data
);
1854 ivals
= (const struct b43legacy_iv
*)(fw
->initvals_band
->data
1856 count
= be32_to_cpu(hdr
->size
);
1857 err
= b43legacy_write_initvals(dev
, ivals
, count
,
1858 fw
->initvals_band
->size
- hdr_len
);
1867 /* Initialize the GPIOs
1868 * http://bcm-specs.sipsolutions.net/GPIO
1870 static int b43legacy_gpio_init(struct b43legacy_wldev
*dev
)
1872 struct ssb_bus
*bus
= dev
->dev
->bus
;
1873 struct ssb_device
*gpiodev
, *pcidev
= NULL
;
1877 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
,
1878 b43legacy_read32(dev
,
1879 B43legacy_MMIO_MACCTL
)
1882 b43legacy_write16(dev
, B43legacy_MMIO_GPIO_MASK
,
1883 b43legacy_read16(dev
,
1884 B43legacy_MMIO_GPIO_MASK
)
1889 if (dev
->dev
->bus
->chip_id
== 0x4301) {
1893 if (dev
->dev
->bus
->sprom
.boardflags_lo
& B43legacy_BFL_PACTRL
) {
1894 b43legacy_write16(dev
, B43legacy_MMIO_GPIO_MASK
,
1895 b43legacy_read16(dev
,
1896 B43legacy_MMIO_GPIO_MASK
)
1901 if (dev
->dev
->id
.revision
>= 2)
1902 mask
|= 0x0010; /* FIXME: This is redundant. */
1904 #ifdef CONFIG_SSB_DRIVER_PCICORE
1905 pcidev
= bus
->pcicore
.dev
;
1907 gpiodev
= bus
->chipco
.dev
? : pcidev
;
1910 ssb_write32(gpiodev
, B43legacy_GPIO_CONTROL
,
1911 (ssb_read32(gpiodev
, B43legacy_GPIO_CONTROL
)
1917 /* Turn off all GPIO stuff. Call this on module unload, for example. */
1918 static void b43legacy_gpio_cleanup(struct b43legacy_wldev
*dev
)
1920 struct ssb_bus
*bus
= dev
->dev
->bus
;
1921 struct ssb_device
*gpiodev
, *pcidev
= NULL
;
1923 #ifdef CONFIG_SSB_DRIVER_PCICORE
1924 pcidev
= bus
->pcicore
.dev
;
1926 gpiodev
= bus
->chipco
.dev
? : pcidev
;
1929 ssb_write32(gpiodev
, B43legacy_GPIO_CONTROL
, 0);
1932 /* http://bcm-specs.sipsolutions.net/EnableMac */
1933 void b43legacy_mac_enable(struct b43legacy_wldev
*dev
)
1935 dev
->mac_suspended
--;
1936 B43legacy_WARN_ON(dev
->mac_suspended
< 0);
1937 B43legacy_WARN_ON(irqs_disabled());
1938 if (dev
->mac_suspended
== 0) {
1939 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
,
1940 b43legacy_read32(dev
,
1941 B43legacy_MMIO_MACCTL
)
1942 | B43legacy_MACCTL_ENABLED
);
1943 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_REASON
,
1944 B43legacy_IRQ_MAC_SUSPENDED
);
1945 /* the next two are dummy reads */
1946 b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
1947 b43legacy_read32(dev
, B43legacy_MMIO_GEN_IRQ_REASON
);
1948 b43legacy_power_saving_ctl_bits(dev
, -1, -1);
1950 /* Re-enable IRQs. */
1951 spin_lock_irq(&dev
->wl
->irq_lock
);
1952 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
,
1954 spin_unlock_irq(&dev
->wl
->irq_lock
);
1958 /* http://bcm-specs.sipsolutions.net/SuspendMAC */
1959 void b43legacy_mac_suspend(struct b43legacy_wldev
*dev
)
1965 B43legacy_WARN_ON(irqs_disabled());
1966 B43legacy_WARN_ON(dev
->mac_suspended
< 0);
1968 if (dev
->mac_suspended
== 0) {
1969 /* Mask IRQs before suspending MAC. Otherwise
1970 * the MAC stays busy and won't suspend. */
1971 spin_lock_irq(&dev
->wl
->irq_lock
);
1972 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
, 0);
1973 spin_unlock_irq(&dev
->wl
->irq_lock
);
1974 b43legacy_synchronize_irq(dev
);
1976 b43legacy_power_saving_ctl_bits(dev
, -1, 1);
1977 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
,
1978 b43legacy_read32(dev
,
1979 B43legacy_MMIO_MACCTL
)
1980 & ~B43legacy_MACCTL_ENABLED
);
1981 b43legacy_read32(dev
, B43legacy_MMIO_GEN_IRQ_REASON
);
1982 for (i
= 40; i
; i
--) {
1983 tmp
= b43legacy_read32(dev
,
1984 B43legacy_MMIO_GEN_IRQ_REASON
);
1985 if (tmp
& B43legacy_IRQ_MAC_SUSPENDED
)
1989 b43legacyerr(dev
->wl
, "MAC suspend failed\n");
1992 dev
->mac_suspended
++;
1995 static void b43legacy_adjust_opmode(struct b43legacy_wldev
*dev
)
1997 struct b43legacy_wl
*wl
= dev
->wl
;
2001 ctl
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
2002 /* Reset status to STA infrastructure mode. */
2003 ctl
&= ~B43legacy_MACCTL_AP
;
2004 ctl
&= ~B43legacy_MACCTL_KEEP_CTL
;
2005 ctl
&= ~B43legacy_MACCTL_KEEP_BADPLCP
;
2006 ctl
&= ~B43legacy_MACCTL_KEEP_BAD
;
2007 ctl
&= ~B43legacy_MACCTL_PROMISC
;
2008 ctl
&= ~B43legacy_MACCTL_BEACPROMISC
;
2009 ctl
|= B43legacy_MACCTL_INFRA
;
2011 if (b43legacy_is_mode(wl
, NL80211_IFTYPE_AP
))
2012 ctl
|= B43legacy_MACCTL_AP
;
2013 else if (b43legacy_is_mode(wl
, NL80211_IFTYPE_ADHOC
))
2014 ctl
&= ~B43legacy_MACCTL_INFRA
;
2016 if (wl
->filter_flags
& FIF_CONTROL
)
2017 ctl
|= B43legacy_MACCTL_KEEP_CTL
;
2018 if (wl
->filter_flags
& FIF_FCSFAIL
)
2019 ctl
|= B43legacy_MACCTL_KEEP_BAD
;
2020 if (wl
->filter_flags
& FIF_PLCPFAIL
)
2021 ctl
|= B43legacy_MACCTL_KEEP_BADPLCP
;
2022 if (wl
->filter_flags
& FIF_PROMISC_IN_BSS
)
2023 ctl
|= B43legacy_MACCTL_PROMISC
;
2024 if (wl
->filter_flags
& FIF_BCN_PRBRESP_PROMISC
)
2025 ctl
|= B43legacy_MACCTL_BEACPROMISC
;
2027 /* Workaround: On old hardware the HW-MAC-address-filter
2028 * doesn't work properly, so always run promisc in filter
2029 * it in software. */
2030 if (dev
->dev
->id
.revision
<= 4)
2031 ctl
|= B43legacy_MACCTL_PROMISC
;
2033 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
, ctl
);
2036 if ((ctl
& B43legacy_MACCTL_INFRA
) &&
2037 !(ctl
& B43legacy_MACCTL_AP
)) {
2038 if (dev
->dev
->bus
->chip_id
== 0x4306 &&
2039 dev
->dev
->bus
->chip_rev
== 3)
2044 b43legacy_write16(dev
, 0x612, cfp_pretbtt
);
2047 static void b43legacy_rate_memory_write(struct b43legacy_wldev
*dev
,
2055 offset
+= (b43legacy_plcp_get_ratecode_ofdm(rate
) & 0x000F) * 2;
2058 offset
+= (b43legacy_plcp_get_ratecode_cck(rate
) & 0x000F) * 2;
2060 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
, offset
+ 0x20,
2061 b43legacy_shm_read16(dev
,
2062 B43legacy_SHM_SHARED
, offset
));
2065 static void b43legacy_rate_memory_init(struct b43legacy_wldev
*dev
)
2067 switch (dev
->phy
.type
) {
2068 case B43legacy_PHYTYPE_G
:
2069 b43legacy_rate_memory_write(dev
, B43legacy_OFDM_RATE_6MB
, 1);
2070 b43legacy_rate_memory_write(dev
, B43legacy_OFDM_RATE_12MB
, 1);
2071 b43legacy_rate_memory_write(dev
, B43legacy_OFDM_RATE_18MB
, 1);
2072 b43legacy_rate_memory_write(dev
, B43legacy_OFDM_RATE_24MB
, 1);
2073 b43legacy_rate_memory_write(dev
, B43legacy_OFDM_RATE_36MB
, 1);
2074 b43legacy_rate_memory_write(dev
, B43legacy_OFDM_RATE_48MB
, 1);
2075 b43legacy_rate_memory_write(dev
, B43legacy_OFDM_RATE_54MB
, 1);
2077 case B43legacy_PHYTYPE_B
:
2078 b43legacy_rate_memory_write(dev
, B43legacy_CCK_RATE_1MB
, 0);
2079 b43legacy_rate_memory_write(dev
, B43legacy_CCK_RATE_2MB
, 0);
2080 b43legacy_rate_memory_write(dev
, B43legacy_CCK_RATE_5MB
, 0);
2081 b43legacy_rate_memory_write(dev
, B43legacy_CCK_RATE_11MB
, 0);
2084 B43legacy_BUG_ON(1);
2088 /* Set the TX-Antenna for management frames sent by firmware. */
2089 static void b43legacy_mgmtframe_txantenna(struct b43legacy_wldev
*dev
,
2096 case B43legacy_ANTENNA0
:
2097 ant
|= B43legacy_TX4_PHY_ANT0
;
2099 case B43legacy_ANTENNA1
:
2100 ant
|= B43legacy_TX4_PHY_ANT1
;
2102 case B43legacy_ANTENNA_AUTO
:
2103 ant
|= B43legacy_TX4_PHY_ANTLAST
;
2106 B43legacy_BUG_ON(1);
2109 /* FIXME We also need to set the other flags of the PHY control
2110 * field somewhere. */
2113 tmp
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
2114 B43legacy_SHM_SH_BEACPHYCTL
);
2115 tmp
= (tmp
& ~B43legacy_TX4_PHY_ANT
) | ant
;
2116 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
2117 B43legacy_SHM_SH_BEACPHYCTL
, tmp
);
2119 tmp
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
2120 B43legacy_SHM_SH_ACKCTSPHYCTL
);
2121 tmp
= (tmp
& ~B43legacy_TX4_PHY_ANT
) | ant
;
2122 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
2123 B43legacy_SHM_SH_ACKCTSPHYCTL
, tmp
);
2124 /* For Probe Resposes */
2125 tmp
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
2126 B43legacy_SHM_SH_PRPHYCTL
);
2127 tmp
= (tmp
& ~B43legacy_TX4_PHY_ANT
) | ant
;
2128 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
2129 B43legacy_SHM_SH_PRPHYCTL
, tmp
);
2132 /* This is the opposite of b43legacy_chip_init() */
2133 static void b43legacy_chip_exit(struct b43legacy_wldev
*dev
)
2135 b43legacy_radio_turn_off(dev
, 1);
2136 b43legacy_gpio_cleanup(dev
);
2137 /* firmware is released later */
2140 /* Initialize the chip
2141 * http://bcm-specs.sipsolutions.net/ChipInit
2143 static int b43legacy_chip_init(struct b43legacy_wldev
*dev
)
2145 struct b43legacy_phy
*phy
= &dev
->phy
;
2148 u32 value32
, macctl
;
2151 /* Initialize the MAC control */
2152 macctl
= B43legacy_MACCTL_IHR_ENABLED
| B43legacy_MACCTL_SHM_ENABLED
;
2154 macctl
|= B43legacy_MACCTL_GMODE
;
2155 macctl
|= B43legacy_MACCTL_INFRA
;
2156 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
, macctl
);
2158 err
= b43legacy_request_firmware(dev
);
2161 err
= b43legacy_upload_microcode(dev
);
2163 goto out
; /* firmware is released later */
2165 err
= b43legacy_gpio_init(dev
);
2167 goto out
; /* firmware is released later */
2169 err
= b43legacy_upload_initvals(dev
);
2171 goto err_gpio_clean
;
2172 b43legacy_radio_turn_on(dev
);
2174 b43legacy_write16(dev
, 0x03E6, 0x0000);
2175 err
= b43legacy_phy_init(dev
);
2179 /* Select initial Interference Mitigation. */
2180 tmp
= phy
->interfmode
;
2181 phy
->interfmode
= B43legacy_INTERFMODE_NONE
;
2182 b43legacy_radio_set_interference_mitigation(dev
, tmp
);
2184 b43legacy_phy_set_antenna_diversity(dev
);
2185 b43legacy_mgmtframe_txantenna(dev
, B43legacy_ANTENNA_DEFAULT
);
2187 if (phy
->type
== B43legacy_PHYTYPE_B
) {
2188 value16
= b43legacy_read16(dev
, 0x005E);
2190 b43legacy_write16(dev
, 0x005E, value16
);
2192 b43legacy_write32(dev
, 0x0100, 0x01000000);
2193 if (dev
->dev
->id
.revision
< 5)
2194 b43legacy_write32(dev
, 0x010C, 0x01000000);
2196 value32
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
2197 value32
&= ~B43legacy_MACCTL_INFRA
;
2198 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
, value32
);
2199 value32
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
2200 value32
|= B43legacy_MACCTL_INFRA
;
2201 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
, value32
);
2203 if (b43legacy_using_pio(dev
)) {
2204 b43legacy_write32(dev
, 0x0210, 0x00000100);
2205 b43legacy_write32(dev
, 0x0230, 0x00000100);
2206 b43legacy_write32(dev
, 0x0250, 0x00000100);
2207 b43legacy_write32(dev
, 0x0270, 0x00000100);
2208 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
, 0x0034,
2212 /* Probe Response Timeout value */
2213 /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
2214 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
, 0x0074, 0x0000);
2216 /* Initially set the wireless operation mode. */
2217 b43legacy_adjust_opmode(dev
);
2219 if (dev
->dev
->id
.revision
< 3) {
2220 b43legacy_write16(dev
, 0x060E, 0x0000);
2221 b43legacy_write16(dev
, 0x0610, 0x8000);
2222 b43legacy_write16(dev
, 0x0604, 0x0000);
2223 b43legacy_write16(dev
, 0x0606, 0x0200);
2225 b43legacy_write32(dev
, 0x0188, 0x80000000);
2226 b43legacy_write32(dev
, 0x018C, 0x02000000);
2228 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_REASON
, 0x00004000);
2229 b43legacy_write32(dev
, B43legacy_MMIO_DMA0_IRQ_MASK
, 0x0001DC00);
2230 b43legacy_write32(dev
, B43legacy_MMIO_DMA1_IRQ_MASK
, 0x0000DC00);
2231 b43legacy_write32(dev
, B43legacy_MMIO_DMA2_IRQ_MASK
, 0x0000DC00);
2232 b43legacy_write32(dev
, B43legacy_MMIO_DMA3_IRQ_MASK
, 0x0001DC00);
2233 b43legacy_write32(dev
, B43legacy_MMIO_DMA4_IRQ_MASK
, 0x0000DC00);
2234 b43legacy_write32(dev
, B43legacy_MMIO_DMA5_IRQ_MASK
, 0x0000DC00);
2236 value32
= ssb_read32(dev
->dev
, SSB_TMSLOW
);
2237 value32
|= 0x00100000;
2238 ssb_write32(dev
->dev
, SSB_TMSLOW
, value32
);
2240 b43legacy_write16(dev
, B43legacy_MMIO_POWERUP_DELAY
,
2241 dev
->dev
->bus
->chipco
.fast_pwrup_delay
);
2243 /* PHY TX errors counter. */
2244 atomic_set(&phy
->txerr_cnt
, B43legacy_PHY_TX_BADNESS_LIMIT
);
2246 B43legacy_WARN_ON(err
!= 0);
2247 b43legacydbg(dev
->wl
, "Chip initialized\n");
2252 b43legacy_radio_turn_off(dev
, 1);
2254 b43legacy_gpio_cleanup(dev
);
2258 static void b43legacy_periodic_every120sec(struct b43legacy_wldev
*dev
)
2260 struct b43legacy_phy
*phy
= &dev
->phy
;
2262 if (phy
->type
!= B43legacy_PHYTYPE_G
|| phy
->rev
< 2)
2265 b43legacy_mac_suspend(dev
);
2266 b43legacy_phy_lo_g_measure(dev
);
2267 b43legacy_mac_enable(dev
);
2270 static void b43legacy_periodic_every60sec(struct b43legacy_wldev
*dev
)
2272 b43legacy_phy_lo_mark_all_unused(dev
);
2273 if (dev
->dev
->bus
->sprom
.boardflags_lo
& B43legacy_BFL_RSSI
) {
2274 b43legacy_mac_suspend(dev
);
2275 b43legacy_calc_nrssi_slope(dev
);
2276 b43legacy_mac_enable(dev
);
2280 static void b43legacy_periodic_every30sec(struct b43legacy_wldev
*dev
)
2282 /* Update device statistics. */
2283 b43legacy_calculate_link_quality(dev
);
2286 static void b43legacy_periodic_every15sec(struct b43legacy_wldev
*dev
)
2288 b43legacy_phy_xmitpower(dev
); /* FIXME: unless scanning? */
2290 atomic_set(&dev
->phy
.txerr_cnt
, B43legacy_PHY_TX_BADNESS_LIMIT
);
2294 static void do_periodic_work(struct b43legacy_wldev
*dev
)
2298 state
= dev
->periodic_state
;
2300 b43legacy_periodic_every120sec(dev
);
2302 b43legacy_periodic_every60sec(dev
);
2304 b43legacy_periodic_every30sec(dev
);
2305 b43legacy_periodic_every15sec(dev
);
2308 /* Periodic work locking policy:
2309 * The whole periodic work handler is protected by
2310 * wl->mutex. If another lock is needed somewhere in the
2311 * pwork callchain, it's acquired in-place, where it's needed.
2313 static void b43legacy_periodic_work_handler(struct work_struct
*work
)
2315 struct b43legacy_wldev
*dev
= container_of(work
, struct b43legacy_wldev
,
2316 periodic_work
.work
);
2317 struct b43legacy_wl
*wl
= dev
->wl
;
2318 unsigned long delay
;
2320 mutex_lock(&wl
->mutex
);
2322 if (unlikely(b43legacy_status(dev
) != B43legacy_STAT_STARTED
))
2324 if (b43legacy_debug(dev
, B43legacy_DBG_PWORK_STOP
))
2327 do_periodic_work(dev
);
2329 dev
->periodic_state
++;
2331 if (b43legacy_debug(dev
, B43legacy_DBG_PWORK_FAST
))
2332 delay
= msecs_to_jiffies(50);
2334 delay
= round_jiffies_relative(HZ
* 15);
2335 ieee80211_queue_delayed_work(wl
->hw
, &dev
->periodic_work
, delay
);
2337 mutex_unlock(&wl
->mutex
);
2340 static void b43legacy_periodic_tasks_setup(struct b43legacy_wldev
*dev
)
2342 struct delayed_work
*work
= &dev
->periodic_work
;
2344 dev
->periodic_state
= 0;
2345 INIT_DELAYED_WORK(work
, b43legacy_periodic_work_handler
);
2346 ieee80211_queue_delayed_work(dev
->wl
->hw
, work
, 0);
2349 /* Validate access to the chip (SHM) */
2350 static int b43legacy_validate_chipaccess(struct b43legacy_wldev
*dev
)
2355 shm_backup
= b43legacy_shm_read32(dev
, B43legacy_SHM_SHARED
, 0);
2356 b43legacy_shm_write32(dev
, B43legacy_SHM_SHARED
, 0, 0xAA5555AA);
2357 if (b43legacy_shm_read32(dev
, B43legacy_SHM_SHARED
, 0) !=
2360 b43legacy_shm_write32(dev
, B43legacy_SHM_SHARED
, 0, 0x55AAAA55);
2361 if (b43legacy_shm_read32(dev
, B43legacy_SHM_SHARED
, 0) !=
2364 b43legacy_shm_write32(dev
, B43legacy_SHM_SHARED
, 0, shm_backup
);
2366 value
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
2367 if ((value
| B43legacy_MACCTL_GMODE
) !=
2368 (B43legacy_MACCTL_GMODE
| B43legacy_MACCTL_IHR_ENABLED
))
2371 value
= b43legacy_read32(dev
, B43legacy_MMIO_GEN_IRQ_REASON
);
2377 b43legacyerr(dev
->wl
, "Failed to validate the chipaccess\n");
2381 static void b43legacy_security_init(struct b43legacy_wldev
*dev
)
2383 dev
->max_nr_keys
= (dev
->dev
->id
.revision
>= 5) ? 58 : 20;
2384 B43legacy_WARN_ON(dev
->max_nr_keys
> ARRAY_SIZE(dev
->key
));
2385 dev
->ktp
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
2387 /* KTP is a word address, but we address SHM bytewise.
2388 * So multiply by two.
2391 if (dev
->dev
->id
.revision
>= 5)
2392 /* Number of RCMTA address slots */
2393 b43legacy_write16(dev
, B43legacy_MMIO_RCMTA_COUNT
,
2394 dev
->max_nr_keys
- 8);
2397 #ifdef CONFIG_B43LEGACY_HWRNG
2398 static int b43legacy_rng_read(struct hwrng
*rng
, u32
*data
)
2400 struct b43legacy_wl
*wl
= (struct b43legacy_wl
*)rng
->priv
;
2401 unsigned long flags
;
2403 /* Don't take wl->mutex here, as it could deadlock with
2404 * hwrng internal locking. It's not needed to take
2405 * wl->mutex here, anyway. */
2407 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2408 *data
= b43legacy_read16(wl
->current_dev
, B43legacy_MMIO_RNG
);
2409 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2411 return (sizeof(u16
));
2415 static void b43legacy_rng_exit(struct b43legacy_wl
*wl
)
2417 #ifdef CONFIG_B43LEGACY_HWRNG
2418 if (wl
->rng_initialized
)
2419 hwrng_unregister(&wl
->rng
);
2423 static int b43legacy_rng_init(struct b43legacy_wl
*wl
)
2427 #ifdef CONFIG_B43LEGACY_HWRNG
2428 snprintf(wl
->rng_name
, ARRAY_SIZE(wl
->rng_name
),
2429 "%s_%s", KBUILD_MODNAME
, wiphy_name(wl
->hw
->wiphy
));
2430 wl
->rng
.name
= wl
->rng_name
;
2431 wl
->rng
.data_read
= b43legacy_rng_read
;
2432 wl
->rng
.priv
= (unsigned long)wl
;
2433 wl
->rng_initialized
= 1;
2434 err
= hwrng_register(&wl
->rng
);
2436 wl
->rng_initialized
= 0;
2437 b43legacyerr(wl
, "Failed to register the random "
2438 "number generator (%d)\n", err
);
2445 static int b43legacy_op_tx(struct ieee80211_hw
*hw
,
2446 struct sk_buff
*skb
)
2448 struct b43legacy_wl
*wl
= hw_to_b43legacy_wl(hw
);
2449 struct b43legacy_wldev
*dev
= wl
->current_dev
;
2451 unsigned long flags
;
2455 if (unlikely(b43legacy_status(dev
) < B43legacy_STAT_STARTED
))
2457 /* DMA-TX is done without a global lock. */
2458 if (b43legacy_using_pio(dev
)) {
2459 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2460 err
= b43legacy_pio_tx(dev
, skb
);
2461 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2463 err
= b43legacy_dma_tx(dev
, skb
);
2465 if (unlikely(err
)) {
2466 /* Drop the packet. */
2467 dev_kfree_skb_any(skb
);
2469 return NETDEV_TX_OK
;
2472 static int b43legacy_op_conf_tx(struct ieee80211_hw
*hw
, u16 queue
,
2473 const struct ieee80211_tx_queue_params
*params
)
2478 static int b43legacy_op_get_stats(struct ieee80211_hw
*hw
,
2479 struct ieee80211_low_level_stats
*stats
)
2481 struct b43legacy_wl
*wl
= hw_to_b43legacy_wl(hw
);
2482 unsigned long flags
;
2484 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2485 memcpy(stats
, &wl
->ieee_stats
, sizeof(*stats
));
2486 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2491 static const char *phymode_to_string(unsigned int phymode
)
2494 case B43legacy_PHYMODE_B
:
2496 case B43legacy_PHYMODE_G
:
2499 B43legacy_BUG_ON(1);
2504 static int find_wldev_for_phymode(struct b43legacy_wl
*wl
,
2505 unsigned int phymode
,
2506 struct b43legacy_wldev
**dev
,
2509 struct b43legacy_wldev
*d
;
2511 list_for_each_entry(d
, &wl
->devlist
, list
) {
2512 if (d
->phy
.possible_phymodes
& phymode
) {
2513 /* Ok, this device supports the PHY-mode.
2514 * Set the gmode bit. */
2525 static void b43legacy_put_phy_into_reset(struct b43legacy_wldev
*dev
)
2527 struct ssb_device
*sdev
= dev
->dev
;
2530 tmslow
= ssb_read32(sdev
, SSB_TMSLOW
);
2531 tmslow
&= ~B43legacy_TMSLOW_GMODE
;
2532 tmslow
|= B43legacy_TMSLOW_PHYRESET
;
2533 tmslow
|= SSB_TMSLOW_FGC
;
2534 ssb_write32(sdev
, SSB_TMSLOW
, tmslow
);
2537 tmslow
= ssb_read32(sdev
, SSB_TMSLOW
);
2538 tmslow
&= ~SSB_TMSLOW_FGC
;
2539 tmslow
|= B43legacy_TMSLOW_PHYRESET
;
2540 ssb_write32(sdev
, SSB_TMSLOW
, tmslow
);
2544 /* Expects wl->mutex locked */
2545 static int b43legacy_switch_phymode(struct b43legacy_wl
*wl
,
2546 unsigned int new_mode
)
2548 struct b43legacy_wldev
*uninitialized_var(up_dev
);
2549 struct b43legacy_wldev
*down_dev
;
2554 err
= find_wldev_for_phymode(wl
, new_mode
, &up_dev
, &gmode
);
2556 b43legacyerr(wl
, "Could not find a device for %s-PHY mode\n",
2557 phymode_to_string(new_mode
));
2560 if ((up_dev
== wl
->current_dev
) &&
2561 (!!wl
->current_dev
->phy
.gmode
== !!gmode
))
2562 /* This device is already running. */
2564 b43legacydbg(wl
, "Reconfiguring PHYmode to %s-PHY\n",
2565 phymode_to_string(new_mode
));
2566 down_dev
= wl
->current_dev
;
2568 prev_status
= b43legacy_status(down_dev
);
2569 /* Shutdown the currently running core. */
2570 if (prev_status
>= B43legacy_STAT_STARTED
)
2571 b43legacy_wireless_core_stop(down_dev
);
2572 if (prev_status
>= B43legacy_STAT_INITIALIZED
)
2573 b43legacy_wireless_core_exit(down_dev
);
2575 if (down_dev
!= up_dev
)
2576 /* We switch to a different core, so we put PHY into
2577 * RESET on the old core. */
2578 b43legacy_put_phy_into_reset(down_dev
);
2580 /* Now start the new core. */
2581 up_dev
->phy
.gmode
= gmode
;
2582 if (prev_status
>= B43legacy_STAT_INITIALIZED
) {
2583 err
= b43legacy_wireless_core_init(up_dev
);
2585 b43legacyerr(wl
, "Fatal: Could not initialize device"
2586 " for newly selected %s-PHY mode\n",
2587 phymode_to_string(new_mode
));
2591 if (prev_status
>= B43legacy_STAT_STARTED
) {
2592 err
= b43legacy_wireless_core_start(up_dev
);
2594 b43legacyerr(wl
, "Fatal: Coult not start device for "
2595 "newly selected %s-PHY mode\n",
2596 phymode_to_string(new_mode
));
2597 b43legacy_wireless_core_exit(up_dev
);
2601 B43legacy_WARN_ON(b43legacy_status(up_dev
) != prev_status
);
2603 b43legacy_shm_write32(up_dev
, B43legacy_SHM_SHARED
, 0x003E, 0);
2605 wl
->current_dev
= up_dev
;
2609 /* Whoops, failed to init the new core. No core is operating now. */
2610 wl
->current_dev
= NULL
;
2614 /* Write the short and long frame retry limit values. */
2615 static void b43legacy_set_retry_limits(struct b43legacy_wldev
*dev
,
2616 unsigned int short_retry
,
2617 unsigned int long_retry
)
2619 /* The retry limit is a 4-bit counter. Enforce this to avoid overflowing
2620 * the chip-internal counter. */
2621 short_retry
= min(short_retry
, (unsigned int)0xF);
2622 long_retry
= min(long_retry
, (unsigned int)0xF);
2624 b43legacy_shm_write16(dev
, B43legacy_SHM_WIRELESS
, 0x0006, short_retry
);
2625 b43legacy_shm_write16(dev
, B43legacy_SHM_WIRELESS
, 0x0007, long_retry
);
2628 static int b43legacy_op_dev_config(struct ieee80211_hw
*hw
,
2631 struct b43legacy_wl
*wl
= hw_to_b43legacy_wl(hw
);
2632 struct b43legacy_wldev
*dev
;
2633 struct b43legacy_phy
*phy
;
2634 struct ieee80211_conf
*conf
= &hw
->conf
;
2635 unsigned long flags
;
2636 unsigned int new_phymode
= 0xFFFF;
2641 antenna_tx
= B43legacy_ANTENNA_DEFAULT
;
2642 antenna_rx
= B43legacy_ANTENNA_DEFAULT
;
2644 mutex_lock(&wl
->mutex
);
2645 dev
= wl
->current_dev
;
2648 if (changed
& IEEE80211_CONF_CHANGE_RETRY_LIMITS
)
2649 b43legacy_set_retry_limits(dev
,
2650 conf
->short_frame_max_tx_count
,
2651 conf
->long_frame_max_tx_count
);
2652 changed
&= ~IEEE80211_CONF_CHANGE_RETRY_LIMITS
;
2654 goto out_unlock_mutex
;
2656 /* Switch the PHY mode (if necessary). */
2657 switch (conf
->channel
->band
) {
2658 case IEEE80211_BAND_2GHZ
:
2659 if (phy
->type
== B43legacy_PHYTYPE_B
)
2660 new_phymode
= B43legacy_PHYMODE_B
;
2662 new_phymode
= B43legacy_PHYMODE_G
;
2665 B43legacy_WARN_ON(1);
2667 err
= b43legacy_switch_phymode(wl
, new_phymode
);
2669 goto out_unlock_mutex
;
2671 /* Disable IRQs while reconfiguring the device.
2672 * This makes it possible to drop the spinlock throughout
2673 * the reconfiguration process. */
2674 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2675 if (b43legacy_status(dev
) < B43legacy_STAT_STARTED
) {
2676 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2677 goto out_unlock_mutex
;
2679 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
, 0);
2680 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2681 b43legacy_synchronize_irq(dev
);
2683 /* Switch to the requested channel.
2684 * The firmware takes care of races with the TX handler. */
2685 if (conf
->channel
->hw_value
!= phy
->channel
)
2686 b43legacy_radio_selectchannel(dev
, conf
->channel
->hw_value
, 0);
2688 dev
->wl
->radiotap_enabled
= !!(conf
->flags
& IEEE80211_CONF_MONITOR
);
2690 /* Adjust the desired TX power level. */
2691 if (conf
->power_level
!= 0) {
2692 if (conf
->power_level
!= phy
->power_level
) {
2693 phy
->power_level
= conf
->power_level
;
2694 b43legacy_phy_xmitpower(dev
);
2698 /* Antennas for RX and management frame TX. */
2699 b43legacy_mgmtframe_txantenna(dev
, antenna_tx
);
2701 if (wl
->radio_enabled
!= phy
->radio_on
) {
2702 if (wl
->radio_enabled
) {
2703 b43legacy_radio_turn_on(dev
);
2704 b43legacyinfo(dev
->wl
, "Radio turned on by software\n");
2705 if (!dev
->radio_hw_enable
)
2706 b43legacyinfo(dev
->wl
, "The hardware RF-kill"
2707 " button still turns the radio"
2708 " physically off. Press the"
2709 " button to turn it on.\n");
2711 b43legacy_radio_turn_off(dev
, 0);
2712 b43legacyinfo(dev
->wl
, "Radio turned off by"
2717 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2718 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
, dev
->irq_mask
);
2720 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2722 mutex_unlock(&wl
->mutex
);
2727 static void b43legacy_update_basic_rates(struct b43legacy_wldev
*dev
, u32 brates
)
2729 struct ieee80211_supported_band
*sband
=
2730 dev
->wl
->hw
->wiphy
->bands
[IEEE80211_BAND_2GHZ
];
2731 struct ieee80211_rate
*rate
;
2733 u16 basic
, direct
, offset
, basic_offset
, rateptr
;
2735 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
2736 rate
= &sband
->bitrates
[i
];
2738 if (b43legacy_is_cck_rate(rate
->hw_value
)) {
2739 direct
= B43legacy_SHM_SH_CCKDIRECT
;
2740 basic
= B43legacy_SHM_SH_CCKBASIC
;
2741 offset
= b43legacy_plcp_get_ratecode_cck(rate
->hw_value
);
2744 direct
= B43legacy_SHM_SH_OFDMDIRECT
;
2745 basic
= B43legacy_SHM_SH_OFDMBASIC
;
2746 offset
= b43legacy_plcp_get_ratecode_ofdm(rate
->hw_value
);
2750 rate
= ieee80211_get_response_rate(sband
, brates
, rate
->bitrate
);
2752 if (b43legacy_is_cck_rate(rate
->hw_value
)) {
2753 basic_offset
= b43legacy_plcp_get_ratecode_cck(rate
->hw_value
);
2754 basic_offset
&= 0xF;
2756 basic_offset
= b43legacy_plcp_get_ratecode_ofdm(rate
->hw_value
);
2757 basic_offset
&= 0xF;
2761 * Get the pointer that we need to point to
2762 * from the direct map
2764 rateptr
= b43legacy_shm_read16(dev
, B43legacy_SHM_SHARED
,
2765 direct
+ 2 * basic_offset
);
2766 /* and write it to the basic map */
2767 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
2768 basic
+ 2 * offset
, rateptr
);
2772 static void b43legacy_op_bss_info_changed(struct ieee80211_hw
*hw
,
2773 struct ieee80211_vif
*vif
,
2774 struct ieee80211_bss_conf
*conf
,
2777 struct b43legacy_wl
*wl
= hw_to_b43legacy_wl(hw
);
2778 struct b43legacy_wldev
*dev
;
2779 struct b43legacy_phy
*phy
;
2780 unsigned long flags
;
2782 mutex_lock(&wl
->mutex
);
2783 B43legacy_WARN_ON(wl
->vif
!= vif
);
2785 dev
= wl
->current_dev
;
2788 /* Disable IRQs while reconfiguring the device.
2789 * This makes it possible to drop the spinlock throughout
2790 * the reconfiguration process. */
2791 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2792 if (b43legacy_status(dev
) < B43legacy_STAT_STARTED
) {
2793 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2794 goto out_unlock_mutex
;
2796 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
, 0);
2798 if (changed
& BSS_CHANGED_BSSID
) {
2799 b43legacy_synchronize_irq(dev
);
2802 memcpy(wl
->bssid
, conf
->bssid
, ETH_ALEN
);
2804 memset(wl
->bssid
, 0, ETH_ALEN
);
2807 if (b43legacy_status(dev
) >= B43legacy_STAT_INITIALIZED
) {
2808 if (changed
& BSS_CHANGED_BEACON
&&
2809 (b43legacy_is_mode(wl
, NL80211_IFTYPE_AP
) ||
2810 b43legacy_is_mode(wl
, NL80211_IFTYPE_ADHOC
)))
2811 b43legacy_update_templates(wl
);
2813 if (changed
& BSS_CHANGED_BSSID
)
2814 b43legacy_write_mac_bssid_templates(dev
);
2816 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2818 b43legacy_mac_suspend(dev
);
2820 if (changed
& BSS_CHANGED_BEACON_INT
&&
2821 (b43legacy_is_mode(wl
, NL80211_IFTYPE_AP
) ||
2822 b43legacy_is_mode(wl
, NL80211_IFTYPE_ADHOC
)))
2823 b43legacy_set_beacon_int(dev
, conf
->beacon_int
);
2825 if (changed
& BSS_CHANGED_BASIC_RATES
)
2826 b43legacy_update_basic_rates(dev
, conf
->basic_rates
);
2828 if (changed
& BSS_CHANGED_ERP_SLOT
) {
2829 if (conf
->use_short_slot
)
2830 b43legacy_short_slot_timing_enable(dev
);
2832 b43legacy_short_slot_timing_disable(dev
);
2835 b43legacy_mac_enable(dev
);
2837 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2838 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
, dev
->irq_mask
);
2841 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2843 mutex_unlock(&wl
->mutex
);
2846 static void b43legacy_op_configure_filter(struct ieee80211_hw
*hw
,
2847 unsigned int changed
,
2848 unsigned int *fflags
,u64 multicast
)
2850 struct b43legacy_wl
*wl
= hw_to_b43legacy_wl(hw
);
2851 struct b43legacy_wldev
*dev
= wl
->current_dev
;
2852 unsigned long flags
;
2859 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2860 *fflags
&= FIF_PROMISC_IN_BSS
|
2866 FIF_BCN_PRBRESP_PROMISC
;
2868 changed
&= FIF_PROMISC_IN_BSS
|
2874 FIF_BCN_PRBRESP_PROMISC
;
2876 wl
->filter_flags
= *fflags
;
2878 if (changed
&& b43legacy_status(dev
) >= B43legacy_STAT_INITIALIZED
)
2879 b43legacy_adjust_opmode(dev
);
2880 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2883 /* Locking: wl->mutex */
2884 static void b43legacy_wireless_core_stop(struct b43legacy_wldev
*dev
)
2886 struct b43legacy_wl
*wl
= dev
->wl
;
2887 unsigned long flags
;
2889 if (b43legacy_status(dev
) < B43legacy_STAT_STARTED
)
2892 /* Disable and sync interrupts. We must do this before than
2893 * setting the status to INITIALIZED, as the interrupt handler
2894 * won't care about IRQs then. */
2895 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2896 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
, 0);
2897 b43legacy_read32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
); /* flush */
2898 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2899 b43legacy_synchronize_irq(dev
);
2901 b43legacy_set_status(dev
, B43legacy_STAT_INITIALIZED
);
2903 mutex_unlock(&wl
->mutex
);
2904 /* Must unlock as it would otherwise deadlock. No races here.
2905 * Cancel the possibly running self-rearming periodic work. */
2906 cancel_delayed_work_sync(&dev
->periodic_work
);
2907 mutex_lock(&wl
->mutex
);
2909 ieee80211_stop_queues(wl
->hw
); /* FIXME this could cause a deadlock */
2911 b43legacy_mac_suspend(dev
);
2912 free_irq(dev
->dev
->irq
, dev
);
2913 b43legacydbg(wl
, "Wireless interface stopped\n");
2916 /* Locking: wl->mutex */
2917 static int b43legacy_wireless_core_start(struct b43legacy_wldev
*dev
)
2921 B43legacy_WARN_ON(b43legacy_status(dev
) != B43legacy_STAT_INITIALIZED
);
2923 drain_txstatus_queue(dev
);
2924 err
= request_irq(dev
->dev
->irq
, b43legacy_interrupt_handler
,
2925 IRQF_SHARED
, KBUILD_MODNAME
, dev
);
2927 b43legacyerr(dev
->wl
, "Cannot request IRQ-%d\n",
2931 /* We are ready to run. */
2932 ieee80211_wake_queues(dev
->wl
->hw
);
2933 b43legacy_set_status(dev
, B43legacy_STAT_STARTED
);
2935 /* Start data flow (TX/RX) */
2936 b43legacy_mac_enable(dev
);
2937 b43legacy_write32(dev
, B43legacy_MMIO_GEN_IRQ_MASK
, dev
->irq_mask
);
2939 /* Start maintenance work */
2940 b43legacy_periodic_tasks_setup(dev
);
2942 b43legacydbg(dev
->wl
, "Wireless interface started\n");
2947 /* Get PHY and RADIO versioning numbers */
2948 static int b43legacy_phy_versioning(struct b43legacy_wldev
*dev
)
2950 struct b43legacy_phy
*phy
= &dev
->phy
;
2958 int unsupported
= 0;
2960 /* Get PHY versioning */
2961 tmp
= b43legacy_read16(dev
, B43legacy_MMIO_PHY_VER
);
2962 analog_type
= (tmp
& B43legacy_PHYVER_ANALOG
)
2963 >> B43legacy_PHYVER_ANALOG_SHIFT
;
2964 phy_type
= (tmp
& B43legacy_PHYVER_TYPE
) >> B43legacy_PHYVER_TYPE_SHIFT
;
2965 phy_rev
= (tmp
& B43legacy_PHYVER_VERSION
);
2967 case B43legacy_PHYTYPE_B
:
2968 if (phy_rev
!= 2 && phy_rev
!= 4
2969 && phy_rev
!= 6 && phy_rev
!= 7)
2972 case B43legacy_PHYTYPE_G
:
2980 b43legacyerr(dev
->wl
, "FOUND UNSUPPORTED PHY "
2981 "(Analog %u, Type %u, Revision %u)\n",
2982 analog_type
, phy_type
, phy_rev
);
2985 b43legacydbg(dev
->wl
, "Found PHY: Analog %u, Type %u, Revision %u\n",
2986 analog_type
, phy_type
, phy_rev
);
2989 /* Get RADIO versioning */
2990 if (dev
->dev
->bus
->chip_id
== 0x4317) {
2991 if (dev
->dev
->bus
->chip_rev
== 0)
2993 else if (dev
->dev
->bus
->chip_rev
== 1)
2998 b43legacy_write16(dev
, B43legacy_MMIO_RADIO_CONTROL
,
2999 B43legacy_RADIOCTL_ID
);
3000 tmp
= b43legacy_read16(dev
, B43legacy_MMIO_RADIO_DATA_HIGH
);
3002 b43legacy_write16(dev
, B43legacy_MMIO_RADIO_CONTROL
,
3003 B43legacy_RADIOCTL_ID
);
3004 tmp
|= b43legacy_read16(dev
, B43legacy_MMIO_RADIO_DATA_LOW
);
3006 radio_manuf
= (tmp
& 0x00000FFF);
3007 radio_ver
= (tmp
& 0x0FFFF000) >> 12;
3008 radio_rev
= (tmp
& 0xF0000000) >> 28;
3010 case B43legacy_PHYTYPE_B
:
3011 if ((radio_ver
& 0xFFF0) != 0x2050)
3014 case B43legacy_PHYTYPE_G
:
3015 if (radio_ver
!= 0x2050)
3019 B43legacy_BUG_ON(1);
3022 b43legacyerr(dev
->wl
, "FOUND UNSUPPORTED RADIO "
3023 "(Manuf 0x%X, Version 0x%X, Revision %u)\n",
3024 radio_manuf
, radio_ver
, radio_rev
);
3027 b43legacydbg(dev
->wl
, "Found Radio: Manuf 0x%X, Version 0x%X,"
3028 " Revision %u\n", radio_manuf
, radio_ver
, radio_rev
);
3031 phy
->radio_manuf
= radio_manuf
;
3032 phy
->radio_ver
= radio_ver
;
3033 phy
->radio_rev
= radio_rev
;
3035 phy
->analog
= analog_type
;
3036 phy
->type
= phy_type
;
3042 static void setup_struct_phy_for_init(struct b43legacy_wldev
*dev
,
3043 struct b43legacy_phy
*phy
)
3045 struct b43legacy_lopair
*lo
;
3048 memset(phy
->minlowsig
, 0xFF, sizeof(phy
->minlowsig
));
3049 memset(phy
->minlowsigpos
, 0, sizeof(phy
->minlowsigpos
));
3051 /* Assume the radio is enabled. If it's not enabled, the state will
3052 * immediately get fixed on the first periodic work run. */
3053 dev
->radio_hw_enable
= 1;
3055 phy
->savedpctlreg
= 0xFFFF;
3056 phy
->aci_enable
= 0;
3057 phy
->aci_wlan_automatic
= 0;
3058 phy
->aci_hw_rssi
= 0;
3060 lo
= phy
->_lo_pairs
;
3062 memset(lo
, 0, sizeof(struct b43legacy_lopair
) *
3063 B43legacy_LO_COUNT
);
3064 phy
->max_lb_gain
= 0;
3065 phy
->trsw_rx_gain
= 0;
3067 /* Set default attenuation values. */
3068 phy
->bbatt
= b43legacy_default_baseband_attenuation(dev
);
3069 phy
->rfatt
= b43legacy_default_radio_attenuation(dev
);
3070 phy
->txctl1
= b43legacy_default_txctl1(dev
);
3071 phy
->txpwr_offset
= 0;
3074 phy
->nrssislope
= 0;
3075 for (i
= 0; i
< ARRAY_SIZE(phy
->nrssi
); i
++)
3076 phy
->nrssi
[i
] = -1000;
3077 for (i
= 0; i
< ARRAY_SIZE(phy
->nrssi_lt
); i
++)
3078 phy
->nrssi_lt
[i
] = i
;
3080 phy
->lofcal
= 0xFFFF;
3081 phy
->initval
= 0xFFFF;
3083 phy
->interfmode
= B43legacy_INTERFMODE_NONE
;
3084 phy
->channel
= 0xFF;
3087 static void setup_struct_wldev_for_init(struct b43legacy_wldev
*dev
)
3093 memset(&dev
->stats
, 0, sizeof(dev
->stats
));
3095 setup_struct_phy_for_init(dev
, &dev
->phy
);
3097 /* IRQ related flags */
3098 dev
->irq_reason
= 0;
3099 memset(dev
->dma_reason
, 0, sizeof(dev
->dma_reason
));
3100 dev
->irq_mask
= B43legacy_IRQ_MASKTEMPLATE
;
3102 dev
->mac_suspended
= 1;
3104 /* Noise calculation context */
3105 memset(&dev
->noisecalc
, 0, sizeof(dev
->noisecalc
));
3108 static void b43legacy_imcfglo_timeouts_workaround(struct b43legacy_wldev
*dev
)
3110 #ifdef CONFIG_SSB_DRIVER_PCICORE
3111 struct ssb_bus
*bus
= dev
->dev
->bus
;
3114 if (bus
->pcicore
.dev
&&
3115 bus
->pcicore
.dev
->id
.coreid
== SSB_DEV_PCI
&&
3116 bus
->pcicore
.dev
->id
.revision
<= 5) {
3117 /* IMCFGLO timeouts workaround. */
3118 tmp
= ssb_read32(dev
->dev
, SSB_IMCFGLO
);
3119 switch (bus
->bustype
) {
3120 case SSB_BUSTYPE_PCI
:
3121 case SSB_BUSTYPE_PCMCIA
:
3122 tmp
&= ~SSB_IMCFGLO_REQTO
;
3123 tmp
&= ~SSB_IMCFGLO_SERTO
;
3126 case SSB_BUSTYPE_SSB
:
3127 tmp
&= ~SSB_IMCFGLO_REQTO
;
3128 tmp
&= ~SSB_IMCFGLO_SERTO
;
3134 ssb_write32(dev
->dev
, SSB_IMCFGLO
, tmp
);
3136 #endif /* CONFIG_SSB_DRIVER_PCICORE */
3139 static void b43legacy_set_synth_pu_delay(struct b43legacy_wldev
*dev
,
3141 u16 pu_delay
= 1050;
3143 if (b43legacy_is_mode(dev
->wl
, NL80211_IFTYPE_ADHOC
) || idle
)
3145 if ((dev
->phy
.radio_ver
== 0x2050) && (dev
->phy
.radio_rev
== 8))
3146 pu_delay
= max(pu_delay
, (u16
)2400);
3148 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
3149 B43legacy_SHM_SH_SPUWKUP
, pu_delay
);
3152 /* Set the TSF CFP pre-TargetBeaconTransmissionTime. */
3153 static void b43legacy_set_pretbtt(struct b43legacy_wldev
*dev
)
3157 /* The time value is in microseconds. */
3158 if (b43legacy_is_mode(dev
->wl
, NL80211_IFTYPE_ADHOC
))
3162 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
3163 B43legacy_SHM_SH_PRETBTT
, pretbtt
);
3164 b43legacy_write16(dev
, B43legacy_MMIO_TSF_CFP_PRETBTT
, pretbtt
);
3167 /* Shutdown a wireless core */
3168 /* Locking: wl->mutex */
3169 static void b43legacy_wireless_core_exit(struct b43legacy_wldev
*dev
)
3171 struct b43legacy_phy
*phy
= &dev
->phy
;
3174 B43legacy_WARN_ON(b43legacy_status(dev
) > B43legacy_STAT_INITIALIZED
);
3175 if (b43legacy_status(dev
) != B43legacy_STAT_INITIALIZED
)
3177 b43legacy_set_status(dev
, B43legacy_STAT_UNINIT
);
3179 /* Stop the microcode PSM. */
3180 macctl
= b43legacy_read32(dev
, B43legacy_MMIO_MACCTL
);
3181 macctl
&= ~B43legacy_MACCTL_PSM_RUN
;
3182 macctl
|= B43legacy_MACCTL_PSM_JMP0
;
3183 b43legacy_write32(dev
, B43legacy_MMIO_MACCTL
, macctl
);
3185 b43legacy_leds_exit(dev
);
3186 b43legacy_rng_exit(dev
->wl
);
3187 b43legacy_pio_free(dev
);
3188 b43legacy_dma_free(dev
);
3189 b43legacy_chip_exit(dev
);
3190 b43legacy_radio_turn_off(dev
, 1);
3191 b43legacy_switch_analog(dev
, 0);
3192 if (phy
->dyn_tssi_tbl
)
3193 kfree(phy
->tssi2dbm
);
3194 kfree(phy
->lo_control
);
3195 phy
->lo_control
= NULL
;
3196 if (dev
->wl
->current_beacon
) {
3197 dev_kfree_skb_any(dev
->wl
->current_beacon
);
3198 dev
->wl
->current_beacon
= NULL
;
3201 ssb_device_disable(dev
->dev
, 0);
3202 ssb_bus_may_powerdown(dev
->dev
->bus
);
3205 static void prepare_phy_data_for_init(struct b43legacy_wldev
*dev
)
3207 struct b43legacy_phy
*phy
= &dev
->phy
;
3210 /* Set default attenuation values. */
3211 phy
->bbatt
= b43legacy_default_baseband_attenuation(dev
);
3212 phy
->rfatt
= b43legacy_default_radio_attenuation(dev
);
3213 phy
->txctl1
= b43legacy_default_txctl1(dev
);
3214 phy
->txctl2
= 0xFFFF;
3215 phy
->txpwr_offset
= 0;
3218 phy
->nrssislope
= 0;
3219 for (i
= 0; i
< ARRAY_SIZE(phy
->nrssi
); i
++)
3220 phy
->nrssi
[i
] = -1000;
3221 for (i
= 0; i
< ARRAY_SIZE(phy
->nrssi_lt
); i
++)
3222 phy
->nrssi_lt
[i
] = i
;
3224 phy
->lofcal
= 0xFFFF;
3225 phy
->initval
= 0xFFFF;
3227 phy
->aci_enable
= 0;
3228 phy
->aci_wlan_automatic
= 0;
3229 phy
->aci_hw_rssi
= 0;
3231 phy
->antenna_diversity
= 0xFFFF;
3232 memset(phy
->minlowsig
, 0xFF, sizeof(phy
->minlowsig
));
3233 memset(phy
->minlowsigpos
, 0, sizeof(phy
->minlowsigpos
));
3236 phy
->calibrated
= 0;
3239 memset(phy
->_lo_pairs
, 0,
3240 sizeof(struct b43legacy_lopair
) * B43legacy_LO_COUNT
);
3241 memset(phy
->loopback_gain
, 0, sizeof(phy
->loopback_gain
));
3244 /* Initialize a wireless core */
3245 static int b43legacy_wireless_core_init(struct b43legacy_wldev
*dev
)
3247 struct b43legacy_wl
*wl
= dev
->wl
;
3248 struct ssb_bus
*bus
= dev
->dev
->bus
;
3249 struct b43legacy_phy
*phy
= &dev
->phy
;
3250 struct ssb_sprom
*sprom
= &dev
->dev
->bus
->sprom
;
3255 B43legacy_WARN_ON(b43legacy_status(dev
) != B43legacy_STAT_UNINIT
);
3257 err
= ssb_bus_powerup(bus
, 0);
3260 if (!ssb_device_is_enabled(dev
->dev
)) {
3261 tmp
= phy
->gmode
? B43legacy_TMSLOW_GMODE
: 0;
3262 b43legacy_wireless_core_reset(dev
, tmp
);
3265 if ((phy
->type
== B43legacy_PHYTYPE_B
) ||
3266 (phy
->type
== B43legacy_PHYTYPE_G
)) {
3267 phy
->_lo_pairs
= kzalloc(sizeof(struct b43legacy_lopair
)
3268 * B43legacy_LO_COUNT
,
3270 if (!phy
->_lo_pairs
)
3273 setup_struct_wldev_for_init(dev
);
3275 err
= b43legacy_phy_init_tssi2dbm_table(dev
);
3277 goto err_kfree_lo_control
;
3279 /* Enable IRQ routing to this device. */
3280 ssb_pcicore_dev_irqvecs_enable(&bus
->pcicore
, dev
->dev
);
3282 b43legacy_imcfglo_timeouts_workaround(dev
);
3283 prepare_phy_data_for_init(dev
);
3284 b43legacy_phy_calibrate(dev
);
3285 err
= b43legacy_chip_init(dev
);
3287 goto err_kfree_tssitbl
;
3288 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
3289 B43legacy_SHM_SH_WLCOREREV
,
3290 dev
->dev
->id
.revision
);
3291 hf
= b43legacy_hf_read(dev
);
3292 if (phy
->type
== B43legacy_PHYTYPE_G
) {
3293 hf
|= B43legacy_HF_SYMW
;
3295 hf
|= B43legacy_HF_GDCW
;
3296 if (sprom
->boardflags_lo
& B43legacy_BFL_PACTRL
)
3297 hf
|= B43legacy_HF_OFDMPABOOST
;
3298 } else if (phy
->type
== B43legacy_PHYTYPE_B
) {
3299 hf
|= B43legacy_HF_SYMW
;
3300 if (phy
->rev
>= 2 && phy
->radio_ver
== 0x2050)
3301 hf
&= ~B43legacy_HF_GDCW
;
3303 b43legacy_hf_write(dev
, hf
);
3305 b43legacy_set_retry_limits(dev
,
3306 B43legacy_DEFAULT_SHORT_RETRY_LIMIT
,
3307 B43legacy_DEFAULT_LONG_RETRY_LIMIT
);
3309 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
3311 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
3314 /* Disable sending probe responses from firmware.
3315 * Setting the MaxTime to one usec will always trigger
3316 * a timeout, so we never send any probe resp.
3317 * A timeout of zero is infinite. */
3318 b43legacy_shm_write16(dev
, B43legacy_SHM_SHARED
,
3319 B43legacy_SHM_SH_PRMAXTIME
, 1);
3321 b43legacy_rate_memory_init(dev
);
3323 /* Minimum Contention Window */
3324 if (phy
->type
== B43legacy_PHYTYPE_B
)
3325 b43legacy_shm_write16(dev
, B43legacy_SHM_WIRELESS
,
3328 b43legacy_shm_write16(dev
, B43legacy_SHM_WIRELESS
,
3330 /* Maximum Contention Window */
3331 b43legacy_shm_write16(dev
, B43legacy_SHM_WIRELESS
,
3335 if (b43legacy_using_pio(dev
))
3336 err
= b43legacy_pio_init(dev
);
3338 err
= b43legacy_dma_init(dev
);
3340 b43legacy_qos_init(dev
);
3342 } while (err
== -EAGAIN
);
3346 b43legacy_set_synth_pu_delay(dev
, 1);
3348 ssb_bus_powerup(bus
, 1); /* Enable dynamic PCTL */
3349 b43legacy_upload_card_macaddress(dev
);
3350 b43legacy_security_init(dev
);
3351 b43legacy_rng_init(wl
);
3353 ieee80211_wake_queues(dev
->wl
->hw
);
3354 b43legacy_set_status(dev
, B43legacy_STAT_INITIALIZED
);
3356 b43legacy_leds_init(dev
);
3361 b43legacy_chip_exit(dev
);
3363 if (phy
->dyn_tssi_tbl
)
3364 kfree(phy
->tssi2dbm
);
3365 err_kfree_lo_control
:
3366 kfree(phy
->lo_control
);
3367 phy
->lo_control
= NULL
;
3368 ssb_bus_may_powerdown(bus
);
3369 B43legacy_WARN_ON(b43legacy_status(dev
) != B43legacy_STAT_UNINIT
);
3373 static int b43legacy_op_add_interface(struct ieee80211_hw
*hw
,
3374 struct ieee80211_vif
*vif
)
3376 struct b43legacy_wl
*wl
= hw_to_b43legacy_wl(hw
);
3377 struct b43legacy_wldev
*dev
;
3378 unsigned long flags
;
3379 int err
= -EOPNOTSUPP
;
3381 /* TODO: allow WDS/AP devices to coexist */
3383 if (vif
->type
!= NL80211_IFTYPE_AP
&&
3384 vif
->type
!= NL80211_IFTYPE_STATION
&&
3385 vif
->type
!= NL80211_IFTYPE_WDS
&&
3386 vif
->type
!= NL80211_IFTYPE_ADHOC
)
3389 mutex_lock(&wl
->mutex
);
3391 goto out_mutex_unlock
;
3393 b43legacydbg(wl
, "Adding Interface type %d\n", vif
->type
);
3395 dev
= wl
->current_dev
;
3398 wl
->if_type
= vif
->type
;
3399 memcpy(wl
->mac_addr
, vif
->addr
, ETH_ALEN
);
3401 spin_lock_irqsave(&wl
->irq_lock
, flags
);
3402 b43legacy_adjust_opmode(dev
);
3403 b43legacy_set_pretbtt(dev
);
3404 b43legacy_set_synth_pu_delay(dev
, 0);
3405 b43legacy_upload_card_macaddress(dev
);
3406 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
3410 mutex_unlock(&wl
->mutex
);
3415 static void b43legacy_op_remove_interface(struct ieee80211_hw
*hw
,
3416 struct ieee80211_vif
*vif
)
3418 struct b43legacy_wl
*wl
= hw_to_b43legacy_wl(hw
);
3419 struct b43legacy_wldev
*dev
= wl
->current_dev
;
3420 unsigned long flags
;
3422 b43legacydbg(wl
, "Removing Interface type %d\n", vif
->type
);
3424 mutex_lock(&wl
->mutex
);
3426 B43legacy_WARN_ON(!wl
->operating
);
3427 B43legacy_WARN_ON(wl
->vif
!= vif
);
3432 spin_lock_irqsave(&wl
->irq_lock
, flags
);
3433 b43legacy_adjust_opmode(dev
);
3434 memset(wl
->mac_addr
, 0, ETH_ALEN
);
3435 b43legacy_upload_card_macaddress(dev
);
3436 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
3438 mutex_unlock(&wl
->mutex
);
3441 static int b43legacy_op_start(struct ieee80211_hw
*hw
)
3443 struct b43legacy_wl
*wl
= hw_to_b43legacy_wl(hw
);
3444 struct b43legacy_wldev
*dev
= wl
->current_dev
;
3448 /* Kill all old instance specific information to make sure
3449 * the card won't use it in the short timeframe between start
3450 * and mac80211 reconfiguring it. */
3451 memset(wl
->bssid
, 0, ETH_ALEN
);
3452 memset(wl
->mac_addr
, 0, ETH_ALEN
);
3453 wl
->filter_flags
= 0;
3454 wl
->beacon0_uploaded
= 0;
3455 wl
->beacon1_uploaded
= 0;
3456 wl
->beacon_templates_virgin
= 1;
3457 wl
->radio_enabled
= 1;
3459 mutex_lock(&wl
->mutex
);
3461 if (b43legacy_status(dev
) < B43legacy_STAT_INITIALIZED
) {
3462 err
= b43legacy_wireless_core_init(dev
);
3464 goto out_mutex_unlock
;
3468 if (b43legacy_status(dev
) < B43legacy_STAT_STARTED
) {
3469 err
= b43legacy_wireless_core_start(dev
);
3472 b43legacy_wireless_core_exit(dev
);
3473 goto out_mutex_unlock
;
3477 wiphy_rfkill_start_polling(hw
->wiphy
);
3480 mutex_unlock(&wl
->mutex
);
3485 static void b43legacy_op_stop(struct ieee80211_hw
*hw
)
3487 struct b43legacy_wl
*wl
= hw_to_b43legacy_wl(hw
);
3488 struct b43legacy_wldev
*dev
= wl
->current_dev
;
3490 cancel_work_sync(&(wl
->beacon_update_trigger
));
3492 mutex_lock(&wl
->mutex
);
3493 if (b43legacy_status(dev
) >= B43legacy_STAT_STARTED
)
3494 b43legacy_wireless_core_stop(dev
);
3495 b43legacy_wireless_core_exit(dev
);
3496 wl
->radio_enabled
= 0;
3497 mutex_unlock(&wl
->mutex
);
3500 static int b43legacy_op_beacon_set_tim(struct ieee80211_hw
*hw
,
3501 struct ieee80211_sta
*sta
, bool set
)
3503 struct b43legacy_wl
*wl
= hw_to_b43legacy_wl(hw
);
3504 unsigned long flags
;
3506 spin_lock_irqsave(&wl
->irq_lock
, flags
);
3507 b43legacy_update_templates(wl
);
3508 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
3513 static int b43legacy_op_get_survey(struct ieee80211_hw
*hw
, int idx
,
3514 struct survey_info
*survey
)
3516 struct b43legacy_wl
*wl
= hw_to_b43legacy_wl(hw
);
3517 struct b43legacy_wldev
*dev
= wl
->current_dev
;
3518 struct ieee80211_conf
*conf
= &hw
->conf
;
3523 survey
->channel
= conf
->channel
;
3524 survey
->filled
= SURVEY_INFO_NOISE_DBM
;
3525 survey
->noise
= dev
->stats
.link_noise
;
3530 static const struct ieee80211_ops b43legacy_hw_ops
= {
3531 .tx
= b43legacy_op_tx
,
3532 .conf_tx
= b43legacy_op_conf_tx
,
3533 .add_interface
= b43legacy_op_add_interface
,
3534 .remove_interface
= b43legacy_op_remove_interface
,
3535 .config
= b43legacy_op_dev_config
,
3536 .bss_info_changed
= b43legacy_op_bss_info_changed
,
3537 .configure_filter
= b43legacy_op_configure_filter
,
3538 .get_stats
= b43legacy_op_get_stats
,
3539 .start
= b43legacy_op_start
,
3540 .stop
= b43legacy_op_stop
,
3541 .set_tim
= b43legacy_op_beacon_set_tim
,
3542 .get_survey
= b43legacy_op_get_survey
,
3543 .rfkill_poll
= b43legacy_rfkill_poll
,
3546 /* Hard-reset the chip. Do not call this directly.
3547 * Use b43legacy_controller_restart()
3549 static void b43legacy_chip_reset(struct work_struct
*work
)
3551 struct b43legacy_wldev
*dev
=
3552 container_of(work
, struct b43legacy_wldev
, restart_work
);
3553 struct b43legacy_wl
*wl
= dev
->wl
;
3557 mutex_lock(&wl
->mutex
);
3559 prev_status
= b43legacy_status(dev
);
3560 /* Bring the device down... */
3561 if (prev_status
>= B43legacy_STAT_STARTED
)
3562 b43legacy_wireless_core_stop(dev
);
3563 if (prev_status
>= B43legacy_STAT_INITIALIZED
)
3564 b43legacy_wireless_core_exit(dev
);
3566 /* ...and up again. */
3567 if (prev_status
>= B43legacy_STAT_INITIALIZED
) {
3568 err
= b43legacy_wireless_core_init(dev
);
3572 if (prev_status
>= B43legacy_STAT_STARTED
) {
3573 err
= b43legacy_wireless_core_start(dev
);
3575 b43legacy_wireless_core_exit(dev
);
3581 wl
->current_dev
= NULL
; /* Failed to init the dev. */
3582 mutex_unlock(&wl
->mutex
);
3584 b43legacyerr(wl
, "Controller restart FAILED\n");
3586 b43legacyinfo(wl
, "Controller restarted\n");
3589 static int b43legacy_setup_modes(struct b43legacy_wldev
*dev
,
3593 struct ieee80211_hw
*hw
= dev
->wl
->hw
;
3594 struct b43legacy_phy
*phy
= &dev
->phy
;
3596 phy
->possible_phymodes
= 0;
3598 hw
->wiphy
->bands
[IEEE80211_BAND_2GHZ
] =
3599 &b43legacy_band_2GHz_BPHY
;
3600 phy
->possible_phymodes
|= B43legacy_PHYMODE_B
;
3604 hw
->wiphy
->bands
[IEEE80211_BAND_2GHZ
] =
3605 &b43legacy_band_2GHz_GPHY
;
3606 phy
->possible_phymodes
|= B43legacy_PHYMODE_G
;
3612 static void b43legacy_wireless_core_detach(struct b43legacy_wldev
*dev
)
3614 /* We release firmware that late to not be required to re-request
3615 * is all the time when we reinit the core. */
3616 b43legacy_release_firmware(dev
);
3619 static int b43legacy_wireless_core_attach(struct b43legacy_wldev
*dev
)
3621 struct b43legacy_wl
*wl
= dev
->wl
;
3622 struct ssb_bus
*bus
= dev
->dev
->bus
;
3623 struct pci_dev
*pdev
= (bus
->bustype
== SSB_BUSTYPE_PCI
) ? bus
->host_pci
: NULL
;
3629 /* Do NOT do any device initialization here.
3630 * Do it in wireless_core_init() instead.
3631 * This function is for gathering basic information about the HW, only.
3632 * Also some structs may be set up here. But most likely you want to
3633 * have that in core_init(), too.
3636 err
= ssb_bus_powerup(bus
, 0);
3638 b43legacyerr(wl
, "Bus powerup failed\n");
3641 /* Get the PHY type. */
3642 if (dev
->dev
->id
.revision
>= 5) {
3645 tmshigh
= ssb_read32(dev
->dev
, SSB_TMSHIGH
);
3646 have_gphy
= !!(tmshigh
& B43legacy_TMSHIGH_GPHY
);
3649 } else if (dev
->dev
->id
.revision
== 4)
3654 dev
->phy
.gmode
= (have_gphy
|| have_bphy
);
3655 dev
->phy
.radio_on
= 1;
3656 tmp
= dev
->phy
.gmode
? B43legacy_TMSLOW_GMODE
: 0;
3657 b43legacy_wireless_core_reset(dev
, tmp
);
3659 err
= b43legacy_phy_versioning(dev
);
3662 /* Check if this device supports multiband. */
3664 (pdev
->device
!= 0x4312 &&
3665 pdev
->device
!= 0x4319 &&
3666 pdev
->device
!= 0x4324)) {
3667 /* No multiband support. */
3670 switch (dev
->phy
.type
) {
3671 case B43legacy_PHYTYPE_B
:
3674 case B43legacy_PHYTYPE_G
:
3678 B43legacy_BUG_ON(1);
3681 dev
->phy
.gmode
= (have_gphy
|| have_bphy
);
3682 tmp
= dev
->phy
.gmode
? B43legacy_TMSLOW_GMODE
: 0;
3683 b43legacy_wireless_core_reset(dev
, tmp
);
3685 err
= b43legacy_validate_chipaccess(dev
);
3688 err
= b43legacy_setup_modes(dev
, have_bphy
, have_gphy
);
3692 /* Now set some default "current_dev" */
3693 if (!wl
->current_dev
)
3694 wl
->current_dev
= dev
;
3695 INIT_WORK(&dev
->restart_work
, b43legacy_chip_reset
);
3697 b43legacy_radio_turn_off(dev
, 1);
3698 b43legacy_switch_analog(dev
, 0);
3699 ssb_device_disable(dev
->dev
, 0);
3700 ssb_bus_may_powerdown(bus
);
3706 ssb_bus_may_powerdown(bus
);
3710 static void b43legacy_one_core_detach(struct ssb_device
*dev
)
3712 struct b43legacy_wldev
*wldev
;
3713 struct b43legacy_wl
*wl
;
3715 /* Do not cancel ieee80211-workqueue based work here.
3716 * See comment in b43legacy_remove(). */
3718 wldev
= ssb_get_drvdata(dev
);
3720 b43legacy_debugfs_remove_device(wldev
);
3721 b43legacy_wireless_core_detach(wldev
);
3722 list_del(&wldev
->list
);
3724 ssb_set_drvdata(dev
, NULL
);
3728 static int b43legacy_one_core_attach(struct ssb_device
*dev
,
3729 struct b43legacy_wl
*wl
)
3731 struct b43legacy_wldev
*wldev
;
3732 struct pci_dev
*pdev
;
3735 if (!list_empty(&wl
->devlist
)) {
3736 /* We are not the first core on this chip. */
3737 pdev
= (dev
->bus
->bustype
== SSB_BUSTYPE_PCI
) ? dev
->bus
->host_pci
: NULL
;
3738 /* Only special chips support more than one wireless
3739 * core, although some of the other chips have more than
3740 * one wireless core as well. Check for this and
3744 ((pdev
->device
!= 0x4321) &&
3745 (pdev
->device
!= 0x4313) &&
3746 (pdev
->device
!= 0x431A))) {
3747 b43legacydbg(wl
, "Ignoring unconnected 802.11 core\n");
3752 wldev
= kzalloc(sizeof(*wldev
), GFP_KERNEL
);
3758 b43legacy_set_status(wldev
, B43legacy_STAT_UNINIT
);
3759 wldev
->bad_frames_preempt
= modparam_bad_frames_preempt
;
3760 tasklet_init(&wldev
->isr_tasklet
,
3761 (void (*)(unsigned long))b43legacy_interrupt_tasklet
,
3762 (unsigned long)wldev
);
3764 wldev
->__using_pio
= 1;
3765 INIT_LIST_HEAD(&wldev
->list
);
3767 err
= b43legacy_wireless_core_attach(wldev
);
3769 goto err_kfree_wldev
;
3771 list_add(&wldev
->list
, &wl
->devlist
);
3773 ssb_set_drvdata(dev
, wldev
);
3774 b43legacy_debugfs_add_device(wldev
);
3783 static void b43legacy_sprom_fixup(struct ssb_bus
*bus
)
3785 /* boardflags workarounds */
3786 if (bus
->boardinfo
.vendor
== PCI_VENDOR_ID_APPLE
&&
3787 bus
->boardinfo
.type
== 0x4E &&
3788 bus
->boardinfo
.rev
> 0x40)
3789 bus
->sprom
.boardflags_lo
|= B43legacy_BFL_PACTRL
;
3792 static void b43legacy_wireless_exit(struct ssb_device
*dev
,
3793 struct b43legacy_wl
*wl
)
3795 struct ieee80211_hw
*hw
= wl
->hw
;
3797 ssb_set_devtypedata(dev
, NULL
);
3798 ieee80211_free_hw(hw
);
3801 static int b43legacy_wireless_init(struct ssb_device
*dev
)
3803 struct ssb_sprom
*sprom
= &dev
->bus
->sprom
;
3804 struct ieee80211_hw
*hw
;
3805 struct b43legacy_wl
*wl
;
3808 b43legacy_sprom_fixup(dev
->bus
);
3810 hw
= ieee80211_alloc_hw(sizeof(*wl
), &b43legacy_hw_ops
);
3812 b43legacyerr(NULL
, "Could not allocate ieee80211 device\n");
3817 hw
->flags
= IEEE80211_HW_RX_INCLUDES_FCS
|
3818 IEEE80211_HW_SIGNAL_DBM
;
3819 hw
->wiphy
->interface_modes
=
3820 BIT(NL80211_IFTYPE_AP
) |
3821 BIT(NL80211_IFTYPE_STATION
) |
3822 BIT(NL80211_IFTYPE_WDS
) |
3823 BIT(NL80211_IFTYPE_ADHOC
);
3824 hw
->queues
= 1; /* FIXME: hardware has more queues */
3826 SET_IEEE80211_DEV(hw
, dev
->dev
);
3827 if (is_valid_ether_addr(sprom
->et1mac
))
3828 SET_IEEE80211_PERM_ADDR(hw
, sprom
->et1mac
);
3830 SET_IEEE80211_PERM_ADDR(hw
, sprom
->il0mac
);
3832 /* Get and initialize struct b43legacy_wl */
3833 wl
= hw_to_b43legacy_wl(hw
);
3834 memset(wl
, 0, sizeof(*wl
));
3836 spin_lock_init(&wl
->irq_lock
);
3837 spin_lock_init(&wl
->leds_lock
);
3838 mutex_init(&wl
->mutex
);
3839 INIT_LIST_HEAD(&wl
->devlist
);
3840 INIT_WORK(&wl
->beacon_update_trigger
, b43legacy_beacon_update_trigger_work
);
3842 ssb_set_devtypedata(dev
, wl
);
3843 b43legacyinfo(wl
, "Broadcom %04X WLAN found\n", dev
->bus
->chip_id
);
3849 static int b43legacy_probe(struct ssb_device
*dev
,
3850 const struct ssb_device_id
*id
)
3852 struct b43legacy_wl
*wl
;
3856 wl
= ssb_get_devtypedata(dev
);
3858 /* Probing the first core - setup common struct b43legacy_wl */
3860 err
= b43legacy_wireless_init(dev
);
3863 wl
= ssb_get_devtypedata(dev
);
3864 B43legacy_WARN_ON(!wl
);
3866 err
= b43legacy_one_core_attach(dev
, wl
);
3868 goto err_wireless_exit
;
3871 err
= ieee80211_register_hw(wl
->hw
);
3873 goto err_one_core_detach
;
3879 err_one_core_detach
:
3880 b43legacy_one_core_detach(dev
);
3883 b43legacy_wireless_exit(dev
, wl
);
3887 static void b43legacy_remove(struct ssb_device
*dev
)
3889 struct b43legacy_wl
*wl
= ssb_get_devtypedata(dev
);
3890 struct b43legacy_wldev
*wldev
= ssb_get_drvdata(dev
);
3892 /* We must cancel any work here before unregistering from ieee80211,
3893 * as the ieee80211 unreg will destroy the workqueue. */
3894 cancel_work_sync(&wldev
->restart_work
);
3896 B43legacy_WARN_ON(!wl
);
3897 if (wl
->current_dev
== wldev
)
3898 ieee80211_unregister_hw(wl
->hw
);
3900 b43legacy_one_core_detach(dev
);
3902 if (list_empty(&wl
->devlist
))
3903 /* Last core on the chip unregistered.
3904 * We can destroy common struct b43legacy_wl.
3906 b43legacy_wireless_exit(dev
, wl
);
3909 /* Perform a hardware reset. This can be called from any context. */
3910 void b43legacy_controller_restart(struct b43legacy_wldev
*dev
,
3913 /* Must avoid requeueing, if we are in shutdown. */
3914 if (b43legacy_status(dev
) < B43legacy_STAT_INITIALIZED
)
3916 b43legacyinfo(dev
->wl
, "Controller RESET (%s) ...\n", reason
);
3917 ieee80211_queue_work(dev
->wl
->hw
, &dev
->restart_work
);
3922 static int b43legacy_suspend(struct ssb_device
*dev
, pm_message_t state
)
3924 struct b43legacy_wldev
*wldev
= ssb_get_drvdata(dev
);
3925 struct b43legacy_wl
*wl
= wldev
->wl
;
3927 b43legacydbg(wl
, "Suspending...\n");
3929 mutex_lock(&wl
->mutex
);
3930 wldev
->suspend_init_status
= b43legacy_status(wldev
);
3931 if (wldev
->suspend_init_status
>= B43legacy_STAT_STARTED
)
3932 b43legacy_wireless_core_stop(wldev
);
3933 if (wldev
->suspend_init_status
>= B43legacy_STAT_INITIALIZED
)
3934 b43legacy_wireless_core_exit(wldev
);
3935 mutex_unlock(&wl
->mutex
);
3937 b43legacydbg(wl
, "Device suspended.\n");
3942 static int b43legacy_resume(struct ssb_device
*dev
)
3944 struct b43legacy_wldev
*wldev
= ssb_get_drvdata(dev
);
3945 struct b43legacy_wl
*wl
= wldev
->wl
;
3948 b43legacydbg(wl
, "Resuming...\n");
3950 mutex_lock(&wl
->mutex
);
3951 if (wldev
->suspend_init_status
>= B43legacy_STAT_INITIALIZED
) {
3952 err
= b43legacy_wireless_core_init(wldev
);
3954 b43legacyerr(wl
, "Resume failed at core init\n");
3958 if (wldev
->suspend_init_status
>= B43legacy_STAT_STARTED
) {
3959 err
= b43legacy_wireless_core_start(wldev
);
3961 b43legacy_wireless_core_exit(wldev
);
3962 b43legacyerr(wl
, "Resume failed at core start\n");
3967 b43legacydbg(wl
, "Device resumed.\n");
3969 mutex_unlock(&wl
->mutex
);
3973 #else /* CONFIG_PM */
3974 # define b43legacy_suspend NULL
3975 # define b43legacy_resume NULL
3976 #endif /* CONFIG_PM */
3978 static struct ssb_driver b43legacy_ssb_driver
= {
3979 .name
= KBUILD_MODNAME
,
3980 .id_table
= b43legacy_ssb_tbl
,
3981 .probe
= b43legacy_probe
,
3982 .remove
= b43legacy_remove
,
3983 .suspend
= b43legacy_suspend
,
3984 .resume
= b43legacy_resume
,
3987 static void b43legacy_print_driverinfo(void)
3989 const char *feat_pci
= "", *feat_leds
= "",
3990 *feat_pio
= "", *feat_dma
= "";
3992 #ifdef CONFIG_B43LEGACY_PCI_AUTOSELECT
3995 #ifdef CONFIG_B43LEGACY_LEDS
3998 #ifdef CONFIG_B43LEGACY_PIO
4001 #ifdef CONFIG_B43LEGACY_DMA
4004 printk(KERN_INFO
"Broadcom 43xx-legacy driver loaded "
4005 "[ Features: %s%s%s%s, Firmware-ID: "
4006 B43legacy_SUPPORTED_FIRMWARE_ID
" ]\n",
4007 feat_pci
, feat_leds
, feat_pio
, feat_dma
);
4010 static int __init
b43legacy_init(void)
4014 b43legacy_debugfs_init();
4016 err
= ssb_driver_register(&b43legacy_ssb_driver
);
4020 b43legacy_print_driverinfo();
4025 b43legacy_debugfs_exit();
4029 static void __exit
b43legacy_exit(void)
4031 ssb_driver_unregister(&b43legacy_ssb_driver
);
4032 b43legacy_debugfs_exit();
4035 module_init(b43legacy_init
)
4036 module_exit(b43legacy_exit
)