3 Broadcom B43 wireless driver
5 Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>
6 Copyright (c) 2005 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>
11 Some parts of the code in this file are derived from the ipw2200
12 driver Copyright(c) 2003 - 2004 Intel Corporation.
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 2 of the License, or
17 (at your option) any later version.
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program; see the file COPYING. If not, write to
26 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
27 Boston, MA 02110-1301, USA.
31 #include <linux/delay.h>
32 #include <linux/init.h>
33 #include <linux/moduleparam.h>
34 #include <linux/if_arp.h>
35 #include <linux/etherdevice.h>
36 #include <linux/version.h>
37 #include <linux/firmware.h>
38 #include <linux/wireless.h>
39 #include <linux/workqueue.h>
40 #include <linux/skbuff.h>
42 #include <linux/dma-mapping.h>
43 #include <asm/unaligned.h>
55 MODULE_DESCRIPTION("Broadcom B43 wireless driver");
56 MODULE_AUTHOR("Martin Langer");
57 MODULE_AUTHOR("Stefano Brivio");
58 MODULE_AUTHOR("Michael Buesch");
59 MODULE_LICENSE("GPL");
61 MODULE_FIRMWARE(B43_SUPPORTED_FIRMWARE_ID
);
64 static int modparam_bad_frames_preempt
;
65 module_param_named(bad_frames_preempt
, modparam_bad_frames_preempt
, int, 0444);
66 MODULE_PARM_DESC(bad_frames_preempt
,
67 "enable(1) / disable(0) Bad Frames Preemption");
69 static char modparam_fwpostfix
[16];
70 module_param_string(fwpostfix
, modparam_fwpostfix
, 16, 0444);
71 MODULE_PARM_DESC(fwpostfix
, "Postfix for the .fw files to load.");
73 static int modparam_hwpctl
;
74 module_param_named(hwpctl
, modparam_hwpctl
, int, 0444);
75 MODULE_PARM_DESC(hwpctl
, "Enable hardware-side power control (default off)");
77 static int modparam_nohwcrypt
;
78 module_param_named(nohwcrypt
, modparam_nohwcrypt
, int, 0444);
79 MODULE_PARM_DESC(nohwcrypt
, "Disable hardware encryption.");
81 static const struct ssb_device_id b43_ssb_tbl
[] = {
82 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_80211
, 5),
83 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_80211
, 6),
84 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_80211
, 7),
85 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_80211
, 9),
86 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_80211
, 10),
87 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_80211
, 11),
88 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_80211
, 13),
92 MODULE_DEVICE_TABLE(ssb
, b43_ssb_tbl
);
94 /* Channel and ratetables are shared for all devices.
95 * They can't be const, because ieee80211 puts some precalculated
96 * data in there. This data is the same for all devices, so we don't
97 * get concurrency issues */
98 #define RATETAB_ENT(_rateid, _flags) \
100 .rate = B43_RATE_TO_BASE100KBPS(_rateid), \
105 static struct ieee80211_rate __b43_ratetable
[] = {
106 RATETAB_ENT(B43_CCK_RATE_1MB
, IEEE80211_RATE_CCK
),
107 RATETAB_ENT(B43_CCK_RATE_2MB
, IEEE80211_RATE_CCK_2
),
108 RATETAB_ENT(B43_CCK_RATE_5MB
, IEEE80211_RATE_CCK_2
),
109 RATETAB_ENT(B43_CCK_RATE_11MB
, IEEE80211_RATE_CCK_2
),
110 RATETAB_ENT(B43_OFDM_RATE_6MB
, IEEE80211_RATE_OFDM
),
111 RATETAB_ENT(B43_OFDM_RATE_9MB
, IEEE80211_RATE_OFDM
),
112 RATETAB_ENT(B43_OFDM_RATE_12MB
, IEEE80211_RATE_OFDM
),
113 RATETAB_ENT(B43_OFDM_RATE_18MB
, IEEE80211_RATE_OFDM
),
114 RATETAB_ENT(B43_OFDM_RATE_24MB
, IEEE80211_RATE_OFDM
),
115 RATETAB_ENT(B43_OFDM_RATE_36MB
, IEEE80211_RATE_OFDM
),
116 RATETAB_ENT(B43_OFDM_RATE_48MB
, IEEE80211_RATE_OFDM
),
117 RATETAB_ENT(B43_OFDM_RATE_54MB
, IEEE80211_RATE_OFDM
),
120 #define b43_a_ratetable (__b43_ratetable + 4)
121 #define b43_a_ratetable_size 8
122 #define b43_b_ratetable (__b43_ratetable + 0)
123 #define b43_b_ratetable_size 4
124 #define b43_g_ratetable (__b43_ratetable + 0)
125 #define b43_g_ratetable_size 12
127 #define CHANTAB_ENT(_chanid, _freq) \
132 .flag = IEEE80211_CHAN_W_SCAN | \
133 IEEE80211_CHAN_W_ACTIVE_SCAN | \
134 IEEE80211_CHAN_W_IBSS, \
135 .power_level = 0xFF, \
136 .antenna_max = 0xFF, \
138 static struct ieee80211_channel b43_2ghz_chantable
[] = {
139 CHANTAB_ENT(1, 2412),
140 CHANTAB_ENT(2, 2417),
141 CHANTAB_ENT(3, 2422),
142 CHANTAB_ENT(4, 2427),
143 CHANTAB_ENT(5, 2432),
144 CHANTAB_ENT(6, 2437),
145 CHANTAB_ENT(7, 2442),
146 CHANTAB_ENT(8, 2447),
147 CHANTAB_ENT(9, 2452),
148 CHANTAB_ENT(10, 2457),
149 CHANTAB_ENT(11, 2462),
150 CHANTAB_ENT(12, 2467),
151 CHANTAB_ENT(13, 2472),
152 CHANTAB_ENT(14, 2484),
154 #define b43_2ghz_chantable_size ARRAY_SIZE(b43_2ghz_chantable)
157 static struct ieee80211_channel b43_5ghz_chantable
[] = {
158 CHANTAB_ENT(36, 5180),
159 CHANTAB_ENT(40, 5200),
160 CHANTAB_ENT(44, 5220),
161 CHANTAB_ENT(48, 5240),
162 CHANTAB_ENT(52, 5260),
163 CHANTAB_ENT(56, 5280),
164 CHANTAB_ENT(60, 5300),
165 CHANTAB_ENT(64, 5320),
166 CHANTAB_ENT(149, 5745),
167 CHANTAB_ENT(153, 5765),
168 CHANTAB_ENT(157, 5785),
169 CHANTAB_ENT(161, 5805),
170 CHANTAB_ENT(165, 5825),
172 #define b43_5ghz_chantable_size ARRAY_SIZE(b43_5ghz_chantable)
175 static void b43_wireless_core_exit(struct b43_wldev
*dev
);
176 static int b43_wireless_core_init(struct b43_wldev
*dev
);
177 static void b43_wireless_core_stop(struct b43_wldev
*dev
);
178 static int b43_wireless_core_start(struct b43_wldev
*dev
);
180 static int b43_ratelimit(struct b43_wl
*wl
)
182 if (!wl
|| !wl
->current_dev
)
184 if (b43_status(wl
->current_dev
) < B43_STAT_STARTED
)
186 /* We are up and running.
187 * Ratelimit the messages to avoid DoS over the net. */
188 return net_ratelimit();
191 void b43info(struct b43_wl
*wl
, const char *fmt
, ...)
195 if (!b43_ratelimit(wl
))
198 printk(KERN_INFO
"b43-%s: ",
199 (wl
&& wl
->hw
) ? wiphy_name(wl
->hw
->wiphy
) : "wlan");
204 void b43err(struct b43_wl
*wl
, const char *fmt
, ...)
208 if (!b43_ratelimit(wl
))
211 printk(KERN_ERR
"b43-%s ERROR: ",
212 (wl
&& wl
->hw
) ? wiphy_name(wl
->hw
->wiphy
) : "wlan");
217 void b43warn(struct b43_wl
*wl
, const char *fmt
, ...)
221 if (!b43_ratelimit(wl
))
224 printk(KERN_WARNING
"b43-%s warning: ",
225 (wl
&& wl
->hw
) ? wiphy_name(wl
->hw
->wiphy
) : "wlan");
231 void b43dbg(struct b43_wl
*wl
, const char *fmt
, ...)
236 printk(KERN_DEBUG
"b43-%s debug: ",
237 (wl
&& wl
->hw
) ? wiphy_name(wl
->hw
->wiphy
) : "wlan");
243 static void b43_ram_write(struct b43_wldev
*dev
, u16 offset
, u32 val
)
247 B43_WARN_ON(offset
% 4 != 0);
249 macctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
250 if (macctl
& B43_MACCTL_BE
)
253 b43_write32(dev
, B43_MMIO_RAM_CONTROL
, offset
);
255 b43_write32(dev
, B43_MMIO_RAM_DATA
, val
);
258 static inline void b43_shm_control_word(struct b43_wldev
*dev
,
259 u16 routing
, u16 offset
)
263 /* "offset" is the WORD offset. */
267 b43_write32(dev
, B43_MMIO_SHM_CONTROL
, control
);
270 u32
b43_shm_read32(struct b43_wldev
*dev
, u16 routing
, u16 offset
)
272 struct b43_wl
*wl
= dev
->wl
;
276 spin_lock_irqsave(&wl
->shm_lock
, flags
);
277 if (routing
== B43_SHM_SHARED
) {
278 B43_WARN_ON(offset
& 0x0001);
279 if (offset
& 0x0003) {
280 /* Unaligned access */
281 b43_shm_control_word(dev
, routing
, offset
>> 2);
282 ret
= b43_read16(dev
, B43_MMIO_SHM_DATA_UNALIGNED
);
284 b43_shm_control_word(dev
, routing
, (offset
>> 2) + 1);
285 ret
|= b43_read16(dev
, B43_MMIO_SHM_DATA
);
291 b43_shm_control_word(dev
, routing
, offset
);
292 ret
= b43_read32(dev
, B43_MMIO_SHM_DATA
);
294 spin_unlock_irqrestore(&wl
->shm_lock
, flags
);
299 u16
b43_shm_read16(struct b43_wldev
* dev
, u16 routing
, u16 offset
)
301 struct b43_wl
*wl
= dev
->wl
;
305 spin_lock_irqsave(&wl
->shm_lock
, flags
);
306 if (routing
== B43_SHM_SHARED
) {
307 B43_WARN_ON(offset
& 0x0001);
308 if (offset
& 0x0003) {
309 /* Unaligned access */
310 b43_shm_control_word(dev
, routing
, offset
>> 2);
311 ret
= b43_read16(dev
, B43_MMIO_SHM_DATA_UNALIGNED
);
317 b43_shm_control_word(dev
, routing
, offset
);
318 ret
= b43_read16(dev
, B43_MMIO_SHM_DATA
);
320 spin_unlock_irqrestore(&wl
->shm_lock
, flags
);
325 void b43_shm_write32(struct b43_wldev
*dev
, u16 routing
, u16 offset
, u32 value
)
327 struct b43_wl
*wl
= dev
->wl
;
330 spin_lock_irqsave(&wl
->shm_lock
, flags
);
331 if (routing
== B43_SHM_SHARED
) {
332 B43_WARN_ON(offset
& 0x0001);
333 if (offset
& 0x0003) {
334 /* Unaligned access */
335 b43_shm_control_word(dev
, routing
, offset
>> 2);
336 b43_write16(dev
, B43_MMIO_SHM_DATA_UNALIGNED
,
337 (value
>> 16) & 0xffff);
338 b43_shm_control_word(dev
, routing
, (offset
>> 2) + 1);
339 b43_write16(dev
, B43_MMIO_SHM_DATA
, value
& 0xffff);
344 b43_shm_control_word(dev
, routing
, offset
);
345 b43_write32(dev
, B43_MMIO_SHM_DATA
, value
);
347 spin_unlock_irqrestore(&wl
->shm_lock
, flags
);
350 void b43_shm_write16(struct b43_wldev
*dev
, u16 routing
, u16 offset
, u16 value
)
352 struct b43_wl
*wl
= dev
->wl
;
355 spin_lock_irqsave(&wl
->shm_lock
, flags
);
356 if (routing
== B43_SHM_SHARED
) {
357 B43_WARN_ON(offset
& 0x0001);
358 if (offset
& 0x0003) {
359 /* Unaligned access */
360 b43_shm_control_word(dev
, routing
, offset
>> 2);
361 b43_write16(dev
, B43_MMIO_SHM_DATA_UNALIGNED
, value
);
366 b43_shm_control_word(dev
, routing
, offset
);
367 b43_write16(dev
, B43_MMIO_SHM_DATA
, value
);
369 spin_unlock_irqrestore(&wl
->shm_lock
, flags
);
373 u32
b43_hf_read(struct b43_wldev
* dev
)
377 ret
= b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_HOSTFHI
);
379 ret
|= b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_HOSTFLO
);
384 /* Write HostFlags */
385 void b43_hf_write(struct b43_wldev
*dev
, u32 value
)
387 b43_shm_write16(dev
, B43_SHM_SHARED
,
388 B43_SHM_SH_HOSTFLO
, (value
& 0x0000FFFF));
389 b43_shm_write16(dev
, B43_SHM_SHARED
,
390 B43_SHM_SH_HOSTFHI
, ((value
& 0xFFFF0000) >> 16));
393 void b43_tsf_read(struct b43_wldev
*dev
, u64
* tsf
)
395 /* We need to be careful. As we read the TSF from multiple
396 * registers, we should take care of register overflows.
397 * In theory, the whole tsf read process should be atomic.
398 * We try to be atomic here, by restaring the read process,
399 * if any of the high registers changed (overflew).
401 if (dev
->dev
->id
.revision
>= 3) {
402 u32 low
, high
, high2
;
405 high
= b43_read32(dev
, B43_MMIO_REV3PLUS_TSF_HIGH
);
406 low
= b43_read32(dev
, B43_MMIO_REV3PLUS_TSF_LOW
);
407 high2
= b43_read32(dev
, B43_MMIO_REV3PLUS_TSF_HIGH
);
408 } while (unlikely(high
!= high2
));
416 u16 test1
, test2
, test3
;
419 v3
= b43_read16(dev
, B43_MMIO_TSF_3
);
420 v2
= b43_read16(dev
, B43_MMIO_TSF_2
);
421 v1
= b43_read16(dev
, B43_MMIO_TSF_1
);
422 v0
= b43_read16(dev
, B43_MMIO_TSF_0
);
424 test3
= b43_read16(dev
, B43_MMIO_TSF_3
);
425 test2
= b43_read16(dev
, B43_MMIO_TSF_2
);
426 test1
= b43_read16(dev
, B43_MMIO_TSF_1
);
427 } while (v3
!= test3
|| v2
!= test2
|| v1
!= test1
);
441 static void b43_time_lock(struct b43_wldev
*dev
)
445 macctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
446 macctl
|= B43_MACCTL_TBTTHOLD
;
447 b43_write32(dev
, B43_MMIO_MACCTL
, macctl
);
448 /* Commit the write */
449 b43_read32(dev
, B43_MMIO_MACCTL
);
452 static void b43_time_unlock(struct b43_wldev
*dev
)
456 macctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
457 macctl
&= ~B43_MACCTL_TBTTHOLD
;
458 b43_write32(dev
, B43_MMIO_MACCTL
, macctl
);
459 /* Commit the write */
460 b43_read32(dev
, B43_MMIO_MACCTL
);
463 static void b43_tsf_write_locked(struct b43_wldev
*dev
, u64 tsf
)
465 /* Be careful with the in-progress timer.
466 * First zero out the low register, so we have a full
467 * register-overflow duration to complete the operation.
469 if (dev
->dev
->id
.revision
>= 3) {
470 u32 lo
= (tsf
& 0x00000000FFFFFFFFULL
);
471 u32 hi
= (tsf
& 0xFFFFFFFF00000000ULL
) >> 32;
473 b43_write32(dev
, B43_MMIO_REV3PLUS_TSF_LOW
, 0);
475 b43_write32(dev
, B43_MMIO_REV3PLUS_TSF_HIGH
, hi
);
477 b43_write32(dev
, B43_MMIO_REV3PLUS_TSF_LOW
, lo
);
479 u16 v0
= (tsf
& 0x000000000000FFFFULL
);
480 u16 v1
= (tsf
& 0x00000000FFFF0000ULL
) >> 16;
481 u16 v2
= (tsf
& 0x0000FFFF00000000ULL
) >> 32;
482 u16 v3
= (tsf
& 0xFFFF000000000000ULL
) >> 48;
484 b43_write16(dev
, B43_MMIO_TSF_0
, 0);
486 b43_write16(dev
, B43_MMIO_TSF_3
, v3
);
488 b43_write16(dev
, B43_MMIO_TSF_2
, v2
);
490 b43_write16(dev
, B43_MMIO_TSF_1
, v1
);
492 b43_write16(dev
, B43_MMIO_TSF_0
, v0
);
496 void b43_tsf_write(struct b43_wldev
*dev
, u64 tsf
)
499 b43_tsf_write_locked(dev
, tsf
);
500 b43_time_unlock(dev
);
504 void b43_macfilter_set(struct b43_wldev
*dev
, u16 offset
, const u8
* mac
)
506 static const u8 zero_addr
[ETH_ALEN
] = { 0 };
513 b43_write16(dev
, B43_MMIO_MACFILTER_CONTROL
, offset
);
517 b43_write16(dev
, B43_MMIO_MACFILTER_DATA
, data
);
520 b43_write16(dev
, B43_MMIO_MACFILTER_DATA
, data
);
523 b43_write16(dev
, B43_MMIO_MACFILTER_DATA
, data
);
526 static void b43_write_mac_bssid_templates(struct b43_wldev
*dev
)
530 u8 mac_bssid
[ETH_ALEN
* 2];
534 bssid
= dev
->wl
->bssid
;
535 mac
= dev
->wl
->mac_addr
;
537 b43_macfilter_set(dev
, B43_MACFILTER_BSSID
, bssid
);
539 memcpy(mac_bssid
, mac
, ETH_ALEN
);
540 memcpy(mac_bssid
+ ETH_ALEN
, bssid
, ETH_ALEN
);
542 /* Write our MAC address and BSSID to template ram */
543 for (i
= 0; i
< ARRAY_SIZE(mac_bssid
); i
+= sizeof(u32
)) {
544 tmp
= (u32
) (mac_bssid
[i
+ 0]);
545 tmp
|= (u32
) (mac_bssid
[i
+ 1]) << 8;
546 tmp
|= (u32
) (mac_bssid
[i
+ 2]) << 16;
547 tmp
|= (u32
) (mac_bssid
[i
+ 3]) << 24;
548 b43_ram_write(dev
, 0x20 + i
, tmp
);
552 static void b43_upload_card_macaddress(struct b43_wldev
*dev
)
554 b43_write_mac_bssid_templates(dev
);
555 b43_macfilter_set(dev
, B43_MACFILTER_SELF
, dev
->wl
->mac_addr
);
558 static void b43_set_slot_time(struct b43_wldev
*dev
, u16 slot_time
)
560 /* slot_time is in usec. */
561 if (dev
->phy
.type
!= B43_PHYTYPE_G
)
563 b43_write16(dev
, 0x684, 510 + slot_time
);
564 b43_shm_write16(dev
, B43_SHM_SHARED
, 0x0010, slot_time
);
567 static void b43_short_slot_timing_enable(struct b43_wldev
*dev
)
569 b43_set_slot_time(dev
, 9);
573 static void b43_short_slot_timing_disable(struct b43_wldev
*dev
)
575 b43_set_slot_time(dev
, 20);
579 /* Enable a Generic IRQ. "mask" is the mask of which IRQs to enable.
580 * Returns the _previously_ enabled IRQ mask.
582 static inline u32
b43_interrupt_enable(struct b43_wldev
*dev
, u32 mask
)
586 old_mask
= b43_read32(dev
, B43_MMIO_GEN_IRQ_MASK
);
587 b43_write32(dev
, B43_MMIO_GEN_IRQ_MASK
, old_mask
| mask
);
592 /* Disable a Generic IRQ. "mask" is the mask of which IRQs to disable.
593 * Returns the _previously_ enabled IRQ mask.
595 static inline u32
b43_interrupt_disable(struct b43_wldev
*dev
, u32 mask
)
599 old_mask
= b43_read32(dev
, B43_MMIO_GEN_IRQ_MASK
);
600 b43_write32(dev
, B43_MMIO_GEN_IRQ_MASK
, old_mask
& ~mask
);
605 /* Synchronize IRQ top- and bottom-half.
606 * IRQs must be masked before calling this.
607 * This must not be called with the irq_lock held.
609 static void b43_synchronize_irq(struct b43_wldev
*dev
)
611 synchronize_irq(dev
->dev
->irq
);
612 tasklet_kill(&dev
->isr_tasklet
);
615 /* DummyTransmission function, as documented on
616 * http://bcm-specs.sipsolutions.net/DummyTransmission
618 void b43_dummy_transmission(struct b43_wldev
*dev
)
620 struct b43_phy
*phy
= &dev
->phy
;
621 unsigned int i
, max_loop
;
634 buffer
[0] = 0x000201CC;
639 buffer
[0] = 0x000B846E;
646 for (i
= 0; i
< 5; i
++)
647 b43_ram_write(dev
, i
* 4, buffer
[i
]);
650 b43_read32(dev
, B43_MMIO_MACCTL
);
652 b43_write16(dev
, 0x0568, 0x0000);
653 b43_write16(dev
, 0x07C0, 0x0000);
654 value
= ((phy
->type
== B43_PHYTYPE_A
) ? 1 : 0);
655 b43_write16(dev
, 0x050C, value
);
656 b43_write16(dev
, 0x0508, 0x0000);
657 b43_write16(dev
, 0x050A, 0x0000);
658 b43_write16(dev
, 0x054C, 0x0000);
659 b43_write16(dev
, 0x056A, 0x0014);
660 b43_write16(dev
, 0x0568, 0x0826);
661 b43_write16(dev
, 0x0500, 0x0000);
662 b43_write16(dev
, 0x0502, 0x0030);
664 if (phy
->radio_ver
== 0x2050 && phy
->radio_rev
<= 0x5)
665 b43_radio_write16(dev
, 0x0051, 0x0017);
666 for (i
= 0x00; i
< max_loop
; i
++) {
667 value
= b43_read16(dev
, 0x050E);
672 for (i
= 0x00; i
< 0x0A; i
++) {
673 value
= b43_read16(dev
, 0x050E);
678 for (i
= 0x00; i
< 0x0A; i
++) {
679 value
= b43_read16(dev
, 0x0690);
680 if (!(value
& 0x0100))
684 if (phy
->radio_ver
== 0x2050 && phy
->radio_rev
<= 0x5)
685 b43_radio_write16(dev
, 0x0051, 0x0037);
688 static void key_write(struct b43_wldev
*dev
,
689 u8 index
, u8 algorithm
, const u8
* key
)
696 /* Key index/algo block */
697 kidx
= b43_kidx_to_fw(dev
, index
);
698 value
= ((kidx
<< 4) | algorithm
);
699 b43_shm_write16(dev
, B43_SHM_SHARED
,
700 B43_SHM_SH_KEYIDXBLOCK
+ (kidx
* 2), value
);
702 /* Write the key to the Key Table Pointer offset */
703 offset
= dev
->ktp
+ (index
* B43_SEC_KEYSIZE
);
704 for (i
= 0; i
< B43_SEC_KEYSIZE
; i
+= 2) {
706 value
|= (u16
) (key
[i
+ 1]) << 8;
707 b43_shm_write16(dev
, B43_SHM_SHARED
, offset
+ i
, value
);
711 static void keymac_write(struct b43_wldev
*dev
, u8 index
, const u8
* addr
)
713 u32 addrtmp
[2] = { 0, 0, };
714 u8 per_sta_keys_start
= 8;
716 if (b43_new_kidx_api(dev
))
717 per_sta_keys_start
= 4;
719 B43_WARN_ON(index
< per_sta_keys_start
);
720 /* We have two default TX keys and possibly two default RX keys.
721 * Physical mac 0 is mapped to physical key 4 or 8, depending
722 * on the firmware version.
723 * So we must adjust the index here.
725 index
-= per_sta_keys_start
;
728 addrtmp
[0] = addr
[0];
729 addrtmp
[0] |= ((u32
) (addr
[1]) << 8);
730 addrtmp
[0] |= ((u32
) (addr
[2]) << 16);
731 addrtmp
[0] |= ((u32
) (addr
[3]) << 24);
732 addrtmp
[1] = addr
[4];
733 addrtmp
[1] |= ((u32
) (addr
[5]) << 8);
736 if (dev
->dev
->id
.revision
>= 5) {
737 /* Receive match transmitter address mechanism */
738 b43_shm_write32(dev
, B43_SHM_RCMTA
,
739 (index
* 2) + 0, addrtmp
[0]);
740 b43_shm_write16(dev
, B43_SHM_RCMTA
,
741 (index
* 2) + 1, addrtmp
[1]);
743 /* RXE (Receive Engine) and
744 * PSM (Programmable State Machine) mechanism
747 /* TODO write to RCM 16, 19, 22 and 25 */
749 b43_shm_write32(dev
, B43_SHM_SHARED
,
750 B43_SHM_SH_PSM
+ (index
* 6) + 0,
752 b43_shm_write16(dev
, B43_SHM_SHARED
,
753 B43_SHM_SH_PSM
+ (index
* 6) + 4,
759 static void do_key_write(struct b43_wldev
*dev
,
760 u8 index
, u8 algorithm
,
761 const u8
* key
, size_t key_len
, const u8
* mac_addr
)
763 u8 buf
[B43_SEC_KEYSIZE
] = { 0, };
764 u8 per_sta_keys_start
= 8;
766 if (b43_new_kidx_api(dev
))
767 per_sta_keys_start
= 4;
769 B43_WARN_ON(index
>= dev
->max_nr_keys
);
770 B43_WARN_ON(key_len
> B43_SEC_KEYSIZE
);
772 if (index
>= per_sta_keys_start
)
773 keymac_write(dev
, index
, NULL
); /* First zero out mac. */
775 memcpy(buf
, key
, key_len
);
776 key_write(dev
, index
, algorithm
, buf
);
777 if (index
>= per_sta_keys_start
)
778 keymac_write(dev
, index
, mac_addr
);
780 dev
->key
[index
].algorithm
= algorithm
;
783 static int b43_key_write(struct b43_wldev
*dev
,
784 int index
, u8 algorithm
,
785 const u8
* key
, size_t key_len
,
787 struct ieee80211_key_conf
*keyconf
)
792 if (key_len
> B43_SEC_KEYSIZE
)
794 for (i
= 0; i
< dev
->max_nr_keys
; i
++) {
795 /* Check that we don't already have this key. */
796 B43_WARN_ON(dev
->key
[i
].keyconf
== keyconf
);
799 /* Either pairwise key or address is 00:00:00:00:00:00
800 * for transmit-only keys. Search the index. */
801 if (b43_new_kidx_api(dev
))
805 for (i
= sta_keys_start
; i
< dev
->max_nr_keys
; i
++) {
806 if (!dev
->key
[i
].keyconf
) {
813 b43err(dev
->wl
, "Out of hardware key memory\n");
817 B43_WARN_ON(index
> 3);
819 do_key_write(dev
, index
, algorithm
, key
, key_len
, mac_addr
);
820 if ((index
<= 3) && !b43_new_kidx_api(dev
)) {
822 B43_WARN_ON(mac_addr
);
823 do_key_write(dev
, index
+ 4, algorithm
, key
, key_len
, NULL
);
825 keyconf
->hw_key_idx
= index
;
826 dev
->key
[index
].keyconf
= keyconf
;
831 static int b43_key_clear(struct b43_wldev
*dev
, int index
)
833 if (B43_WARN_ON((index
< 0) || (index
>= dev
->max_nr_keys
)))
835 do_key_write(dev
, index
, B43_SEC_ALGO_NONE
,
836 NULL
, B43_SEC_KEYSIZE
, NULL
);
837 if ((index
<= 3) && !b43_new_kidx_api(dev
)) {
838 do_key_write(dev
, index
+ 4, B43_SEC_ALGO_NONE
,
839 NULL
, B43_SEC_KEYSIZE
, NULL
);
841 dev
->key
[index
].keyconf
= NULL
;
846 static void b43_clear_keys(struct b43_wldev
*dev
)
850 for (i
= 0; i
< dev
->max_nr_keys
; i
++)
851 b43_key_clear(dev
, i
);
854 void b43_power_saving_ctl_bits(struct b43_wldev
*dev
, unsigned int ps_flags
)
862 B43_WARN_ON((ps_flags
& B43_PS_ENABLED
) &&
863 (ps_flags
& B43_PS_DISABLED
));
864 B43_WARN_ON((ps_flags
& B43_PS_AWAKE
) && (ps_flags
& B43_PS_ASLEEP
));
866 if (ps_flags
& B43_PS_ENABLED
) {
868 } else if (ps_flags
& B43_PS_DISABLED
) {
871 //TODO: If powersave is not off and FIXME is not set and we are not in adhoc
872 // and thus is not an AP and we are associated, set bit 25
874 if (ps_flags
& B43_PS_AWAKE
) {
876 } else if (ps_flags
& B43_PS_ASLEEP
) {
879 //TODO: If the device is awake or this is an AP, or we are scanning, or FIXME,
880 // or we are associated, or FIXME, or the latest PS-Poll packet sent was
881 // successful, set bit26
884 /* FIXME: For now we force awake-on and hwps-off */
888 macctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
890 macctl
|= B43_MACCTL_HWPS
;
892 macctl
&= ~B43_MACCTL_HWPS
;
894 macctl
|= B43_MACCTL_AWAKE
;
896 macctl
&= ~B43_MACCTL_AWAKE
;
897 b43_write32(dev
, B43_MMIO_MACCTL
, macctl
);
899 b43_read32(dev
, B43_MMIO_MACCTL
);
900 if (awake
&& dev
->dev
->id
.revision
>= 5) {
901 /* Wait for the microcode to wake up. */
902 for (i
= 0; i
< 100; i
++) {
903 ucstat
= b43_shm_read16(dev
, B43_SHM_SHARED
,
904 B43_SHM_SH_UCODESTAT
);
905 if (ucstat
!= B43_SHM_SH_UCODESTAT_SLEEP
)
912 /* Turn the Analog ON/OFF */
913 static void b43_switch_analog(struct b43_wldev
*dev
, int on
)
915 b43_write16(dev
, B43_MMIO_PHY0
, on
? 0 : 0xF4);
918 void b43_wireless_core_reset(struct b43_wldev
*dev
, u32 flags
)
923 flags
|= B43_TMSLOW_PHYCLKEN
;
924 flags
|= B43_TMSLOW_PHYRESET
;
925 ssb_device_enable(dev
->dev
, flags
);
926 msleep(2); /* Wait for the PLL to turn on. */
928 /* Now take the PHY out of Reset again */
929 tmslow
= ssb_read32(dev
->dev
, SSB_TMSLOW
);
930 tmslow
|= SSB_TMSLOW_FGC
;
931 tmslow
&= ~B43_TMSLOW_PHYRESET
;
932 ssb_write32(dev
->dev
, SSB_TMSLOW
, tmslow
);
933 ssb_read32(dev
->dev
, SSB_TMSLOW
); /* flush */
935 tmslow
&= ~SSB_TMSLOW_FGC
;
936 ssb_write32(dev
->dev
, SSB_TMSLOW
, tmslow
);
937 ssb_read32(dev
->dev
, SSB_TMSLOW
); /* flush */
941 b43_switch_analog(dev
, 1);
943 macctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
944 macctl
&= ~B43_MACCTL_GMODE
;
945 if (flags
& B43_TMSLOW_GMODE
)
946 macctl
|= B43_MACCTL_GMODE
;
947 macctl
|= B43_MACCTL_IHR_ENABLED
;
948 b43_write32(dev
, B43_MMIO_MACCTL
, macctl
);
951 static void handle_irq_transmit_status(struct b43_wldev
*dev
)
955 struct b43_txstatus stat
;
958 v0
= b43_read32(dev
, B43_MMIO_XMITSTAT_0
);
959 if (!(v0
& 0x00000001))
961 v1
= b43_read32(dev
, B43_MMIO_XMITSTAT_1
);
963 stat
.cookie
= (v0
>> 16);
964 stat
.seq
= (v1
& 0x0000FFFF);
965 stat
.phy_stat
= ((v1
& 0x00FF0000) >> 16);
966 tmp
= (v0
& 0x0000FFFF);
967 stat
.frame_count
= ((tmp
& 0xF000) >> 12);
968 stat
.rts_count
= ((tmp
& 0x0F00) >> 8);
969 stat
.supp_reason
= ((tmp
& 0x001C) >> 2);
970 stat
.pm_indicated
= !!(tmp
& 0x0080);
971 stat
.intermediate
= !!(tmp
& 0x0040);
972 stat
.for_ampdu
= !!(tmp
& 0x0020);
973 stat
.acked
= !!(tmp
& 0x0002);
975 b43_handle_txstatus(dev
, &stat
);
979 static void drain_txstatus_queue(struct b43_wldev
*dev
)
983 if (dev
->dev
->id
.revision
< 5)
985 /* Read all entries from the microcode TXstatus FIFO
986 * and throw them away.
989 dummy
= b43_read32(dev
, B43_MMIO_XMITSTAT_0
);
990 if (!(dummy
& 0x00000001))
992 dummy
= b43_read32(dev
, B43_MMIO_XMITSTAT_1
);
996 static u32
b43_jssi_read(struct b43_wldev
*dev
)
1000 val
= b43_shm_read16(dev
, B43_SHM_SHARED
, 0x08A);
1002 val
|= b43_shm_read16(dev
, B43_SHM_SHARED
, 0x088);
1007 static void b43_jssi_write(struct b43_wldev
*dev
, u32 jssi
)
1009 b43_shm_write16(dev
, B43_SHM_SHARED
, 0x088, (jssi
& 0x0000FFFF));
1010 b43_shm_write16(dev
, B43_SHM_SHARED
, 0x08A, (jssi
& 0xFFFF0000) >> 16);
1013 static void b43_generate_noise_sample(struct b43_wldev
*dev
)
1015 b43_jssi_write(dev
, 0x7F7F7F7F);
1016 b43_write32(dev
, B43_MMIO_MACCMD
,
1017 b43_read32(dev
, B43_MMIO_MACCMD
) | B43_MACCMD_BGNOISE
);
1018 B43_WARN_ON(dev
->noisecalc
.channel_at_start
!= dev
->phy
.channel
);
1021 static void b43_calculate_link_quality(struct b43_wldev
*dev
)
1023 /* Top half of Link Quality calculation. */
1025 if (dev
->noisecalc
.calculation_running
)
1027 dev
->noisecalc
.channel_at_start
= dev
->phy
.channel
;
1028 dev
->noisecalc
.calculation_running
= 1;
1029 dev
->noisecalc
.nr_samples
= 0;
1031 b43_generate_noise_sample(dev
);
1034 static void handle_irq_noise(struct b43_wldev
*dev
)
1036 struct b43_phy
*phy
= &dev
->phy
;
1042 /* Bottom half of Link Quality calculation. */
1044 B43_WARN_ON(!dev
->noisecalc
.calculation_running
);
1045 if (dev
->noisecalc
.channel_at_start
!= phy
->channel
)
1046 goto drop_calculation
;
1047 *((__le32
*)noise
) = cpu_to_le32(b43_jssi_read(dev
));
1048 if (noise
[0] == 0x7F || noise
[1] == 0x7F ||
1049 noise
[2] == 0x7F || noise
[3] == 0x7F)
1052 /* Get the noise samples. */
1053 B43_WARN_ON(dev
->noisecalc
.nr_samples
>= 8);
1054 i
= dev
->noisecalc
.nr_samples
;
1055 noise
[0] = limit_value(noise
[0], 0, ARRAY_SIZE(phy
->nrssi_lt
) - 1);
1056 noise
[1] = limit_value(noise
[1], 0, ARRAY_SIZE(phy
->nrssi_lt
) - 1);
1057 noise
[2] = limit_value(noise
[2], 0, ARRAY_SIZE(phy
->nrssi_lt
) - 1);
1058 noise
[3] = limit_value(noise
[3], 0, ARRAY_SIZE(phy
->nrssi_lt
) - 1);
1059 dev
->noisecalc
.samples
[i
][0] = phy
->nrssi_lt
[noise
[0]];
1060 dev
->noisecalc
.samples
[i
][1] = phy
->nrssi_lt
[noise
[1]];
1061 dev
->noisecalc
.samples
[i
][2] = phy
->nrssi_lt
[noise
[2]];
1062 dev
->noisecalc
.samples
[i
][3] = phy
->nrssi_lt
[noise
[3]];
1063 dev
->noisecalc
.nr_samples
++;
1064 if (dev
->noisecalc
.nr_samples
== 8) {
1065 /* Calculate the Link Quality by the noise samples. */
1067 for (i
= 0; i
< 8; i
++) {
1068 for (j
= 0; j
< 4; j
++)
1069 average
+= dev
->noisecalc
.samples
[i
][j
];
1075 tmp
= b43_shm_read16(dev
, B43_SHM_SHARED
, 0x40C);
1076 tmp
= (tmp
/ 128) & 0x1F;
1086 dev
->stats
.link_noise
= average
;
1088 dev
->noisecalc
.calculation_running
= 0;
1092 b43_generate_noise_sample(dev
);
1095 static void handle_irq_tbtt_indication(struct b43_wldev
*dev
)
1097 if (b43_is_mode(dev
->wl
, IEEE80211_IF_TYPE_AP
)) {
1100 if (1 /*FIXME: the last PSpoll frame was sent successfully */ )
1101 b43_power_saving_ctl_bits(dev
, 0);
1103 if (b43_is_mode(dev
->wl
, IEEE80211_IF_TYPE_IBSS
))
1107 static void handle_irq_atim_end(struct b43_wldev
*dev
)
1109 if (dev
->dfq_valid
) {
1110 b43_write32(dev
, B43_MMIO_MACCMD
,
1111 b43_read32(dev
, B43_MMIO_MACCMD
)
1112 | B43_MACCMD_DFQ_VALID
);
1117 static void handle_irq_pmq(struct b43_wldev
*dev
)
1124 tmp
= b43_read32(dev
, B43_MMIO_PS_STATUS
);
1125 if (!(tmp
& 0x00000008))
1128 /* 16bit write is odd, but correct. */
1129 b43_write16(dev
, B43_MMIO_PS_STATUS
, 0x0002);
1132 static void b43_write_template_common(struct b43_wldev
*dev
,
1133 const u8
* data
, u16 size
,
1135 u16 shm_size_offset
, u8 rate
)
1138 struct b43_plcp_hdr4 plcp
;
1141 b43_generate_plcp_hdr(&plcp
, size
+ FCS_LEN
, rate
);
1142 b43_ram_write(dev
, ram_offset
, le32_to_cpu(plcp
.data
));
1143 ram_offset
+= sizeof(u32
);
1144 /* The PLCP is 6 bytes long, but we only wrote 4 bytes, yet.
1145 * So leave the first two bytes of the next write blank.
1147 tmp
= (u32
) (data
[0]) << 16;
1148 tmp
|= (u32
) (data
[1]) << 24;
1149 b43_ram_write(dev
, ram_offset
, tmp
);
1150 ram_offset
+= sizeof(u32
);
1151 for (i
= 2; i
< size
; i
+= sizeof(u32
)) {
1152 tmp
= (u32
) (data
[i
+ 0]);
1154 tmp
|= (u32
) (data
[i
+ 1]) << 8;
1156 tmp
|= (u32
) (data
[i
+ 2]) << 16;
1158 tmp
|= (u32
) (data
[i
+ 3]) << 24;
1159 b43_ram_write(dev
, ram_offset
+ i
- 2, tmp
);
1161 b43_shm_write16(dev
, B43_SHM_SHARED
, shm_size_offset
,
1162 size
+ sizeof(struct b43_plcp_hdr6
));
1165 static void b43_write_beacon_template(struct b43_wldev
*dev
,
1167 u16 shm_size_offset
, u8 rate
)
1169 unsigned int i
, len
, variable_len
;
1170 const struct ieee80211_mgmt
*bcn
;
1174 bcn
= (const struct ieee80211_mgmt
*)(dev
->wl
->current_beacon
->data
);
1175 len
= min((size_t) dev
->wl
->current_beacon
->len
,
1176 0x200 - sizeof(struct b43_plcp_hdr6
));
1178 b43_write_template_common(dev
, (const u8
*)bcn
,
1179 len
, ram_offset
, shm_size_offset
, rate
);
1181 /* Find the position of the TIM and the DTIM_period value
1182 * and write them to SHM. */
1183 ie
= bcn
->u
.beacon
.variable
;
1184 variable_len
= len
- offsetof(struct ieee80211_mgmt
, u
.beacon
.variable
);
1185 for (i
= 0; i
< variable_len
- 2; ) {
1186 uint8_t ie_id
, ie_len
;
1193 /* This is the TIM Information Element */
1195 /* Check whether the ie_len is in the beacon data range. */
1196 if (variable_len
< ie_len
+ 2 + i
)
1198 /* A valid TIM is at least 4 bytes long. */
1203 tim_position
= sizeof(struct b43_plcp_hdr6
);
1204 tim_position
+= offsetof(struct ieee80211_mgmt
, u
.beacon
.variable
);
1207 dtim_period
= ie
[i
+ 3];
1209 b43_shm_write16(dev
, B43_SHM_SHARED
,
1210 B43_SHM_SH_TIMBPOS
, tim_position
);
1211 b43_shm_write16(dev
, B43_SHM_SHARED
,
1212 B43_SHM_SH_DTIMPER
, dtim_period
);
1218 b43warn(dev
->wl
, "Did not find a valid TIM IE in "
1219 "the beacon template packet. AP or IBSS operation "
1220 "may be broken.\n");
1224 static void b43_write_probe_resp_plcp(struct b43_wldev
*dev
,
1225 u16 shm_offset
, u16 size
, u8 rate
)
1227 struct b43_plcp_hdr4 plcp
;
1232 b43_generate_plcp_hdr(&plcp
, size
+ FCS_LEN
, rate
);
1233 dur
= ieee80211_generic_frame_duration(dev
->wl
->hw
,
1235 B43_RATE_TO_BASE100KBPS(rate
));
1236 /* Write PLCP in two parts and timing for packet transfer */
1237 tmp
= le32_to_cpu(plcp
.data
);
1238 b43_shm_write16(dev
, B43_SHM_SHARED
, shm_offset
, tmp
& 0xFFFF);
1239 b43_shm_write16(dev
, B43_SHM_SHARED
, shm_offset
+ 2, tmp
>> 16);
1240 b43_shm_write16(dev
, B43_SHM_SHARED
, shm_offset
+ 6, le16_to_cpu(dur
));
1243 /* Instead of using custom probe response template, this function
1244 * just patches custom beacon template by:
1245 * 1) Changing packet type
1246 * 2) Patching duration field
1249 static const u8
* b43_generate_probe_resp(struct b43_wldev
*dev
,
1250 u16
*dest_size
, u8 rate
)
1254 u16 src_size
, elem_size
, src_pos
, dest_pos
;
1256 struct ieee80211_hdr
*hdr
;
1259 src_size
= dev
->wl
->current_beacon
->len
;
1260 src_data
= (const u8
*)dev
->wl
->current_beacon
->data
;
1262 /* Get the start offset of the variable IEs in the packet. */
1263 ie_start
= offsetof(struct ieee80211_mgmt
, u
.probe_resp
.variable
);
1264 B43_WARN_ON(ie_start
!= offsetof(struct ieee80211_mgmt
, u
.beacon
.variable
));
1266 if (B43_WARN_ON(src_size
< ie_start
))
1269 dest_data
= kmalloc(src_size
, GFP_ATOMIC
);
1270 if (unlikely(!dest_data
))
1273 /* Copy the static data and all Information Elements, except the TIM. */
1274 memcpy(dest_data
, src_data
, ie_start
);
1276 dest_pos
= ie_start
;
1277 for ( ; src_pos
< src_size
- 2; src_pos
+= elem_size
) {
1278 elem_size
= src_data
[src_pos
+ 1] + 2;
1279 if (src_data
[src_pos
] == 5) {
1280 /* This is the TIM. */
1283 memcpy(dest_data
+ dest_pos
, src_data
+ src_pos
,
1285 dest_pos
+= elem_size
;
1287 *dest_size
= dest_pos
;
1288 hdr
= (struct ieee80211_hdr
*)dest_data
;
1290 /* Set the frame control. */
1291 hdr
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
1292 IEEE80211_STYPE_PROBE_RESP
);
1293 dur
= ieee80211_generic_frame_duration(dev
->wl
->hw
,
1294 dev
->wl
->vif
, *dest_size
,
1295 B43_RATE_TO_BASE100KBPS(rate
));
1296 hdr
->duration_id
= dur
;
1301 static void b43_write_probe_resp_template(struct b43_wldev
*dev
,
1303 u16 shm_size_offset
, u8 rate
)
1305 const u8
*probe_resp_data
;
1308 size
= dev
->wl
->current_beacon
->len
;
1309 probe_resp_data
= b43_generate_probe_resp(dev
, &size
, rate
);
1310 if (unlikely(!probe_resp_data
))
1313 /* Looks like PLCP headers plus packet timings are stored for
1314 * all possible basic rates
1316 b43_write_probe_resp_plcp(dev
, 0x31A, size
, B43_CCK_RATE_1MB
);
1317 b43_write_probe_resp_plcp(dev
, 0x32C, size
, B43_CCK_RATE_2MB
);
1318 b43_write_probe_resp_plcp(dev
, 0x33E, size
, B43_CCK_RATE_5MB
);
1319 b43_write_probe_resp_plcp(dev
, 0x350, size
, B43_CCK_RATE_11MB
);
1321 size
= min((size_t) size
, 0x200 - sizeof(struct b43_plcp_hdr6
));
1322 b43_write_template_common(dev
, probe_resp_data
,
1323 size
, ram_offset
, shm_size_offset
, rate
);
1324 kfree(probe_resp_data
);
1327 /* Asynchronously update the packet templates in template RAM.
1328 * Locking: Requires wl->irq_lock to be locked. */
1329 static void b43_update_templates(struct b43_wl
*wl
, struct sk_buff
*beacon
)
1331 /* This is the top half of the ansynchronous beacon update.
1332 * The bottom half is the beacon IRQ.
1333 * Beacon update must be asynchronous to avoid sending an
1334 * invalid beacon. This can happen for example, if the firmware
1335 * transmits a beacon while we are updating it. */
1337 if (wl
->current_beacon
)
1338 dev_kfree_skb_any(wl
->current_beacon
);
1339 wl
->current_beacon
= beacon
;
1340 wl
->beacon0_uploaded
= 0;
1341 wl
->beacon1_uploaded
= 0;
1344 static void b43_set_ssid(struct b43_wldev
*dev
, const u8
* ssid
, u8 ssid_len
)
1349 len
= min((u16
) ssid_len
, (u16
) 0x100);
1350 for (i
= 0; i
< len
; i
+= sizeof(u32
)) {
1351 tmp
= (u32
) (ssid
[i
+ 0]);
1353 tmp
|= (u32
) (ssid
[i
+ 1]) << 8;
1355 tmp
|= (u32
) (ssid
[i
+ 2]) << 16;
1357 tmp
|= (u32
) (ssid
[i
+ 3]) << 24;
1358 b43_shm_write32(dev
, B43_SHM_SHARED
, 0x380 + i
, tmp
);
1360 b43_shm_write16(dev
, B43_SHM_SHARED
, 0x48, len
);
1363 static void b43_set_beacon_int(struct b43_wldev
*dev
, u16 beacon_int
)
1366 if (dev
->dev
->id
.revision
>= 3) {
1367 b43_write32(dev
, 0x188, (beacon_int
<< 16));
1369 b43_write16(dev
, 0x606, (beacon_int
>> 6));
1370 b43_write16(dev
, 0x610, beacon_int
);
1372 b43_time_unlock(dev
);
1375 static void handle_irq_beacon(struct b43_wldev
*dev
)
1377 struct b43_wl
*wl
= dev
->wl
;
1380 if (!b43_is_mode(wl
, IEEE80211_IF_TYPE_AP
))
1383 /* This is the bottom half of the asynchronous beacon update. */
1385 cmd
= b43_read32(dev
, B43_MMIO_MACCMD
);
1386 if (!(cmd
& B43_MACCMD_BEACON0_VALID
)) {
1387 if (!wl
->beacon0_uploaded
) {
1388 b43_write_beacon_template(dev
, 0x68, 0x18,
1390 b43_write_probe_resp_template(dev
, 0x268, 0x4A,
1392 wl
->beacon0_uploaded
= 1;
1394 cmd
|= B43_MACCMD_BEACON0_VALID
;
1396 if (!(cmd
& B43_MACCMD_BEACON1_VALID
)) {
1397 if (!wl
->beacon1_uploaded
) {
1398 b43_write_beacon_template(dev
, 0x468, 0x1A,
1400 wl
->beacon1_uploaded
= 1;
1402 cmd
|= B43_MACCMD_BEACON1_VALID
;
1404 b43_write32(dev
, B43_MMIO_MACCMD
, cmd
);
1407 static void handle_irq_ucode_debug(struct b43_wldev
*dev
)
1412 /* Interrupt handler bottom-half */
1413 static void b43_interrupt_tasklet(struct b43_wldev
*dev
)
1416 u32 dma_reason
[ARRAY_SIZE(dev
->dma_reason
)];
1417 u32 merged_dma_reason
= 0;
1419 unsigned long flags
;
1421 spin_lock_irqsave(&dev
->wl
->irq_lock
, flags
);
1423 B43_WARN_ON(b43_status(dev
) != B43_STAT_STARTED
);
1425 reason
= dev
->irq_reason
;
1426 for (i
= 0; i
< ARRAY_SIZE(dma_reason
); i
++) {
1427 dma_reason
[i
] = dev
->dma_reason
[i
];
1428 merged_dma_reason
|= dma_reason
[i
];
1431 if (unlikely(reason
& B43_IRQ_MAC_TXERR
))
1432 b43err(dev
->wl
, "MAC transmission error\n");
1434 if (unlikely(reason
& B43_IRQ_PHY_TXERR
)) {
1435 b43err(dev
->wl
, "PHY transmission error\n");
1437 if (unlikely(atomic_dec_and_test(&dev
->phy
.txerr_cnt
))) {
1438 atomic_set(&dev
->phy
.txerr_cnt
,
1439 B43_PHY_TX_BADNESS_LIMIT
);
1440 b43err(dev
->wl
, "Too many PHY TX errors, "
1441 "restarting the controller\n");
1442 b43_controller_restart(dev
, "PHY TX errors");
1446 if (unlikely(merged_dma_reason
& (B43_DMAIRQ_FATALMASK
|
1447 B43_DMAIRQ_NONFATALMASK
))) {
1448 if (merged_dma_reason
& B43_DMAIRQ_FATALMASK
) {
1449 b43err(dev
->wl
, "Fatal DMA error: "
1450 "0x%08X, 0x%08X, 0x%08X, "
1451 "0x%08X, 0x%08X, 0x%08X\n",
1452 dma_reason
[0], dma_reason
[1],
1453 dma_reason
[2], dma_reason
[3],
1454 dma_reason
[4], dma_reason
[5]);
1455 b43_controller_restart(dev
, "DMA error");
1457 spin_unlock_irqrestore(&dev
->wl
->irq_lock
, flags
);
1460 if (merged_dma_reason
& B43_DMAIRQ_NONFATALMASK
) {
1461 b43err(dev
->wl
, "DMA error: "
1462 "0x%08X, 0x%08X, 0x%08X, "
1463 "0x%08X, 0x%08X, 0x%08X\n",
1464 dma_reason
[0], dma_reason
[1],
1465 dma_reason
[2], dma_reason
[3],
1466 dma_reason
[4], dma_reason
[5]);
1470 if (unlikely(reason
& B43_IRQ_UCODE_DEBUG
))
1471 handle_irq_ucode_debug(dev
);
1472 if (reason
& B43_IRQ_TBTT_INDI
)
1473 handle_irq_tbtt_indication(dev
);
1474 if (reason
& B43_IRQ_ATIM_END
)
1475 handle_irq_atim_end(dev
);
1476 if (reason
& B43_IRQ_BEACON
)
1477 handle_irq_beacon(dev
);
1478 if (reason
& B43_IRQ_PMQ
)
1479 handle_irq_pmq(dev
);
1480 if (reason
& B43_IRQ_TXFIFO_FLUSH_OK
)
1482 if (reason
& B43_IRQ_NOISESAMPLE_OK
)
1483 handle_irq_noise(dev
);
1485 /* Check the DMA reason registers for received data. */
1486 if (dma_reason
[0] & B43_DMAIRQ_RX_DONE
)
1487 b43_dma_rx(dev
->dma
.rx_ring0
);
1488 if (dma_reason
[3] & B43_DMAIRQ_RX_DONE
)
1489 b43_dma_rx(dev
->dma
.rx_ring3
);
1490 B43_WARN_ON(dma_reason
[1] & B43_DMAIRQ_RX_DONE
);
1491 B43_WARN_ON(dma_reason
[2] & B43_DMAIRQ_RX_DONE
);
1492 B43_WARN_ON(dma_reason
[4] & B43_DMAIRQ_RX_DONE
);
1493 B43_WARN_ON(dma_reason
[5] & B43_DMAIRQ_RX_DONE
);
1495 if (reason
& B43_IRQ_TX_OK
)
1496 handle_irq_transmit_status(dev
);
1498 b43_interrupt_enable(dev
, dev
->irq_savedstate
);
1500 spin_unlock_irqrestore(&dev
->wl
->irq_lock
, flags
);
1503 static void b43_interrupt_ack(struct b43_wldev
*dev
, u32 reason
)
1505 b43_write32(dev
, B43_MMIO_GEN_IRQ_REASON
, reason
);
1507 b43_write32(dev
, B43_MMIO_DMA0_REASON
, dev
->dma_reason
[0]);
1508 b43_write32(dev
, B43_MMIO_DMA1_REASON
, dev
->dma_reason
[1]);
1509 b43_write32(dev
, B43_MMIO_DMA2_REASON
, dev
->dma_reason
[2]);
1510 b43_write32(dev
, B43_MMIO_DMA3_REASON
, dev
->dma_reason
[3]);
1511 b43_write32(dev
, B43_MMIO_DMA4_REASON
, dev
->dma_reason
[4]);
1512 b43_write32(dev
, B43_MMIO_DMA5_REASON
, dev
->dma_reason
[5]);
1515 /* Interrupt handler top-half */
1516 static irqreturn_t
b43_interrupt_handler(int irq
, void *dev_id
)
1518 irqreturn_t ret
= IRQ_NONE
;
1519 struct b43_wldev
*dev
= dev_id
;
1525 spin_lock(&dev
->wl
->irq_lock
);
1527 if (b43_status(dev
) < B43_STAT_STARTED
)
1529 reason
= b43_read32(dev
, B43_MMIO_GEN_IRQ_REASON
);
1530 if (reason
== 0xffffffff) /* shared IRQ */
1533 reason
&= b43_read32(dev
, B43_MMIO_GEN_IRQ_MASK
);
1537 dev
->dma_reason
[0] = b43_read32(dev
, B43_MMIO_DMA0_REASON
)
1539 dev
->dma_reason
[1] = b43_read32(dev
, B43_MMIO_DMA1_REASON
)
1541 dev
->dma_reason
[2] = b43_read32(dev
, B43_MMIO_DMA2_REASON
)
1543 dev
->dma_reason
[3] = b43_read32(dev
, B43_MMIO_DMA3_REASON
)
1545 dev
->dma_reason
[4] = b43_read32(dev
, B43_MMIO_DMA4_REASON
)
1547 dev
->dma_reason
[5] = b43_read32(dev
, B43_MMIO_DMA5_REASON
)
1550 b43_interrupt_ack(dev
, reason
);
1551 /* disable all IRQs. They are enabled again in the bottom half. */
1552 dev
->irq_savedstate
= b43_interrupt_disable(dev
, B43_IRQ_ALL
);
1553 /* save the reason code and call our bottom half. */
1554 dev
->irq_reason
= reason
;
1555 tasklet_schedule(&dev
->isr_tasklet
);
1558 spin_unlock(&dev
->wl
->irq_lock
);
1563 static void do_release_fw(struct b43_firmware_file
*fw
)
1565 release_firmware(fw
->data
);
1567 fw
->filename
= NULL
;
1570 static void b43_release_firmware(struct b43_wldev
*dev
)
1572 do_release_fw(&dev
->fw
.ucode
);
1573 do_release_fw(&dev
->fw
.pcm
);
1574 do_release_fw(&dev
->fw
.initvals
);
1575 do_release_fw(&dev
->fw
.initvals_band
);
1578 static void b43_print_fw_helptext(struct b43_wl
*wl
, bool error
)
1582 text
= "You must go to "
1583 "http://linuxwireless.org/en/users/Drivers/b43#devicefirmware "
1584 "and download the latest firmware (version 4).\n";
1591 static int do_request_fw(struct b43_wldev
*dev
,
1593 struct b43_firmware_file
*fw
)
1595 char path
[sizeof(modparam_fwpostfix
) + 32];
1596 const struct firmware
*blob
;
1597 struct b43_fw_header
*hdr
;
1602 /* Don't fetch anything. Free possibly cached firmware. */
1607 if (strcmp(fw
->filename
, name
) == 0)
1608 return 0; /* Already have this fw. */
1609 /* Free the cached firmware first. */
1613 snprintf(path
, ARRAY_SIZE(path
),
1615 modparam_fwpostfix
, name
);
1616 err
= request_firmware(&blob
, path
, dev
->dev
->dev
);
1618 b43err(dev
->wl
, "Firmware file \"%s\" not found "
1619 "or load failed.\n", path
);
1622 if (blob
->size
< sizeof(struct b43_fw_header
))
1624 hdr
= (struct b43_fw_header
*)(blob
->data
);
1625 switch (hdr
->type
) {
1626 case B43_FW_TYPE_UCODE
:
1627 case B43_FW_TYPE_PCM
:
1628 size
= be32_to_cpu(hdr
->size
);
1629 if (size
!= blob
->size
- sizeof(struct b43_fw_header
))
1632 case B43_FW_TYPE_IV
:
1641 fw
->filename
= name
;
1646 b43err(dev
->wl
, "Firmware file \"%s\" format error.\n", path
);
1647 release_firmware(blob
);
1652 static int b43_request_firmware(struct b43_wldev
*dev
)
1654 struct b43_firmware
*fw
= &dev
->fw
;
1655 const u8 rev
= dev
->dev
->id
.revision
;
1656 const char *filename
;
1661 tmshigh
= ssb_read32(dev
->dev
, SSB_TMSHIGH
);
1662 if ((rev
>= 5) && (rev
<= 10))
1663 filename
= "ucode5";
1664 else if ((rev
>= 11) && (rev
<= 12))
1665 filename
= "ucode11";
1667 filename
= "ucode13";
1670 err
= do_request_fw(dev
, filename
, &fw
->ucode
);
1675 if ((rev
>= 5) && (rev
<= 10))
1681 err
= do_request_fw(dev
, filename
, &fw
->pcm
);
1686 switch (dev
->phy
.type
) {
1688 if ((rev
>= 5) && (rev
<= 10)) {
1689 if (tmshigh
& B43_TMSHIGH_HAVE_2GHZ_PHY
)
1690 filename
= "a0g1initvals5";
1692 filename
= "a0g0initvals5";
1694 goto err_no_initvals
;
1697 if ((rev
>= 5) && (rev
<= 10))
1698 filename
= "b0g0initvals5";
1700 filename
= "lp0initvals13";
1702 goto err_no_initvals
;
1705 if ((rev
>= 11) && (rev
<= 12))
1706 filename
= "n0initvals11";
1708 goto err_no_initvals
;
1711 goto err_no_initvals
;
1713 err
= do_request_fw(dev
, filename
, &fw
->initvals
);
1717 /* Get bandswitch initvals */
1718 switch (dev
->phy
.type
) {
1720 if ((rev
>= 5) && (rev
<= 10)) {
1721 if (tmshigh
& B43_TMSHIGH_HAVE_2GHZ_PHY
)
1722 filename
= "a0g1bsinitvals5";
1724 filename
= "a0g0bsinitvals5";
1725 } else if (rev
>= 11)
1728 goto err_no_initvals
;
1731 if ((rev
>= 5) && (rev
<= 10))
1732 filename
= "b0g0bsinitvals5";
1736 goto err_no_initvals
;
1739 if ((rev
>= 11) && (rev
<= 12))
1740 filename
= "n0bsinitvals11";
1742 goto err_no_initvals
;
1745 goto err_no_initvals
;
1747 err
= do_request_fw(dev
, filename
, &fw
->initvals_band
);
1754 b43_print_fw_helptext(dev
->wl
, 1);
1759 b43err(dev
->wl
, "No microcode available for core rev %u\n", rev
);
1764 b43err(dev
->wl
, "No PCM available for core rev %u\n", rev
);
1769 b43err(dev
->wl
, "No Initial Values firmware file for PHY %u, "
1770 "core rev %u\n", dev
->phy
.type
, rev
);
1774 b43_release_firmware(dev
);
1778 static int b43_upload_microcode(struct b43_wldev
*dev
)
1780 const size_t hdr_len
= sizeof(struct b43_fw_header
);
1782 unsigned int i
, len
;
1783 u16 fwrev
, fwpatch
, fwdate
, fwtime
;
1787 /* Jump the microcode PSM to offset 0 */
1788 macctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
1789 B43_WARN_ON(macctl
& B43_MACCTL_PSM_RUN
);
1790 macctl
|= B43_MACCTL_PSM_JMP0
;
1791 b43_write32(dev
, B43_MMIO_MACCTL
, macctl
);
1792 /* Zero out all microcode PSM registers and shared memory. */
1793 for (i
= 0; i
< 64; i
++)
1794 b43_shm_write16(dev
, B43_SHM_SCRATCH
, i
, 0);
1795 for (i
= 0; i
< 4096; i
+= 2)
1796 b43_shm_write16(dev
, B43_SHM_SHARED
, i
, 0);
1798 /* Upload Microcode. */
1799 data
= (__be32
*) (dev
->fw
.ucode
.data
->data
+ hdr_len
);
1800 len
= (dev
->fw
.ucode
.data
->size
- hdr_len
) / sizeof(__be32
);
1801 b43_shm_control_word(dev
, B43_SHM_UCODE
| B43_SHM_AUTOINC_W
, 0x0000);
1802 for (i
= 0; i
< len
; i
++) {
1803 b43_write32(dev
, B43_MMIO_SHM_DATA
, be32_to_cpu(data
[i
]));
1807 if (dev
->fw
.pcm
.data
) {
1808 /* Upload PCM data. */
1809 data
= (__be32
*) (dev
->fw
.pcm
.data
->data
+ hdr_len
);
1810 len
= (dev
->fw
.pcm
.data
->size
- hdr_len
) / sizeof(__be32
);
1811 b43_shm_control_word(dev
, B43_SHM_HW
, 0x01EA);
1812 b43_write32(dev
, B43_MMIO_SHM_DATA
, 0x00004000);
1813 /* No need for autoinc bit in SHM_HW */
1814 b43_shm_control_word(dev
, B43_SHM_HW
, 0x01EB);
1815 for (i
= 0; i
< len
; i
++) {
1816 b43_write32(dev
, B43_MMIO_SHM_DATA
, be32_to_cpu(data
[i
]));
1821 b43_write32(dev
, B43_MMIO_GEN_IRQ_REASON
, B43_IRQ_ALL
);
1823 /* Start the microcode PSM */
1824 macctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
1825 macctl
&= ~B43_MACCTL_PSM_JMP0
;
1826 macctl
|= B43_MACCTL_PSM_RUN
;
1827 b43_write32(dev
, B43_MMIO_MACCTL
, macctl
);
1829 /* Wait for the microcode to load and respond */
1832 tmp
= b43_read32(dev
, B43_MMIO_GEN_IRQ_REASON
);
1833 if (tmp
== B43_IRQ_MAC_SUSPENDED
)
1837 b43err(dev
->wl
, "Microcode not responding\n");
1838 b43_print_fw_helptext(dev
->wl
, 1);
1842 msleep_interruptible(50);
1843 if (signal_pending(current
)) {
1848 b43_read32(dev
, B43_MMIO_GEN_IRQ_REASON
); /* dummy read */
1850 /* Get and check the revisions. */
1851 fwrev
= b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_UCODEREV
);
1852 fwpatch
= b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_UCODEPATCH
);
1853 fwdate
= b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_UCODEDATE
);
1854 fwtime
= b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_UCODETIME
);
1856 if (fwrev
<= 0x128) {
1857 b43err(dev
->wl
, "YOUR FIRMWARE IS TOO OLD. Firmware from "
1858 "binary drivers older than version 4.x is unsupported. "
1859 "You must upgrade your firmware files.\n");
1860 b43_print_fw_helptext(dev
->wl
, 1);
1864 b43info(dev
->wl
, "Loading firmware version %u.%u "
1865 "(20%.2i-%.2i-%.2i %.2i:%.2i:%.2i)\n",
1867 (fwdate
>> 12) & 0xF, (fwdate
>> 8) & 0xF, fwdate
& 0xFF,
1868 (fwtime
>> 11) & 0x1F, (fwtime
>> 5) & 0x3F, fwtime
& 0x1F);
1870 dev
->fw
.rev
= fwrev
;
1871 dev
->fw
.patch
= fwpatch
;
1873 if (b43_is_old_txhdr_format(dev
)) {
1874 b43warn(dev
->wl
, "You are using an old firmware image. "
1875 "Support for old firmware will be removed in July 2008.\n");
1876 b43_print_fw_helptext(dev
->wl
, 0);
1882 macctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
1883 macctl
&= ~B43_MACCTL_PSM_RUN
;
1884 macctl
|= B43_MACCTL_PSM_JMP0
;
1885 b43_write32(dev
, B43_MMIO_MACCTL
, macctl
);
1890 static int b43_write_initvals(struct b43_wldev
*dev
,
1891 const struct b43_iv
*ivals
,
1895 const struct b43_iv
*iv
;
1900 BUILD_BUG_ON(sizeof(struct b43_iv
) != 6);
1902 for (i
= 0; i
< count
; i
++) {
1903 if (array_size
< sizeof(iv
->offset_size
))
1905 array_size
-= sizeof(iv
->offset_size
);
1906 offset
= be16_to_cpu(iv
->offset_size
);
1907 bit32
= !!(offset
& B43_IV_32BIT
);
1908 offset
&= B43_IV_OFFSET_MASK
;
1909 if (offset
>= 0x1000)
1914 if (array_size
< sizeof(iv
->data
.d32
))
1916 array_size
-= sizeof(iv
->data
.d32
);
1918 value
= be32_to_cpu(get_unaligned(&iv
->data
.d32
));
1919 b43_write32(dev
, offset
, value
);
1921 iv
= (const struct b43_iv
*)((const uint8_t *)iv
+
1927 if (array_size
< sizeof(iv
->data
.d16
))
1929 array_size
-= sizeof(iv
->data
.d16
);
1931 value
= be16_to_cpu(iv
->data
.d16
);
1932 b43_write16(dev
, offset
, value
);
1934 iv
= (const struct b43_iv
*)((const uint8_t *)iv
+
1945 b43err(dev
->wl
, "Initial Values Firmware file-format error.\n");
1946 b43_print_fw_helptext(dev
->wl
, 1);
1951 static int b43_upload_initvals(struct b43_wldev
*dev
)
1953 const size_t hdr_len
= sizeof(struct b43_fw_header
);
1954 const struct b43_fw_header
*hdr
;
1955 struct b43_firmware
*fw
= &dev
->fw
;
1956 const struct b43_iv
*ivals
;
1960 hdr
= (const struct b43_fw_header
*)(fw
->initvals
.data
->data
);
1961 ivals
= (const struct b43_iv
*)(fw
->initvals
.data
->data
+ hdr_len
);
1962 count
= be32_to_cpu(hdr
->size
);
1963 err
= b43_write_initvals(dev
, ivals
, count
,
1964 fw
->initvals
.data
->size
- hdr_len
);
1967 if (fw
->initvals_band
.data
) {
1968 hdr
= (const struct b43_fw_header
*)(fw
->initvals_band
.data
->data
);
1969 ivals
= (const struct b43_iv
*)(fw
->initvals_band
.data
->data
+ hdr_len
);
1970 count
= be32_to_cpu(hdr
->size
);
1971 err
= b43_write_initvals(dev
, ivals
, count
,
1972 fw
->initvals_band
.data
->size
- hdr_len
);
1981 /* Initialize the GPIOs
1982 * http://bcm-specs.sipsolutions.net/GPIO
1984 static int b43_gpio_init(struct b43_wldev
*dev
)
1986 struct ssb_bus
*bus
= dev
->dev
->bus
;
1987 struct ssb_device
*gpiodev
, *pcidev
= NULL
;
1990 b43_write32(dev
, B43_MMIO_MACCTL
, b43_read32(dev
, B43_MMIO_MACCTL
)
1991 & ~B43_MACCTL_GPOUTSMSK
);
1993 b43_write16(dev
, B43_MMIO_GPIO_MASK
, b43_read16(dev
, B43_MMIO_GPIO_MASK
)
1998 if (dev
->dev
->bus
->chip_id
== 0x4301) {
2002 if (0 /* FIXME: conditional unknown */ ) {
2003 b43_write16(dev
, B43_MMIO_GPIO_MASK
,
2004 b43_read16(dev
, B43_MMIO_GPIO_MASK
)
2009 if (dev
->dev
->bus
->sprom
.boardflags_lo
& B43_BFL_PACTRL
) {
2010 b43_write16(dev
, B43_MMIO_GPIO_MASK
,
2011 b43_read16(dev
, B43_MMIO_GPIO_MASK
)
2016 if (dev
->dev
->id
.revision
>= 2)
2017 mask
|= 0x0010; /* FIXME: This is redundant. */
2019 #ifdef CONFIG_SSB_DRIVER_PCICORE
2020 pcidev
= bus
->pcicore
.dev
;
2022 gpiodev
= bus
->chipco
.dev
? : pcidev
;
2025 ssb_write32(gpiodev
, B43_GPIO_CONTROL
,
2026 (ssb_read32(gpiodev
, B43_GPIO_CONTROL
)
2032 /* Turn off all GPIO stuff. Call this on module unload, for example. */
2033 static void b43_gpio_cleanup(struct b43_wldev
*dev
)
2035 struct ssb_bus
*bus
= dev
->dev
->bus
;
2036 struct ssb_device
*gpiodev
, *pcidev
= NULL
;
2038 #ifdef CONFIG_SSB_DRIVER_PCICORE
2039 pcidev
= bus
->pcicore
.dev
;
2041 gpiodev
= bus
->chipco
.dev
? : pcidev
;
2044 ssb_write32(gpiodev
, B43_GPIO_CONTROL
, 0);
2047 /* http://bcm-specs.sipsolutions.net/EnableMac */
2048 void b43_mac_enable(struct b43_wldev
*dev
)
2050 dev
->mac_suspended
--;
2051 B43_WARN_ON(dev
->mac_suspended
< 0);
2052 B43_WARN_ON(irqs_disabled());
2053 if (dev
->mac_suspended
== 0) {
2054 b43_write32(dev
, B43_MMIO_MACCTL
,
2055 b43_read32(dev
, B43_MMIO_MACCTL
)
2056 | B43_MACCTL_ENABLED
);
2057 b43_write32(dev
, B43_MMIO_GEN_IRQ_REASON
,
2058 B43_IRQ_MAC_SUSPENDED
);
2060 b43_read32(dev
, B43_MMIO_MACCTL
);
2061 b43_read32(dev
, B43_MMIO_GEN_IRQ_REASON
);
2062 b43_power_saving_ctl_bits(dev
, 0);
2064 /* Re-enable IRQs. */
2065 spin_lock_irq(&dev
->wl
->irq_lock
);
2066 b43_interrupt_enable(dev
, dev
->irq_savedstate
);
2067 spin_unlock_irq(&dev
->wl
->irq_lock
);
2071 /* http://bcm-specs.sipsolutions.net/SuspendMAC */
2072 void b43_mac_suspend(struct b43_wldev
*dev
)
2078 B43_WARN_ON(irqs_disabled());
2079 B43_WARN_ON(dev
->mac_suspended
< 0);
2081 if (dev
->mac_suspended
== 0) {
2082 /* Mask IRQs before suspending MAC. Otherwise
2083 * the MAC stays busy and won't suspend. */
2084 spin_lock_irq(&dev
->wl
->irq_lock
);
2085 tmp
= b43_interrupt_disable(dev
, B43_IRQ_ALL
);
2086 spin_unlock_irq(&dev
->wl
->irq_lock
);
2087 b43_synchronize_irq(dev
);
2088 dev
->irq_savedstate
= tmp
;
2090 b43_power_saving_ctl_bits(dev
, B43_PS_AWAKE
);
2091 b43_write32(dev
, B43_MMIO_MACCTL
,
2092 b43_read32(dev
, B43_MMIO_MACCTL
)
2093 & ~B43_MACCTL_ENABLED
);
2094 /* force pci to flush the write */
2095 b43_read32(dev
, B43_MMIO_MACCTL
);
2096 for (i
= 40; i
; i
--) {
2097 tmp
= b43_read32(dev
, B43_MMIO_GEN_IRQ_REASON
);
2098 if (tmp
& B43_IRQ_MAC_SUSPENDED
)
2102 b43err(dev
->wl
, "MAC suspend failed\n");
2105 dev
->mac_suspended
++;
2108 static void b43_adjust_opmode(struct b43_wldev
*dev
)
2110 struct b43_wl
*wl
= dev
->wl
;
2114 ctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
2115 /* Reset status to STA infrastructure mode. */
2116 ctl
&= ~B43_MACCTL_AP
;
2117 ctl
&= ~B43_MACCTL_KEEP_CTL
;
2118 ctl
&= ~B43_MACCTL_KEEP_BADPLCP
;
2119 ctl
&= ~B43_MACCTL_KEEP_BAD
;
2120 ctl
&= ~B43_MACCTL_PROMISC
;
2121 ctl
&= ~B43_MACCTL_BEACPROMISC
;
2122 ctl
|= B43_MACCTL_INFRA
;
2124 if (b43_is_mode(wl
, IEEE80211_IF_TYPE_AP
))
2125 ctl
|= B43_MACCTL_AP
;
2126 else if (b43_is_mode(wl
, IEEE80211_IF_TYPE_IBSS
))
2127 ctl
&= ~B43_MACCTL_INFRA
;
2129 if (wl
->filter_flags
& FIF_CONTROL
)
2130 ctl
|= B43_MACCTL_KEEP_CTL
;
2131 if (wl
->filter_flags
& FIF_FCSFAIL
)
2132 ctl
|= B43_MACCTL_KEEP_BAD
;
2133 if (wl
->filter_flags
& FIF_PLCPFAIL
)
2134 ctl
|= B43_MACCTL_KEEP_BADPLCP
;
2135 if (wl
->filter_flags
& FIF_PROMISC_IN_BSS
)
2136 ctl
|= B43_MACCTL_PROMISC
;
2137 if (wl
->filter_flags
& FIF_BCN_PRBRESP_PROMISC
)
2138 ctl
|= B43_MACCTL_BEACPROMISC
;
2140 /* Workaround: On old hardware the HW-MAC-address-filter
2141 * doesn't work properly, so always run promisc in filter
2142 * it in software. */
2143 if (dev
->dev
->id
.revision
<= 4)
2144 ctl
|= B43_MACCTL_PROMISC
;
2146 b43_write32(dev
, B43_MMIO_MACCTL
, ctl
);
2149 if ((ctl
& B43_MACCTL_INFRA
) && !(ctl
& B43_MACCTL_AP
)) {
2150 if (dev
->dev
->bus
->chip_id
== 0x4306 &&
2151 dev
->dev
->bus
->chip_rev
== 3)
2156 b43_write16(dev
, 0x612, cfp_pretbtt
);
2159 static void b43_rate_memory_write(struct b43_wldev
*dev
, u16 rate
, int is_ofdm
)
2165 offset
+= (b43_plcp_get_ratecode_ofdm(rate
) & 0x000F) * 2;
2168 offset
+= (b43_plcp_get_ratecode_cck(rate
) & 0x000F) * 2;
2170 b43_shm_write16(dev
, B43_SHM_SHARED
, offset
+ 0x20,
2171 b43_shm_read16(dev
, B43_SHM_SHARED
, offset
));
2174 static void b43_rate_memory_init(struct b43_wldev
*dev
)
2176 switch (dev
->phy
.type
) {
2180 b43_rate_memory_write(dev
, B43_OFDM_RATE_6MB
, 1);
2181 b43_rate_memory_write(dev
, B43_OFDM_RATE_12MB
, 1);
2182 b43_rate_memory_write(dev
, B43_OFDM_RATE_18MB
, 1);
2183 b43_rate_memory_write(dev
, B43_OFDM_RATE_24MB
, 1);
2184 b43_rate_memory_write(dev
, B43_OFDM_RATE_36MB
, 1);
2185 b43_rate_memory_write(dev
, B43_OFDM_RATE_48MB
, 1);
2186 b43_rate_memory_write(dev
, B43_OFDM_RATE_54MB
, 1);
2187 if (dev
->phy
.type
== B43_PHYTYPE_A
)
2191 b43_rate_memory_write(dev
, B43_CCK_RATE_1MB
, 0);
2192 b43_rate_memory_write(dev
, B43_CCK_RATE_2MB
, 0);
2193 b43_rate_memory_write(dev
, B43_CCK_RATE_5MB
, 0);
2194 b43_rate_memory_write(dev
, B43_CCK_RATE_11MB
, 0);
2201 /* Set the TX-Antenna for management frames sent by firmware. */
2202 static void b43_mgmtframe_txantenna(struct b43_wldev
*dev
, int antenna
)
2209 ant
|= B43_TXH_PHY_ANT0
;
2212 ant
|= B43_TXH_PHY_ANT1
;
2215 ant
|= B43_TXH_PHY_ANT2
;
2218 ant
|= B43_TXH_PHY_ANT3
;
2220 case B43_ANTENNA_AUTO
:
2221 ant
|= B43_TXH_PHY_ANT01AUTO
;
2227 /* FIXME We also need to set the other flags of the PHY control field somewhere. */
2230 tmp
= b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_BEACPHYCTL
);
2231 tmp
= (tmp
& ~B43_TXH_PHY_ANT
) | ant
;
2232 b43_shm_write16(dev
, B43_SHM_SHARED
, B43_SHM_SH_BEACPHYCTL
, tmp
);
2234 tmp
= b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_ACKCTSPHYCTL
);
2235 tmp
= (tmp
& ~B43_TXH_PHY_ANT
) | ant
;
2236 b43_shm_write16(dev
, B43_SHM_SHARED
, B43_SHM_SH_ACKCTSPHYCTL
, tmp
);
2237 /* For Probe Resposes */
2238 tmp
= b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_PRPHYCTL
);
2239 tmp
= (tmp
& ~B43_TXH_PHY_ANT
) | ant
;
2240 b43_shm_write16(dev
, B43_SHM_SHARED
, B43_SHM_SH_PRPHYCTL
, tmp
);
2243 /* This is the opposite of b43_chip_init() */
2244 static void b43_chip_exit(struct b43_wldev
*dev
)
2246 b43_radio_turn_off(dev
, 1);
2247 b43_gpio_cleanup(dev
);
2248 /* firmware is released later */
2251 /* Initialize the chip
2252 * http://bcm-specs.sipsolutions.net/ChipInit
2254 static int b43_chip_init(struct b43_wldev
*dev
)
2256 struct b43_phy
*phy
= &dev
->phy
;
2258 u32 value32
, macctl
;
2261 /* Initialize the MAC control */
2262 macctl
= B43_MACCTL_IHR_ENABLED
| B43_MACCTL_SHM_ENABLED
;
2264 macctl
|= B43_MACCTL_GMODE
;
2265 macctl
|= B43_MACCTL_INFRA
;
2266 b43_write32(dev
, B43_MMIO_MACCTL
, macctl
);
2268 err
= b43_request_firmware(dev
);
2271 err
= b43_upload_microcode(dev
);
2273 goto out
; /* firmware is released later */
2275 err
= b43_gpio_init(dev
);
2277 goto out
; /* firmware is released later */
2279 err
= b43_upload_initvals(dev
);
2281 goto err_gpio_clean
;
2282 b43_radio_turn_on(dev
);
2284 b43_write16(dev
, 0x03E6, 0x0000);
2285 err
= b43_phy_init(dev
);
2289 /* Select initial Interference Mitigation. */
2290 tmp
= phy
->interfmode
;
2291 phy
->interfmode
= B43_INTERFMODE_NONE
;
2292 b43_radio_set_interference_mitigation(dev
, tmp
);
2294 b43_set_rx_antenna(dev
, B43_ANTENNA_DEFAULT
);
2295 b43_mgmtframe_txantenna(dev
, B43_ANTENNA_DEFAULT
);
2297 if (phy
->type
== B43_PHYTYPE_B
) {
2298 value16
= b43_read16(dev
, 0x005E);
2300 b43_write16(dev
, 0x005E, value16
);
2302 b43_write32(dev
, 0x0100, 0x01000000);
2303 if (dev
->dev
->id
.revision
< 5)
2304 b43_write32(dev
, 0x010C, 0x01000000);
2306 b43_write32(dev
, B43_MMIO_MACCTL
, b43_read32(dev
, B43_MMIO_MACCTL
)
2307 & ~B43_MACCTL_INFRA
);
2308 b43_write32(dev
, B43_MMIO_MACCTL
, b43_read32(dev
, B43_MMIO_MACCTL
)
2309 | B43_MACCTL_INFRA
);
2311 /* Probe Response Timeout value */
2312 /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
2313 b43_shm_write16(dev
, B43_SHM_SHARED
, 0x0074, 0x0000);
2315 /* Initially set the wireless operation mode. */
2316 b43_adjust_opmode(dev
);
2318 if (dev
->dev
->id
.revision
< 3) {
2319 b43_write16(dev
, 0x060E, 0x0000);
2320 b43_write16(dev
, 0x0610, 0x8000);
2321 b43_write16(dev
, 0x0604, 0x0000);
2322 b43_write16(dev
, 0x0606, 0x0200);
2324 b43_write32(dev
, 0x0188, 0x80000000);
2325 b43_write32(dev
, 0x018C, 0x02000000);
2327 b43_write32(dev
, B43_MMIO_GEN_IRQ_REASON
, 0x00004000);
2328 b43_write32(dev
, B43_MMIO_DMA0_IRQ_MASK
, 0x0001DC00);
2329 b43_write32(dev
, B43_MMIO_DMA1_IRQ_MASK
, 0x0000DC00);
2330 b43_write32(dev
, B43_MMIO_DMA2_IRQ_MASK
, 0x0000DC00);
2331 b43_write32(dev
, B43_MMIO_DMA3_IRQ_MASK
, 0x0001DC00);
2332 b43_write32(dev
, B43_MMIO_DMA4_IRQ_MASK
, 0x0000DC00);
2333 b43_write32(dev
, B43_MMIO_DMA5_IRQ_MASK
, 0x0000DC00);
2335 value32
= ssb_read32(dev
->dev
, SSB_TMSLOW
);
2336 value32
|= 0x00100000;
2337 ssb_write32(dev
->dev
, SSB_TMSLOW
, value32
);
2339 b43_write16(dev
, B43_MMIO_POWERUP_DELAY
,
2340 dev
->dev
->bus
->chipco
.fast_pwrup_delay
);
2343 b43dbg(dev
->wl
, "Chip initialized\n");
2348 b43_radio_turn_off(dev
, 1);
2350 b43_gpio_cleanup(dev
);
2354 static void b43_periodic_every120sec(struct b43_wldev
*dev
)
2356 struct b43_phy
*phy
= &dev
->phy
;
2358 if (phy
->type
!= B43_PHYTYPE_G
|| phy
->rev
< 2)
2361 b43_mac_suspend(dev
);
2362 b43_lo_g_measure(dev
);
2363 b43_mac_enable(dev
);
2364 if (b43_has_hardware_pctl(phy
))
2365 b43_lo_g_ctl_mark_all_unused(dev
);
2368 static void b43_periodic_every60sec(struct b43_wldev
*dev
)
2370 struct b43_phy
*phy
= &dev
->phy
;
2372 if (phy
->type
!= B43_PHYTYPE_G
)
2374 if (!b43_has_hardware_pctl(phy
))
2375 b43_lo_g_ctl_mark_all_unused(dev
);
2376 if (dev
->dev
->bus
->sprom
.boardflags_lo
& B43_BFL_RSSI
) {
2377 b43_mac_suspend(dev
);
2378 b43_calc_nrssi_slope(dev
);
2379 if ((phy
->radio_ver
== 0x2050) && (phy
->radio_rev
== 8)) {
2380 u8 old_chan
= phy
->channel
;
2382 /* VCO Calibration */
2384 b43_radio_selectchannel(dev
, 1, 0);
2386 b43_radio_selectchannel(dev
, 13, 0);
2387 b43_radio_selectchannel(dev
, old_chan
, 0);
2389 b43_mac_enable(dev
);
2393 static void b43_periodic_every30sec(struct b43_wldev
*dev
)
2395 /* Update device statistics. */
2396 b43_calculate_link_quality(dev
);
2399 static void b43_periodic_every15sec(struct b43_wldev
*dev
)
2401 struct b43_phy
*phy
= &dev
->phy
;
2403 if (phy
->type
== B43_PHYTYPE_G
) {
2404 //TODO: update_aci_moving_average
2405 if (phy
->aci_enable
&& phy
->aci_wlan_automatic
) {
2406 b43_mac_suspend(dev
);
2407 if (!phy
->aci_enable
&& 1 /*TODO: not scanning? */ ) {
2408 if (0 /*TODO: bunch of conditions */ ) {
2409 b43_radio_set_interference_mitigation
2410 (dev
, B43_INTERFMODE_MANUALWLAN
);
2412 } else if (1 /*TODO*/) {
2414 if ((aci_average > 1000) && !(b43_radio_aci_scan(dev))) {
2415 b43_radio_set_interference_mitigation(dev,
2416 B43_INTERFMODE_NONE);
2420 b43_mac_enable(dev
);
2421 } else if (phy
->interfmode
== B43_INTERFMODE_NONWLAN
&&
2423 //TODO: implement rev1 workaround
2426 b43_phy_xmitpower(dev
); //FIXME: unless scanning?
2427 //TODO for APHY (temperature?)
2429 atomic_set(&phy
->txerr_cnt
, B43_PHY_TX_BADNESS_LIMIT
);
2433 static void do_periodic_work(struct b43_wldev
*dev
)
2437 state
= dev
->periodic_state
;
2439 b43_periodic_every120sec(dev
);
2441 b43_periodic_every60sec(dev
);
2443 b43_periodic_every30sec(dev
);
2444 b43_periodic_every15sec(dev
);
2447 /* Periodic work locking policy:
2448 * The whole periodic work handler is protected by
2449 * wl->mutex. If another lock is needed somewhere in the
2450 * pwork callchain, it's aquired in-place, where it's needed.
2452 static void b43_periodic_work_handler(struct work_struct
*work
)
2454 struct b43_wldev
*dev
= container_of(work
, struct b43_wldev
,
2455 periodic_work
.work
);
2456 struct b43_wl
*wl
= dev
->wl
;
2457 unsigned long delay
;
2459 mutex_lock(&wl
->mutex
);
2461 if (unlikely(b43_status(dev
) != B43_STAT_STARTED
))
2463 if (b43_debug(dev
, B43_DBG_PWORK_STOP
))
2466 do_periodic_work(dev
);
2468 dev
->periodic_state
++;
2470 if (b43_debug(dev
, B43_DBG_PWORK_FAST
))
2471 delay
= msecs_to_jiffies(50);
2473 delay
= round_jiffies_relative(HZ
* 15);
2474 queue_delayed_work(wl
->hw
->workqueue
, &dev
->periodic_work
, delay
);
2476 mutex_unlock(&wl
->mutex
);
2479 static void b43_periodic_tasks_setup(struct b43_wldev
*dev
)
2481 struct delayed_work
*work
= &dev
->periodic_work
;
2483 dev
->periodic_state
= 0;
2484 INIT_DELAYED_WORK(work
, b43_periodic_work_handler
);
2485 queue_delayed_work(dev
->wl
->hw
->workqueue
, work
, 0);
2488 /* Check if communication with the device works correctly. */
2489 static int b43_validate_chipaccess(struct b43_wldev
*dev
)
2493 backup
= b43_shm_read32(dev
, B43_SHM_SHARED
, 0);
2495 /* Check for read/write and endianness problems. */
2496 b43_shm_write32(dev
, B43_SHM_SHARED
, 0, 0x55AAAA55);
2497 if (b43_shm_read32(dev
, B43_SHM_SHARED
, 0) != 0x55AAAA55)
2499 b43_shm_write32(dev
, B43_SHM_SHARED
, 0, 0xAA5555AA);
2500 if (b43_shm_read32(dev
, B43_SHM_SHARED
, 0) != 0xAA5555AA)
2503 b43_shm_write32(dev
, B43_SHM_SHARED
, 0, backup
);
2505 if ((dev
->dev
->id
.revision
>= 3) && (dev
->dev
->id
.revision
<= 10)) {
2506 /* The 32bit register shadows the two 16bit registers
2507 * with update sideeffects. Validate this. */
2508 b43_write16(dev
, B43_MMIO_TSF_CFP_START
, 0xAAAA);
2509 b43_write32(dev
, B43_MMIO_TSF_CFP_START
, 0xCCCCBBBB);
2510 if (b43_read16(dev
, B43_MMIO_TSF_CFP_START_LOW
) != 0xBBBB)
2512 if (b43_read16(dev
, B43_MMIO_TSF_CFP_START_HIGH
) != 0xCCCC)
2515 b43_write32(dev
, B43_MMIO_TSF_CFP_START
, 0);
2517 v
= b43_read32(dev
, B43_MMIO_MACCTL
);
2518 v
|= B43_MACCTL_GMODE
;
2519 if (v
!= (B43_MACCTL_GMODE
| B43_MACCTL_IHR_ENABLED
))
2524 b43err(dev
->wl
, "Failed to validate the chipaccess\n");
2528 static void b43_security_init(struct b43_wldev
*dev
)
2530 dev
->max_nr_keys
= (dev
->dev
->id
.revision
>= 5) ? 58 : 20;
2531 B43_WARN_ON(dev
->max_nr_keys
> ARRAY_SIZE(dev
->key
));
2532 dev
->ktp
= b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_KTP
);
2533 /* KTP is a word address, but we address SHM bytewise.
2534 * So multiply by two.
2537 if (dev
->dev
->id
.revision
>= 5) {
2538 /* Number of RCMTA address slots */
2539 b43_write16(dev
, B43_MMIO_RCMTA_COUNT
, dev
->max_nr_keys
- 8);
2541 b43_clear_keys(dev
);
2544 static int b43_rng_read(struct hwrng
*rng
, u32
* data
)
2546 struct b43_wl
*wl
= (struct b43_wl
*)rng
->priv
;
2547 unsigned long flags
;
2549 /* Don't take wl->mutex here, as it could deadlock with
2550 * hwrng internal locking. It's not needed to take
2551 * wl->mutex here, anyway. */
2553 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2554 *data
= b43_read16(wl
->current_dev
, B43_MMIO_RNG
);
2555 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2557 return (sizeof(u16
));
2560 static void b43_rng_exit(struct b43_wl
*wl
, bool suspended
)
2562 if (wl
->rng_initialized
)
2563 __hwrng_unregister(&wl
->rng
, suspended
);
2566 static int b43_rng_init(struct b43_wl
*wl
)
2570 snprintf(wl
->rng_name
, ARRAY_SIZE(wl
->rng_name
),
2571 "%s_%s", KBUILD_MODNAME
, wiphy_name(wl
->hw
->wiphy
));
2572 wl
->rng
.name
= wl
->rng_name
;
2573 wl
->rng
.data_read
= b43_rng_read
;
2574 wl
->rng
.priv
= (unsigned long)wl
;
2575 wl
->rng_initialized
= 1;
2576 err
= hwrng_register(&wl
->rng
);
2578 wl
->rng_initialized
= 0;
2579 b43err(wl
, "Failed to register the random "
2580 "number generator (%d)\n", err
);
2586 static int b43_op_tx(struct ieee80211_hw
*hw
,
2587 struct sk_buff
*skb
,
2588 struct ieee80211_tx_control
*ctl
)
2590 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
2591 struct b43_wldev
*dev
= wl
->current_dev
;
2596 if (unlikely(b43_status(dev
) < B43_STAT_STARTED
))
2598 /* DMA-TX is done without a global lock. */
2599 err
= b43_dma_tx(dev
, skb
, ctl
);
2602 return NETDEV_TX_BUSY
;
2603 return NETDEV_TX_OK
;
2606 static int b43_op_conf_tx(struct ieee80211_hw
*hw
,
2608 const struct ieee80211_tx_queue_params
*params
)
2613 static int b43_op_get_tx_stats(struct ieee80211_hw
*hw
,
2614 struct ieee80211_tx_queue_stats
*stats
)
2616 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
2617 struct b43_wldev
*dev
= wl
->current_dev
;
2618 unsigned long flags
;
2623 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2624 if (likely(b43_status(dev
) >= B43_STAT_STARTED
)) {
2625 b43_dma_get_tx_stats(dev
, stats
);
2628 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2633 static int b43_op_get_stats(struct ieee80211_hw
*hw
,
2634 struct ieee80211_low_level_stats
*stats
)
2636 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
2637 unsigned long flags
;
2639 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2640 memcpy(stats
, &wl
->ieee_stats
, sizeof(*stats
));
2641 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2646 static const char *phymode_to_string(unsigned int phymode
)
2661 static int find_wldev_for_phymode(struct b43_wl
*wl
,
2662 unsigned int phymode
,
2663 struct b43_wldev
**dev
, bool * gmode
)
2665 struct b43_wldev
*d
;
2667 list_for_each_entry(d
, &wl
->devlist
, list
) {
2668 if (d
->phy
.possible_phymodes
& phymode
) {
2669 /* Ok, this device supports the PHY-mode.
2670 * Now figure out how the gmode bit has to be
2671 * set to support it. */
2672 if (phymode
== B43_PHYMODE_A
)
2685 static void b43_put_phy_into_reset(struct b43_wldev
*dev
)
2687 struct ssb_device
*sdev
= dev
->dev
;
2690 tmslow
= ssb_read32(sdev
, SSB_TMSLOW
);
2691 tmslow
&= ~B43_TMSLOW_GMODE
;
2692 tmslow
|= B43_TMSLOW_PHYRESET
;
2693 tmslow
|= SSB_TMSLOW_FGC
;
2694 ssb_write32(sdev
, SSB_TMSLOW
, tmslow
);
2697 tmslow
= ssb_read32(sdev
, SSB_TMSLOW
);
2698 tmslow
&= ~SSB_TMSLOW_FGC
;
2699 tmslow
|= B43_TMSLOW_PHYRESET
;
2700 ssb_write32(sdev
, SSB_TMSLOW
, tmslow
);
2704 /* Expects wl->mutex locked */
2705 static int b43_switch_phymode(struct b43_wl
*wl
, unsigned int new_mode
)
2707 struct b43_wldev
*up_dev
;
2708 struct b43_wldev
*down_dev
;
2713 err
= find_wldev_for_phymode(wl
, new_mode
, &up_dev
, &gmode
);
2715 b43err(wl
, "Could not find a device for %s-PHY mode\n",
2716 phymode_to_string(new_mode
));
2719 if ((up_dev
== wl
->current_dev
) &&
2720 (!!wl
->current_dev
->phy
.gmode
== !!gmode
)) {
2721 /* This device is already running. */
2724 b43dbg(wl
, "Reconfiguring PHYmode to %s-PHY\n",
2725 phymode_to_string(new_mode
));
2726 down_dev
= wl
->current_dev
;
2728 prev_status
= b43_status(down_dev
);
2729 /* Shutdown the currently running core. */
2730 if (prev_status
>= B43_STAT_STARTED
)
2731 b43_wireless_core_stop(down_dev
);
2732 if (prev_status
>= B43_STAT_INITIALIZED
)
2733 b43_wireless_core_exit(down_dev
);
2735 if (down_dev
!= up_dev
) {
2736 /* We switch to a different core, so we put PHY into
2737 * RESET on the old core. */
2738 b43_put_phy_into_reset(down_dev
);
2741 /* Now start the new core. */
2742 up_dev
->phy
.gmode
= gmode
;
2743 if (prev_status
>= B43_STAT_INITIALIZED
) {
2744 err
= b43_wireless_core_init(up_dev
);
2746 b43err(wl
, "Fatal: Could not initialize device for "
2747 "newly selected %s-PHY mode\n",
2748 phymode_to_string(new_mode
));
2752 if (prev_status
>= B43_STAT_STARTED
) {
2753 err
= b43_wireless_core_start(up_dev
);
2755 b43err(wl
, "Fatal: Coult not start device for "
2756 "newly selected %s-PHY mode\n",
2757 phymode_to_string(new_mode
));
2758 b43_wireless_core_exit(up_dev
);
2762 B43_WARN_ON(b43_status(up_dev
) != prev_status
);
2764 wl
->current_dev
= up_dev
;
2768 /* Whoops, failed to init the new core. No core is operating now. */
2769 wl
->current_dev
= NULL
;
2773 /* Check if the use of the antenna that ieee80211 told us to
2774 * use is possible. This will fall back to DEFAULT.
2775 * "antenna_nr" is the antenna identifier we got from ieee80211. */
2776 u8
b43_ieee80211_antenna_sanitize(struct b43_wldev
*dev
,
2781 if (antenna_nr
== 0) {
2782 /* Zero means "use default antenna". That's always OK. */
2786 /* Get the mask of available antennas. */
2788 antenna_mask
= dev
->dev
->bus
->sprom
.ant_available_bg
;
2790 antenna_mask
= dev
->dev
->bus
->sprom
.ant_available_a
;
2792 if (!(antenna_mask
& (1 << (antenna_nr
- 1)))) {
2793 /* This antenna is not available. Fall back to default. */
2800 static int b43_antenna_from_ieee80211(struct b43_wldev
*dev
, u8 antenna
)
2802 antenna
= b43_ieee80211_antenna_sanitize(dev
, antenna
);
2804 case 0: /* default/diversity */
2805 return B43_ANTENNA_DEFAULT
;
2806 case 1: /* Antenna 0 */
2807 return B43_ANTENNA0
;
2808 case 2: /* Antenna 1 */
2809 return B43_ANTENNA1
;
2810 case 3: /* Antenna 2 */
2811 return B43_ANTENNA2
;
2812 case 4: /* Antenna 3 */
2813 return B43_ANTENNA3
;
2815 return B43_ANTENNA_DEFAULT
;
2819 static int b43_op_config(struct ieee80211_hw
*hw
, struct ieee80211_conf
*conf
)
2821 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
2822 struct b43_wldev
*dev
;
2823 struct b43_phy
*phy
;
2824 unsigned long flags
;
2825 unsigned int new_phymode
= 0xFFFF;
2830 mutex_lock(&wl
->mutex
);
2832 /* Switch the PHY mode (if necessary). */
2833 switch (conf
->phymode
) {
2834 case MODE_IEEE80211A
:
2835 new_phymode
= B43_PHYMODE_A
;
2837 case MODE_IEEE80211B
:
2838 new_phymode
= B43_PHYMODE_B
;
2840 case MODE_IEEE80211G
:
2841 new_phymode
= B43_PHYMODE_G
;
2846 err
= b43_switch_phymode(wl
, new_phymode
);
2848 goto out_unlock_mutex
;
2849 dev
= wl
->current_dev
;
2852 /* Disable IRQs while reconfiguring the device.
2853 * This makes it possible to drop the spinlock throughout
2854 * the reconfiguration process. */
2855 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2856 if (b43_status(dev
) < B43_STAT_STARTED
) {
2857 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2858 goto out_unlock_mutex
;
2860 savedirqs
= b43_interrupt_disable(dev
, B43_IRQ_ALL
);
2861 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2862 b43_synchronize_irq(dev
);
2864 /* Switch to the requested channel.
2865 * The firmware takes care of races with the TX handler. */
2866 if (conf
->channel_val
!= phy
->channel
)
2867 b43_radio_selectchannel(dev
, conf
->channel_val
, 0);
2869 /* Enable/Disable ShortSlot timing. */
2870 if ((!!(conf
->flags
& IEEE80211_CONF_SHORT_SLOT_TIME
)) !=
2872 B43_WARN_ON(phy
->type
!= B43_PHYTYPE_G
);
2873 if (conf
->flags
& IEEE80211_CONF_SHORT_SLOT_TIME
)
2874 b43_short_slot_timing_enable(dev
);
2876 b43_short_slot_timing_disable(dev
);
2879 dev
->wl
->radiotap_enabled
= !!(conf
->flags
& IEEE80211_CONF_RADIOTAP
);
2881 /* Adjust the desired TX power level. */
2882 if (conf
->power_level
!= 0) {
2883 if (conf
->power_level
!= phy
->power_level
) {
2884 phy
->power_level
= conf
->power_level
;
2885 b43_phy_xmitpower(dev
);
2889 /* Antennas for RX and management frame TX. */
2890 antenna
= b43_antenna_from_ieee80211(dev
, conf
->antenna_sel_tx
);
2891 b43_mgmtframe_txantenna(dev
, antenna
);
2892 antenna
= b43_antenna_from_ieee80211(dev
, conf
->antenna_sel_rx
);
2893 b43_set_rx_antenna(dev
, antenna
);
2895 /* Update templates for AP mode. */
2896 if (b43_is_mode(wl
, IEEE80211_IF_TYPE_AP
))
2897 b43_set_beacon_int(dev
, conf
->beacon_int
);
2899 if (!!conf
->radio_enabled
!= phy
->radio_on
) {
2900 if (conf
->radio_enabled
) {
2901 b43_radio_turn_on(dev
);
2902 b43info(dev
->wl
, "Radio turned on by software\n");
2903 if (!dev
->radio_hw_enable
) {
2904 b43info(dev
->wl
, "The hardware RF-kill button "
2905 "still turns the radio physically off. "
2906 "Press the button to turn it on.\n");
2909 b43_radio_turn_off(dev
, 0);
2910 b43info(dev
->wl
, "Radio turned off by software\n");
2914 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2915 b43_interrupt_enable(dev
, savedirqs
);
2917 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
2919 mutex_unlock(&wl
->mutex
);
2924 static int b43_op_set_key(struct ieee80211_hw
*hw
, enum set_key_cmd cmd
,
2925 const u8
*local_addr
, const u8
*addr
,
2926 struct ieee80211_key_conf
*key
)
2928 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
2929 struct b43_wldev
*dev
;
2930 unsigned long flags
;
2934 DECLARE_MAC_BUF(mac
);
2936 if (modparam_nohwcrypt
)
2937 return -ENOSPC
; /* User disabled HW-crypto */
2939 mutex_lock(&wl
->mutex
);
2940 spin_lock_irqsave(&wl
->irq_lock
, flags
);
2942 dev
= wl
->current_dev
;
2944 if (!dev
|| b43_status(dev
) < B43_STAT_INITIALIZED
)
2950 if (key
->keylen
== 5)
2951 algorithm
= B43_SEC_ALGO_WEP40
;
2953 algorithm
= B43_SEC_ALGO_WEP104
;
2956 algorithm
= B43_SEC_ALGO_TKIP
;
2959 algorithm
= B43_SEC_ALGO_AES
;
2965 index
= (u8
) (key
->keyidx
);
2971 if (algorithm
== B43_SEC_ALGO_TKIP
) {
2972 /* FIXME: No TKIP hardware encryption for now. */
2977 if (is_broadcast_ether_addr(addr
)) {
2978 /* addr is FF:FF:FF:FF:FF:FF for default keys */
2979 err
= b43_key_write(dev
, index
, algorithm
,
2980 key
->key
, key
->keylen
, NULL
, key
);
2983 * either pairwise key or address is 00:00:00:00:00:00
2984 * for transmit-only keys
2986 err
= b43_key_write(dev
, -1, algorithm
,
2987 key
->key
, key
->keylen
, addr
, key
);
2992 if (algorithm
== B43_SEC_ALGO_WEP40
||
2993 algorithm
== B43_SEC_ALGO_WEP104
) {
2994 b43_hf_write(dev
, b43_hf_read(dev
) | B43_HF_USEDEFKEYS
);
2997 b43_hf_read(dev
) & ~B43_HF_USEDEFKEYS
);
2999 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_IV
;
3002 err
= b43_key_clear(dev
, key
->hw_key_idx
);
3011 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
3012 mutex_unlock(&wl
->mutex
);
3014 b43dbg(wl
, "%s hardware based encryption for keyidx: %d, "
3016 cmd
== SET_KEY
? "Using" : "Disabling", key
->keyidx
,
3017 print_mac(mac
, addr
));
3022 static void b43_op_configure_filter(struct ieee80211_hw
*hw
,
3023 unsigned int changed
, unsigned int *fflags
,
3024 int mc_count
, struct dev_addr_list
*mc_list
)
3026 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
3027 struct b43_wldev
*dev
= wl
->current_dev
;
3028 unsigned long flags
;
3035 spin_lock_irqsave(&wl
->irq_lock
, flags
);
3036 *fflags
&= FIF_PROMISC_IN_BSS
|
3042 FIF_BCN_PRBRESP_PROMISC
;
3044 changed
&= FIF_PROMISC_IN_BSS
|
3050 FIF_BCN_PRBRESP_PROMISC
;
3052 wl
->filter_flags
= *fflags
;
3054 if (changed
&& b43_status(dev
) >= B43_STAT_INITIALIZED
)
3055 b43_adjust_opmode(dev
);
3056 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
3059 static int b43_op_config_interface(struct ieee80211_hw
*hw
,
3060 struct ieee80211_vif
*vif
,
3061 struct ieee80211_if_conf
*conf
)
3063 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
3064 struct b43_wldev
*dev
= wl
->current_dev
;
3065 unsigned long flags
;
3069 mutex_lock(&wl
->mutex
);
3070 spin_lock_irqsave(&wl
->irq_lock
, flags
);
3071 B43_WARN_ON(wl
->vif
!= vif
);
3073 memcpy(wl
->bssid
, conf
->bssid
, ETH_ALEN
);
3075 memset(wl
->bssid
, 0, ETH_ALEN
);
3076 if (b43_status(dev
) >= B43_STAT_INITIALIZED
) {
3077 if (b43_is_mode(wl
, IEEE80211_IF_TYPE_AP
)) {
3078 B43_WARN_ON(conf
->type
!= IEEE80211_IF_TYPE_AP
);
3079 b43_set_ssid(dev
, conf
->ssid
, conf
->ssid_len
);
3081 b43_update_templates(wl
, conf
->beacon
);
3083 b43_write_mac_bssid_templates(dev
);
3085 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
3086 mutex_unlock(&wl
->mutex
);
3091 /* Locking: wl->mutex */
3092 static void b43_wireless_core_stop(struct b43_wldev
*dev
)
3094 struct b43_wl
*wl
= dev
->wl
;
3095 unsigned long flags
;
3097 if (b43_status(dev
) < B43_STAT_STARTED
)
3100 /* Disable and sync interrupts. We must do this before than
3101 * setting the status to INITIALIZED, as the interrupt handler
3102 * won't care about IRQs then. */
3103 spin_lock_irqsave(&wl
->irq_lock
, flags
);
3104 dev
->irq_savedstate
= b43_interrupt_disable(dev
, B43_IRQ_ALL
);
3105 b43_read32(dev
, B43_MMIO_GEN_IRQ_MASK
); /* flush */
3106 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
3107 b43_synchronize_irq(dev
);
3109 b43_set_status(dev
, B43_STAT_INITIALIZED
);
3111 mutex_unlock(&wl
->mutex
);
3112 /* Must unlock as it would otherwise deadlock. No races here.
3113 * Cancel the possibly running self-rearming periodic work. */
3114 cancel_delayed_work_sync(&dev
->periodic_work
);
3115 mutex_lock(&wl
->mutex
);
3117 ieee80211_stop_queues(wl
->hw
); //FIXME this could cause a deadlock, as mac80211 seems buggy.
3119 b43_mac_suspend(dev
);
3120 free_irq(dev
->dev
->irq
, dev
);
3121 b43dbg(wl
, "Wireless interface stopped\n");
3124 /* Locking: wl->mutex */
3125 static int b43_wireless_core_start(struct b43_wldev
*dev
)
3129 B43_WARN_ON(b43_status(dev
) != B43_STAT_INITIALIZED
);
3131 drain_txstatus_queue(dev
);
3132 err
= request_irq(dev
->dev
->irq
, b43_interrupt_handler
,
3133 IRQF_SHARED
, KBUILD_MODNAME
, dev
);
3135 b43err(dev
->wl
, "Cannot request IRQ-%d\n", dev
->dev
->irq
);
3139 /* We are ready to run. */
3140 b43_set_status(dev
, B43_STAT_STARTED
);
3142 /* Start data flow (TX/RX). */
3143 b43_mac_enable(dev
);
3144 b43_interrupt_enable(dev
, dev
->irq_savedstate
);
3145 ieee80211_start_queues(dev
->wl
->hw
);
3147 /* Start maintainance work */
3148 b43_periodic_tasks_setup(dev
);
3150 b43dbg(dev
->wl
, "Wireless interface started\n");
3155 /* Get PHY and RADIO versioning numbers */
3156 static int b43_phy_versioning(struct b43_wldev
*dev
)
3158 struct b43_phy
*phy
= &dev
->phy
;
3166 int unsupported
= 0;
3168 /* Get PHY versioning */
3169 tmp
= b43_read16(dev
, B43_MMIO_PHY_VER
);
3170 analog_type
= (tmp
& B43_PHYVER_ANALOG
) >> B43_PHYVER_ANALOG_SHIFT
;
3171 phy_type
= (tmp
& B43_PHYVER_TYPE
) >> B43_PHYVER_TYPE_SHIFT
;
3172 phy_rev
= (tmp
& B43_PHYVER_VERSION
);
3179 if (phy_rev
!= 2 && phy_rev
!= 4 && phy_rev
!= 6
3187 #ifdef CONFIG_B43_NPHY
3197 b43err(dev
->wl
, "FOUND UNSUPPORTED PHY "
3198 "(Analog %u, Type %u, Revision %u)\n",
3199 analog_type
, phy_type
, phy_rev
);
3202 b43dbg(dev
->wl
, "Found PHY: Analog %u, Type %u, Revision %u\n",
3203 analog_type
, phy_type
, phy_rev
);
3205 /* Get RADIO versioning */
3206 if (dev
->dev
->bus
->chip_id
== 0x4317) {
3207 if (dev
->dev
->bus
->chip_rev
== 0)
3209 else if (dev
->dev
->bus
->chip_rev
== 1)
3214 b43_write16(dev
, B43_MMIO_RADIO_CONTROL
, B43_RADIOCTL_ID
);
3215 tmp
= b43_read16(dev
, B43_MMIO_RADIO_DATA_LOW
);
3216 b43_write16(dev
, B43_MMIO_RADIO_CONTROL
, B43_RADIOCTL_ID
);
3217 tmp
|= (u32
)b43_read16(dev
, B43_MMIO_RADIO_DATA_HIGH
) << 16;
3219 radio_manuf
= (tmp
& 0x00000FFF);
3220 radio_ver
= (tmp
& 0x0FFFF000) >> 12;
3221 radio_rev
= (tmp
& 0xF0000000) >> 28;
3222 if (radio_manuf
!= 0x17F /* Broadcom */)
3226 if (radio_ver
!= 0x2060)
3230 if (radio_manuf
!= 0x17F)
3234 if ((radio_ver
& 0xFFF0) != 0x2050)
3238 if (radio_ver
!= 0x2050)
3242 if (radio_ver
!= 0x2055)
3249 b43err(dev
->wl
, "FOUND UNSUPPORTED RADIO "
3250 "(Manuf 0x%X, Version 0x%X, Revision %u)\n",
3251 radio_manuf
, radio_ver
, radio_rev
);
3254 b43dbg(dev
->wl
, "Found Radio: Manuf 0x%X, Version 0x%X, Revision %u\n",
3255 radio_manuf
, radio_ver
, radio_rev
);
3257 phy
->radio_manuf
= radio_manuf
;
3258 phy
->radio_ver
= radio_ver
;
3259 phy
->radio_rev
= radio_rev
;
3261 phy
->analog
= analog_type
;
3262 phy
->type
= phy_type
;
3268 static void setup_struct_phy_for_init(struct b43_wldev
*dev
,
3269 struct b43_phy
*phy
)
3271 struct b43_txpower_lo_control
*lo
;
3274 memset(phy
->minlowsig
, 0xFF, sizeof(phy
->minlowsig
));
3275 memset(phy
->minlowsigpos
, 0, sizeof(phy
->minlowsigpos
));
3277 phy
->aci_enable
= 0;
3278 phy
->aci_wlan_automatic
= 0;
3279 phy
->aci_hw_rssi
= 0;
3281 phy
->radio_off_context
.valid
= 0;
3283 lo
= phy
->lo_control
;
3285 memset(lo
, 0, sizeof(*(phy
->lo_control
)));
3289 phy
->max_lb_gain
= 0;
3290 phy
->trsw_rx_gain
= 0;
3291 phy
->txpwr_offset
= 0;
3294 phy
->nrssislope
= 0;
3295 for (i
= 0; i
< ARRAY_SIZE(phy
->nrssi
); i
++)
3296 phy
->nrssi
[i
] = -1000;
3297 for (i
= 0; i
< ARRAY_SIZE(phy
->nrssi_lt
); i
++)
3298 phy
->nrssi_lt
[i
] = i
;
3300 phy
->lofcal
= 0xFFFF;
3301 phy
->initval
= 0xFFFF;
3303 phy
->interfmode
= B43_INTERFMODE_NONE
;
3304 phy
->channel
= 0xFF;
3306 phy
->hardware_power_control
= !!modparam_hwpctl
;
3308 /* PHY TX errors counter. */
3309 atomic_set(&phy
->txerr_cnt
, B43_PHY_TX_BADNESS_LIMIT
);
3311 /* OFDM-table address caching. */
3312 phy
->ofdmtab_addr_direction
= B43_OFDMTAB_DIRECTION_UNKNOWN
;
3315 static void setup_struct_wldev_for_init(struct b43_wldev
*dev
)
3319 /* Assume the radio is enabled. If it's not enabled, the state will
3320 * immediately get fixed on the first periodic work run. */
3321 dev
->radio_hw_enable
= 1;
3324 memset(&dev
->stats
, 0, sizeof(dev
->stats
));
3326 setup_struct_phy_for_init(dev
, &dev
->phy
);
3328 /* IRQ related flags */
3329 dev
->irq_reason
= 0;
3330 memset(dev
->dma_reason
, 0, sizeof(dev
->dma_reason
));
3331 dev
->irq_savedstate
= B43_IRQ_MASKTEMPLATE
;
3333 dev
->mac_suspended
= 1;
3335 /* Noise calculation context */
3336 memset(&dev
->noisecalc
, 0, sizeof(dev
->noisecalc
));
3339 static void b43_bluetooth_coext_enable(struct b43_wldev
*dev
)
3341 struct ssb_sprom
*sprom
= &dev
->dev
->bus
->sprom
;
3344 if (!(sprom
->boardflags_lo
& B43_BFL_BTCOEXIST
))
3346 if (dev
->phy
.type
!= B43_PHYTYPE_B
&& !dev
->phy
.gmode
)
3349 hf
= b43_hf_read(dev
);
3350 if (sprom
->boardflags_lo
& B43_BFL_BTCMOD
)
3351 hf
|= B43_HF_BTCOEXALT
;
3353 hf
|= B43_HF_BTCOEX
;
3354 b43_hf_write(dev
, hf
);
3358 static void b43_bluetooth_coext_disable(struct b43_wldev
*dev
)
3362 static void b43_imcfglo_timeouts_workaround(struct b43_wldev
*dev
)
3364 #ifdef CONFIG_SSB_DRIVER_PCICORE
3365 struct ssb_bus
*bus
= dev
->dev
->bus
;
3368 if (bus
->pcicore
.dev
&&
3369 bus
->pcicore
.dev
->id
.coreid
== SSB_DEV_PCI
&&
3370 bus
->pcicore
.dev
->id
.revision
<= 5) {
3371 /* IMCFGLO timeouts workaround. */
3372 tmp
= ssb_read32(dev
->dev
, SSB_IMCFGLO
);
3373 tmp
&= ~SSB_IMCFGLO_REQTO
;
3374 tmp
&= ~SSB_IMCFGLO_SERTO
;
3375 switch (bus
->bustype
) {
3376 case SSB_BUSTYPE_PCI
:
3377 case SSB_BUSTYPE_PCMCIA
:
3380 case SSB_BUSTYPE_SSB
:
3384 ssb_write32(dev
->dev
, SSB_IMCFGLO
, tmp
);
3386 #endif /* CONFIG_SSB_DRIVER_PCICORE */
3389 /* Write the short and long frame retry limit values. */
3390 static void b43_set_retry_limits(struct b43_wldev
*dev
,
3391 unsigned int short_retry
,
3392 unsigned int long_retry
)
3394 /* The retry limit is a 4-bit counter. Enforce this to avoid overflowing
3395 * the chip-internal counter. */
3396 short_retry
= min(short_retry
, (unsigned int)0xF);
3397 long_retry
= min(long_retry
, (unsigned int)0xF);
3399 b43_shm_write16(dev
, B43_SHM_SCRATCH
, B43_SHM_SC_SRLIMIT
,
3401 b43_shm_write16(dev
, B43_SHM_SCRATCH
, B43_SHM_SC_LRLIMIT
,
3405 /* Shutdown a wireless core */
3406 /* Locking: wl->mutex */
3407 static void b43_wireless_core_exit(struct b43_wldev
*dev
)
3409 struct b43_phy
*phy
= &dev
->phy
;
3412 B43_WARN_ON(b43_status(dev
) > B43_STAT_INITIALIZED
);
3413 if (b43_status(dev
) != B43_STAT_INITIALIZED
)
3415 b43_set_status(dev
, B43_STAT_UNINIT
);
3417 /* Stop the microcode PSM. */
3418 macctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
3419 macctl
&= ~B43_MACCTL_PSM_RUN
;
3420 macctl
|= B43_MACCTL_PSM_JMP0
;
3421 b43_write32(dev
, B43_MMIO_MACCTL
, macctl
);
3423 if (!dev
->suspend_in_progress
) {
3425 b43_rng_exit(dev
->wl
, false);
3429 b43_radio_turn_off(dev
, 1);
3430 b43_switch_analog(dev
, 0);
3431 if (phy
->dyn_tssi_tbl
)
3432 kfree(phy
->tssi2dbm
);
3433 kfree(phy
->lo_control
);
3434 phy
->lo_control
= NULL
;
3435 if (dev
->wl
->current_beacon
) {
3436 dev_kfree_skb_any(dev
->wl
->current_beacon
);
3437 dev
->wl
->current_beacon
= NULL
;
3440 ssb_device_disable(dev
->dev
, 0);
3441 ssb_bus_may_powerdown(dev
->dev
->bus
);
3444 /* Initialize a wireless core */
3445 static int b43_wireless_core_init(struct b43_wldev
*dev
)
3447 struct b43_wl
*wl
= dev
->wl
;
3448 struct ssb_bus
*bus
= dev
->dev
->bus
;
3449 struct ssb_sprom
*sprom
= &bus
->sprom
;
3450 struct b43_phy
*phy
= &dev
->phy
;
3454 B43_WARN_ON(b43_status(dev
) != B43_STAT_UNINIT
);
3456 err
= ssb_bus_powerup(bus
, 0);
3459 if (!ssb_device_is_enabled(dev
->dev
)) {
3460 tmp
= phy
->gmode
? B43_TMSLOW_GMODE
: 0;
3461 b43_wireless_core_reset(dev
, tmp
);
3464 if ((phy
->type
== B43_PHYTYPE_B
) || (phy
->type
== B43_PHYTYPE_G
)) {
3466 kzalloc(sizeof(*(phy
->lo_control
)), GFP_KERNEL
);
3467 if (!phy
->lo_control
) {
3472 setup_struct_wldev_for_init(dev
);
3474 err
= b43_phy_init_tssi2dbm_table(dev
);
3476 goto err_kfree_lo_control
;
3478 /* Enable IRQ routing to this device. */
3479 ssb_pcicore_dev_irqvecs_enable(&bus
->pcicore
, dev
->dev
);
3481 b43_imcfglo_timeouts_workaround(dev
);
3482 b43_bluetooth_coext_disable(dev
);
3483 b43_phy_early_init(dev
);
3484 err
= b43_chip_init(dev
);
3486 goto err_kfree_tssitbl
;
3487 b43_shm_write16(dev
, B43_SHM_SHARED
,
3488 B43_SHM_SH_WLCOREREV
, dev
->dev
->id
.revision
);
3489 hf
= b43_hf_read(dev
);
3490 if (phy
->type
== B43_PHYTYPE_G
) {
3494 if (sprom
->boardflags_lo
& B43_BFL_PACTRL
)
3495 hf
|= B43_HF_OFDMPABOOST
;
3496 } else if (phy
->type
== B43_PHYTYPE_B
) {
3498 if (phy
->rev
>= 2 && phy
->radio_ver
== 0x2050)
3501 b43_hf_write(dev
, hf
);
3503 b43_set_retry_limits(dev
, B43_DEFAULT_SHORT_RETRY_LIMIT
,
3504 B43_DEFAULT_LONG_RETRY_LIMIT
);
3505 b43_shm_write16(dev
, B43_SHM_SHARED
, B43_SHM_SH_SFFBLIM
, 3);
3506 b43_shm_write16(dev
, B43_SHM_SHARED
, B43_SHM_SH_LFFBLIM
, 2);
3508 /* Disable sending probe responses from firmware.
3509 * Setting the MaxTime to one usec will always trigger
3510 * a timeout, so we never send any probe resp.
3511 * A timeout of zero is infinite. */
3512 b43_shm_write16(dev
, B43_SHM_SHARED
, B43_SHM_SH_PRMAXTIME
, 1);
3514 b43_rate_memory_init(dev
);
3516 /* Minimum Contention Window */
3517 if (phy
->type
== B43_PHYTYPE_B
) {
3518 b43_shm_write16(dev
, B43_SHM_SCRATCH
, B43_SHM_SC_MINCONT
, 0x1F);
3520 b43_shm_write16(dev
, B43_SHM_SCRATCH
, B43_SHM_SC_MINCONT
, 0xF);
3522 /* Maximum Contention Window */
3523 b43_shm_write16(dev
, B43_SHM_SCRATCH
, B43_SHM_SC_MAXCONT
, 0x3FF);
3525 err
= b43_dma_init(dev
);
3532 b43_write16(dev
, 0x0612, 0x0050);
3533 b43_shm_write16(dev
, B43_SHM_SHARED
, 0x0416, 0x0050);
3534 b43_shm_write16(dev
, B43_SHM_SHARED
, 0x0414, 0x01F4);
3537 b43_bluetooth_coext_enable(dev
);
3539 ssb_bus_powerup(bus
, 1); /* Enable dynamic PCTL */
3540 b43_upload_card_macaddress(dev
);
3541 b43_security_init(dev
);
3542 if (!dev
->suspend_in_progress
)
3545 b43_set_status(dev
, B43_STAT_INITIALIZED
);
3547 if (!dev
->suspend_in_progress
)
3555 if (phy
->dyn_tssi_tbl
)
3556 kfree(phy
->tssi2dbm
);
3557 err_kfree_lo_control
:
3558 kfree(phy
->lo_control
);
3559 phy
->lo_control
= NULL
;
3561 ssb_bus_may_powerdown(bus
);
3562 B43_WARN_ON(b43_status(dev
) != B43_STAT_UNINIT
);
3566 static int b43_op_add_interface(struct ieee80211_hw
*hw
,
3567 struct ieee80211_if_init_conf
*conf
)
3569 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
3570 struct b43_wldev
*dev
;
3571 unsigned long flags
;
3572 int err
= -EOPNOTSUPP
;
3574 /* TODO: allow WDS/AP devices to coexist */
3576 if (conf
->type
!= IEEE80211_IF_TYPE_AP
&&
3577 conf
->type
!= IEEE80211_IF_TYPE_STA
&&
3578 conf
->type
!= IEEE80211_IF_TYPE_WDS
&&
3579 conf
->type
!= IEEE80211_IF_TYPE_IBSS
)
3582 mutex_lock(&wl
->mutex
);
3584 goto out_mutex_unlock
;
3586 b43dbg(wl
, "Adding Interface type %d\n", conf
->type
);
3588 dev
= wl
->current_dev
;
3590 wl
->vif
= conf
->vif
;
3591 wl
->if_type
= conf
->type
;
3592 memcpy(wl
->mac_addr
, conf
->mac_addr
, ETH_ALEN
);
3594 spin_lock_irqsave(&wl
->irq_lock
, flags
);
3595 b43_adjust_opmode(dev
);
3596 b43_upload_card_macaddress(dev
);
3597 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
3601 mutex_unlock(&wl
->mutex
);
3606 static void b43_op_remove_interface(struct ieee80211_hw
*hw
,
3607 struct ieee80211_if_init_conf
*conf
)
3609 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
3610 struct b43_wldev
*dev
= wl
->current_dev
;
3611 unsigned long flags
;
3613 b43dbg(wl
, "Removing Interface type %d\n", conf
->type
);
3615 mutex_lock(&wl
->mutex
);
3617 B43_WARN_ON(!wl
->operating
);
3618 B43_WARN_ON(wl
->vif
!= conf
->vif
);
3623 spin_lock_irqsave(&wl
->irq_lock
, flags
);
3624 b43_adjust_opmode(dev
);
3625 memset(wl
->mac_addr
, 0, ETH_ALEN
);
3626 b43_upload_card_macaddress(dev
);
3627 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
3629 mutex_unlock(&wl
->mutex
);
3632 static int b43_op_start(struct ieee80211_hw
*hw
)
3634 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
3635 struct b43_wldev
*dev
= wl
->current_dev
;
3638 bool do_rfkill_exit
= 0;
3640 /* Kill all old instance specific information to make sure
3641 * the card won't use it in the short timeframe between start
3642 * and mac80211 reconfiguring it. */
3643 memset(wl
->bssid
, 0, ETH_ALEN
);
3644 memset(wl
->mac_addr
, 0, ETH_ALEN
);
3645 wl
->filter_flags
= 0;
3646 wl
->radiotap_enabled
= 0;
3648 /* First register RFkill.
3649 * LEDs that are registered later depend on it. */
3650 b43_rfkill_init(dev
);
3652 mutex_lock(&wl
->mutex
);
3654 if (b43_status(dev
) < B43_STAT_INITIALIZED
) {
3655 err
= b43_wireless_core_init(dev
);
3658 goto out_mutex_unlock
;
3663 if (b43_status(dev
) < B43_STAT_STARTED
) {
3664 err
= b43_wireless_core_start(dev
);
3667 b43_wireless_core_exit(dev
);
3669 goto out_mutex_unlock
;
3674 mutex_unlock(&wl
->mutex
);
3677 b43_rfkill_exit(dev
);
3682 static void b43_op_stop(struct ieee80211_hw
*hw
)
3684 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
3685 struct b43_wldev
*dev
= wl
->current_dev
;
3687 b43_rfkill_exit(dev
);
3689 mutex_lock(&wl
->mutex
);
3690 if (b43_status(dev
) >= B43_STAT_STARTED
)
3691 b43_wireless_core_stop(dev
);
3692 b43_wireless_core_exit(dev
);
3693 mutex_unlock(&wl
->mutex
);
3696 static int b43_op_set_retry_limit(struct ieee80211_hw
*hw
,
3697 u32 short_retry_limit
, u32 long_retry_limit
)
3699 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
3700 struct b43_wldev
*dev
;
3703 mutex_lock(&wl
->mutex
);
3704 dev
= wl
->current_dev
;
3705 if (unlikely(!dev
|| (b43_status(dev
) < B43_STAT_INITIALIZED
))) {
3709 b43_set_retry_limits(dev
, short_retry_limit
, long_retry_limit
);
3711 mutex_unlock(&wl
->mutex
);
3716 static int b43_op_beacon_set_tim(struct ieee80211_hw
*hw
, int aid
, int set
)
3718 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
3719 struct sk_buff
*beacon
;
3720 unsigned long flags
;
3722 /* We could modify the existing beacon and set the aid bit in
3723 * the TIM field, but that would probably require resizing and
3724 * moving of data within the beacon template.
3725 * Simply request a new beacon and let mac80211 do the hard work. */
3726 beacon
= ieee80211_beacon_get(hw
, wl
->vif
, NULL
);
3727 if (unlikely(!beacon
))
3729 spin_lock_irqsave(&wl
->irq_lock
, flags
);
3730 b43_update_templates(wl
, beacon
);
3731 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
3736 static int b43_op_ibss_beacon_update(struct ieee80211_hw
*hw
,
3737 struct sk_buff
*beacon
,
3738 struct ieee80211_tx_control
*ctl
)
3740 struct b43_wl
*wl
= hw_to_b43_wl(hw
);
3741 unsigned long flags
;
3743 spin_lock_irqsave(&wl
->irq_lock
, flags
);
3744 b43_update_templates(wl
, beacon
);
3745 spin_unlock_irqrestore(&wl
->irq_lock
, flags
);
3750 static const struct ieee80211_ops b43_hw_ops
= {
3752 .conf_tx
= b43_op_conf_tx
,
3753 .add_interface
= b43_op_add_interface
,
3754 .remove_interface
= b43_op_remove_interface
,
3755 .config
= b43_op_config
,
3756 .config_interface
= b43_op_config_interface
,
3757 .configure_filter
= b43_op_configure_filter
,
3758 .set_key
= b43_op_set_key
,
3759 .get_stats
= b43_op_get_stats
,
3760 .get_tx_stats
= b43_op_get_tx_stats
,
3761 .start
= b43_op_start
,
3762 .stop
= b43_op_stop
,
3763 .set_retry_limit
= b43_op_set_retry_limit
,
3764 .set_tim
= b43_op_beacon_set_tim
,
3765 .beacon_update
= b43_op_ibss_beacon_update
,
3768 /* Hard-reset the chip. Do not call this directly.
3769 * Use b43_controller_restart()
3771 static void b43_chip_reset(struct work_struct
*work
)
3773 struct b43_wldev
*dev
=
3774 container_of(work
, struct b43_wldev
, restart_work
);
3775 struct b43_wl
*wl
= dev
->wl
;
3779 mutex_lock(&wl
->mutex
);
3781 prev_status
= b43_status(dev
);
3782 /* Bring the device down... */
3783 if (prev_status
>= B43_STAT_STARTED
)
3784 b43_wireless_core_stop(dev
);
3785 if (prev_status
>= B43_STAT_INITIALIZED
)
3786 b43_wireless_core_exit(dev
);
3788 /* ...and up again. */
3789 if (prev_status
>= B43_STAT_INITIALIZED
) {
3790 err
= b43_wireless_core_init(dev
);
3794 if (prev_status
>= B43_STAT_STARTED
) {
3795 err
= b43_wireless_core_start(dev
);
3797 b43_wireless_core_exit(dev
);
3802 mutex_unlock(&wl
->mutex
);
3804 b43err(wl
, "Controller restart FAILED\n");
3806 b43info(wl
, "Controller restarted\n");
3809 static int b43_setup_modes(struct b43_wldev
*dev
,
3810 bool have_2ghz_phy
, bool have_5ghz_phy
)
3812 struct ieee80211_hw
*hw
= dev
->wl
->hw
;
3813 struct ieee80211_hw_mode
*mode
;
3814 struct b43_phy
*phy
= &dev
->phy
;
3817 /* XXX: This function will go away soon, when mac80211
3818 * band stuff is rewritten. So this is just a hack.
3819 * For now we always claim GPHY mode, as there is no
3820 * support for NPHY and APHY in the device, yet.
3821 * This assumption is OK, as any B, N or A PHY will already
3822 * have died a horrible sanity check death earlier. */
3824 mode
= &phy
->hwmodes
[0];
3825 mode
->mode
= MODE_IEEE80211G
;
3826 mode
->num_channels
= b43_2ghz_chantable_size
;
3827 mode
->channels
= b43_2ghz_chantable
;
3828 mode
->num_rates
= b43_g_ratetable_size
;
3829 mode
->rates
= b43_g_ratetable
;
3830 err
= ieee80211_register_hwmode(hw
, mode
);
3833 phy
->possible_phymodes
|= B43_PHYMODE_G
;
3838 static void b43_wireless_core_detach(struct b43_wldev
*dev
)
3840 /* We release firmware that late to not be required to re-request
3841 * is all the time when we reinit the core. */
3842 b43_release_firmware(dev
);
3845 static int b43_wireless_core_attach(struct b43_wldev
*dev
)
3847 struct b43_wl
*wl
= dev
->wl
;
3848 struct ssb_bus
*bus
= dev
->dev
->bus
;
3849 struct pci_dev
*pdev
= bus
->host_pci
;
3851 bool have_2ghz_phy
= 0, have_5ghz_phy
= 0;
3854 /* Do NOT do any device initialization here.
3855 * Do it in wireless_core_init() instead.
3856 * This function is for gathering basic information about the HW, only.
3857 * Also some structs may be set up here. But most likely you want to have
3858 * that in core_init(), too.
3861 err
= ssb_bus_powerup(bus
, 0);
3863 b43err(wl
, "Bus powerup failed\n");
3866 /* Get the PHY type. */
3867 if (dev
->dev
->id
.revision
>= 5) {
3870 tmshigh
= ssb_read32(dev
->dev
, SSB_TMSHIGH
);
3871 have_2ghz_phy
= !!(tmshigh
& B43_TMSHIGH_HAVE_2GHZ_PHY
);
3872 have_5ghz_phy
= !!(tmshigh
& B43_TMSHIGH_HAVE_5GHZ_PHY
);
3876 dev
->phy
.gmode
= have_2ghz_phy
;
3877 tmp
= dev
->phy
.gmode
? B43_TMSLOW_GMODE
: 0;
3878 b43_wireless_core_reset(dev
, tmp
);
3880 err
= b43_phy_versioning(dev
);
3883 /* Check if this device supports multiband. */
3885 (pdev
->device
!= 0x4312 &&
3886 pdev
->device
!= 0x4319 && pdev
->device
!= 0x4324)) {
3887 /* No multiband support. */
3890 switch (dev
->phy
.type
) {
3902 if (dev
->phy
.type
== B43_PHYTYPE_A
) {
3904 b43err(wl
, "IEEE 802.11a devices are unsupported\n");
3908 dev
->phy
.gmode
= have_2ghz_phy
;
3909 tmp
= dev
->phy
.gmode
? B43_TMSLOW_GMODE
: 0;
3910 b43_wireless_core_reset(dev
, tmp
);
3912 err
= b43_validate_chipaccess(dev
);
3915 err
= b43_setup_modes(dev
, have_2ghz_phy
, have_5ghz_phy
);
3919 /* Now set some default "current_dev" */
3920 if (!wl
->current_dev
)
3921 wl
->current_dev
= dev
;
3922 INIT_WORK(&dev
->restart_work
, b43_chip_reset
);
3924 b43_radio_turn_off(dev
, 1);
3925 b43_switch_analog(dev
, 0);
3926 ssb_device_disable(dev
->dev
, 0);
3927 ssb_bus_may_powerdown(bus
);
3933 ssb_bus_may_powerdown(bus
);
3937 static void b43_one_core_detach(struct ssb_device
*dev
)
3939 struct b43_wldev
*wldev
;
3942 wldev
= ssb_get_drvdata(dev
);
3944 cancel_work_sync(&wldev
->restart_work
);
3945 b43_debugfs_remove_device(wldev
);
3946 b43_wireless_core_detach(wldev
);
3947 list_del(&wldev
->list
);
3949 ssb_set_drvdata(dev
, NULL
);
3953 static int b43_one_core_attach(struct ssb_device
*dev
, struct b43_wl
*wl
)
3955 struct b43_wldev
*wldev
;
3956 struct pci_dev
*pdev
;
3959 if (!list_empty(&wl
->devlist
)) {
3960 /* We are not the first core on this chip. */
3961 pdev
= dev
->bus
->host_pci
;
3962 /* Only special chips support more than one wireless
3963 * core, although some of the other chips have more than
3964 * one wireless core as well. Check for this and
3968 ((pdev
->device
!= 0x4321) &&
3969 (pdev
->device
!= 0x4313) && (pdev
->device
!= 0x431A))) {
3970 b43dbg(wl
, "Ignoring unconnected 802.11 core\n");
3975 wldev
= kzalloc(sizeof(*wldev
), GFP_KERNEL
);
3981 b43_set_status(wldev
, B43_STAT_UNINIT
);
3982 wldev
->bad_frames_preempt
= modparam_bad_frames_preempt
;
3983 tasklet_init(&wldev
->isr_tasklet
,
3984 (void (*)(unsigned long))b43_interrupt_tasklet
,
3985 (unsigned long)wldev
);
3986 INIT_LIST_HEAD(&wldev
->list
);
3988 err
= b43_wireless_core_attach(wldev
);
3990 goto err_kfree_wldev
;
3992 list_add(&wldev
->list
, &wl
->devlist
);
3994 ssb_set_drvdata(dev
, wldev
);
3995 b43_debugfs_add_device(wldev
);
4005 static void b43_sprom_fixup(struct ssb_bus
*bus
)
4007 /* boardflags workarounds */
4008 if (bus
->boardinfo
.vendor
== SSB_BOARDVENDOR_DELL
&&
4009 bus
->chip_id
== 0x4301 && bus
->boardinfo
.rev
== 0x74)
4010 bus
->sprom
.boardflags_lo
|= B43_BFL_BTCOEXIST
;
4011 if (bus
->boardinfo
.vendor
== PCI_VENDOR_ID_APPLE
&&
4012 bus
->boardinfo
.type
== 0x4E && bus
->boardinfo
.rev
> 0x40)
4013 bus
->sprom
.boardflags_lo
|= B43_BFL_PACTRL
;
4016 static void b43_wireless_exit(struct ssb_device
*dev
, struct b43_wl
*wl
)
4018 struct ieee80211_hw
*hw
= wl
->hw
;
4020 ssb_set_devtypedata(dev
, NULL
);
4021 ieee80211_free_hw(hw
);
4024 static int b43_wireless_init(struct ssb_device
*dev
)
4026 struct ssb_sprom
*sprom
= &dev
->bus
->sprom
;
4027 struct ieee80211_hw
*hw
;
4031 b43_sprom_fixup(dev
->bus
);
4033 hw
= ieee80211_alloc_hw(sizeof(*wl
), &b43_hw_ops
);
4035 b43err(NULL
, "Could not allocate ieee80211 device\n");
4040 hw
->flags
= IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE
|
4041 IEEE80211_HW_RX_INCLUDES_FCS
;
4042 hw
->max_signal
= 100;
4043 hw
->max_rssi
= -110;
4044 hw
->max_noise
= -110;
4045 hw
->queues
= 1; /* FIXME: hardware has more queues */
4046 SET_IEEE80211_DEV(hw
, dev
->dev
);
4047 if (is_valid_ether_addr(sprom
->et1mac
))
4048 SET_IEEE80211_PERM_ADDR(hw
, sprom
->et1mac
);
4050 SET_IEEE80211_PERM_ADDR(hw
, sprom
->il0mac
);
4052 /* Get and initialize struct b43_wl */
4053 wl
= hw_to_b43_wl(hw
);
4054 memset(wl
, 0, sizeof(*wl
));
4056 spin_lock_init(&wl
->irq_lock
);
4057 spin_lock_init(&wl
->leds_lock
);
4058 spin_lock_init(&wl
->shm_lock
);
4059 mutex_init(&wl
->mutex
);
4060 INIT_LIST_HEAD(&wl
->devlist
);
4062 ssb_set_devtypedata(dev
, wl
);
4063 b43info(wl
, "Broadcom %04X WLAN found\n", dev
->bus
->chip_id
);
4069 static int b43_probe(struct ssb_device
*dev
, const struct ssb_device_id
*id
)
4075 wl
= ssb_get_devtypedata(dev
);
4077 /* Probing the first core. Must setup common struct b43_wl */
4079 err
= b43_wireless_init(dev
);
4082 wl
= ssb_get_devtypedata(dev
);
4085 err
= b43_one_core_attach(dev
, wl
);
4087 goto err_wireless_exit
;
4090 err
= ieee80211_register_hw(wl
->hw
);
4092 goto err_one_core_detach
;
4098 err_one_core_detach
:
4099 b43_one_core_detach(dev
);
4102 b43_wireless_exit(dev
, wl
);
4106 static void b43_remove(struct ssb_device
*dev
)
4108 struct b43_wl
*wl
= ssb_get_devtypedata(dev
);
4109 struct b43_wldev
*wldev
= ssb_get_drvdata(dev
);
4112 if (wl
->current_dev
== wldev
)
4113 ieee80211_unregister_hw(wl
->hw
);
4115 b43_one_core_detach(dev
);
4117 if (list_empty(&wl
->devlist
)) {
4118 /* Last core on the chip unregistered.
4119 * We can destroy common struct b43_wl.
4121 b43_wireless_exit(dev
, wl
);
4125 /* Perform a hardware reset. This can be called from any context. */
4126 void b43_controller_restart(struct b43_wldev
*dev
, const char *reason
)
4128 /* Must avoid requeueing, if we are in shutdown. */
4129 if (b43_status(dev
) < B43_STAT_INITIALIZED
)
4131 b43info(dev
->wl
, "Controller RESET (%s) ...\n", reason
);
4132 queue_work(dev
->wl
->hw
->workqueue
, &dev
->restart_work
);
4137 static int b43_suspend(struct ssb_device
*dev
, pm_message_t state
)
4139 struct b43_wldev
*wldev
= ssb_get_drvdata(dev
);
4140 struct b43_wl
*wl
= wldev
->wl
;
4142 b43dbg(wl
, "Suspending...\n");
4144 mutex_lock(&wl
->mutex
);
4145 wldev
->suspend_in_progress
= true;
4146 wldev
->suspend_init_status
= b43_status(wldev
);
4147 if (wldev
->suspend_init_status
>= B43_STAT_STARTED
)
4148 b43_wireless_core_stop(wldev
);
4149 if (wldev
->suspend_init_status
>= B43_STAT_INITIALIZED
)
4150 b43_wireless_core_exit(wldev
);
4151 mutex_unlock(&wl
->mutex
);
4153 b43dbg(wl
, "Device suspended.\n");
4158 static int b43_resume(struct ssb_device
*dev
)
4160 struct b43_wldev
*wldev
= ssb_get_drvdata(dev
);
4161 struct b43_wl
*wl
= wldev
->wl
;
4164 b43dbg(wl
, "Resuming...\n");
4166 mutex_lock(&wl
->mutex
);
4167 if (wldev
->suspend_init_status
>= B43_STAT_INITIALIZED
) {
4168 err
= b43_wireless_core_init(wldev
);
4170 b43err(wl
, "Resume failed at core init\n");
4174 if (wldev
->suspend_init_status
>= B43_STAT_STARTED
) {
4175 err
= b43_wireless_core_start(wldev
);
4177 b43_leds_exit(wldev
);
4178 b43_rng_exit(wldev
->wl
, true);
4179 b43_wireless_core_exit(wldev
);
4180 b43err(wl
, "Resume failed at core start\n");
4184 b43dbg(wl
, "Device resumed.\n");
4186 wldev
->suspend_in_progress
= false;
4187 mutex_unlock(&wl
->mutex
);
4191 #else /* CONFIG_PM */
4192 # define b43_suspend NULL
4193 # define b43_resume NULL
4194 #endif /* CONFIG_PM */
4196 static struct ssb_driver b43_ssb_driver
= {
4197 .name
= KBUILD_MODNAME
,
4198 .id_table
= b43_ssb_tbl
,
4200 .remove
= b43_remove
,
4201 .suspend
= b43_suspend
,
4202 .resume
= b43_resume
,
4205 static void b43_print_driverinfo(void)
4207 const char *feat_pci
= "", *feat_pcmcia
= "", *feat_nphy
= "",
4208 *feat_leds
= "", *feat_rfkill
= "";
4210 #ifdef CONFIG_B43_PCI_AUTOSELECT
4213 #ifdef CONFIG_B43_PCMCIA
4216 #ifdef CONFIG_B43_NPHY
4219 #ifdef CONFIG_B43_LEDS
4222 #ifdef CONFIG_B43_RFKILL
4225 printk(KERN_INFO
"Broadcom 43xx driver loaded "
4226 "[ Features: %s%s%s%s%s, Firmware-ID: "
4227 B43_SUPPORTED_FIRMWARE_ID
" ]\n",
4228 feat_pci
, feat_pcmcia
, feat_nphy
,
4229 feat_leds
, feat_rfkill
);
4232 static int __init
b43_init(void)
4237 err
= b43_pcmcia_init();
4240 err
= ssb_driver_register(&b43_ssb_driver
);
4242 goto err_pcmcia_exit
;
4243 b43_print_driverinfo();
4254 static void __exit
b43_exit(void)
4256 ssb_driver_unregister(&b43_ssb_driver
);
4261 module_init(b43_init
)
4262 module_exit(b43_exit
)