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 if (dev->mac_suspended == 0) {
2053 b43_write32(dev, B43_MMIO_MACCTL,
2054 b43_read32(dev, B43_MMIO_MACCTL)
2055 | B43_MACCTL_ENABLED);
2056 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON,
2057 B43_IRQ_MAC_SUSPENDED);
2059 b43_read32(dev, B43_MMIO_MACCTL);
2060 b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2061 b43_power_saving_ctl_bits(dev, 0);
2063 /* Re-enable IRQs. */
2064 spin_lock_irq(&dev->wl->irq_lock);
2065 b43_interrupt_enable(dev, dev->irq_savedstate);
2066 spin_unlock_irq(&dev->wl->irq_lock);
2070 /* http://bcm-specs.sipsolutions.net/SuspendMAC */
2071 void b43_mac_suspend(struct b43_wldev *dev)
2077 B43_WARN_ON(dev->mac_suspended < 0);
2079 if (dev->mac_suspended == 0) {
2080 /* Mask IRQs before suspending MAC. Otherwise
2081 * the MAC stays busy and won't suspend. */
2082 spin_lock_irq(&dev->wl->irq_lock);
2083 tmp = b43_interrupt_disable(dev, B43_IRQ_ALL);
2084 spin_unlock_irq(&dev->wl->irq_lock);
2085 b43_synchronize_irq(dev);
2086 dev->irq_savedstate = tmp;
2088 b43_power_saving_ctl_bits(dev, B43_PS_AWAKE);
2089 b43_write32(dev, B43_MMIO_MACCTL,
2090 b43_read32(dev, B43_MMIO_MACCTL)
2091 & ~B43_MACCTL_ENABLED);
2092 /* force pci to flush the write */
2093 b43_read32(dev, B43_MMIO_MACCTL);
2094 for (i = 40; i; i--) {
2095 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2096 if (tmp & B43_IRQ_MAC_SUSPENDED)
2100 b43err(dev->wl, "MAC suspend failed\n");
2103 dev->mac_suspended++;
2106 static void b43_adjust_opmode(struct b43_wldev *dev)
2108 struct b43_wl *wl = dev->wl;
2112 ctl = b43_read32(dev, B43_MMIO_MACCTL);
2113 /* Reset status to STA infrastructure mode. */
2114 ctl &= ~B43_MACCTL_AP;
2115 ctl &= ~B43_MACCTL_KEEP_CTL;
2116 ctl &= ~B43_MACCTL_KEEP_BADPLCP;
2117 ctl &= ~B43_MACCTL_KEEP_BAD;
2118 ctl &= ~B43_MACCTL_PROMISC;
2119 ctl &= ~B43_MACCTL_BEACPROMISC;
2120 ctl |= B43_MACCTL_INFRA;
2122 if (b43_is_mode(wl, IEEE80211_IF_TYPE_AP))
2123 ctl |= B43_MACCTL_AP;
2124 else if (b43_is_mode(wl, IEEE80211_IF_TYPE_IBSS))
2125 ctl &= ~B43_MACCTL_INFRA;
2127 if (wl->filter_flags & FIF_CONTROL)
2128 ctl |= B43_MACCTL_KEEP_CTL;
2129 if (wl->filter_flags & FIF_FCSFAIL)
2130 ctl |= B43_MACCTL_KEEP_BAD;
2131 if (wl->filter_flags & FIF_PLCPFAIL)
2132 ctl |= B43_MACCTL_KEEP_BADPLCP;
2133 if (wl->filter_flags & FIF_PROMISC_IN_BSS)
2134 ctl |= B43_MACCTL_PROMISC;
2135 if (wl->filter_flags & FIF_BCN_PRBRESP_PROMISC)
2136 ctl |= B43_MACCTL_BEACPROMISC;
2138 /* Workaround: On old hardware the HW-MAC-address-filter
2139 * doesn't work properly, so always run promisc in filter
2140 * it in software. */
2141 if (dev->dev->id.revision <= 4)
2142 ctl |= B43_MACCTL_PROMISC;
2144 b43_write32(dev, B43_MMIO_MACCTL, ctl);
2147 if ((ctl & B43_MACCTL_INFRA) && !(ctl & B43_MACCTL_AP)) {
2148 if (dev->dev->bus->chip_id == 0x4306 &&
2149 dev->dev->bus->chip_rev == 3)
2154 b43_write16(dev, 0x612, cfp_pretbtt);
2157 static void b43_rate_memory_write(struct b43_wldev *dev, u16 rate, int is_ofdm)
2163 offset += (b43_plcp_get_ratecode_ofdm(rate) & 0x000F) * 2;
2166 offset += (b43_plcp_get_ratecode_cck(rate) & 0x000F) * 2;
2168 b43_shm_write16(dev, B43_SHM_SHARED, offset + 0x20,
2169 b43_shm_read16(dev, B43_SHM_SHARED, offset));
2172 static void b43_rate_memory_init(struct b43_wldev *dev)
2174 switch (dev->phy.type) {
2178 b43_rate_memory_write(dev, B43_OFDM_RATE_6MB, 1);
2179 b43_rate_memory_write(dev, B43_OFDM_RATE_12MB, 1);
2180 b43_rate_memory_write(dev, B43_OFDM_RATE_18MB, 1);
2181 b43_rate_memory_write(dev, B43_OFDM_RATE_24MB, 1);
2182 b43_rate_memory_write(dev, B43_OFDM_RATE_36MB, 1);
2183 b43_rate_memory_write(dev, B43_OFDM_RATE_48MB, 1);
2184 b43_rate_memory_write(dev, B43_OFDM_RATE_54MB, 1);
2185 if (dev->phy.type == B43_PHYTYPE_A)
2189 b43_rate_memory_write(dev, B43_CCK_RATE_1MB, 0);
2190 b43_rate_memory_write(dev, B43_CCK_RATE_2MB, 0);
2191 b43_rate_memory_write(dev, B43_CCK_RATE_5MB, 0);
2192 b43_rate_memory_write(dev, B43_CCK_RATE_11MB, 0);
2199 /* Set the TX-Antenna for management frames sent by firmware. */
2200 static void b43_mgmtframe_txantenna(struct b43_wldev *dev, int antenna)
2207 ant |= B43_TXH_PHY_ANT0;
2210 ant |= B43_TXH_PHY_ANT1;
2213 ant |= B43_TXH_PHY_ANT2;
2216 ant |= B43_TXH_PHY_ANT3;
2218 case B43_ANTENNA_AUTO:
2219 ant |= B43_TXH_PHY_ANT01AUTO;
2225 /* FIXME We also need to set the other flags of the PHY control field somewhere. */
2228 tmp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL);
2229 tmp = (tmp & ~B43_TXH_PHY_ANT) | ant;
2230 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL, tmp);
2232 tmp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL);
2233 tmp = (tmp & ~B43_TXH_PHY_ANT) | ant;
2234 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL, tmp);
2235 /* For Probe Resposes */
2236 tmp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL);
2237 tmp = (tmp & ~B43_TXH_PHY_ANT) | ant;
2238 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL, tmp);
2241 /* This is the opposite of b43_chip_init() */
2242 static void b43_chip_exit(struct b43_wldev *dev)
2244 b43_radio_turn_off(dev, 1);
2245 b43_gpio_cleanup(dev);
2246 /* firmware is released later */
2249 /* Initialize the chip
2250 * http://bcm-specs.sipsolutions.net/ChipInit
2252 static int b43_chip_init(struct b43_wldev *dev)
2254 struct b43_phy *phy = &dev->phy;
2256 u32 value32, macctl;
2259 /* Initialize the MAC control */
2260 macctl = B43_MACCTL_IHR_ENABLED | B43_MACCTL_SHM_ENABLED;
2262 macctl |= B43_MACCTL_GMODE;
2263 macctl |= B43_MACCTL_INFRA;
2264 b43_write32(dev, B43_MMIO_MACCTL, macctl);
2266 err = b43_request_firmware(dev);
2269 err = b43_upload_microcode(dev);
2271 goto out; /* firmware is released later */
2273 err = b43_gpio_init(dev);
2275 goto out; /* firmware is released later */
2277 err = b43_upload_initvals(dev);
2279 goto err_gpio_clean;
2280 b43_radio_turn_on(dev);
2282 b43_write16(dev, 0x03E6, 0x0000);
2283 err = b43_phy_init(dev);
2287 /* Select initial Interference Mitigation. */
2288 tmp = phy->interfmode;
2289 phy->interfmode = B43_INTERFMODE_NONE;
2290 b43_radio_set_interference_mitigation(dev, tmp);
2292 b43_set_rx_antenna(dev, B43_ANTENNA_DEFAULT);
2293 b43_mgmtframe_txantenna(dev, B43_ANTENNA_DEFAULT);
2295 if (phy->type == B43_PHYTYPE_B) {
2296 value16 = b43_read16(dev, 0x005E);
2298 b43_write16(dev, 0x005E, value16);
2300 b43_write32(dev, 0x0100, 0x01000000);
2301 if (dev->dev->id.revision < 5)
2302 b43_write32(dev, 0x010C, 0x01000000);
2304 b43_write32(dev, B43_MMIO_MACCTL, b43_read32(dev, B43_MMIO_MACCTL)
2305 & ~B43_MACCTL_INFRA);
2306 b43_write32(dev, B43_MMIO_MACCTL, b43_read32(dev, B43_MMIO_MACCTL)
2307 | B43_MACCTL_INFRA);
2309 /* Probe Response Timeout value */
2310 /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
2311 b43_shm_write16(dev, B43_SHM_SHARED, 0x0074, 0x0000);
2313 /* Initially set the wireless operation mode. */
2314 b43_adjust_opmode(dev);
2316 if (dev->dev->id.revision < 3) {
2317 b43_write16(dev, 0x060E, 0x0000);
2318 b43_write16(dev, 0x0610, 0x8000);
2319 b43_write16(dev, 0x0604, 0x0000);
2320 b43_write16(dev, 0x0606, 0x0200);
2322 b43_write32(dev, 0x0188, 0x80000000);
2323 b43_write32(dev, 0x018C, 0x02000000);
2325 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, 0x00004000);
2326 b43_write32(dev, B43_MMIO_DMA0_IRQ_MASK, 0x0001DC00);
2327 b43_write32(dev, B43_MMIO_DMA1_IRQ_MASK, 0x0000DC00);
2328 b43_write32(dev, B43_MMIO_DMA2_IRQ_MASK, 0x0000DC00);
2329 b43_write32(dev, B43_MMIO_DMA3_IRQ_MASK, 0x0001DC00);
2330 b43_write32(dev, B43_MMIO_DMA4_IRQ_MASK, 0x0000DC00);
2331 b43_write32(dev, B43_MMIO_DMA5_IRQ_MASK, 0x0000DC00);
2333 value32 = ssb_read32(dev->dev, SSB_TMSLOW);
2334 value32 |= 0x00100000;
2335 ssb_write32(dev->dev, SSB_TMSLOW, value32);
2337 b43_write16(dev, B43_MMIO_POWERUP_DELAY,
2338 dev->dev->bus->chipco.fast_pwrup_delay);
2341 b43dbg(dev->wl, "Chip initialized\n");
2346 b43_radio_turn_off(dev, 1);
2348 b43_gpio_cleanup(dev);
2352 static void b43_periodic_every120sec(struct b43_wldev *dev)
2354 struct b43_phy *phy = &dev->phy;
2356 if (phy->type != B43_PHYTYPE_G || phy->rev < 2)
2359 b43_mac_suspend(dev);
2360 b43_lo_g_measure(dev);
2361 b43_mac_enable(dev);
2362 if (b43_has_hardware_pctl(phy))
2363 b43_lo_g_ctl_mark_all_unused(dev);
2366 static void b43_periodic_every60sec(struct b43_wldev *dev)
2368 struct b43_phy *phy = &dev->phy;
2370 if (phy->type != B43_PHYTYPE_G)
2372 if (!b43_has_hardware_pctl(phy))
2373 b43_lo_g_ctl_mark_all_unused(dev);
2374 if (dev->dev->bus->sprom.boardflags_lo & B43_BFL_RSSI) {
2375 b43_mac_suspend(dev);
2376 b43_calc_nrssi_slope(dev);
2377 if ((phy->radio_ver == 0x2050) && (phy->radio_rev == 8)) {
2378 u8 old_chan = phy->channel;
2380 /* VCO Calibration */
2382 b43_radio_selectchannel(dev, 1, 0);
2384 b43_radio_selectchannel(dev, 13, 0);
2385 b43_radio_selectchannel(dev, old_chan, 0);
2387 b43_mac_enable(dev);
2391 static void b43_periodic_every30sec(struct b43_wldev *dev)
2393 /* Update device statistics. */
2394 b43_calculate_link_quality(dev);
2397 static void b43_periodic_every15sec(struct b43_wldev *dev)
2399 struct b43_phy *phy = &dev->phy;
2401 if (phy->type == B43_PHYTYPE_G) {
2402 //TODO: update_aci_moving_average
2403 if (phy->aci_enable && phy->aci_wlan_automatic) {
2404 b43_mac_suspend(dev);
2405 if (!phy->aci_enable && 1 /*TODO: not scanning? */ ) {
2406 if (0 /*TODO: bunch of conditions */ ) {
2407 b43_radio_set_interference_mitigation
2408 (dev, B43_INTERFMODE_MANUALWLAN);
2410 } else if (1 /*TODO*/) {
2412 if ((aci_average > 1000) && !(b43_radio_aci_scan(dev))) {
2413 b43_radio_set_interference_mitigation(dev,
2414 B43_INTERFMODE_NONE);
2418 b43_mac_enable(dev);
2419 } else if (phy->interfmode == B43_INTERFMODE_NONWLAN &&
2421 //TODO: implement rev1 workaround
2424 b43_phy_xmitpower(dev); //FIXME: unless scanning?
2425 //TODO for APHY (temperature?)
2427 atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT);
2431 static void do_periodic_work(struct b43_wldev *dev)
2435 state = dev->periodic_state;
2437 b43_periodic_every120sec(dev);
2439 b43_periodic_every60sec(dev);
2441 b43_periodic_every30sec(dev);
2442 b43_periodic_every15sec(dev);
2445 /* Periodic work locking policy:
2446 * The whole periodic work handler is protected by
2447 * wl->mutex. If another lock is needed somewhere in the
2448 * pwork callchain, it's aquired in-place, where it's needed.
2450 static void b43_periodic_work_handler(struct work_struct *work)
2452 struct b43_wldev *dev = container_of(work, struct b43_wldev,
2453 periodic_work.work);
2454 struct b43_wl *wl = dev->wl;
2455 unsigned long delay;
2457 mutex_lock(&wl->mutex);
2459 if (unlikely(b43_status(dev) != B43_STAT_STARTED))
2461 if (b43_debug(dev, B43_DBG_PWORK_STOP))
2464 do_periodic_work(dev);
2466 dev->periodic_state++;
2468 if (b43_debug(dev, B43_DBG_PWORK_FAST))
2469 delay = msecs_to_jiffies(50);
2471 delay = round_jiffies_relative(HZ * 15);
2472 queue_delayed_work(wl->hw->workqueue, &dev->periodic_work, delay);
2474 mutex_unlock(&wl->mutex);
2477 static void b43_periodic_tasks_setup(struct b43_wldev *dev)
2479 struct delayed_work *work = &dev->periodic_work;
2481 dev->periodic_state = 0;
2482 INIT_DELAYED_WORK(work, b43_periodic_work_handler);
2483 queue_delayed_work(dev->wl->hw->workqueue, work, 0);
2486 /* Check if communication with the device works correctly. */
2487 static int b43_validate_chipaccess(struct b43_wldev *dev)
2491 backup = b43_shm_read32(dev, B43_SHM_SHARED, 0);
2493 /* Check for read/write and endianness problems. */
2494 b43_shm_write32(dev, B43_SHM_SHARED, 0, 0x55AAAA55);
2495 if (b43_shm_read32(dev, B43_SHM_SHARED, 0) != 0x55AAAA55)
2497 b43_shm_write32(dev, B43_SHM_SHARED, 0, 0xAA5555AA);
2498 if (b43_shm_read32(dev, B43_SHM_SHARED, 0) != 0xAA5555AA)
2501 b43_shm_write32(dev, B43_SHM_SHARED, 0, backup);
2503 if ((dev->dev->id.revision >= 3) && (dev->dev->id.revision <= 10)) {
2504 /* The 32bit register shadows the two 16bit registers
2505 * with update sideeffects. Validate this. */
2506 b43_write16(dev, B43_MMIO_TSF_CFP_START, 0xAAAA);
2507 b43_write32(dev, B43_MMIO_TSF_CFP_START, 0xCCCCBBBB);
2508 if (b43_read16(dev, B43_MMIO_TSF_CFP_START_LOW) != 0xBBBB)
2510 if (b43_read16(dev, B43_MMIO_TSF_CFP_START_HIGH) != 0xCCCC)
2513 b43_write32(dev, B43_MMIO_TSF_CFP_START, 0);
2515 v = b43_read32(dev, B43_MMIO_MACCTL);
2516 v |= B43_MACCTL_GMODE;
2517 if (v != (B43_MACCTL_GMODE | B43_MACCTL_IHR_ENABLED))
2522 b43err(dev->wl, "Failed to validate the chipaccess\n");
2526 static void b43_security_init(struct b43_wldev *dev)
2528 dev->max_nr_keys = (dev->dev->id.revision >= 5) ? 58 : 20;
2529 B43_WARN_ON(dev->max_nr_keys > ARRAY_SIZE(dev->key));
2530 dev->ktp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_KTP);
2531 /* KTP is a word address, but we address SHM bytewise.
2532 * So multiply by two.
2535 if (dev->dev->id.revision >= 5) {
2536 /* Number of RCMTA address slots */
2537 b43_write16(dev, B43_MMIO_RCMTA_COUNT, dev->max_nr_keys - 8);
2539 b43_clear_keys(dev);
2542 static int b43_rng_read(struct hwrng *rng, u32 * data)
2544 struct b43_wl *wl = (struct b43_wl *)rng->priv;
2545 unsigned long flags;
2547 /* Don't take wl->mutex here, as it could deadlock with
2548 * hwrng internal locking. It's not needed to take
2549 * wl->mutex here, anyway. */
2551 spin_lock_irqsave(&wl->irq_lock, flags);
2552 *data = b43_read16(wl->current_dev, B43_MMIO_RNG);
2553 spin_unlock_irqrestore(&wl->irq_lock, flags);
2555 return (sizeof(u16));
2558 static void b43_rng_exit(struct b43_wl *wl, bool suspended)
2560 if (wl->rng_initialized)
2561 __hwrng_unregister(&wl->rng, suspended);
2564 static int b43_rng_init(struct b43_wl *wl)
2568 snprintf(wl->rng_name, ARRAY_SIZE(wl->rng_name),
2569 "%s_%s", KBUILD_MODNAME, wiphy_name(wl->hw->wiphy));
2570 wl->rng.name = wl->rng_name;
2571 wl->rng.data_read = b43_rng_read;
2572 wl->rng.priv = (unsigned long)wl;
2573 wl->rng_initialized = 1;
2574 err = hwrng_register(&wl->rng);
2576 wl->rng_initialized = 0;
2577 b43err(wl, "Failed to register the random "
2578 "number generator (%d)\n", err);
2584 static int b43_op_tx(struct ieee80211_hw *hw,
2585 struct sk_buff *skb,
2586 struct ieee80211_tx_control *ctl)
2588 struct b43_wl *wl = hw_to_b43_wl(hw);
2589 struct b43_wldev *dev = wl->current_dev;
2594 if (unlikely(b43_status(dev) < B43_STAT_STARTED))
2596 /* DMA-TX is done without a global lock. */
2597 err = b43_dma_tx(dev, skb, ctl);
2600 return NETDEV_TX_BUSY;
2601 return NETDEV_TX_OK;
2604 static int b43_op_conf_tx(struct ieee80211_hw *hw,
2606 const struct ieee80211_tx_queue_params *params)
2611 static int b43_op_get_tx_stats(struct ieee80211_hw *hw,
2612 struct ieee80211_tx_queue_stats *stats)
2614 struct b43_wl *wl = hw_to_b43_wl(hw);
2615 struct b43_wldev *dev = wl->current_dev;
2616 unsigned long flags;
2621 spin_lock_irqsave(&wl->irq_lock, flags);
2622 if (likely(b43_status(dev) >= B43_STAT_STARTED)) {
2623 b43_dma_get_tx_stats(dev, stats);
2626 spin_unlock_irqrestore(&wl->irq_lock, flags);
2631 static int b43_op_get_stats(struct ieee80211_hw *hw,
2632 struct ieee80211_low_level_stats *stats)
2634 struct b43_wl *wl = hw_to_b43_wl(hw);
2635 unsigned long flags;
2637 spin_lock_irqsave(&wl->irq_lock, flags);
2638 memcpy(stats, &wl->ieee_stats, sizeof(*stats));
2639 spin_unlock_irqrestore(&wl->irq_lock, flags);
2644 static const char *phymode_to_string(unsigned int phymode)
2659 static int find_wldev_for_phymode(struct b43_wl *wl,
2660 unsigned int phymode,
2661 struct b43_wldev **dev, bool * gmode)
2663 struct b43_wldev *d;
2665 list_for_each_entry(d, &wl->devlist, list) {
2666 if (d->phy.possible_phymodes & phymode) {
2667 /* Ok, this device supports the PHY-mode.
2668 * Now figure out how the gmode bit has to be
2669 * set to support it. */
2670 if (phymode == B43_PHYMODE_A)
2683 static void b43_put_phy_into_reset(struct b43_wldev *dev)
2685 struct ssb_device *sdev = dev->dev;
2688 tmslow = ssb_read32(sdev, SSB_TMSLOW);
2689 tmslow &= ~B43_TMSLOW_GMODE;
2690 tmslow |= B43_TMSLOW_PHYRESET;
2691 tmslow |= SSB_TMSLOW_FGC;
2692 ssb_write32(sdev, SSB_TMSLOW, tmslow);
2695 tmslow = ssb_read32(sdev, SSB_TMSLOW);
2696 tmslow &= ~SSB_TMSLOW_FGC;
2697 tmslow |= B43_TMSLOW_PHYRESET;
2698 ssb_write32(sdev, SSB_TMSLOW, tmslow);
2702 /* Expects wl->mutex locked */
2703 static int b43_switch_phymode(struct b43_wl *wl, unsigned int new_mode)
2705 struct b43_wldev *up_dev;
2706 struct b43_wldev *down_dev;
2711 err = find_wldev_for_phymode(wl, new_mode, &up_dev, &gmode);
2713 b43err(wl, "Could not find a device for %s-PHY mode\n",
2714 phymode_to_string(new_mode));
2717 if ((up_dev == wl->current_dev) &&
2718 (!!wl->current_dev->phy.gmode == !!gmode)) {
2719 /* This device is already running. */
2722 b43dbg(wl, "Reconfiguring PHYmode to %s-PHY\n",
2723 phymode_to_string(new_mode));
2724 down_dev = wl->current_dev;
2726 prev_status = b43_status(down_dev);
2727 /* Shutdown the currently running core. */
2728 if (prev_status >= B43_STAT_STARTED)
2729 b43_wireless_core_stop(down_dev);
2730 if (prev_status >= B43_STAT_INITIALIZED)
2731 b43_wireless_core_exit(down_dev);
2733 if (down_dev != up_dev) {
2734 /* We switch to a different core, so we put PHY into
2735 * RESET on the old core. */
2736 b43_put_phy_into_reset(down_dev);
2739 /* Now start the new core. */
2740 up_dev->phy.gmode = gmode;
2741 if (prev_status >= B43_STAT_INITIALIZED) {
2742 err = b43_wireless_core_init(up_dev);
2744 b43err(wl, "Fatal: Could not initialize device for "
2745 "newly selected %s-PHY mode\n",
2746 phymode_to_string(new_mode));
2750 if (prev_status >= B43_STAT_STARTED) {
2751 err = b43_wireless_core_start(up_dev);
2753 b43err(wl, "Fatal: Coult not start device for "
2754 "newly selected %s-PHY mode\n",
2755 phymode_to_string(new_mode));
2756 b43_wireless_core_exit(up_dev);
2760 B43_WARN_ON(b43_status(up_dev) != prev_status);
2762 wl->current_dev = up_dev;
2766 /* Whoops, failed to init the new core. No core is operating now. */
2767 wl->current_dev = NULL;
2771 /* Check if the use of the antenna that ieee80211 told us to
2772 * use is possible. This will fall back to DEFAULT.
2773 * "antenna_nr" is the antenna identifier we got from ieee80211. */
2774 u8 b43_ieee80211_antenna_sanitize(struct b43_wldev *dev,
2779 if (antenna_nr == 0) {
2780 /* Zero means "use default antenna". That's always OK. */
2784 /* Get the mask of available antennas. */
2786 antenna_mask = dev->dev->bus->sprom.ant_available_bg;
2788 antenna_mask = dev->dev->bus->sprom.ant_available_a;
2790 if (!(antenna_mask & (1 << (antenna_nr - 1)))) {
2791 /* This antenna is not available. Fall back to default. */
2798 static int b43_antenna_from_ieee80211(struct b43_wldev *dev, u8 antenna)
2800 antenna = b43_ieee80211_antenna_sanitize(dev, antenna);
2802 case 0: /* default/diversity */
2803 return B43_ANTENNA_DEFAULT;
2804 case 1: /* Antenna 0 */
2805 return B43_ANTENNA0;
2806 case 2: /* Antenna 1 */
2807 return B43_ANTENNA1;
2808 case 3: /* Antenna 2 */
2809 return B43_ANTENNA2;
2810 case 4: /* Antenna 3 */
2811 return B43_ANTENNA3;
2813 return B43_ANTENNA_DEFAULT;
2817 static int b43_op_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf)
2819 struct b43_wl *wl = hw_to_b43_wl(hw);
2820 struct b43_wldev *dev;
2821 struct b43_phy *phy;
2822 unsigned long flags;
2823 unsigned int new_phymode = 0xFFFF;
2828 mutex_lock(&wl->mutex);
2830 /* Switch the PHY mode (if necessary). */
2831 switch (conf->phymode) {
2832 case MODE_IEEE80211A:
2833 new_phymode = B43_PHYMODE_A;
2835 case MODE_IEEE80211B:
2836 new_phymode = B43_PHYMODE_B;
2838 case MODE_IEEE80211G:
2839 new_phymode = B43_PHYMODE_G;
2844 err = b43_switch_phymode(wl, new_phymode);
2846 goto out_unlock_mutex;
2847 dev = wl->current_dev;
2850 /* Disable IRQs while reconfiguring the device.
2851 * This makes it possible to drop the spinlock throughout
2852 * the reconfiguration process. */
2853 spin_lock_irqsave(&wl->irq_lock, flags);
2854 if (b43_status(dev) < B43_STAT_STARTED) {
2855 spin_unlock_irqrestore(&wl->irq_lock, flags);
2856 goto out_unlock_mutex;
2858 savedirqs = b43_interrupt_disable(dev, B43_IRQ_ALL);
2859 spin_unlock_irqrestore(&wl->irq_lock, flags);
2860 b43_synchronize_irq(dev);
2862 /* Switch to the requested channel.
2863 * The firmware takes care of races with the TX handler. */
2864 if (conf->channel_val != phy->channel)
2865 b43_radio_selectchannel(dev, conf->channel_val, 0);
2867 /* Enable/Disable ShortSlot timing. */
2868 if ((!!(conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME)) !=
2870 B43_WARN_ON(phy->type != B43_PHYTYPE_G);
2871 if (conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME)
2872 b43_short_slot_timing_enable(dev);
2874 b43_short_slot_timing_disable(dev);
2877 dev->wl->radiotap_enabled = !!(conf->flags & IEEE80211_CONF_RADIOTAP);
2879 /* Adjust the desired TX power level. */
2880 if (conf->power_level != 0) {
2881 if (conf->power_level != phy->power_level) {
2882 phy->power_level = conf->power_level;
2883 b43_phy_xmitpower(dev);
2887 /* Antennas for RX and management frame TX. */
2888 antenna = b43_antenna_from_ieee80211(dev, conf->antenna_sel_tx);
2889 b43_mgmtframe_txantenna(dev, antenna);
2890 antenna = b43_antenna_from_ieee80211(dev, conf->antenna_sel_rx);
2891 b43_set_rx_antenna(dev, antenna);
2893 /* Update templates for AP mode. */
2894 if (b43_is_mode(wl, IEEE80211_IF_TYPE_AP))
2895 b43_set_beacon_int(dev, conf->beacon_int);
2897 if (!!conf->radio_enabled != phy->radio_on) {
2898 if (conf->radio_enabled) {
2899 b43_radio_turn_on(dev);
2900 b43info(dev->wl, "Radio turned on by software\n");
2901 if (!dev->radio_hw_enable) {
2902 b43info(dev->wl, "The hardware RF-kill button "
2903 "still turns the radio physically off. "
2904 "Press the button to turn it on.\n");
2907 b43_radio_turn_off(dev, 0);
2908 b43info(dev->wl, "Radio turned off by software\n");
2912 spin_lock_irqsave(&wl->irq_lock, flags);
2913 b43_interrupt_enable(dev, savedirqs);
2915 spin_unlock_irqrestore(&wl->irq_lock, flags);
2917 mutex_unlock(&wl->mutex);
2922 static int b43_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
2923 const u8 *local_addr, const u8 *addr,
2924 struct ieee80211_key_conf *key)
2926 struct b43_wl *wl = hw_to_b43_wl(hw);
2927 struct b43_wldev *dev;
2928 unsigned long flags;
2932 DECLARE_MAC_BUF(mac);
2934 if (modparam_nohwcrypt)
2935 return -ENOSPC; /* User disabled HW-crypto */
2937 mutex_lock(&wl->mutex);
2938 spin_lock_irqsave(&wl->irq_lock, flags);
2940 dev = wl->current_dev;
2942 if (!dev || b43_status(dev) < B43_STAT_INITIALIZED)
2948 if (key->keylen == 5)
2949 algorithm = B43_SEC_ALGO_WEP40;
2951 algorithm = B43_SEC_ALGO_WEP104;
2954 algorithm = B43_SEC_ALGO_TKIP;
2957 algorithm = B43_SEC_ALGO_AES;
2963 index = (u8) (key->keyidx);
2969 if (algorithm == B43_SEC_ALGO_TKIP) {
2970 /* FIXME: No TKIP hardware encryption for now. */
2975 if (is_broadcast_ether_addr(addr)) {
2976 /* addr is FF:FF:FF:FF:FF:FF for default keys */
2977 err = b43_key_write(dev, index, algorithm,
2978 key->key, key->keylen, NULL, key);
2981 * either pairwise key or address is 00:00:00:00:00:00
2982 * for transmit-only keys
2984 err = b43_key_write(dev, -1, algorithm,
2985 key->key, key->keylen, addr, key);
2990 if (algorithm == B43_SEC_ALGO_WEP40 ||
2991 algorithm == B43_SEC_ALGO_WEP104) {
2992 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_USEDEFKEYS);
2995 b43_hf_read(dev) & ~B43_HF_USEDEFKEYS);
2997 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
3000 err = b43_key_clear(dev, key->hw_key_idx);
3009 spin_unlock_irqrestore(&wl->irq_lock, flags);
3010 mutex_unlock(&wl->mutex);
3012 b43dbg(wl, "%s hardware based encryption for keyidx: %d, "
3014 cmd == SET_KEY ? "Using" : "Disabling", key->keyidx,
3015 print_mac(mac, addr));
3020 static void b43_op_configure_filter(struct ieee80211_hw *hw,
3021 unsigned int changed, unsigned int *fflags,
3022 int mc_count, struct dev_addr_list *mc_list)
3024 struct b43_wl *wl = hw_to_b43_wl(hw);
3025 struct b43_wldev *dev = wl->current_dev;
3026 unsigned long flags;
3033 spin_lock_irqsave(&wl->irq_lock, flags);
3034 *fflags &= FIF_PROMISC_IN_BSS |
3040 FIF_BCN_PRBRESP_PROMISC;
3042 changed &= FIF_PROMISC_IN_BSS |
3048 FIF_BCN_PRBRESP_PROMISC;
3050 wl->filter_flags = *fflags;
3052 if (changed && b43_status(dev) >= B43_STAT_INITIALIZED)
3053 b43_adjust_opmode(dev);
3054 spin_unlock_irqrestore(&wl->irq_lock, flags);
3057 static int b43_op_config_interface(struct ieee80211_hw *hw,
3058 struct ieee80211_vif *vif,
3059 struct ieee80211_if_conf *conf)
3061 struct b43_wl *wl = hw_to_b43_wl(hw);
3062 struct b43_wldev *dev = wl->current_dev;
3063 unsigned long flags;
3067 mutex_lock(&wl->mutex);
3068 spin_lock_irqsave(&wl->irq_lock, flags);
3069 B43_WARN_ON(wl->vif != vif);
3071 memcpy(wl->bssid, conf->bssid, ETH_ALEN);
3073 memset(wl->bssid, 0, ETH_ALEN);
3074 if (b43_status(dev) >= B43_STAT_INITIALIZED) {
3075 if (b43_is_mode(wl, IEEE80211_IF_TYPE_AP)) {
3076 B43_WARN_ON(conf->type != IEEE80211_IF_TYPE_AP);
3077 b43_set_ssid(dev, conf->ssid, conf->ssid_len);
3079 b43_update_templates(wl, conf->beacon);
3081 b43_write_mac_bssid_templates(dev);
3083 spin_unlock_irqrestore(&wl->irq_lock, flags);
3084 mutex_unlock(&wl->mutex);
3089 /* Locking: wl->mutex */
3090 static void b43_wireless_core_stop(struct b43_wldev *dev)
3092 struct b43_wl *wl = dev->wl;
3093 unsigned long flags;
3095 if (b43_status(dev) < B43_STAT_STARTED)
3098 /* Disable and sync interrupts. We must do this before than
3099 * setting the status to INITIALIZED, as the interrupt handler
3100 * won't care about IRQs then. */
3101 spin_lock_irqsave(&wl->irq_lock, flags);
3102 dev->irq_savedstate = b43_interrupt_disable(dev, B43_IRQ_ALL);
3103 b43_read32(dev, B43_MMIO_GEN_IRQ_MASK); /* flush */
3104 spin_unlock_irqrestore(&wl->irq_lock, flags);
3105 b43_synchronize_irq(dev);
3107 b43_set_status(dev, B43_STAT_INITIALIZED);
3109 mutex_unlock(&wl->mutex);
3110 /* Must unlock as it would otherwise deadlock. No races here.
3111 * Cancel the possibly running self-rearming periodic work. */
3112 cancel_delayed_work_sync(&dev->periodic_work);
3113 mutex_lock(&wl->mutex);
3115 ieee80211_stop_queues(wl->hw); //FIXME this could cause a deadlock, as mac80211 seems buggy.
3117 b43_mac_suspend(dev);
3118 free_irq(dev->dev->irq, dev);
3119 b43dbg(wl, "Wireless interface stopped\n");
3122 /* Locking: wl->mutex */
3123 static int b43_wireless_core_start(struct b43_wldev *dev)
3127 B43_WARN_ON(b43_status(dev) != B43_STAT_INITIALIZED);
3129 drain_txstatus_queue(dev);
3130 err = request_irq(dev->dev->irq, b43_interrupt_handler,
3131 IRQF_SHARED, KBUILD_MODNAME, dev);
3133 b43err(dev->wl, "Cannot request IRQ-%d\n", dev->dev->irq);
3137 /* We are ready to run. */
3138 b43_set_status(dev, B43_STAT_STARTED);
3140 /* Start data flow (TX/RX). */
3141 b43_mac_enable(dev);
3142 b43_interrupt_enable(dev, dev->irq_savedstate);
3143 ieee80211_start_queues(dev->wl->hw);
3145 /* Start maintainance work */
3146 b43_periodic_tasks_setup(dev);
3148 b43dbg(dev->wl, "Wireless interface started\n");
3153 /* Get PHY and RADIO versioning numbers */
3154 static int b43_phy_versioning(struct b43_wldev *dev)
3156 struct b43_phy *phy = &dev->phy;
3164 int unsupported = 0;
3166 /* Get PHY versioning */
3167 tmp = b43_read16(dev, B43_MMIO_PHY_VER);
3168 analog_type = (tmp & B43_PHYVER_ANALOG) >> B43_PHYVER_ANALOG_SHIFT;
3169 phy_type = (tmp & B43_PHYVER_TYPE) >> B43_PHYVER_TYPE_SHIFT;
3170 phy_rev = (tmp & B43_PHYVER_VERSION);
3177 if (phy_rev != 2 && phy_rev != 4 && phy_rev != 6
3185 #ifdef CONFIG_B43_NPHY
3195 b43err(dev->wl, "FOUND UNSUPPORTED PHY "
3196 "(Analog %u, Type %u, Revision %u)\n",
3197 analog_type, phy_type, phy_rev);
3200 b43dbg(dev->wl, "Found PHY: Analog %u, Type %u, Revision %u\n",
3201 analog_type, phy_type, phy_rev);
3203 /* Get RADIO versioning */
3204 if (dev->dev->bus->chip_id == 0x4317) {
3205 if (dev->dev->bus->chip_rev == 0)
3207 else if (dev->dev->bus->chip_rev == 1)
3212 b43_write16(dev, B43_MMIO_RADIO_CONTROL, B43_RADIOCTL_ID);
3213 tmp = b43_read16(dev, B43_MMIO_RADIO_DATA_LOW);
3214 b43_write16(dev, B43_MMIO_RADIO_CONTROL, B43_RADIOCTL_ID);
3215 tmp |= (u32)b43_read16(dev, B43_MMIO_RADIO_DATA_HIGH) << 16;
3217 radio_manuf = (tmp & 0x00000FFF);
3218 radio_ver = (tmp & 0x0FFFF000) >> 12;
3219 radio_rev = (tmp & 0xF0000000) >> 28;
3220 if (radio_manuf != 0x17F /* Broadcom */)
3224 if (radio_ver != 0x2060)
3228 if (radio_manuf != 0x17F)
3232 if ((radio_ver & 0xFFF0) != 0x2050)
3236 if (radio_ver != 0x2050)
3240 if (radio_ver != 0x2055)
3247 b43err(dev->wl, "FOUND UNSUPPORTED RADIO "
3248 "(Manuf 0x%X, Version 0x%X, Revision %u)\n",
3249 radio_manuf, radio_ver, radio_rev);
3252 b43dbg(dev->wl, "Found Radio: Manuf 0x%X, Version 0x%X, Revision %u\n",
3253 radio_manuf, radio_ver, radio_rev);
3255 phy->radio_manuf = radio_manuf;
3256 phy->radio_ver = radio_ver;
3257 phy->radio_rev = radio_rev;
3259 phy->analog = analog_type;
3260 phy->type = phy_type;
3266 static void setup_struct_phy_for_init(struct b43_wldev *dev,
3267 struct b43_phy *phy)
3269 struct b43_txpower_lo_control *lo;
3272 memset(phy->minlowsig, 0xFF, sizeof(phy->minlowsig));
3273 memset(phy->minlowsigpos, 0, sizeof(phy->minlowsigpos));
3275 phy->aci_enable = 0;
3276 phy->aci_wlan_automatic = 0;
3277 phy->aci_hw_rssi = 0;
3279 phy->radio_off_context.valid = 0;
3281 lo = phy->lo_control;
3283 memset(lo, 0, sizeof(*(phy->lo_control)));
3287 phy->max_lb_gain = 0;
3288 phy->trsw_rx_gain = 0;
3289 phy->txpwr_offset = 0;
3292 phy->nrssislope = 0;
3293 for (i = 0; i < ARRAY_SIZE(phy->nrssi); i++)
3294 phy->nrssi[i] = -1000;
3295 for (i = 0; i < ARRAY_SIZE(phy->nrssi_lt); i++)
3296 phy->nrssi_lt[i] = i;
3298 phy->lofcal = 0xFFFF;
3299 phy->initval = 0xFFFF;
3301 phy->interfmode = B43_INTERFMODE_NONE;
3302 phy->channel = 0xFF;
3304 phy->hardware_power_control = !!modparam_hwpctl;
3306 /* PHY TX errors counter. */
3307 atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT);
3309 /* OFDM-table address caching. */
3310 phy->ofdmtab_addr_direction = B43_OFDMTAB_DIRECTION_UNKNOWN;
3313 static void setup_struct_wldev_for_init(struct b43_wldev *dev)
3317 /* Assume the radio is enabled. If it's not enabled, the state will
3318 * immediately get fixed on the first periodic work run. */
3319 dev->radio_hw_enable = 1;
3322 memset(&dev->stats, 0, sizeof(dev->stats));
3324 setup_struct_phy_for_init(dev, &dev->phy);
3326 /* IRQ related flags */
3327 dev->irq_reason = 0;
3328 memset(dev->dma_reason, 0, sizeof(dev->dma_reason));
3329 dev->irq_savedstate = B43_IRQ_MASKTEMPLATE;
3331 dev->mac_suspended = 1;
3333 /* Noise calculation context */
3334 memset(&dev->noisecalc, 0, sizeof(dev->noisecalc));
3337 static void b43_bluetooth_coext_enable(struct b43_wldev *dev)
3339 struct ssb_sprom *sprom = &dev->dev->bus->sprom;
3342 if (!(sprom->boardflags_lo & B43_BFL_BTCOEXIST))
3344 if (dev->phy.type != B43_PHYTYPE_B && !dev->phy.gmode)
3347 hf = b43_hf_read(dev);
3348 if (sprom->boardflags_lo & B43_BFL_BTCMOD)
3349 hf |= B43_HF_BTCOEXALT;
3351 hf |= B43_HF_BTCOEX;
3352 b43_hf_write(dev, hf);
3356 static void b43_bluetooth_coext_disable(struct b43_wldev *dev)
3360 static void b43_imcfglo_timeouts_workaround(struct b43_wldev *dev)
3362 #ifdef CONFIG_SSB_DRIVER_PCICORE
3363 struct ssb_bus *bus = dev->dev->bus;
3366 if (bus->pcicore.dev &&
3367 bus->pcicore.dev->id.coreid == SSB_DEV_PCI &&
3368 bus->pcicore.dev->id.revision <= 5) {
3369 /* IMCFGLO timeouts workaround. */
3370 tmp = ssb_read32(dev->dev, SSB_IMCFGLO);
3371 tmp &= ~SSB_IMCFGLO_REQTO;
3372 tmp &= ~SSB_IMCFGLO_SERTO;
3373 switch (bus->bustype) {
3374 case SSB_BUSTYPE_PCI:
3375 case SSB_BUSTYPE_PCMCIA:
3378 case SSB_BUSTYPE_SSB:
3382 ssb_write32(dev->dev, SSB_IMCFGLO, tmp);
3384 #endif /* CONFIG_SSB_DRIVER_PCICORE */
3387 /* Write the short and long frame retry limit values. */
3388 static void b43_set_retry_limits(struct b43_wldev *dev,
3389 unsigned int short_retry,
3390 unsigned int long_retry)
3392 /* The retry limit is a 4-bit counter. Enforce this to avoid overflowing
3393 * the chip-internal counter. */
3394 short_retry = min(short_retry, (unsigned int)0xF);
3395 long_retry = min(long_retry, (unsigned int)0xF);
3397 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_SRLIMIT,
3399 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_LRLIMIT,
3403 /* Shutdown a wireless core */
3404 /* Locking: wl->mutex */
3405 static void b43_wireless_core_exit(struct b43_wldev *dev)
3407 struct b43_phy *phy = &dev->phy;
3410 B43_WARN_ON(b43_status(dev) > B43_STAT_INITIALIZED);
3411 if (b43_status(dev) != B43_STAT_INITIALIZED)
3413 b43_set_status(dev, B43_STAT_UNINIT);
3415 /* Stop the microcode PSM. */
3416 macctl = b43_read32(dev, B43_MMIO_MACCTL);
3417 macctl &= ~B43_MACCTL_PSM_RUN;
3418 macctl |= B43_MACCTL_PSM_JMP0;
3419 b43_write32(dev, B43_MMIO_MACCTL, macctl);
3421 if (!dev->suspend_in_progress) {
3423 b43_rng_exit(dev->wl, false);
3427 b43_radio_turn_off(dev, 1);
3428 b43_switch_analog(dev, 0);
3429 if (phy->dyn_tssi_tbl)
3430 kfree(phy->tssi2dbm);
3431 kfree(phy->lo_control);
3432 phy->lo_control = NULL;
3433 if (dev->wl->current_beacon) {
3434 dev_kfree_skb_any(dev->wl->current_beacon);
3435 dev->wl->current_beacon = NULL;
3438 ssb_device_disable(dev->dev, 0);
3439 ssb_bus_may_powerdown(dev->dev->bus);
3442 /* Initialize a wireless core */
3443 static int b43_wireless_core_init(struct b43_wldev *dev)
3445 struct b43_wl *wl = dev->wl;
3446 struct ssb_bus *bus = dev->dev->bus;
3447 struct ssb_sprom *sprom = &bus->sprom;
3448 struct b43_phy *phy = &dev->phy;
3452 B43_WARN_ON(b43_status(dev) != B43_STAT_UNINIT);
3454 err = ssb_bus_powerup(bus, 0);
3457 if (!ssb_device_is_enabled(dev->dev)) {
3458 tmp = phy->gmode ? B43_TMSLOW_GMODE : 0;
3459 b43_wireless_core_reset(dev, tmp);
3462 if ((phy->type == B43_PHYTYPE_B) || (phy->type == B43_PHYTYPE_G)) {
3464 kzalloc(sizeof(*(phy->lo_control)), GFP_KERNEL);
3465 if (!phy->lo_control) {
3470 setup_struct_wldev_for_init(dev);
3472 err = b43_phy_init_tssi2dbm_table(dev);
3474 goto err_kfree_lo_control;
3476 /* Enable IRQ routing to this device. */
3477 ssb_pcicore_dev_irqvecs_enable(&bus->pcicore, dev->dev);
3479 b43_imcfglo_timeouts_workaround(dev);
3480 b43_bluetooth_coext_disable(dev);
3481 b43_phy_early_init(dev);
3482 err = b43_chip_init(dev);
3484 goto err_kfree_tssitbl;
3485 b43_shm_write16(dev, B43_SHM_SHARED,
3486 B43_SHM_SH_WLCOREREV, dev->dev->id.revision);
3487 hf = b43_hf_read(dev);
3488 if (phy->type == B43_PHYTYPE_G) {
3492 if (sprom->boardflags_lo & B43_BFL_PACTRL)
3493 hf |= B43_HF_OFDMPABOOST;
3494 } else if (phy->type == B43_PHYTYPE_B) {
3496 if (phy->rev >= 2 && phy->radio_ver == 0x2050)
3499 b43_hf_write(dev, hf);
3501 b43_set_retry_limits(dev, B43_DEFAULT_SHORT_RETRY_LIMIT,
3502 B43_DEFAULT_LONG_RETRY_LIMIT);
3503 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_SFFBLIM, 3);
3504 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_LFFBLIM, 2);
3506 /* Disable sending probe responses from firmware.
3507 * Setting the MaxTime to one usec will always trigger
3508 * a timeout, so we never send any probe resp.
3509 * A timeout of zero is infinite. */
3510 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRMAXTIME, 1);
3512 b43_rate_memory_init(dev);
3514 /* Minimum Contention Window */
3515 if (phy->type == B43_PHYTYPE_B) {
3516 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MINCONT, 0x1F);
3518 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MINCONT, 0xF);
3520 /* Maximum Contention Window */
3521 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MAXCONT, 0x3FF);
3523 err = b43_dma_init(dev);
3530 b43_write16(dev, 0x0612, 0x0050);
3531 b43_shm_write16(dev, B43_SHM_SHARED, 0x0416, 0x0050);
3532 b43_shm_write16(dev, B43_SHM_SHARED, 0x0414, 0x01F4);
3535 b43_bluetooth_coext_enable(dev);
3537 ssb_bus_powerup(bus, 1); /* Enable dynamic PCTL */
3538 b43_upload_card_macaddress(dev);
3539 b43_security_init(dev);
3540 if (!dev->suspend_in_progress)
3543 b43_set_status(dev, B43_STAT_INITIALIZED);
3545 if (!dev->suspend_in_progress)
3553 if (phy->dyn_tssi_tbl)
3554 kfree(phy->tssi2dbm);
3555 err_kfree_lo_control:
3556 kfree(phy->lo_control);
3557 phy->lo_control = NULL;
3559 ssb_bus_may_powerdown(bus);
3560 B43_WARN_ON(b43_status(dev) != B43_STAT_UNINIT);
3564 static int b43_op_add_interface(struct ieee80211_hw *hw,
3565 struct ieee80211_if_init_conf *conf)
3567 struct b43_wl *wl = hw_to_b43_wl(hw);
3568 struct b43_wldev *dev;
3569 unsigned long flags;
3570 int err = -EOPNOTSUPP;
3572 /* TODO: allow WDS/AP devices to coexist */
3574 if (conf->type != IEEE80211_IF_TYPE_AP &&
3575 conf->type != IEEE80211_IF_TYPE_STA &&
3576 conf->type != IEEE80211_IF_TYPE_WDS &&
3577 conf->type != IEEE80211_IF_TYPE_IBSS)
3580 mutex_lock(&wl->mutex);
3582 goto out_mutex_unlock;
3584 b43dbg(wl, "Adding Interface type %d\n", conf->type);
3586 dev = wl->current_dev;
3588 wl->vif = conf->vif;
3589 wl->if_type = conf->type;
3590 memcpy(wl->mac_addr, conf->mac_addr, ETH_ALEN);
3592 spin_lock_irqsave(&wl->irq_lock, flags);
3593 b43_adjust_opmode(dev);
3594 b43_upload_card_macaddress(dev);
3595 spin_unlock_irqrestore(&wl->irq_lock, flags);
3599 mutex_unlock(&wl->mutex);
3604 static void b43_op_remove_interface(struct ieee80211_hw *hw,
3605 struct ieee80211_if_init_conf *conf)
3607 struct b43_wl *wl = hw_to_b43_wl(hw);
3608 struct b43_wldev *dev = wl->current_dev;
3609 unsigned long flags;
3611 b43dbg(wl, "Removing Interface type %d\n", conf->type);
3613 mutex_lock(&wl->mutex);
3615 B43_WARN_ON(!wl->operating);
3616 B43_WARN_ON(wl->vif != conf->vif);
3621 spin_lock_irqsave(&wl->irq_lock, flags);
3622 b43_adjust_opmode(dev);
3623 memset(wl->mac_addr, 0, ETH_ALEN);
3624 b43_upload_card_macaddress(dev);
3625 spin_unlock_irqrestore(&wl->irq_lock, flags);
3627 mutex_unlock(&wl->mutex);
3630 static int b43_op_start(struct ieee80211_hw *hw)
3632 struct b43_wl *wl = hw_to_b43_wl(hw);
3633 struct b43_wldev *dev = wl->current_dev;
3636 bool do_rfkill_exit = 0;
3638 /* Kill all old instance specific information to make sure
3639 * the card won't use it in the short timeframe between start
3640 * and mac80211 reconfiguring it. */
3641 memset(wl->bssid, 0, ETH_ALEN);
3642 memset(wl->mac_addr, 0, ETH_ALEN);
3643 wl->filter_flags = 0;
3644 wl->radiotap_enabled = 0;
3646 /* First register RFkill.
3647 * LEDs that are registered later depend on it. */
3648 b43_rfkill_init(dev);
3650 mutex_lock(&wl->mutex);
3652 if (b43_status(dev) < B43_STAT_INITIALIZED) {
3653 err = b43_wireless_core_init(dev);
3656 goto out_mutex_unlock;
3661 if (b43_status(dev) < B43_STAT_STARTED) {
3662 err = b43_wireless_core_start(dev);
3665 b43_wireless_core_exit(dev);
3667 goto out_mutex_unlock;
3672 mutex_unlock(&wl->mutex);
3675 b43_rfkill_exit(dev);
3680 static void b43_op_stop(struct ieee80211_hw *hw)
3682 struct b43_wl *wl = hw_to_b43_wl(hw);
3683 struct b43_wldev *dev = wl->current_dev;
3685 b43_rfkill_exit(dev);
3687 mutex_lock(&wl->mutex);
3688 if (b43_status(dev) >= B43_STAT_STARTED)
3689 b43_wireless_core_stop(dev);
3690 b43_wireless_core_exit(dev);
3691 mutex_unlock(&wl->mutex);
3694 static int b43_op_set_retry_limit(struct ieee80211_hw *hw,
3695 u32 short_retry_limit, u32 long_retry_limit)
3697 struct b43_wl *wl = hw_to_b43_wl(hw);
3698 struct b43_wldev *dev;
3701 mutex_lock(&wl->mutex);
3702 dev = wl->current_dev;
3703 if (unlikely(!dev || (b43_status(dev) < B43_STAT_INITIALIZED))) {
3707 b43_set_retry_limits(dev, short_retry_limit, long_retry_limit);
3709 mutex_unlock(&wl->mutex);
3714 static int b43_op_beacon_set_tim(struct ieee80211_hw *hw, int aid, int set)
3716 struct b43_wl *wl = hw_to_b43_wl(hw);
3717 struct sk_buff *beacon;
3718 unsigned long flags;
3720 /* We could modify the existing beacon and set the aid bit in
3721 * the TIM field, but that would probably require resizing and
3722 * moving of data within the beacon template.
3723 * Simply request a new beacon and let mac80211 do the hard work. */
3724 beacon = ieee80211_beacon_get(hw, wl->vif, NULL);
3725 if (unlikely(!beacon))
3727 spin_lock_irqsave(&wl->irq_lock, flags);
3728 b43_update_templates(wl, beacon);
3729 spin_unlock_irqrestore(&wl->irq_lock, flags);
3734 static int b43_op_ibss_beacon_update(struct ieee80211_hw *hw,
3735 struct sk_buff *beacon,
3736 struct ieee80211_tx_control *ctl)
3738 struct b43_wl *wl = hw_to_b43_wl(hw);
3739 unsigned long flags;
3741 spin_lock_irqsave(&wl->irq_lock, flags);
3742 b43_update_templates(wl, beacon);
3743 spin_unlock_irqrestore(&wl->irq_lock, flags);
3748 static const struct ieee80211_ops b43_hw_ops = {
3750 .conf_tx = b43_op_conf_tx,
3751 .add_interface = b43_op_add_interface,
3752 .remove_interface = b43_op_remove_interface,
3753 .config = b43_op_config,
3754 .config_interface = b43_op_config_interface,
3755 .configure_filter = b43_op_configure_filter,
3756 .set_key = b43_op_set_key,
3757 .get_stats = b43_op_get_stats,
3758 .get_tx_stats = b43_op_get_tx_stats,
3759 .start = b43_op_start,
3760 .stop = b43_op_stop,
3761 .set_retry_limit = b43_op_set_retry_limit,
3762 .set_tim = b43_op_beacon_set_tim,
3763 .beacon_update = b43_op_ibss_beacon_update,
3766 /* Hard-reset the chip. Do not call this directly.
3767 * Use b43_controller_restart()
3769 static void b43_chip_reset(struct work_struct *work)
3771 struct b43_wldev *dev =
3772 container_of(work, struct b43_wldev, restart_work);
3773 struct b43_wl *wl = dev->wl;
3777 mutex_lock(&wl->mutex);
3779 prev_status = b43_status(dev);
3780 /* Bring the device down... */
3781 if (prev_status >= B43_STAT_STARTED)
3782 b43_wireless_core_stop(dev);
3783 if (prev_status >= B43_STAT_INITIALIZED)
3784 b43_wireless_core_exit(dev);
3786 /* ...and up again. */
3787 if (prev_status >= B43_STAT_INITIALIZED) {
3788 err = b43_wireless_core_init(dev);
3792 if (prev_status >= B43_STAT_STARTED) {
3793 err = b43_wireless_core_start(dev);
3795 b43_wireless_core_exit(dev);
3800 mutex_unlock(&wl->mutex);
3802 b43err(wl, "Controller restart FAILED\n");
3804 b43info(wl, "Controller restarted\n");
3807 static int b43_setup_modes(struct b43_wldev *dev,
3808 bool have_2ghz_phy, bool have_5ghz_phy)
3810 struct ieee80211_hw *hw = dev->wl->hw;
3811 struct ieee80211_hw_mode *mode;
3812 struct b43_phy *phy = &dev->phy;
3815 /* XXX: This function will go away soon, when mac80211
3816 * band stuff is rewritten. So this is just a hack.
3817 * For now we always claim GPHY mode, as there is no
3818 * support for NPHY and APHY in the device, yet.
3819 * This assumption is OK, as any B, N or A PHY will already
3820 * have died a horrible sanity check death earlier. */
3822 mode = &phy->hwmodes[0];
3823 mode->mode = MODE_IEEE80211G;
3824 mode->num_channels = b43_2ghz_chantable_size;
3825 mode->channels = b43_2ghz_chantable;
3826 mode->num_rates = b43_g_ratetable_size;
3827 mode->rates = b43_g_ratetable;
3828 err = ieee80211_register_hwmode(hw, mode);
3831 phy->possible_phymodes |= B43_PHYMODE_G;
3836 static void b43_wireless_core_detach(struct b43_wldev *dev)
3838 /* We release firmware that late to not be required to re-request
3839 * is all the time when we reinit the core. */
3840 b43_release_firmware(dev);
3843 static int b43_wireless_core_attach(struct b43_wldev *dev)
3845 struct b43_wl *wl = dev->wl;
3846 struct ssb_bus *bus = dev->dev->bus;
3847 struct pci_dev *pdev = bus->host_pci;
3849 bool have_2ghz_phy = 0, have_5ghz_phy = 0;
3852 /* Do NOT do any device initialization here.
3853 * Do it in wireless_core_init() instead.
3854 * This function is for gathering basic information about the HW, only.
3855 * Also some structs may be set up here. But most likely you want to have
3856 * that in core_init(), too.
3859 err = ssb_bus_powerup(bus, 0);
3861 b43err(wl, "Bus powerup failed\n");
3864 /* Get the PHY type. */
3865 if (dev->dev->id.revision >= 5) {
3868 tmshigh = ssb_read32(dev->dev, SSB_TMSHIGH);
3869 have_2ghz_phy = !!(tmshigh & B43_TMSHIGH_HAVE_2GHZ_PHY);
3870 have_5ghz_phy = !!(tmshigh & B43_TMSHIGH_HAVE_5GHZ_PHY);
3874 dev->phy.gmode = have_2ghz_phy;
3875 tmp = dev->phy.gmode ? B43_TMSLOW_GMODE : 0;
3876 b43_wireless_core_reset(dev, tmp);
3878 err = b43_phy_versioning(dev);
3881 /* Check if this device supports multiband. */
3883 (pdev->device != 0x4312 &&
3884 pdev->device != 0x4319 && pdev->device != 0x4324)) {
3885 /* No multiband support. */
3888 switch (dev->phy.type) {
3900 if (dev->phy.type == B43_PHYTYPE_A) {
3902 b43err(wl, "IEEE 802.11a devices are unsupported\n");
3906 dev->phy.gmode = have_2ghz_phy;
3907 tmp = dev->phy.gmode ? B43_TMSLOW_GMODE : 0;
3908 b43_wireless_core_reset(dev, tmp);
3910 err = b43_validate_chipaccess(dev);
3913 err = b43_setup_modes(dev, have_2ghz_phy, have_5ghz_phy);
3917 /* Now set some default "current_dev" */
3918 if (!wl->current_dev)
3919 wl->current_dev = dev;
3920 INIT_WORK(&dev->restart_work, b43_chip_reset);
3922 b43_radio_turn_off(dev, 1);
3923 b43_switch_analog(dev, 0);
3924 ssb_device_disable(dev->dev, 0);
3925 ssb_bus_may_powerdown(bus);
3931 ssb_bus_may_powerdown(bus);
3935 static void b43_one_core_detach(struct ssb_device *dev)
3937 struct b43_wldev *wldev;
3940 wldev = ssb_get_drvdata(dev);
3942 cancel_work_sync(&wldev->restart_work);
3943 b43_debugfs_remove_device(wldev);
3944 b43_wireless_core_detach(wldev);
3945 list_del(&wldev->list);
3947 ssb_set_drvdata(dev, NULL);
3951 static int b43_one_core_attach(struct ssb_device *dev, struct b43_wl *wl)
3953 struct b43_wldev *wldev;
3954 struct pci_dev *pdev;
3957 if (!list_empty(&wl->devlist)) {
3958 /* We are not the first core on this chip. */
3959 pdev = dev->bus->host_pci;
3960 /* Only special chips support more than one wireless
3961 * core, although some of the other chips have more than
3962 * one wireless core as well. Check for this and
3966 ((pdev->device != 0x4321) &&
3967 (pdev->device != 0x4313) && (pdev->device != 0x431A))) {
3968 b43dbg(wl, "Ignoring unconnected 802.11 core\n");
3973 wldev = kzalloc(sizeof(*wldev), GFP_KERNEL);
3979 b43_set_status(wldev, B43_STAT_UNINIT);
3980 wldev->bad_frames_preempt = modparam_bad_frames_preempt;
3981 tasklet_init(&wldev->isr_tasklet,
3982 (void (*)(unsigned long))b43_interrupt_tasklet,
3983 (unsigned long)wldev);
3984 INIT_LIST_HEAD(&wldev->list);
3986 err = b43_wireless_core_attach(wldev);
3988 goto err_kfree_wldev;
3990 list_add(&wldev->list, &wl->devlist);
3992 ssb_set_drvdata(dev, wldev);
3993 b43_debugfs_add_device(wldev);
4003 static void b43_sprom_fixup(struct ssb_bus *bus)
4005 /* boardflags workarounds */
4006 if (bus->boardinfo.vendor == SSB_BOARDVENDOR_DELL &&
4007 bus->chip_id == 0x4301 && bus->boardinfo.rev == 0x74)
4008 bus->sprom.boardflags_lo |= B43_BFL_BTCOEXIST;
4009 if (bus->boardinfo.vendor == PCI_VENDOR_ID_APPLE &&
4010 bus->boardinfo.type == 0x4E && bus->boardinfo.rev > 0x40)
4011 bus->sprom.boardflags_lo |= B43_BFL_PACTRL;
4014 static void b43_wireless_exit(struct ssb_device *dev, struct b43_wl *wl)
4016 struct ieee80211_hw *hw = wl->hw;
4018 ssb_set_devtypedata(dev, NULL);
4019 ieee80211_free_hw(hw);
4022 static int b43_wireless_init(struct ssb_device *dev)
4024 struct ssb_sprom *sprom = &dev->bus->sprom;
4025 struct ieee80211_hw *hw;
4029 b43_sprom_fixup(dev->bus);
4031 hw = ieee80211_alloc_hw(sizeof(*wl), &b43_hw_ops);
4033 b43err(NULL, "Could not allocate ieee80211 device\n");
4038 hw->flags = IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE |
4039 IEEE80211_HW_RX_INCLUDES_FCS;
4040 hw->max_signal = 100;
4041 hw->max_rssi = -110;
4042 hw->max_noise = -110;
4043 hw->queues = 1; /* FIXME: hardware has more queues */
4044 SET_IEEE80211_DEV(hw, dev->dev);
4045 if (is_valid_ether_addr(sprom->et1mac))
4046 SET_IEEE80211_PERM_ADDR(hw, sprom->et1mac);
4048 SET_IEEE80211_PERM_ADDR(hw, sprom->il0mac);
4050 /* Get and initialize struct b43_wl */
4051 wl = hw_to_b43_wl(hw);
4052 memset(wl, 0, sizeof(*wl));
4054 spin_lock_init(&wl->irq_lock);
4055 spin_lock_init(&wl->leds_lock);
4056 spin_lock_init(&wl->shm_lock);
4057 mutex_init(&wl->mutex);
4058 INIT_LIST_HEAD(&wl->devlist);
4060 ssb_set_devtypedata(dev, wl);
4061 b43info(wl, "Broadcom %04X WLAN found\n", dev->bus->chip_id);
4067 static int b43_probe(struct ssb_device *dev, const struct ssb_device_id *id)
4073 wl = ssb_get_devtypedata(dev);
4075 /* Probing the first core. Must setup common struct b43_wl */
4077 err = b43_wireless_init(dev);
4080 wl = ssb_get_devtypedata(dev);
4083 err = b43_one_core_attach(dev, wl);
4085 goto err_wireless_exit;
4088 err = ieee80211_register_hw(wl->hw);
4090 goto err_one_core_detach;
4096 err_one_core_detach:
4097 b43_one_core_detach(dev);
4100 b43_wireless_exit(dev, wl);
4104 static void b43_remove(struct ssb_device *dev)
4106 struct b43_wl *wl = ssb_get_devtypedata(dev);
4107 struct b43_wldev *wldev = ssb_get_drvdata(dev);
4110 if (wl->current_dev == wldev)
4111 ieee80211_unregister_hw(wl->hw);
4113 b43_one_core_detach(dev);
4115 if (list_empty(&wl->devlist)) {
4116 /* Last core on the chip unregistered.
4117 * We can destroy common struct b43_wl.
4119 b43_wireless_exit(dev, wl);
4123 /* Perform a hardware reset. This can be called from any context. */
4124 void b43_controller_restart(struct b43_wldev *dev, const char *reason)
4126 /* Must avoid requeueing, if we are in shutdown. */
4127 if (b43_status(dev) < B43_STAT_INITIALIZED)
4129 b43info(dev->wl, "Controller RESET (%s) ...\n", reason);
4130 queue_work(dev->wl->hw->workqueue, &dev->restart_work);
4135 static int b43_suspend(struct ssb_device *dev, pm_message_t state)
4137 struct b43_wldev *wldev = ssb_get_drvdata(dev);
4138 struct b43_wl *wl = wldev->wl;
4140 b43dbg(wl, "Suspending...\n");
4142 mutex_lock(&wl->mutex);
4143 wldev->suspend_in_progress = true;
4144 wldev->suspend_init_status = b43_status(wldev);
4145 if (wldev->suspend_init_status >= B43_STAT_STARTED)
4146 b43_wireless_core_stop(wldev);
4147 if (wldev->suspend_init_status >= B43_STAT_INITIALIZED)
4148 b43_wireless_core_exit(wldev);
4149 mutex_unlock(&wl->mutex);
4151 b43dbg(wl, "Device suspended.\n");
4156 static int b43_resume(struct ssb_device *dev)
4158 struct b43_wldev *wldev = ssb_get_drvdata(dev);
4159 struct b43_wl *wl = wldev->wl;
4162 b43dbg(wl, "Resuming...\n");
4164 mutex_lock(&wl->mutex);
4165 if (wldev->suspend_init_status >= B43_STAT_INITIALIZED) {
4166 err = b43_wireless_core_init(wldev);
4168 b43err(wl, "Resume failed at core init\n");
4172 if (wldev->suspend_init_status >= B43_STAT_STARTED) {
4173 err = b43_wireless_core_start(wldev);
4175 b43_leds_exit(wldev);
4176 b43_rng_exit(wldev->wl, true);
4177 b43_wireless_core_exit(wldev);
4178 b43err(wl, "Resume failed at core start\n");
4182 b43dbg(wl, "Device resumed.\n");
4184 wldev->suspend_in_progress = false;
4185 mutex_unlock(&wl->mutex);
4189 #else /* CONFIG_PM */
4190 # define b43_suspend NULL
4191 # define b43_resume NULL
4192 #endif /* CONFIG_PM */
4194 static struct ssb_driver b43_ssb_driver = {
4195 .name = KBUILD_MODNAME,
4196 .id_table = b43_ssb_tbl,
4198 .remove = b43_remove,
4199 .suspend = b43_suspend,
4200 .resume = b43_resume,
4203 static void b43_print_driverinfo(void)
4205 const char *feat_pci = "", *feat_pcmcia = "", *feat_nphy = "",
4206 *feat_leds = "", *feat_rfkill = "";
4208 #ifdef CONFIG_B43_PCI_AUTOSELECT
4211 #ifdef CONFIG_B43_PCMCIA
4214 #ifdef CONFIG_B43_NPHY
4217 #ifdef CONFIG_B43_LEDS
4220 #ifdef CONFIG_B43_RFKILL
4223 printk(KERN_INFO "Broadcom 43xx driver loaded "
4224 "[ Features: %s%s%s%s%s, Firmware-ID: "
4225 B43_SUPPORTED_FIRMWARE_ID " ]\n",
4226 feat_pci, feat_pcmcia, feat_nphy,
4227 feat_leds, feat_rfkill);
4230 static int __init b43_init(void)
4235 err = b43_pcmcia_init();
4238 err = ssb_driver_register(&b43_ssb_driver);
4240 goto err_pcmcia_exit;
4241 b43_print_driverinfo();
4252 static void __exit b43_exit(void)
4254 ssb_driver_unregister(&b43_ssb_driver);
4259 module_init(b43_init)
4260 module_exit(b43_exit)