1 // SPDX-License-Identifier: GPL-2.0-or-later
4 Broadcom B43 wireless driver
16 Some parts of the code in this file are derived from the ipw2200
17 driver Copyright(c) 2003 - 2004 Intel Corporation.
22 #include <linux/delay.h>
23 #include <linux/init.h>
24 #include <linux/module.h>
25 #include <linux/if_arp.h>
26 #include <linux/etherdevice.h>
27 #include <linux/firmware.h>
28 #include <linux/workqueue.h>
29 #include <linux/skbuff.h>
31 #include <linux/dma-mapping.h>
32 #include <linux/slab.h>
33 #include <linux/unaligned.h>
38 #include "phy_common.h"
47 #include <linux/mmc/sdio_func.h>
49 MODULE_DESCRIPTION("Broadcom B43 wireless driver");
50 MODULE_AUTHOR("Martin Langer");
51 MODULE_AUTHOR("Stefano Brivio");
52 MODULE_AUTHOR("Michael Buesch");
53 MODULE_AUTHOR("Gábor Stefanik");
54 MODULE_AUTHOR("Rafał Miłecki");
55 MODULE_LICENSE("GPL");
57 MODULE_FIRMWARE("b43/ucode11.fw");
58 MODULE_FIRMWARE("b43/ucode13.fw");
59 MODULE_FIRMWARE("b43/ucode14.fw");
60 MODULE_FIRMWARE("b43/ucode15.fw");
61 MODULE_FIRMWARE("b43/ucode16_lp.fw");
62 MODULE_FIRMWARE("b43/ucode16_mimo.fw");
63 MODULE_FIRMWARE("b43/ucode24_lcn.fw");
64 MODULE_FIRMWARE("b43/ucode25_lcn.fw");
65 MODULE_FIRMWARE("b43/ucode25_mimo.fw");
66 MODULE_FIRMWARE("b43/ucode26_mimo.fw");
67 MODULE_FIRMWARE("b43/ucode29_mimo.fw");
68 MODULE_FIRMWARE("b43/ucode33_lcn40.fw");
69 MODULE_FIRMWARE("b43/ucode30_mimo.fw");
70 MODULE_FIRMWARE("b43/ucode5.fw");
71 MODULE_FIRMWARE("b43/ucode40.fw");
72 MODULE_FIRMWARE("b43/ucode42.fw");
73 MODULE_FIRMWARE("b43/ucode9.fw");
75 static int modparam_bad_frames_preempt;
76 module_param_named(bad_frames_preempt, modparam_bad_frames_preempt, int, 0444);
77 MODULE_PARM_DESC(bad_frames_preempt,
78 "enable(1) / disable(0) Bad Frames Preemption");
80 static char modparam_fwpostfix[16];
81 module_param_string(fwpostfix, modparam_fwpostfix, 16, 0444);
82 MODULE_PARM_DESC(fwpostfix, "Postfix for the .fw files to load.");
84 static int modparam_hwpctl;
85 module_param_named(hwpctl, modparam_hwpctl, int, 0444);
86 MODULE_PARM_DESC(hwpctl, "Enable hardware-side power control (default off)");
88 static int modparam_nohwcrypt;
89 module_param_named(nohwcrypt, modparam_nohwcrypt, int, 0444);
90 MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
92 static int modparam_hwtkip;
93 module_param_named(hwtkip, modparam_hwtkip, int, 0444);
94 MODULE_PARM_DESC(hwtkip, "Enable hardware tkip.");
96 static int modparam_qos = 1;
97 module_param_named(qos, modparam_qos, int, 0444);
98 MODULE_PARM_DESC(qos, "Enable QOS support (default on)");
100 static int modparam_btcoex = 1;
101 module_param_named(btcoex, modparam_btcoex, int, 0444);
102 MODULE_PARM_DESC(btcoex, "Enable Bluetooth coexistence (default on)");
104 int b43_modparam_verbose = B43_VERBOSITY_DEFAULT;
105 module_param_named(verbose, b43_modparam_verbose, int, 0644);
106 MODULE_PARM_DESC(verbose, "Log message verbosity: 0=error, 1=warn, 2=info(default), 3=debug");
108 static int b43_modparam_pio;
109 module_param_named(pio, b43_modparam_pio, int, 0644);
110 MODULE_PARM_DESC(pio, "Use PIO accesses by default: 0=DMA, 1=PIO");
112 static int modparam_allhwsupport = !IS_ENABLED(CONFIG_BRCMSMAC);
113 module_param_named(allhwsupport, modparam_allhwsupport, int, 0444);
114 MODULE_PARM_DESC(allhwsupport, "Enable support for all hardware (even it if overlaps with the brcmsmac driver)");
116 #ifdef CONFIG_B43_BCMA
117 static const struct bcma_device_id b43_bcma_tbl[] = {
118 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x11, BCMA_ANY_CLASS),
119 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x15, BCMA_ANY_CLASS),
120 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x17, BCMA_ANY_CLASS),
121 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x18, BCMA_ANY_CLASS),
122 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x1C, BCMA_ANY_CLASS),
123 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x1D, BCMA_ANY_CLASS),
124 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x1E, BCMA_ANY_CLASS),
125 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x28, BCMA_ANY_CLASS),
126 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x2A, BCMA_ANY_CLASS),
129 MODULE_DEVICE_TABLE(bcma, b43_bcma_tbl);
132 #ifdef CONFIG_B43_SSB
133 static const struct ssb_device_id b43_ssb_tbl[] = {
134 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 5),
135 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 6),
136 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 7),
137 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 9),
138 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 10),
139 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 11),
140 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 12),
141 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 13),
142 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 15),
143 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 16),
146 MODULE_DEVICE_TABLE(ssb, b43_ssb_tbl);
149 /* Channel and ratetables are shared for all devices.
150 * They can't be const, because ieee80211 puts some precalculated
151 * data in there. This data is the same for all devices, so we don't
152 * get concurrency issues */
153 #define RATETAB_ENT(_rateid, _flags) \
155 .bitrate = B43_RATE_TO_BASE100KBPS(_rateid), \
156 .hw_value = (_rateid), \
161 * NOTE: When changing this, sync with xmit.c's
162 * b43_plcp_get_bitrate_idx_* functions!
164 static struct ieee80211_rate __b43_ratetable[] = {
165 RATETAB_ENT(B43_CCK_RATE_1MB, 0),
166 RATETAB_ENT(B43_CCK_RATE_2MB, IEEE80211_RATE_SHORT_PREAMBLE),
167 RATETAB_ENT(B43_CCK_RATE_5MB, IEEE80211_RATE_SHORT_PREAMBLE),
168 RATETAB_ENT(B43_CCK_RATE_11MB, IEEE80211_RATE_SHORT_PREAMBLE),
169 RATETAB_ENT(B43_OFDM_RATE_6MB, 0),
170 RATETAB_ENT(B43_OFDM_RATE_9MB, 0),
171 RATETAB_ENT(B43_OFDM_RATE_12MB, 0),
172 RATETAB_ENT(B43_OFDM_RATE_18MB, 0),
173 RATETAB_ENT(B43_OFDM_RATE_24MB, 0),
174 RATETAB_ENT(B43_OFDM_RATE_36MB, 0),
175 RATETAB_ENT(B43_OFDM_RATE_48MB, 0),
176 RATETAB_ENT(B43_OFDM_RATE_54MB, 0),
179 #define b43_a_ratetable (__b43_ratetable + 4)
180 #define b43_a_ratetable_size 8
181 #define b43_b_ratetable (__b43_ratetable + 0)
182 #define b43_b_ratetable_size 4
183 #define b43_g_ratetable (__b43_ratetable + 0)
184 #define b43_g_ratetable_size 12
186 #define CHAN2G(_channel, _freq, _flags) { \
187 .band = NL80211_BAND_2GHZ, \
188 .center_freq = (_freq), \
189 .hw_value = (_channel), \
191 .max_antenna_gain = 0, \
194 static struct ieee80211_channel b43_2ghz_chantable[] = {
211 /* No support for the last 3 channels (12, 13, 14) */
212 #define b43_2ghz_chantable_limited_size 11
215 #define CHAN4G(_channel, _flags) { \
216 .band = NL80211_BAND_5GHZ, \
217 .center_freq = 4000 + (5 * (_channel)), \
218 .hw_value = (_channel), \
220 .max_antenna_gain = 0, \
223 #define CHAN5G(_channel, _flags) { \
224 .band = NL80211_BAND_5GHZ, \
225 .center_freq = 5000 + (5 * (_channel)), \
226 .hw_value = (_channel), \
228 .max_antenna_gain = 0, \
231 static struct ieee80211_channel b43_5ghz_nphy_chantable[] = {
232 CHAN4G(184, 0), CHAN4G(186, 0),
233 CHAN4G(188, 0), CHAN4G(190, 0),
234 CHAN4G(192, 0), CHAN4G(194, 0),
235 CHAN4G(196, 0), CHAN4G(198, 0),
236 CHAN4G(200, 0), CHAN4G(202, 0),
237 CHAN4G(204, 0), CHAN4G(206, 0),
238 CHAN4G(208, 0), CHAN4G(210, 0),
239 CHAN4G(212, 0), CHAN4G(214, 0),
240 CHAN4G(216, 0), CHAN4G(218, 0),
241 CHAN4G(220, 0), CHAN4G(222, 0),
242 CHAN4G(224, 0), CHAN4G(226, 0),
244 CHAN5G(32, 0), CHAN5G(34, 0),
245 CHAN5G(36, 0), CHAN5G(38, 0),
246 CHAN5G(40, 0), CHAN5G(42, 0),
247 CHAN5G(44, 0), CHAN5G(46, 0),
248 CHAN5G(48, 0), CHAN5G(50, 0),
249 CHAN5G(52, 0), CHAN5G(54, 0),
250 CHAN5G(56, 0), CHAN5G(58, 0),
251 CHAN5G(60, 0), CHAN5G(62, 0),
252 CHAN5G(64, 0), CHAN5G(66, 0),
253 CHAN5G(68, 0), CHAN5G(70, 0),
254 CHAN5G(72, 0), CHAN5G(74, 0),
255 CHAN5G(76, 0), CHAN5G(78, 0),
256 CHAN5G(80, 0), CHAN5G(82, 0),
257 CHAN5G(84, 0), CHAN5G(86, 0),
258 CHAN5G(88, 0), CHAN5G(90, 0),
259 CHAN5G(92, 0), CHAN5G(94, 0),
260 CHAN5G(96, 0), CHAN5G(98, 0),
261 CHAN5G(100, 0), CHAN5G(102, 0),
262 CHAN5G(104, 0), CHAN5G(106, 0),
263 CHAN5G(108, 0), CHAN5G(110, 0),
264 CHAN5G(112, 0), CHAN5G(114, 0),
265 CHAN5G(116, 0), CHAN5G(118, 0),
266 CHAN5G(120, 0), CHAN5G(122, 0),
267 CHAN5G(124, 0), CHAN5G(126, 0),
268 CHAN5G(128, 0), CHAN5G(130, 0),
269 CHAN5G(132, 0), CHAN5G(134, 0),
270 CHAN5G(136, 0), CHAN5G(138, 0),
271 CHAN5G(140, 0), CHAN5G(142, 0),
272 CHAN5G(144, 0), CHAN5G(145, 0),
273 CHAN5G(146, 0), CHAN5G(147, 0),
274 CHAN5G(148, 0), CHAN5G(149, 0),
275 CHAN5G(150, 0), CHAN5G(151, 0),
276 CHAN5G(152, 0), CHAN5G(153, 0),
277 CHAN5G(154, 0), CHAN5G(155, 0),
278 CHAN5G(156, 0), CHAN5G(157, 0),
279 CHAN5G(158, 0), CHAN5G(159, 0),
280 CHAN5G(160, 0), CHAN5G(161, 0),
281 CHAN5G(162, 0), CHAN5G(163, 0),
282 CHAN5G(164, 0), CHAN5G(165, 0),
283 CHAN5G(166, 0), CHAN5G(168, 0),
284 CHAN5G(170, 0), CHAN5G(172, 0),
285 CHAN5G(174, 0), CHAN5G(176, 0),
286 CHAN5G(178, 0), CHAN5G(180, 0),
290 static struct ieee80211_channel b43_5ghz_nphy_chantable_limited[] = {
291 CHAN5G(36, 0), CHAN5G(40, 0),
292 CHAN5G(44, 0), CHAN5G(48, 0),
293 CHAN5G(149, 0), CHAN5G(153, 0),
294 CHAN5G(157, 0), CHAN5G(161, 0),
298 static struct ieee80211_channel b43_5ghz_aphy_chantable[] = {
299 CHAN5G(34, 0), CHAN5G(36, 0),
300 CHAN5G(38, 0), CHAN5G(40, 0),
301 CHAN5G(42, 0), CHAN5G(44, 0),
302 CHAN5G(46, 0), CHAN5G(48, 0),
303 CHAN5G(52, 0), CHAN5G(56, 0),
304 CHAN5G(60, 0), CHAN5G(64, 0),
305 CHAN5G(100, 0), CHAN5G(104, 0),
306 CHAN5G(108, 0), CHAN5G(112, 0),
307 CHAN5G(116, 0), CHAN5G(120, 0),
308 CHAN5G(124, 0), CHAN5G(128, 0),
309 CHAN5G(132, 0), CHAN5G(136, 0),
310 CHAN5G(140, 0), CHAN5G(149, 0),
311 CHAN5G(153, 0), CHAN5G(157, 0),
312 CHAN5G(161, 0), CHAN5G(165, 0),
313 CHAN5G(184, 0), CHAN5G(188, 0),
314 CHAN5G(192, 0), CHAN5G(196, 0),
315 CHAN5G(200, 0), CHAN5G(204, 0),
316 CHAN5G(208, 0), CHAN5G(212, 0),
322 static struct ieee80211_supported_band b43_band_5GHz_nphy = {
323 .band = NL80211_BAND_5GHZ,
324 .channels = b43_5ghz_nphy_chantable,
325 .n_channels = ARRAY_SIZE(b43_5ghz_nphy_chantable),
326 .bitrates = b43_a_ratetable,
327 .n_bitrates = b43_a_ratetable_size,
330 static struct ieee80211_supported_band b43_band_5GHz_nphy_limited = {
331 .band = NL80211_BAND_5GHZ,
332 .channels = b43_5ghz_nphy_chantable_limited,
333 .n_channels = ARRAY_SIZE(b43_5ghz_nphy_chantable_limited),
334 .bitrates = b43_a_ratetable,
335 .n_bitrates = b43_a_ratetable_size,
338 static struct ieee80211_supported_band b43_band_5GHz_aphy = {
339 .band = NL80211_BAND_5GHZ,
340 .channels = b43_5ghz_aphy_chantable,
341 .n_channels = ARRAY_SIZE(b43_5ghz_aphy_chantable),
342 .bitrates = b43_a_ratetable,
343 .n_bitrates = b43_a_ratetable_size,
346 static struct ieee80211_supported_band b43_band_2GHz = {
347 .band = NL80211_BAND_2GHZ,
348 .channels = b43_2ghz_chantable,
349 .n_channels = ARRAY_SIZE(b43_2ghz_chantable),
350 .bitrates = b43_g_ratetable,
351 .n_bitrates = b43_g_ratetable_size,
354 static struct ieee80211_supported_band b43_band_2ghz_limited = {
355 .band = NL80211_BAND_2GHZ,
356 .channels = b43_2ghz_chantable,
357 .n_channels = b43_2ghz_chantable_limited_size,
358 .bitrates = b43_g_ratetable,
359 .n_bitrates = b43_g_ratetable_size,
362 static void b43_wireless_core_exit(struct b43_wldev *dev);
363 static int b43_wireless_core_init(struct b43_wldev *dev);
364 static struct b43_wldev * b43_wireless_core_stop(struct b43_wldev *dev);
365 static int b43_wireless_core_start(struct b43_wldev *dev);
366 static void b43_op_bss_info_changed(struct ieee80211_hw *hw,
367 struct ieee80211_vif *vif,
368 struct ieee80211_bss_conf *conf,
371 static int b43_ratelimit(struct b43_wl *wl)
373 if (!wl || !wl->current_dev)
375 if (b43_status(wl->current_dev) < B43_STAT_STARTED)
377 /* We are up and running.
378 * Ratelimit the messages to avoid DoS over the net. */
379 return net_ratelimit();
382 void b43info(struct b43_wl *wl, const char *fmt, ...)
384 struct va_format vaf;
387 if (b43_modparam_verbose < B43_VERBOSITY_INFO)
389 if (!b43_ratelimit(wl))
397 printk(KERN_INFO "b43-%s: %pV",
398 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
403 void b43err(struct b43_wl *wl, const char *fmt, ...)
405 struct va_format vaf;
408 if (b43_modparam_verbose < B43_VERBOSITY_ERROR)
410 if (!b43_ratelimit(wl))
418 printk(KERN_ERR "b43-%s ERROR: %pV",
419 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
424 void b43warn(struct b43_wl *wl, const char *fmt, ...)
426 struct va_format vaf;
429 if (b43_modparam_verbose < B43_VERBOSITY_WARN)
431 if (!b43_ratelimit(wl))
439 printk(KERN_WARNING "b43-%s warning: %pV",
440 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
445 void b43dbg(struct b43_wl *wl, const char *fmt, ...)
447 struct va_format vaf;
450 if (b43_modparam_verbose < B43_VERBOSITY_DEBUG)
458 printk(KERN_DEBUG "b43-%s debug: %pV",
459 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
464 static void b43_ram_write(struct b43_wldev *dev, u16 offset, u32 val)
468 B43_WARN_ON(offset % 4 != 0);
470 macctl = b43_read32(dev, B43_MMIO_MACCTL);
471 if (macctl & B43_MACCTL_BE)
474 b43_write32(dev, B43_MMIO_RAM_CONTROL, offset);
475 b43_write32(dev, B43_MMIO_RAM_DATA, val);
478 static inline void b43_shm_control_word(struct b43_wldev *dev,
479 u16 routing, u16 offset)
483 /* "offset" is the WORD offset. */
487 b43_write32(dev, B43_MMIO_SHM_CONTROL, control);
490 u32 b43_shm_read32(struct b43_wldev *dev, u16 routing, u16 offset)
494 if (routing == B43_SHM_SHARED) {
495 B43_WARN_ON(offset & 0x0001);
496 if (offset & 0x0003) {
497 /* Unaligned access */
498 b43_shm_control_word(dev, routing, offset >> 2);
499 ret = b43_read16(dev, B43_MMIO_SHM_DATA_UNALIGNED);
500 b43_shm_control_word(dev, routing, (offset >> 2) + 1);
501 ret |= ((u32)b43_read16(dev, B43_MMIO_SHM_DATA)) << 16;
507 b43_shm_control_word(dev, routing, offset);
508 ret = b43_read32(dev, B43_MMIO_SHM_DATA);
513 u16 b43_shm_read16(struct b43_wldev *dev, u16 routing, u16 offset)
517 if (routing == B43_SHM_SHARED) {
518 B43_WARN_ON(offset & 0x0001);
519 if (offset & 0x0003) {
520 /* Unaligned access */
521 b43_shm_control_word(dev, routing, offset >> 2);
522 ret = b43_read16(dev, B43_MMIO_SHM_DATA_UNALIGNED);
528 b43_shm_control_word(dev, routing, offset);
529 ret = b43_read16(dev, B43_MMIO_SHM_DATA);
534 void b43_shm_write32(struct b43_wldev *dev, u16 routing, u16 offset, u32 value)
536 if (routing == B43_SHM_SHARED) {
537 B43_WARN_ON(offset & 0x0001);
538 if (offset & 0x0003) {
539 /* Unaligned access */
540 b43_shm_control_word(dev, routing, offset >> 2);
541 b43_write16(dev, B43_MMIO_SHM_DATA_UNALIGNED,
543 b43_shm_control_word(dev, routing, (offset >> 2) + 1);
544 b43_write16(dev, B43_MMIO_SHM_DATA,
545 (value >> 16) & 0xFFFF);
550 b43_shm_control_word(dev, routing, offset);
551 b43_write32(dev, B43_MMIO_SHM_DATA, value);
554 void b43_shm_write16(struct b43_wldev *dev, u16 routing, u16 offset, u16 value)
556 if (routing == B43_SHM_SHARED) {
557 B43_WARN_ON(offset & 0x0001);
558 if (offset & 0x0003) {
559 /* Unaligned access */
560 b43_shm_control_word(dev, routing, offset >> 2);
561 b43_write16(dev, B43_MMIO_SHM_DATA_UNALIGNED, value);
566 b43_shm_control_word(dev, routing, offset);
567 b43_write16(dev, B43_MMIO_SHM_DATA, value);
571 u64 b43_hf_read(struct b43_wldev *dev)
575 ret = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTF3);
577 ret |= b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTF2);
579 ret |= b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTF1);
584 /* Write HostFlags */
585 void b43_hf_write(struct b43_wldev *dev, u64 value)
589 lo = (value & 0x00000000FFFFULL);
590 mi = (value & 0x0000FFFF0000ULL) >> 16;
591 hi = (value & 0xFFFF00000000ULL) >> 32;
592 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTF1, lo);
593 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTF2, mi);
594 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTF3, hi);
597 /* Read the firmware capabilities bitmask (Opensource firmware only) */
598 static u16 b43_fwcapa_read(struct b43_wldev *dev)
600 B43_WARN_ON(!dev->fw.opensource);
601 return b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_FWCAPA);
604 void b43_tsf_read(struct b43_wldev *dev, u64 *tsf)
608 B43_WARN_ON(dev->dev->core_rev < 3);
610 /* The hardware guarantees us an atomic read, if we
611 * read the low register first. */
612 low = b43_read32(dev, B43_MMIO_REV3PLUS_TSF_LOW);
613 high = b43_read32(dev, B43_MMIO_REV3PLUS_TSF_HIGH);
620 static void b43_time_lock(struct b43_wldev *dev)
622 b43_maskset32(dev, B43_MMIO_MACCTL, ~0, B43_MACCTL_TBTTHOLD);
623 /* Commit the write */
624 b43_read32(dev, B43_MMIO_MACCTL);
627 static void b43_time_unlock(struct b43_wldev *dev)
629 b43_maskset32(dev, B43_MMIO_MACCTL, ~B43_MACCTL_TBTTHOLD, 0);
630 /* Commit the write */
631 b43_read32(dev, B43_MMIO_MACCTL);
634 static void b43_tsf_write_locked(struct b43_wldev *dev, u64 tsf)
638 B43_WARN_ON(dev->dev->core_rev < 3);
642 /* The hardware guarantees us an atomic write, if we
643 * write the low register first. */
644 b43_write32(dev, B43_MMIO_REV3PLUS_TSF_LOW, low);
645 b43_write32(dev, B43_MMIO_REV3PLUS_TSF_HIGH, high);
648 void b43_tsf_write(struct b43_wldev *dev, u64 tsf)
651 b43_tsf_write_locked(dev, tsf);
652 b43_time_unlock(dev);
656 void b43_macfilter_set(struct b43_wldev *dev, u16 offset, const u8 *mac)
658 static const u8 zero_addr[ETH_ALEN] = { 0 };
665 b43_write16(dev, B43_MMIO_MACFILTER_CONTROL, offset);
669 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
672 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
675 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
678 static void b43_write_mac_bssid_templates(struct b43_wldev *dev)
682 u8 mac_bssid[ETH_ALEN * 2];
686 bssid = dev->wl->bssid;
687 mac = dev->wl->mac_addr;
689 b43_macfilter_set(dev, B43_MACFILTER_BSSID, bssid);
691 memcpy(mac_bssid, mac, ETH_ALEN);
692 memcpy(mac_bssid + ETH_ALEN, bssid, ETH_ALEN);
694 /* Write our MAC address and BSSID to template ram */
695 for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32)) {
696 tmp = (u32) (mac_bssid[i + 0]);
697 tmp |= (u32) (mac_bssid[i + 1]) << 8;
698 tmp |= (u32) (mac_bssid[i + 2]) << 16;
699 tmp |= (u32) (mac_bssid[i + 3]) << 24;
700 b43_ram_write(dev, 0x20 + i, tmp);
704 static void b43_upload_card_macaddress(struct b43_wldev *dev)
706 b43_write_mac_bssid_templates(dev);
707 b43_macfilter_set(dev, B43_MACFILTER_SELF, dev->wl->mac_addr);
710 static void b43_set_slot_time(struct b43_wldev *dev, u16 slot_time)
712 /* slot_time is in usec. */
713 /* This test used to exit for all but a G PHY. */
714 if (b43_current_band(dev->wl) == NL80211_BAND_5GHZ)
716 b43_write16(dev, B43_MMIO_IFSSLOT, 510 + slot_time);
717 /* Shared memory location 0x0010 is the slot time and should be
718 * set to slot_time; however, this register is initially 0 and changing
719 * the value adversely affects the transmit rate for BCM4311
720 * devices. Until this behavior is unterstood, delete this step
722 * b43_shm_write16(dev, B43_SHM_SHARED, 0x0010, slot_time);
726 static void b43_short_slot_timing_enable(struct b43_wldev *dev)
728 b43_set_slot_time(dev, 9);
731 static void b43_short_slot_timing_disable(struct b43_wldev *dev)
733 b43_set_slot_time(dev, 20);
736 /* DummyTransmission function, as documented on
737 * https://bcm-v4.sipsolutions.net/802.11/DummyTransmission
739 void b43_dummy_transmission(struct b43_wldev *dev, bool ofdm, bool pa_on)
741 struct b43_phy *phy = &dev->phy;
742 unsigned int i, max_loop;
754 buffer[0] = 0x000201CC;
757 buffer[0] = 0x000B846E;
760 for (i = 0; i < 5; i++)
761 b43_ram_write(dev, i * 4, buffer[i]);
763 b43_write16(dev, B43_MMIO_XMTSEL, 0x0000);
765 if (dev->dev->core_rev < 11)
766 b43_write16(dev, B43_MMIO_WEPCTL, 0x0000);
768 b43_write16(dev, B43_MMIO_WEPCTL, 0x0100);
770 value = (ofdm ? 0x41 : 0x40);
771 b43_write16(dev, B43_MMIO_TXE0_PHYCTL, value);
772 if (phy->type == B43_PHYTYPE_N || phy->type == B43_PHYTYPE_LP ||
773 phy->type == B43_PHYTYPE_LCN)
774 b43_write16(dev, B43_MMIO_TXE0_PHYCTL1, 0x1A02);
776 b43_write16(dev, B43_MMIO_TXE0_WM_0, 0x0000);
777 b43_write16(dev, B43_MMIO_TXE0_WM_1, 0x0000);
779 b43_write16(dev, B43_MMIO_XMTTPLATETXPTR, 0x0000);
780 b43_write16(dev, B43_MMIO_XMTTXCNT, 0x0014);
781 b43_write16(dev, B43_MMIO_XMTSEL, 0x0826);
782 b43_write16(dev, B43_MMIO_TXE0_CTL, 0x0000);
784 if (!pa_on && phy->type == B43_PHYTYPE_N) {
785 ; /*b43_nphy_pa_override(dev, false) */
790 case B43_PHYTYPE_LCN:
791 b43_write16(dev, B43_MMIO_TXE0_AUX, 0x00D0);
794 b43_write16(dev, B43_MMIO_TXE0_AUX, 0x0050);
797 b43_write16(dev, B43_MMIO_TXE0_AUX, 0x0030);
799 b43_read16(dev, B43_MMIO_TXE0_AUX);
801 if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
802 b43_radio_write16(dev, 0x0051, 0x0017);
803 for (i = 0x00; i < max_loop; i++) {
804 value = b43_read16(dev, B43_MMIO_TXE0_STATUS);
809 for (i = 0x00; i < 0x0A; i++) {
810 value = b43_read16(dev, B43_MMIO_TXE0_STATUS);
815 for (i = 0x00; i < 0x19; i++) {
816 value = b43_read16(dev, B43_MMIO_IFSSTAT);
817 if (!(value & 0x0100))
821 if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
822 b43_radio_write16(dev, 0x0051, 0x0037);
825 static void key_write(struct b43_wldev *dev,
826 u8 index, u8 algorithm, const u8 *key)
833 /* Key index/algo block */
834 kidx = b43_kidx_to_fw(dev, index);
835 value = ((kidx << 4) | algorithm);
836 b43_shm_write16(dev, B43_SHM_SHARED,
837 B43_SHM_SH_KEYIDXBLOCK + (kidx * 2), value);
839 /* Write the key to the Key Table Pointer offset */
840 offset = dev->ktp + (index * B43_SEC_KEYSIZE);
841 for (i = 0; i < B43_SEC_KEYSIZE; i += 2) {
843 value |= (u16) (key[i + 1]) << 8;
844 b43_shm_write16(dev, B43_SHM_SHARED, offset + i, value);
848 static void keymac_write(struct b43_wldev *dev, u8 index, const u8 *addr)
850 u32 addrtmp[2] = { 0, 0, };
851 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
853 if (b43_new_kidx_api(dev))
854 pairwise_keys_start = B43_NR_GROUP_KEYS;
856 B43_WARN_ON(index < pairwise_keys_start);
857 /* We have four default TX keys and possibly four default RX keys.
858 * Physical mac 0 is mapped to physical key 4 or 8, depending
859 * on the firmware version.
860 * So we must adjust the index here.
862 index -= pairwise_keys_start;
863 B43_WARN_ON(index >= B43_NR_PAIRWISE_KEYS);
866 addrtmp[0] = addr[0];
867 addrtmp[0] |= ((u32) (addr[1]) << 8);
868 addrtmp[0] |= ((u32) (addr[2]) << 16);
869 addrtmp[0] |= ((u32) (addr[3]) << 24);
870 addrtmp[1] = addr[4];
871 addrtmp[1] |= ((u32) (addr[5]) << 8);
874 /* Receive match transmitter address (RCMTA) mechanism */
875 b43_shm_write32(dev, B43_SHM_RCMTA,
876 (index * 2) + 0, addrtmp[0]);
877 b43_shm_write16(dev, B43_SHM_RCMTA,
878 (index * 2) + 1, addrtmp[1]);
881 /* The ucode will use phase1 key with TEK key to decrypt rx packets.
882 * When a packet is received, the iv32 is checked.
883 * - if it doesn't the packet is returned without modification (and software
884 * decryption can be done). That's what happen when iv16 wrap.
885 * - if it does, the rc4 key is computed, and decryption is tried.
886 * Either it will success and B43_RX_MAC_DEC is returned,
887 * either it fails and B43_RX_MAC_DEC|B43_RX_MAC_DECERR is returned
888 * and the packet is not usable (it got modified by the ucode).
889 * So in order to never have B43_RX_MAC_DECERR, we should provide
890 * a iv32 and phase1key that match. Because we drop packets in case of
891 * B43_RX_MAC_DECERR, if we have a correct iv32 but a wrong phase1key, all
892 * packets will be lost without higher layer knowing (ie no resync possible
895 * NOTE : this should support 50 key like RCMTA because
896 * (B43_SHM_SH_KEYIDXBLOCK - B43_SHM_SH_TKIPTSCTTAK)/14 = 50
898 static void rx_tkip_phase1_write(struct b43_wldev *dev, u8 index, u32 iv32,
903 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
905 if (!modparam_hwtkip)
908 if (b43_new_kidx_api(dev))
909 pairwise_keys_start = B43_NR_GROUP_KEYS;
911 B43_WARN_ON(index < pairwise_keys_start);
912 /* We have four default TX keys and possibly four default RX keys.
913 * Physical mac 0 is mapped to physical key 4 or 8, depending
914 * on the firmware version.
915 * So we must adjust the index here.
917 index -= pairwise_keys_start;
918 B43_WARN_ON(index >= B43_NR_PAIRWISE_KEYS);
920 if (b43_debug(dev, B43_DBG_KEYS)) {
921 b43dbg(dev->wl, "rx_tkip_phase1_write : idx 0x%x, iv32 0x%x\n",
924 /* Write the key to the RX tkip shared mem */
925 offset = B43_SHM_SH_TKIPTSCTTAK + index * (10 + 4);
926 for (i = 0; i < 10; i += 2) {
927 b43_shm_write16(dev, B43_SHM_SHARED, offset + i,
928 phase1key ? phase1key[i / 2] : 0);
930 b43_shm_write16(dev, B43_SHM_SHARED, offset + i, iv32);
931 b43_shm_write16(dev, B43_SHM_SHARED, offset + i + 2, iv32 >> 16);
934 static void b43_op_update_tkip_key(struct ieee80211_hw *hw,
935 struct ieee80211_vif *vif,
936 struct ieee80211_key_conf *keyconf,
937 struct ieee80211_sta *sta,
938 u32 iv32, u16 *phase1key)
940 struct b43_wl *wl = hw_to_b43_wl(hw);
941 struct b43_wldev *dev;
942 int index = keyconf->hw_key_idx;
944 if (B43_WARN_ON(!modparam_hwtkip))
947 /* This is only called from the RX path through mac80211, where
948 * our mutex is already locked. */
949 B43_WARN_ON(!mutex_is_locked(&wl->mutex));
950 dev = wl->current_dev;
951 B43_WARN_ON(!dev || b43_status(dev) < B43_STAT_INITIALIZED);
953 keymac_write(dev, index, NULL); /* First zero out mac to avoid race */
955 rx_tkip_phase1_write(dev, index, iv32, phase1key);
956 /* only pairwise TKIP keys are supported right now */
959 keymac_write(dev, index, sta->addr);
962 static void do_key_write(struct b43_wldev *dev,
963 u8 index, u8 algorithm,
964 const u8 *key, size_t key_len, const u8 *mac_addr)
966 u8 buf[B43_SEC_KEYSIZE] = { 0, };
967 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
969 if (b43_new_kidx_api(dev))
970 pairwise_keys_start = B43_NR_GROUP_KEYS;
972 B43_WARN_ON(index >= ARRAY_SIZE(dev->key));
973 B43_WARN_ON(key_len > B43_SEC_KEYSIZE);
975 if (index >= pairwise_keys_start)
976 keymac_write(dev, index, NULL); /* First zero out mac. */
977 if (algorithm == B43_SEC_ALGO_TKIP) {
979 * We should provide an initial iv32, phase1key pair.
980 * We could start with iv32=0 and compute the corresponding
981 * phase1key, but this means calling ieee80211_get_tkip_key
982 * with a fake skb (or export other tkip function).
983 * Because we are lazy we hope iv32 won't start with
984 * 0xffffffff and let's b43_op_update_tkip_key provide a
987 rx_tkip_phase1_write(dev, index, 0xffffffff, (u16*)buf);
988 } else if (index >= pairwise_keys_start) /* clear it */
989 rx_tkip_phase1_write(dev, index, 0, NULL);
991 memcpy(buf, key, key_len);
992 key_write(dev, index, algorithm, buf);
993 if (index >= pairwise_keys_start)
994 keymac_write(dev, index, mac_addr);
996 dev->key[index].algorithm = algorithm;
999 static int b43_key_write(struct b43_wldev *dev,
1000 int index, u8 algorithm,
1001 const u8 *key, size_t key_len,
1003 struct ieee80211_key_conf *keyconf)
1006 int pairwise_keys_start;
1008 /* For ALG_TKIP the key is encoded as a 256-bit (32 byte) data block:
1009 * - Temporal Encryption Key (128 bits)
1010 * - Temporal Authenticator Tx MIC Key (64 bits)
1011 * - Temporal Authenticator Rx MIC Key (64 bits)
1013 * Hardware only store TEK
1015 if (algorithm == B43_SEC_ALGO_TKIP && key_len == 32)
1017 if (key_len > B43_SEC_KEYSIZE)
1019 for (i = 0; i < ARRAY_SIZE(dev->key); i++) {
1020 /* Check that we don't already have this key. */
1021 B43_WARN_ON(dev->key[i].keyconf == keyconf);
1024 /* Pairwise key. Get an empty slot for the key. */
1025 if (b43_new_kidx_api(dev))
1026 pairwise_keys_start = B43_NR_GROUP_KEYS;
1028 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
1029 for (i = pairwise_keys_start;
1030 i < pairwise_keys_start + B43_NR_PAIRWISE_KEYS;
1032 B43_WARN_ON(i >= ARRAY_SIZE(dev->key));
1033 if (!dev->key[i].keyconf) {
1040 b43warn(dev->wl, "Out of hardware key memory\n");
1044 B43_WARN_ON(index > 3);
1046 do_key_write(dev, index, algorithm, key, key_len, mac_addr);
1047 if ((index <= 3) && !b43_new_kidx_api(dev)) {
1048 /* Default RX key */
1049 B43_WARN_ON(mac_addr);
1050 do_key_write(dev, index + 4, algorithm, key, key_len, NULL);
1052 keyconf->hw_key_idx = index;
1053 dev->key[index].keyconf = keyconf;
1058 static int b43_key_clear(struct b43_wldev *dev, int index)
1060 if (B43_WARN_ON((index < 0) || (index >= ARRAY_SIZE(dev->key))))
1062 do_key_write(dev, index, B43_SEC_ALGO_NONE,
1063 NULL, B43_SEC_KEYSIZE, NULL);
1064 if ((index <= 3) && !b43_new_kidx_api(dev)) {
1065 do_key_write(dev, index + 4, B43_SEC_ALGO_NONE,
1066 NULL, B43_SEC_KEYSIZE, NULL);
1068 dev->key[index].keyconf = NULL;
1073 static void b43_clear_keys(struct b43_wldev *dev)
1077 if (b43_new_kidx_api(dev))
1078 count = B43_NR_GROUP_KEYS + B43_NR_PAIRWISE_KEYS;
1080 count = B43_NR_GROUP_KEYS * 2 + B43_NR_PAIRWISE_KEYS;
1081 for (i = 0; i < count; i++)
1082 b43_key_clear(dev, i);
1085 static void b43_dump_keymemory(struct b43_wldev *dev)
1087 unsigned int i, index, count, offset, pairwise_keys_start;
1093 struct b43_key *key;
1095 if (!b43_debug(dev, B43_DBG_KEYS))
1098 hf = b43_hf_read(dev);
1099 b43dbg(dev->wl, "Hardware key memory dump: USEDEFKEYS=%u\n",
1100 !!(hf & B43_HF_USEDEFKEYS));
1101 if (b43_new_kidx_api(dev)) {
1102 pairwise_keys_start = B43_NR_GROUP_KEYS;
1103 count = B43_NR_GROUP_KEYS + B43_NR_PAIRWISE_KEYS;
1105 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
1106 count = B43_NR_GROUP_KEYS * 2 + B43_NR_PAIRWISE_KEYS;
1108 for (index = 0; index < count; index++) {
1109 key = &(dev->key[index]);
1110 printk(KERN_DEBUG "Key slot %02u: %s",
1111 index, (key->keyconf == NULL) ? " " : "*");
1112 offset = dev->ktp + (index * B43_SEC_KEYSIZE);
1113 for (i = 0; i < B43_SEC_KEYSIZE; i += 2) {
1114 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, offset + i);
1115 printk("%02X%02X", (tmp & 0xFF), ((tmp >> 8) & 0xFF));
1118 algo = b43_shm_read16(dev, B43_SHM_SHARED,
1119 B43_SHM_SH_KEYIDXBLOCK + (index * 2));
1120 printk(" Algo: %04X/%02X", algo, key->algorithm);
1122 if (index >= pairwise_keys_start) {
1123 if (key->algorithm == B43_SEC_ALGO_TKIP) {
1125 offset = B43_SHM_SH_TKIPTSCTTAK + (index - 4) * (10 + 4);
1126 for (i = 0; i < 14; i += 2) {
1127 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, offset + i);
1128 printk("%02X%02X", (tmp & 0xFF), ((tmp >> 8) & 0xFF));
1131 rcmta0 = b43_shm_read32(dev, B43_SHM_RCMTA,
1132 ((index - pairwise_keys_start) * 2) + 0);
1133 rcmta1 = b43_shm_read16(dev, B43_SHM_RCMTA,
1134 ((index - pairwise_keys_start) * 2) + 1);
1135 *((__le32 *)(&mac[0])) = cpu_to_le32(rcmta0);
1136 *((__le16 *)(&mac[4])) = cpu_to_le16(rcmta1);
1137 printk(" MAC: %pM", mac);
1139 printk(" DEFAULT KEY");
1144 void b43_power_saving_ctl_bits(struct b43_wldev *dev, unsigned int ps_flags)
1152 B43_WARN_ON((ps_flags & B43_PS_ENABLED) &&
1153 (ps_flags & B43_PS_DISABLED));
1154 B43_WARN_ON((ps_flags & B43_PS_AWAKE) && (ps_flags & B43_PS_ASLEEP));
1156 if (ps_flags & B43_PS_ENABLED) {
1158 } else if (ps_flags & B43_PS_DISABLED) {
1161 //TODO: If powersave is not off and FIXME is not set and we are not in adhoc
1162 // and thus is not an AP and we are associated, set bit 25
1164 if (ps_flags & B43_PS_AWAKE) {
1166 } else if (ps_flags & B43_PS_ASLEEP) {
1169 //TODO: If the device is awake or this is an AP, or we are scanning, or FIXME,
1170 // or we are associated, or FIXME, or the latest PS-Poll packet sent was
1171 // successful, set bit26
1174 /* FIXME: For now we force awake-on and hwps-off */
1178 macctl = b43_read32(dev, B43_MMIO_MACCTL);
1180 macctl |= B43_MACCTL_HWPS;
1182 macctl &= ~B43_MACCTL_HWPS;
1184 macctl |= B43_MACCTL_AWAKE;
1186 macctl &= ~B43_MACCTL_AWAKE;
1187 b43_write32(dev, B43_MMIO_MACCTL, macctl);
1189 b43_read32(dev, B43_MMIO_MACCTL);
1190 if (awake && dev->dev->core_rev >= 5) {
1191 /* Wait for the microcode to wake up. */
1192 for (i = 0; i < 100; i++) {
1193 ucstat = b43_shm_read16(dev, B43_SHM_SHARED,
1194 B43_SHM_SH_UCODESTAT);
1195 if (ucstat != B43_SHM_SH_UCODESTAT_SLEEP)
1202 /* https://bcm-v4.sipsolutions.net/802.11/PHY/BmacCorePllReset */
1203 void b43_wireless_core_phy_pll_reset(struct b43_wldev *dev)
1205 struct bcma_drv_cc *bcma_cc __maybe_unused;
1206 struct ssb_chipcommon *ssb_cc __maybe_unused;
1208 switch (dev->dev->bus_type) {
1209 #ifdef CONFIG_B43_BCMA
1211 bcma_cc = &dev->dev->bdev->bus->drv_cc;
1213 bcma_cc_write32(bcma_cc, BCMA_CC_PMU_CHIPCTL_ADDR, 0);
1214 bcma_cc_mask32(bcma_cc, BCMA_CC_PMU_CHIPCTL_DATA, ~0x4);
1215 bcma_cc_set32(bcma_cc, BCMA_CC_PMU_CHIPCTL_DATA, 0x4);
1216 bcma_cc_mask32(bcma_cc, BCMA_CC_PMU_CHIPCTL_DATA, ~0x4);
1219 #ifdef CONFIG_B43_SSB
1221 ssb_cc = &dev->dev->sdev->bus->chipco;
1223 chipco_write32(ssb_cc, SSB_CHIPCO_CHIPCTL_ADDR, 0);
1224 chipco_mask32(ssb_cc, SSB_CHIPCO_CHIPCTL_DATA, ~0x4);
1225 chipco_set32(ssb_cc, SSB_CHIPCO_CHIPCTL_DATA, 0x4);
1226 chipco_mask32(ssb_cc, SSB_CHIPCO_CHIPCTL_DATA, ~0x4);
1232 #ifdef CONFIG_B43_BCMA
1233 static void b43_bcma_phy_reset(struct b43_wldev *dev)
1237 /* Put PHY into reset */
1238 flags = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
1239 flags |= B43_BCMA_IOCTL_PHY_RESET;
1240 flags |= B43_BCMA_IOCTL_PHY_BW_20MHZ; /* Make 20 MHz def */
1241 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, flags);
1244 b43_phy_take_out_of_reset(dev);
1247 static void b43_bcma_wireless_core_reset(struct b43_wldev *dev, bool gmode)
1249 u32 req = B43_BCMA_CLKCTLST_80211_PLL_REQ |
1250 B43_BCMA_CLKCTLST_PHY_PLL_REQ;
1251 u32 status = B43_BCMA_CLKCTLST_80211_PLL_ST |
1252 B43_BCMA_CLKCTLST_PHY_PLL_ST;
1255 flags = B43_BCMA_IOCTL_PHY_CLKEN;
1257 flags |= B43_BCMA_IOCTL_GMODE;
1258 b43_device_enable(dev, flags);
1260 if (dev->phy.type == B43_PHYTYPE_AC) {
1263 tmp = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
1264 tmp &= ~B43_BCMA_IOCTL_DAC;
1266 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, tmp);
1268 tmp = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
1269 tmp &= ~B43_BCMA_IOCTL_PHY_CLKEN;
1270 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, tmp);
1272 tmp = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
1273 tmp |= B43_BCMA_IOCTL_PHY_CLKEN;
1274 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, tmp);
1277 bcma_core_set_clockmode(dev->dev->bdev, BCMA_CLKMODE_FAST);
1278 b43_bcma_phy_reset(dev);
1279 bcma_core_pll_ctl(dev->dev->bdev, req, status, true);
1283 #ifdef CONFIG_B43_SSB
1284 static void b43_ssb_wireless_core_reset(struct b43_wldev *dev, bool gmode)
1289 flags |= B43_TMSLOW_GMODE;
1290 flags |= B43_TMSLOW_PHYCLKEN;
1291 flags |= B43_TMSLOW_PHYRESET;
1292 if (dev->phy.type == B43_PHYTYPE_N)
1293 flags |= B43_TMSLOW_PHY_BANDWIDTH_20MHZ; /* Make 20 MHz def */
1294 b43_device_enable(dev, flags);
1295 msleep(2); /* Wait for the PLL to turn on. */
1297 b43_phy_take_out_of_reset(dev);
1301 void b43_wireless_core_reset(struct b43_wldev *dev, bool gmode)
1305 switch (dev->dev->bus_type) {
1306 #ifdef CONFIG_B43_BCMA
1308 b43_bcma_wireless_core_reset(dev, gmode);
1311 #ifdef CONFIG_B43_SSB
1313 b43_ssb_wireless_core_reset(dev, gmode);
1318 /* Turn Analog ON, but only if we already know the PHY-type.
1319 * This protects against very early setup where we don't know the
1320 * PHY-type, yet. wireless_core_reset will be called once again later,
1321 * when we know the PHY-type. */
1323 dev->phy.ops->switch_analog(dev, 1);
1325 macctl = b43_read32(dev, B43_MMIO_MACCTL);
1326 macctl &= ~B43_MACCTL_GMODE;
1328 macctl |= B43_MACCTL_GMODE;
1329 macctl |= B43_MACCTL_IHR_ENABLED;
1330 b43_write32(dev, B43_MMIO_MACCTL, macctl);
1333 static void handle_irq_transmit_status(struct b43_wldev *dev)
1337 struct b43_txstatus stat;
1340 v0 = b43_read32(dev, B43_MMIO_XMITSTAT_0);
1341 if (!(v0 & 0x00000001))
1343 v1 = b43_read32(dev, B43_MMIO_XMITSTAT_1);
1345 stat.cookie = (v0 >> 16);
1346 stat.seq = (v1 & 0x0000FFFF);
1347 stat.phy_stat = ((v1 & 0x00FF0000) >> 16);
1348 tmp = (v0 & 0x0000FFFF);
1349 stat.frame_count = ((tmp & 0xF000) >> 12);
1350 stat.rts_count = ((tmp & 0x0F00) >> 8);
1351 stat.supp_reason = ((tmp & 0x001C) >> 2);
1352 stat.pm_indicated = !!(tmp & 0x0080);
1353 stat.intermediate = !!(tmp & 0x0040);
1354 stat.for_ampdu = !!(tmp & 0x0020);
1355 stat.acked = !!(tmp & 0x0002);
1357 b43_handle_txstatus(dev, &stat);
1361 static void drain_txstatus_queue(struct b43_wldev *dev)
1365 if (dev->dev->core_rev < 5)
1367 /* Read all entries from the microcode TXstatus FIFO
1368 * and throw them away.
1371 dummy = b43_read32(dev, B43_MMIO_XMITSTAT_0);
1372 if (!(dummy & 0x00000001))
1374 dummy = b43_read32(dev, B43_MMIO_XMITSTAT_1);
1378 static u32 b43_jssi_read(struct b43_wldev *dev)
1382 val = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_JSSI1);
1384 val |= b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_JSSI0);
1389 static void b43_jssi_write(struct b43_wldev *dev, u32 jssi)
1391 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_JSSI0,
1392 (jssi & 0x0000FFFF));
1393 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_JSSI1,
1394 (jssi & 0xFFFF0000) >> 16);
1397 static void b43_generate_noise_sample(struct b43_wldev *dev)
1399 b43_jssi_write(dev, 0x7F7F7F7F);
1400 b43_write32(dev, B43_MMIO_MACCMD,
1401 b43_read32(dev, B43_MMIO_MACCMD) | B43_MACCMD_BGNOISE);
1404 static void b43_calculate_link_quality(struct b43_wldev *dev)
1406 /* Top half of Link Quality calculation. */
1408 if (dev->phy.type != B43_PHYTYPE_G)
1410 if (dev->noisecalc.calculation_running)
1412 dev->noisecalc.calculation_running = true;
1413 dev->noisecalc.nr_samples = 0;
1415 b43_generate_noise_sample(dev);
1418 static void handle_irq_noise(struct b43_wldev *dev)
1420 struct b43_phy_g *phy = dev->phy.g;
1426 /* Bottom half of Link Quality calculation. */
1428 if (dev->phy.type != B43_PHYTYPE_G)
1431 /* Possible race condition: It might be possible that the user
1432 * changed to a different channel in the meantime since we
1433 * started the calculation. We ignore that fact, since it's
1434 * not really that much of a problem. The background noise is
1435 * an estimation only anyway. Slightly wrong results will get damped
1436 * by the averaging of the 8 sample rounds. Additionally the
1437 * value is shortlived. So it will be replaced by the next noise
1438 * calculation round soon. */
1440 B43_WARN_ON(!dev->noisecalc.calculation_running);
1441 *((__le32 *)noise) = cpu_to_le32(b43_jssi_read(dev));
1442 if (noise[0] == 0x7F || noise[1] == 0x7F ||
1443 noise[2] == 0x7F || noise[3] == 0x7F)
1446 /* Get the noise samples. */
1447 B43_WARN_ON(dev->noisecalc.nr_samples >= 8);
1448 i = dev->noisecalc.nr_samples;
1449 noise[0] = clamp_val(noise[0], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1450 noise[1] = clamp_val(noise[1], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1451 noise[2] = clamp_val(noise[2], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1452 noise[3] = clamp_val(noise[3], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1453 dev->noisecalc.samples[i][0] = phy->nrssi_lt[noise[0]];
1454 dev->noisecalc.samples[i][1] = phy->nrssi_lt[noise[1]];
1455 dev->noisecalc.samples[i][2] = phy->nrssi_lt[noise[2]];
1456 dev->noisecalc.samples[i][3] = phy->nrssi_lt[noise[3]];
1457 dev->noisecalc.nr_samples++;
1458 if (dev->noisecalc.nr_samples == 8) {
1459 /* Calculate the Link Quality by the noise samples. */
1461 for (i = 0; i < 8; i++) {
1462 for (j = 0; j < 4; j++)
1463 average += dev->noisecalc.samples[i][j];
1469 tmp = b43_shm_read16(dev, B43_SHM_SHARED, 0x40C);
1470 tmp = (tmp / 128) & 0x1F;
1480 dev->stats.link_noise = average;
1481 dev->noisecalc.calculation_running = false;
1485 b43_generate_noise_sample(dev);
1488 static void handle_irq_tbtt_indication(struct b43_wldev *dev)
1490 if (b43_is_mode(dev->wl, NL80211_IFTYPE_AP)) {
1493 if (1 /*FIXME: the last PSpoll frame was sent successfully */ )
1494 b43_power_saving_ctl_bits(dev, 0);
1496 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC))
1497 dev->dfq_valid = true;
1500 static void handle_irq_atim_end(struct b43_wldev *dev)
1502 if (dev->dfq_valid) {
1503 b43_write32(dev, B43_MMIO_MACCMD,
1504 b43_read32(dev, B43_MMIO_MACCMD)
1505 | B43_MACCMD_DFQ_VALID);
1506 dev->dfq_valid = false;
1510 static void handle_irq_pmq(struct b43_wldev *dev)
1517 tmp = b43_read32(dev, B43_MMIO_PS_STATUS);
1518 if (!(tmp & 0x00000008))
1521 /* 16bit write is odd, but correct. */
1522 b43_write16(dev, B43_MMIO_PS_STATUS, 0x0002);
1525 static void b43_write_template_common(struct b43_wldev *dev,
1526 const u8 *data, u16 size,
1528 u16 shm_size_offset, u8 rate)
1531 struct b43_plcp_hdr4 plcp;
1534 b43_generate_plcp_hdr(&plcp, size + FCS_LEN, rate);
1535 b43_ram_write(dev, ram_offset, le32_to_cpu(plcp.data));
1536 ram_offset += sizeof(u32);
1537 /* The PLCP is 6 bytes long, but we only wrote 4 bytes, yet.
1538 * So leave the first two bytes of the next write blank.
1540 tmp = (u32) (data[0]) << 16;
1541 tmp |= (u32) (data[1]) << 24;
1542 b43_ram_write(dev, ram_offset, tmp);
1543 ram_offset += sizeof(u32);
1544 for (i = 2; i < size; i += sizeof(u32)) {
1545 tmp = (u32) (data[i + 0]);
1547 tmp |= (u32) (data[i + 1]) << 8;
1549 tmp |= (u32) (data[i + 2]) << 16;
1551 tmp |= (u32) (data[i + 3]) << 24;
1552 b43_ram_write(dev, ram_offset + i - 2, tmp);
1554 b43_shm_write16(dev, B43_SHM_SHARED, shm_size_offset,
1555 size + sizeof(struct b43_plcp_hdr6));
1558 /* Check if the use of the antenna that ieee80211 told us to
1559 * use is possible. This will fall back to DEFAULT.
1560 * "antenna_nr" is the antenna identifier we got from ieee80211. */
1561 u8 b43_ieee80211_antenna_sanitize(struct b43_wldev *dev,
1566 if (antenna_nr == 0) {
1567 /* Zero means "use default antenna". That's always OK. */
1571 /* Get the mask of available antennas. */
1573 antenna_mask = dev->dev->bus_sprom->ant_available_bg;
1575 antenna_mask = dev->dev->bus_sprom->ant_available_a;
1577 if (!(antenna_mask & (1 << (antenna_nr - 1)))) {
1578 /* This antenna is not available. Fall back to default. */
1585 /* Convert a b43 antenna number value to the PHY TX control value. */
1586 static u16 b43_antenna_to_phyctl(int antenna)
1590 return B43_TXH_PHY_ANT0;
1592 return B43_TXH_PHY_ANT1;
1594 return B43_TXH_PHY_ANT2;
1596 return B43_TXH_PHY_ANT3;
1597 case B43_ANTENNA_AUTO0:
1598 case B43_ANTENNA_AUTO1:
1599 return B43_TXH_PHY_ANT01AUTO;
1605 static void b43_write_beacon_template(struct b43_wldev *dev,
1607 u16 shm_size_offset)
1609 unsigned int i, len, variable_len;
1610 const struct ieee80211_mgmt *bcn;
1612 bool tim_found = false;
1616 struct ieee80211_tx_info *info;
1617 unsigned long flags;
1618 struct sk_buff *beacon_skb;
1620 spin_lock_irqsave(&dev->wl->beacon_lock, flags);
1621 info = IEEE80211_SKB_CB(dev->wl->current_beacon);
1622 rate = ieee80211_get_tx_rate(dev->wl->hw, info)->hw_value;
1623 /* Clone the beacon, so it cannot go away, while we write it to hw. */
1624 beacon_skb = skb_clone(dev->wl->current_beacon, GFP_ATOMIC);
1625 spin_unlock_irqrestore(&dev->wl->beacon_lock, flags);
1628 b43dbg(dev->wl, "Could not upload beacon. "
1629 "Failed to clone beacon skb.");
1633 bcn = (const struct ieee80211_mgmt *)(beacon_skb->data);
1634 len = min_t(size_t, beacon_skb->len,
1635 0x200 - sizeof(struct b43_plcp_hdr6));
1637 b43_write_template_common(dev, (const u8 *)bcn,
1638 len, ram_offset, shm_size_offset, rate);
1640 /* Write the PHY TX control parameters. */
1641 antenna = B43_ANTENNA_DEFAULT;
1642 antenna = b43_antenna_to_phyctl(antenna);
1643 ctl = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL);
1644 /* We can't send beacons with short preamble. Would get PHY errors. */
1645 ctl &= ~B43_TXH_PHY_SHORTPRMBL;
1646 ctl &= ~B43_TXH_PHY_ANT;
1647 ctl &= ~B43_TXH_PHY_ENC;
1649 if (b43_is_cck_rate(rate))
1650 ctl |= B43_TXH_PHY_ENC_CCK;
1652 ctl |= B43_TXH_PHY_ENC_OFDM;
1653 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL, ctl);
1655 /* Find the position of the TIM and the DTIM_period value
1656 * and write them to SHM. */
1657 ie = bcn->u.beacon.variable;
1658 variable_len = len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
1659 for (i = 0; i < variable_len - 2; ) {
1660 uint8_t ie_id, ie_len;
1667 /* This is the TIM Information Element */
1669 /* Check whether the ie_len is in the beacon data range. */
1670 if (variable_len < ie_len + 2 + i)
1672 /* A valid TIM is at least 4 bytes long. */
1677 tim_position = sizeof(struct b43_plcp_hdr6);
1678 tim_position += offsetof(struct ieee80211_mgmt, u.beacon.variable);
1681 dtim_period = ie[i + 3];
1683 b43_shm_write16(dev, B43_SHM_SHARED,
1684 B43_SHM_SH_TIMBPOS, tim_position);
1685 b43_shm_write16(dev, B43_SHM_SHARED,
1686 B43_SHM_SH_DTIMPER, dtim_period);
1693 * If ucode wants to modify TIM do it behind the beacon, this
1694 * will happen, for example, when doing mesh networking.
1696 b43_shm_write16(dev, B43_SHM_SHARED,
1698 len + sizeof(struct b43_plcp_hdr6));
1699 b43_shm_write16(dev, B43_SHM_SHARED,
1700 B43_SHM_SH_DTIMPER, 0);
1702 b43dbg(dev->wl, "Updated beacon template at 0x%x\n", ram_offset);
1704 dev_kfree_skb_any(beacon_skb);
1707 static void b43_upload_beacon0(struct b43_wldev *dev)
1709 struct b43_wl *wl = dev->wl;
1711 if (wl->beacon0_uploaded)
1713 b43_write_beacon_template(dev, B43_SHM_SH_BT_BASE0, B43_SHM_SH_BTL0);
1714 wl->beacon0_uploaded = true;
1717 static void b43_upload_beacon1(struct b43_wldev *dev)
1719 struct b43_wl *wl = dev->wl;
1721 if (wl->beacon1_uploaded)
1723 b43_write_beacon_template(dev, B43_SHM_SH_BT_BASE1, B43_SHM_SH_BTL1);
1724 wl->beacon1_uploaded = true;
1727 static void handle_irq_beacon(struct b43_wldev *dev)
1729 struct b43_wl *wl = dev->wl;
1730 u32 cmd, beacon0_valid, beacon1_valid;
1732 if (!b43_is_mode(wl, NL80211_IFTYPE_AP) &&
1733 !b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT) &&
1734 !b43_is_mode(wl, NL80211_IFTYPE_ADHOC))
1737 /* This is the bottom half of the asynchronous beacon update. */
1739 /* Ignore interrupt in the future. */
1740 dev->irq_mask &= ~B43_IRQ_BEACON;
1742 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1743 beacon0_valid = (cmd & B43_MACCMD_BEACON0_VALID);
1744 beacon1_valid = (cmd & B43_MACCMD_BEACON1_VALID);
1746 /* Schedule interrupt manually, if busy. */
1747 if (beacon0_valid && beacon1_valid) {
1748 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, B43_IRQ_BEACON);
1749 dev->irq_mask |= B43_IRQ_BEACON;
1753 if (unlikely(wl->beacon_templates_virgin)) {
1754 /* We never uploaded a beacon before.
1755 * Upload both templates now, but only mark one valid. */
1756 wl->beacon_templates_virgin = false;
1757 b43_upload_beacon0(dev);
1758 b43_upload_beacon1(dev);
1759 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1760 cmd |= B43_MACCMD_BEACON0_VALID;
1761 b43_write32(dev, B43_MMIO_MACCMD, cmd);
1763 if (!beacon0_valid) {
1764 b43_upload_beacon0(dev);
1765 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1766 cmd |= B43_MACCMD_BEACON0_VALID;
1767 b43_write32(dev, B43_MMIO_MACCMD, cmd);
1768 } else if (!beacon1_valid) {
1769 b43_upload_beacon1(dev);
1770 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1771 cmd |= B43_MACCMD_BEACON1_VALID;
1772 b43_write32(dev, B43_MMIO_MACCMD, cmd);
1777 static void b43_do_beacon_update_trigger_work(struct b43_wldev *dev)
1779 u32 old_irq_mask = dev->irq_mask;
1781 /* update beacon right away or defer to irq */
1782 handle_irq_beacon(dev);
1783 if (old_irq_mask != dev->irq_mask) {
1784 /* The handler updated the IRQ mask. */
1785 B43_WARN_ON(!dev->irq_mask);
1786 if (b43_read32(dev, B43_MMIO_GEN_IRQ_MASK)) {
1787 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
1789 /* Device interrupts are currently disabled. That means
1790 * we just ran the hardirq handler and scheduled the
1791 * IRQ thread. The thread will write the IRQ mask when
1792 * it finished, so there's nothing to do here. Writing
1793 * the mask _here_ would incorrectly re-enable IRQs. */
1798 static void b43_beacon_update_trigger_work(struct work_struct *work)
1800 struct b43_wl *wl = container_of(work, struct b43_wl,
1801 beacon_update_trigger);
1802 struct b43_wldev *dev;
1804 mutex_lock(&wl->mutex);
1805 dev = wl->current_dev;
1806 if (likely(dev && (b43_status(dev) >= B43_STAT_INITIALIZED))) {
1807 if (b43_bus_host_is_sdio(dev->dev)) {
1808 /* wl->mutex is enough. */
1809 b43_do_beacon_update_trigger_work(dev);
1811 spin_lock_irq(&wl->hardirq_lock);
1812 b43_do_beacon_update_trigger_work(dev);
1813 spin_unlock_irq(&wl->hardirq_lock);
1816 mutex_unlock(&wl->mutex);
1819 /* Asynchronously update the packet templates in template RAM. */
1820 static void b43_update_templates(struct b43_wl *wl)
1822 struct sk_buff *beacon, *old_beacon;
1823 unsigned long flags;
1825 /* This is the top half of the asynchronous beacon update.
1826 * The bottom half is the beacon IRQ.
1827 * Beacon update must be asynchronous to avoid sending an
1828 * invalid beacon. This can happen for example, if the firmware
1829 * transmits a beacon while we are updating it. */
1831 /* We could modify the existing beacon and set the aid bit in
1832 * the TIM field, but that would probably require resizing and
1833 * moving of data within the beacon template.
1834 * Simply request a new beacon and let mac80211 do the hard work. */
1835 beacon = ieee80211_beacon_get(wl->hw, wl->vif, 0);
1836 if (unlikely(!beacon))
1839 spin_lock_irqsave(&wl->beacon_lock, flags);
1840 old_beacon = wl->current_beacon;
1841 wl->current_beacon = beacon;
1842 wl->beacon0_uploaded = false;
1843 wl->beacon1_uploaded = false;
1844 spin_unlock_irqrestore(&wl->beacon_lock, flags);
1846 ieee80211_queue_work(wl->hw, &wl->beacon_update_trigger);
1849 dev_kfree_skb_any(old_beacon);
1852 static void b43_set_beacon_int(struct b43_wldev *dev, u16 beacon_int)
1855 if (dev->dev->core_rev >= 3) {
1856 b43_write32(dev, B43_MMIO_TSF_CFP_REP, (beacon_int << 16));
1857 b43_write32(dev, B43_MMIO_TSF_CFP_START, (beacon_int << 10));
1859 b43_write16(dev, 0x606, (beacon_int >> 6));
1860 b43_write16(dev, 0x610, beacon_int);
1862 b43_time_unlock(dev);
1863 b43dbg(dev->wl, "Set beacon interval to %u\n", beacon_int);
1866 static void b43_handle_firmware_panic(struct b43_wldev *dev)
1870 /* Read the register that contains the reason code for the panic. */
1871 reason = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_FWPANIC_REASON_REG);
1872 b43err(dev->wl, "Whoopsy, firmware panic! Reason: %u\n", reason);
1876 b43dbg(dev->wl, "The panic reason is unknown.\n");
1878 case B43_FWPANIC_DIE:
1879 /* Do not restart the controller or firmware.
1880 * The device is nonfunctional from now on.
1881 * Restarting would result in this panic to trigger again,
1882 * so we avoid that recursion. */
1884 case B43_FWPANIC_RESTART:
1885 b43_controller_restart(dev, "Microcode panic");
1890 static void handle_irq_ucode_debug(struct b43_wldev *dev)
1892 unsigned int i, cnt;
1893 u16 reason, marker_id, marker_line;
1896 /* The proprietary firmware doesn't have this IRQ. */
1897 if (!dev->fw.opensource)
1900 /* Read the register that contains the reason code for this IRQ. */
1901 reason = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_DEBUGIRQ_REASON_REG);
1904 case B43_DEBUGIRQ_PANIC:
1905 b43_handle_firmware_panic(dev);
1907 case B43_DEBUGIRQ_DUMP_SHM:
1909 break; /* Only with driver debugging enabled. */
1910 buf = kmalloc(4096, GFP_ATOMIC);
1912 b43dbg(dev->wl, "SHM-dump: Failed to allocate memory\n");
1915 for (i = 0; i < 4096; i += 2) {
1916 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, i);
1917 buf[i / 2] = cpu_to_le16(tmp);
1919 b43info(dev->wl, "Shared memory dump:\n");
1920 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET,
1921 16, 2, buf, 4096, 1);
1924 case B43_DEBUGIRQ_DUMP_REGS:
1926 break; /* Only with driver debugging enabled. */
1927 b43info(dev->wl, "Microcode register dump:\n");
1928 for (i = 0, cnt = 0; i < 64; i++) {
1929 u16 tmp = b43_shm_read16(dev, B43_SHM_SCRATCH, i);
1932 printk("r%02u: 0x%04X ", i, tmp);
1941 case B43_DEBUGIRQ_MARKER:
1943 break; /* Only with driver debugging enabled. */
1944 marker_id = b43_shm_read16(dev, B43_SHM_SCRATCH,
1946 marker_line = b43_shm_read16(dev, B43_SHM_SCRATCH,
1947 B43_MARKER_LINE_REG);
1948 b43info(dev->wl, "The firmware just executed the MARKER(%u) "
1949 "at line number %u\n",
1950 marker_id, marker_line);
1953 b43dbg(dev->wl, "Debug-IRQ triggered for unknown reason: %u\n",
1957 /* Acknowledge the debug-IRQ, so the firmware can continue. */
1958 b43_shm_write16(dev, B43_SHM_SCRATCH,
1959 B43_DEBUGIRQ_REASON_REG, B43_DEBUGIRQ_ACK);
1962 static void b43_do_interrupt_thread(struct b43_wldev *dev)
1965 u32 dma_reason[ARRAY_SIZE(dev->dma_reason)];
1966 u32 merged_dma_reason = 0;
1969 if (unlikely(b43_status(dev) != B43_STAT_STARTED))
1972 reason = dev->irq_reason;
1973 for (i = 0; i < ARRAY_SIZE(dma_reason); i++) {
1974 dma_reason[i] = dev->dma_reason[i];
1975 merged_dma_reason |= dma_reason[i];
1978 if (unlikely(reason & B43_IRQ_MAC_TXERR))
1979 b43err(dev->wl, "MAC transmission error\n");
1981 if (unlikely(reason & B43_IRQ_PHY_TXERR)) {
1982 b43err(dev->wl, "PHY transmission error\n");
1984 if (unlikely(atomic_dec_and_test(&dev->phy.txerr_cnt))) {
1985 atomic_set(&dev->phy.txerr_cnt,
1986 B43_PHY_TX_BADNESS_LIMIT);
1987 b43err(dev->wl, "Too many PHY TX errors, "
1988 "restarting the controller\n");
1989 b43_controller_restart(dev, "PHY TX errors");
1993 if (unlikely(merged_dma_reason & (B43_DMAIRQ_FATALMASK))) {
1995 "Fatal DMA error: 0x%08X, 0x%08X, 0x%08X, 0x%08X, 0x%08X, 0x%08X\n",
1996 dma_reason[0], dma_reason[1],
1997 dma_reason[2], dma_reason[3],
1998 dma_reason[4], dma_reason[5]);
1999 b43err(dev->wl, "This device does not support DMA "
2000 "on your system. It will now be switched to PIO.\n");
2001 /* Fall back to PIO transfers if we get fatal DMA errors! */
2002 dev->use_pio = true;
2003 b43_controller_restart(dev, "DMA error");
2007 if (unlikely(reason & B43_IRQ_UCODE_DEBUG))
2008 handle_irq_ucode_debug(dev);
2009 if (reason & B43_IRQ_TBTT_INDI)
2010 handle_irq_tbtt_indication(dev);
2011 if (reason & B43_IRQ_ATIM_END)
2012 handle_irq_atim_end(dev);
2013 if (reason & B43_IRQ_BEACON)
2014 handle_irq_beacon(dev);
2015 if (reason & B43_IRQ_PMQ)
2016 handle_irq_pmq(dev);
2017 if (reason & B43_IRQ_TXFIFO_FLUSH_OK) {
2020 if (reason & B43_IRQ_NOISESAMPLE_OK)
2021 handle_irq_noise(dev);
2023 /* Check the DMA reason registers for received data. */
2024 if (dma_reason[0] & B43_DMAIRQ_RDESC_UFLOW) {
2026 b43warn(dev->wl, "RX descriptor underrun\n");
2027 b43_dma_handle_rx_overflow(dev->dma.rx_ring);
2029 if (dma_reason[0] & B43_DMAIRQ_RX_DONE) {
2030 if (b43_using_pio_transfers(dev))
2031 b43_pio_rx(dev->pio.rx_queue);
2033 b43_dma_rx(dev->dma.rx_ring);
2035 B43_WARN_ON(dma_reason[1] & B43_DMAIRQ_RX_DONE);
2036 B43_WARN_ON(dma_reason[2] & B43_DMAIRQ_RX_DONE);
2037 B43_WARN_ON(dma_reason[3] & B43_DMAIRQ_RX_DONE);
2038 B43_WARN_ON(dma_reason[4] & B43_DMAIRQ_RX_DONE);
2039 B43_WARN_ON(dma_reason[5] & B43_DMAIRQ_RX_DONE);
2041 if (reason & B43_IRQ_TX_OK)
2042 handle_irq_transmit_status(dev);
2044 /* Re-enable interrupts on the device by restoring the current interrupt mask. */
2045 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
2048 if (b43_debug(dev, B43_DBG_VERBOSESTATS)) {
2050 for (i = 0; i < ARRAY_SIZE(dev->irq_bit_count); i++) {
2051 if (reason & (1 << i))
2052 dev->irq_bit_count[i]++;
2058 /* Interrupt thread handler. Handles device interrupts in thread context. */
2059 static irqreturn_t b43_interrupt_thread_handler(int irq, void *dev_id)
2061 struct b43_wldev *dev = dev_id;
2063 mutex_lock(&dev->wl->mutex);
2064 b43_do_interrupt_thread(dev);
2065 mutex_unlock(&dev->wl->mutex);
2070 static irqreturn_t b43_do_interrupt(struct b43_wldev *dev)
2074 /* This code runs under wl->hardirq_lock, but _only_ on non-SDIO busses.
2075 * On SDIO, this runs under wl->mutex. */
2077 reason = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2078 if (reason == 0xffffffff) /* shared IRQ */
2080 reason &= dev->irq_mask;
2084 dev->dma_reason[0] = b43_read32(dev, B43_MMIO_DMA0_REASON)
2086 dev->dma_reason[1] = b43_read32(dev, B43_MMIO_DMA1_REASON)
2088 dev->dma_reason[2] = b43_read32(dev, B43_MMIO_DMA2_REASON)
2090 dev->dma_reason[3] = b43_read32(dev, B43_MMIO_DMA3_REASON)
2092 dev->dma_reason[4] = b43_read32(dev, B43_MMIO_DMA4_REASON)
2095 dev->dma_reason[5] = b43_read32(dev, B43_MMIO_DMA5_REASON)
2099 /* ACK the interrupt. */
2100 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, reason);
2101 b43_write32(dev, B43_MMIO_DMA0_REASON, dev->dma_reason[0]);
2102 b43_write32(dev, B43_MMIO_DMA1_REASON, dev->dma_reason[1]);
2103 b43_write32(dev, B43_MMIO_DMA2_REASON, dev->dma_reason[2]);
2104 b43_write32(dev, B43_MMIO_DMA3_REASON, dev->dma_reason[3]);
2105 b43_write32(dev, B43_MMIO_DMA4_REASON, dev->dma_reason[4]);
2107 b43_write32(dev, B43_MMIO_DMA5_REASON, dev->dma_reason[5]);
2110 /* Disable IRQs on the device. The IRQ thread handler will re-enable them. */
2111 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
2112 /* Save the reason bitmasks for the IRQ thread handler. */
2113 dev->irq_reason = reason;
2115 return IRQ_WAKE_THREAD;
2118 /* Interrupt handler top-half. This runs with interrupts disabled. */
2119 static irqreturn_t b43_interrupt_handler(int irq, void *dev_id)
2121 struct b43_wldev *dev = dev_id;
2124 if (unlikely(b43_status(dev) < B43_STAT_STARTED))
2127 spin_lock(&dev->wl->hardirq_lock);
2128 ret = b43_do_interrupt(dev);
2129 spin_unlock(&dev->wl->hardirq_lock);
2134 /* SDIO interrupt handler. This runs in process context. */
2135 static void b43_sdio_interrupt_handler(struct b43_wldev *dev)
2137 struct b43_wl *wl = dev->wl;
2140 mutex_lock(&wl->mutex);
2142 ret = b43_do_interrupt(dev);
2143 if (ret == IRQ_WAKE_THREAD)
2144 b43_do_interrupt_thread(dev);
2146 mutex_unlock(&wl->mutex);
2149 void b43_do_release_fw(struct b43_firmware_file *fw)
2151 release_firmware(fw->data);
2153 fw->filename = NULL;
2156 static void b43_release_firmware(struct b43_wldev *dev)
2158 complete(&dev->fw_load_complete);
2159 b43_do_release_fw(&dev->fw.ucode);
2160 b43_do_release_fw(&dev->fw.pcm);
2161 b43_do_release_fw(&dev->fw.initvals);
2162 b43_do_release_fw(&dev->fw.initvals_band);
2165 static void b43_print_fw_helptext(struct b43_wl *wl, bool error)
2169 "https://wireless.wiki.kernel.org/en/users/Drivers/b43#devicefirmware " \
2170 "and download the correct firmware for this driver version. " \
2171 "Please carefully read all instructions on this website.\n";
2179 static void b43_fw_cb(const struct firmware *firmware, void *context)
2181 struct b43_request_fw_context *ctx = context;
2183 ctx->blob = firmware;
2184 complete(&ctx->dev->fw_load_complete);
2187 int b43_do_request_fw(struct b43_request_fw_context *ctx,
2189 struct b43_firmware_file *fw, bool async)
2191 struct b43_fw_header *hdr;
2196 /* Don't fetch anything. Free possibly cached firmware. */
2197 /* FIXME: We should probably keep it anyway, to save some headache
2198 * on suspend/resume with multiband devices. */
2199 b43_do_release_fw(fw);
2203 if ((fw->type == ctx->req_type) &&
2204 (strcmp(fw->filename, name) == 0))
2205 return 0; /* Already have this fw. */
2206 /* Free the cached firmware first. */
2207 /* FIXME: We should probably do this later after we successfully
2208 * got the new fw. This could reduce headache with multiband devices.
2209 * We could also redesign this to cache the firmware for all possible
2210 * bands all the time. */
2211 b43_do_release_fw(fw);
2214 switch (ctx->req_type) {
2215 case B43_FWTYPE_PROPRIETARY:
2216 snprintf(ctx->fwname, sizeof(ctx->fwname),
2218 modparam_fwpostfix, name);
2220 case B43_FWTYPE_OPENSOURCE:
2221 snprintf(ctx->fwname, sizeof(ctx->fwname),
2223 modparam_fwpostfix, name);
2230 /* do this part asynchronously */
2231 init_completion(&ctx->dev->fw_load_complete);
2232 err = request_firmware_nowait(THIS_MODULE, 1, ctx->fwname,
2233 ctx->dev->dev->dev, GFP_KERNEL,
2236 pr_err("Unable to load firmware\n");
2239 wait_for_completion(&ctx->dev->fw_load_complete);
2242 /* On some ARM systems, the async request will fail, but the next sync
2243 * request works. For this reason, we fall through here
2246 err = request_firmware(&ctx->blob, ctx->fwname,
2247 ctx->dev->dev->dev);
2248 if (err == -ENOENT) {
2249 snprintf(ctx->errors[ctx->req_type],
2250 sizeof(ctx->errors[ctx->req_type]),
2251 "Firmware file \"%s\" not found\n",
2255 snprintf(ctx->errors[ctx->req_type],
2256 sizeof(ctx->errors[ctx->req_type]),
2257 "Firmware file \"%s\" request failed (err=%d)\n",
2262 if (ctx->blob->size < sizeof(struct b43_fw_header))
2264 hdr = (struct b43_fw_header *)(ctx->blob->data);
2265 switch (hdr->type) {
2266 case B43_FW_TYPE_UCODE:
2267 case B43_FW_TYPE_PCM:
2268 size = be32_to_cpu(hdr->size);
2269 if (size != ctx->blob->size - sizeof(struct b43_fw_header))
2272 case B43_FW_TYPE_IV:
2280 fw->data = ctx->blob;
2281 fw->filename = name;
2282 fw->type = ctx->req_type;
2287 snprintf(ctx->errors[ctx->req_type],
2288 sizeof(ctx->errors[ctx->req_type]),
2289 "Firmware file \"%s\" format error.\n", ctx->fwname);
2290 release_firmware(ctx->blob);
2295 /* https://bcm-v4.sipsolutions.net/802.11/Init/Firmware */
2296 static int b43_try_request_fw(struct b43_request_fw_context *ctx)
2298 struct b43_wldev *dev = ctx->dev;
2299 struct b43_firmware *fw = &ctx->dev->fw;
2300 struct b43_phy *phy = &dev->phy;
2301 const u8 rev = ctx->dev->dev->core_rev;
2302 const char *filename;
2309 if (phy->type == B43_PHYTYPE_AC)
2310 filename = "ucode42";
2313 if (phy->type == B43_PHYTYPE_AC)
2314 filename = "ucode40";
2317 if (phy->type == B43_PHYTYPE_LCN40)
2318 filename = "ucode33_lcn40";
2321 if (phy->type == B43_PHYTYPE_N)
2322 filename = "ucode30_mimo";
2325 if (phy->type == B43_PHYTYPE_HT)
2326 filename = "ucode29_mimo";
2329 if (phy->type == B43_PHYTYPE_HT)
2330 filename = "ucode26_mimo";
2334 if (phy->type == B43_PHYTYPE_N)
2335 filename = "ucode25_mimo";
2336 else if (phy->type == B43_PHYTYPE_LCN)
2337 filename = "ucode25_lcn";
2340 if (phy->type == B43_PHYTYPE_LCN)
2341 filename = "ucode24_lcn";
2344 if (phy->type == B43_PHYTYPE_N)
2345 filename = "ucode16_mimo";
2348 if (phy->type == B43_PHYTYPE_N)
2349 filename = "ucode16_mimo";
2350 else if (phy->type == B43_PHYTYPE_LP)
2351 filename = "ucode16_lp";
2354 filename = "ucode15";
2357 filename = "ucode14";
2360 filename = "ucode13";
2363 filename = "ucode11";
2366 filename = "ucode5";
2371 err = b43_do_request_fw(ctx, filename, &fw->ucode, true);
2376 if ((rev >= 5) && (rev <= 10))
2382 fw->pcm_request_failed = false;
2383 err = b43_do_request_fw(ctx, filename, &fw->pcm, false);
2384 if (err == -ENOENT) {
2385 /* We did not find a PCM file? Not fatal, but
2386 * core rev <= 10 must do without hwcrypto then. */
2387 fw->pcm_request_failed = true;
2393 switch (dev->phy.type) {
2396 filename = "b0g0initvals13";
2397 else if (rev >= 5 && rev <= 10)
2398 filename = "b0g0initvals5";
2402 filename = "n16initvals30";
2403 else if (rev == 28 || rev == 25)
2404 filename = "n0initvals25";
2406 filename = "n0initvals24";
2408 filename = "n0initvals16"; /* What about n0initvals22? */
2409 else if (rev >= 16 && rev <= 18)
2410 filename = "n0initvals16";
2411 else if (rev >= 11 && rev <= 12)
2412 filename = "n0initvals11";
2414 case B43_PHYTYPE_LP:
2415 if (rev >= 16 && rev <= 18)
2416 filename = "lp0initvals16";
2418 filename = "lp0initvals15";
2420 filename = "lp0initvals14";
2422 filename = "lp0initvals13";
2424 case B43_PHYTYPE_HT:
2426 filename = "ht0initvals29";
2428 filename = "ht0initvals26";
2430 case B43_PHYTYPE_LCN:
2432 filename = "lcn0initvals24";
2434 case B43_PHYTYPE_LCN40:
2436 filename = "lcn400initvals33";
2438 case B43_PHYTYPE_AC:
2440 filename = "ac1initvals42";
2442 filename = "ac0initvals40";
2446 goto err_no_initvals;
2447 err = b43_do_request_fw(ctx, filename, &fw->initvals, false);
2451 /* Get bandswitch initvals */
2453 switch (dev->phy.type) {
2456 filename = "b0g0bsinitvals13";
2457 else if (rev >= 5 && rev <= 10)
2458 filename = "b0g0bsinitvals5";
2462 filename = "n16bsinitvals30";
2463 else if (rev == 28 || rev == 25)
2464 filename = "n0bsinitvals25";
2466 filename = "n0bsinitvals24";
2468 filename = "n0bsinitvals16"; /* What about n0bsinitvals22? */
2469 else if (rev >= 16 && rev <= 18)
2470 filename = "n0bsinitvals16";
2471 else if (rev >= 11 && rev <= 12)
2472 filename = "n0bsinitvals11";
2474 case B43_PHYTYPE_LP:
2475 if (rev >= 16 && rev <= 18)
2476 filename = "lp0bsinitvals16";
2478 filename = "lp0bsinitvals15";
2480 filename = "lp0bsinitvals14";
2482 filename = "lp0bsinitvals13";
2484 case B43_PHYTYPE_HT:
2486 filename = "ht0bsinitvals29";
2488 filename = "ht0bsinitvals26";
2490 case B43_PHYTYPE_LCN:
2492 filename = "lcn0bsinitvals24";
2494 case B43_PHYTYPE_LCN40:
2496 filename = "lcn400bsinitvals33";
2498 case B43_PHYTYPE_AC:
2500 filename = "ac1bsinitvals42";
2502 filename = "ac0bsinitvals40";
2506 goto err_no_initvals;
2507 err = b43_do_request_fw(ctx, filename, &fw->initvals_band, false);
2511 fw->opensource = (ctx->req_type == B43_FWTYPE_OPENSOURCE);
2516 err = ctx->fatal_failure = -EOPNOTSUPP;
2517 b43err(dev->wl, "The driver does not know which firmware (ucode) "
2518 "is required for your device (wl-core rev %u)\n", rev);
2522 err = ctx->fatal_failure = -EOPNOTSUPP;
2523 b43err(dev->wl, "The driver does not know which firmware (PCM) "
2524 "is required for your device (wl-core rev %u)\n", rev);
2528 err = ctx->fatal_failure = -EOPNOTSUPP;
2529 b43err(dev->wl, "The driver does not know which firmware (initvals) "
2530 "is required for your device (wl-core rev %u)\n", rev);
2534 /* We failed to load this firmware image. The error message
2535 * already is in ctx->errors. Return and let our caller decide
2540 b43_release_firmware(dev);
2544 static int b43_one_core_attach(struct b43_bus_dev *dev, struct b43_wl *wl);
2545 static void b43_one_core_detach(struct b43_bus_dev *dev);
2546 static int b43_rng_init(struct b43_wl *wl);
2548 static void b43_request_firmware(struct work_struct *work)
2550 struct b43_wl *wl = container_of(work,
2551 struct b43_wl, firmware_load);
2552 struct b43_wldev *dev = wl->current_dev;
2553 struct b43_request_fw_context *ctx;
2558 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
2563 ctx->req_type = B43_FWTYPE_PROPRIETARY;
2564 err = b43_try_request_fw(ctx);
2566 goto start_ieee80211; /* Successfully loaded it. */
2567 /* Was fw version known? */
2568 if (ctx->fatal_failure)
2571 /* proprietary fw not found, try open source */
2572 ctx->req_type = B43_FWTYPE_OPENSOURCE;
2573 err = b43_try_request_fw(ctx);
2575 goto start_ieee80211; /* Successfully loaded it. */
2576 if(ctx->fatal_failure)
2579 /* Could not find a usable firmware. Print the errors. */
2580 for (i = 0; i < B43_NR_FWTYPES; i++) {
2581 errmsg = ctx->errors[i];
2583 b43err(dev->wl, "%s", errmsg);
2585 b43_print_fw_helptext(dev->wl, 1);
2589 wl->hw->queues = B43_QOS_QUEUE_NUM;
2590 if (!modparam_qos || dev->fw.opensource ||
2591 dev->dev->chip_id == BCMA_CHIP_ID_BCM4331)
2594 err = ieee80211_register_hw(wl->hw);
2597 wl->hw_registered = true;
2598 b43_leds_register(wl->current_dev);
2600 /* Register HW RNG driver */
2607 static int b43_upload_microcode(struct b43_wldev *dev)
2609 struct wiphy *wiphy = dev->wl->hw->wiphy;
2610 const size_t hdr_len = sizeof(struct b43_fw_header);
2612 unsigned int i, len;
2613 u16 fwrev, fwpatch, fwdate, fwtime;
2617 /* Jump the microcode PSM to offset 0 */
2618 macctl = b43_read32(dev, B43_MMIO_MACCTL);
2619 B43_WARN_ON(macctl & B43_MACCTL_PSM_RUN);
2620 macctl |= B43_MACCTL_PSM_JMP0;
2621 b43_write32(dev, B43_MMIO_MACCTL, macctl);
2622 /* Zero out all microcode PSM registers and shared memory. */
2623 for (i = 0; i < 64; i++)
2624 b43_shm_write16(dev, B43_SHM_SCRATCH, i, 0);
2625 for (i = 0; i < 4096; i += 2)
2626 b43_shm_write16(dev, B43_SHM_SHARED, i, 0);
2628 /* Upload Microcode. */
2629 data = (__be32 *) (dev->fw.ucode.data->data + hdr_len);
2630 len = (dev->fw.ucode.data->size - hdr_len) / sizeof(__be32);
2631 b43_shm_control_word(dev, B43_SHM_UCODE | B43_SHM_AUTOINC_W, 0x0000);
2632 for (i = 0; i < len; i++) {
2633 b43_write32(dev, B43_MMIO_SHM_DATA, be32_to_cpu(data[i]));
2637 if (dev->fw.pcm.data) {
2638 /* Upload PCM data. */
2639 data = (__be32 *) (dev->fw.pcm.data->data + hdr_len);
2640 len = (dev->fw.pcm.data->size - hdr_len) / sizeof(__be32);
2641 b43_shm_control_word(dev, B43_SHM_HW, 0x01EA);
2642 b43_write32(dev, B43_MMIO_SHM_DATA, 0x00004000);
2643 /* No need for autoinc bit in SHM_HW */
2644 b43_shm_control_word(dev, B43_SHM_HW, 0x01EB);
2645 for (i = 0; i < len; i++) {
2646 b43_write32(dev, B43_MMIO_SHM_DATA, be32_to_cpu(data[i]));
2651 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, B43_IRQ_ALL);
2653 /* Start the microcode PSM */
2654 b43_maskset32(dev, B43_MMIO_MACCTL, ~B43_MACCTL_PSM_JMP0,
2655 B43_MACCTL_PSM_RUN);
2657 /* Wait for the microcode to load and respond */
2660 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2661 if (tmp == B43_IRQ_MAC_SUSPENDED)
2665 b43err(dev->wl, "Microcode not responding\n");
2666 b43_print_fw_helptext(dev->wl, 1);
2672 b43_read32(dev, B43_MMIO_GEN_IRQ_REASON); /* dummy read */
2674 /* Get and check the revisions. */
2675 fwrev = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEREV);
2676 fwpatch = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEPATCH);
2677 fwdate = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEDATE);
2678 fwtime = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODETIME);
2680 if (fwrev <= 0x128) {
2681 b43err(dev->wl, "YOUR FIRMWARE IS TOO OLD. Firmware from "
2682 "binary drivers older than version 4.x is unsupported. "
2683 "You must upgrade your firmware files.\n");
2684 b43_print_fw_helptext(dev->wl, 1);
2688 dev->fw.rev = fwrev;
2689 dev->fw.patch = fwpatch;
2690 if (dev->fw.rev >= 598)
2691 dev->fw.hdr_format = B43_FW_HDR_598;
2692 else if (dev->fw.rev >= 410)
2693 dev->fw.hdr_format = B43_FW_HDR_410;
2695 dev->fw.hdr_format = B43_FW_HDR_351;
2696 WARN_ON(dev->fw.opensource != (fwdate == 0xFFFF));
2698 dev->qos_enabled = dev->wl->hw->queues > 1;
2699 /* Default to firmware/hardware crypto acceleration. */
2700 dev->hwcrypto_enabled = true;
2702 if (dev->fw.opensource) {
2705 /* Patchlevel info is encoded in the "time" field. */
2706 dev->fw.patch = fwtime;
2707 b43info(dev->wl, "Loading OpenSource firmware version %u.%u\n",
2708 dev->fw.rev, dev->fw.patch);
2710 fwcapa = b43_fwcapa_read(dev);
2711 if (!(fwcapa & B43_FWCAPA_HWCRYPTO) || dev->fw.pcm_request_failed) {
2712 b43info(dev->wl, "Hardware crypto acceleration not supported by firmware\n");
2713 /* Disable hardware crypto and fall back to software crypto. */
2714 dev->hwcrypto_enabled = false;
2716 /* adding QoS support should use an offline discovery mechanism */
2717 WARN(fwcapa & B43_FWCAPA_QOS, "QoS in OpenFW not supported\n");
2719 b43info(dev->wl, "Loading firmware version %u.%u "
2720 "(20%.2i-%.2i-%.2i %.2i:%.2i:%.2i)\n",
2722 (fwdate >> 12) & 0xF, (fwdate >> 8) & 0xF, fwdate & 0xFF,
2723 (fwtime >> 11) & 0x1F, (fwtime >> 5) & 0x3F, fwtime & 0x1F);
2724 if (dev->fw.pcm_request_failed) {
2725 b43warn(dev->wl, "No \"pcm5.fw\" firmware file found. "
2726 "Hardware accelerated cryptography is disabled.\n");
2727 b43_print_fw_helptext(dev->wl, 0);
2731 snprintf(wiphy->fw_version, sizeof(wiphy->fw_version), "%u.%u",
2732 dev->fw.rev, dev->fw.patch);
2733 wiphy->hw_version = dev->dev->core_id;
2735 if (dev->fw.hdr_format == B43_FW_HDR_351) {
2736 /* We're over the deadline, but we keep support for old fw
2737 * until it turns out to be in major conflict with something new. */
2738 b43warn(dev->wl, "You are using an old firmware image. "
2739 "Support for old firmware will be removed soon "
2740 "(official deadline was July 2008).\n");
2741 b43_print_fw_helptext(dev->wl, 0);
2747 /* Stop the microcode PSM. */
2748 b43_maskset32(dev, B43_MMIO_MACCTL, ~B43_MACCTL_PSM_RUN,
2749 B43_MACCTL_PSM_JMP0);
2754 static int b43_write_initvals(struct b43_wldev *dev,
2755 const struct b43_iv *ivals,
2759 const struct b43_iv *iv;
2764 BUILD_BUG_ON(sizeof(struct b43_iv) != 6);
2766 for (i = 0; i < count; i++) {
2767 if (array_size < sizeof(iv->offset_size))
2769 array_size -= sizeof(iv->offset_size);
2770 offset = be16_to_cpu(iv->offset_size);
2771 bit32 = !!(offset & B43_IV_32BIT);
2772 offset &= B43_IV_OFFSET_MASK;
2773 if (offset >= 0x1000)
2778 if (array_size < sizeof(iv->data.d32))
2780 array_size -= sizeof(iv->data.d32);
2782 value = get_unaligned_be32(&iv->data.d32);
2783 b43_write32(dev, offset, value);
2785 iv = (const struct b43_iv *)((const uint8_t *)iv +
2791 if (array_size < sizeof(iv->data.d16))
2793 array_size -= sizeof(iv->data.d16);
2795 value = be16_to_cpu(iv->data.d16);
2796 b43_write16(dev, offset, value);
2798 iv = (const struct b43_iv *)((const uint8_t *)iv +
2809 b43err(dev->wl, "Initial Values Firmware file-format error.\n");
2810 b43_print_fw_helptext(dev->wl, 1);
2815 static int b43_upload_initvals(struct b43_wldev *dev)
2817 const size_t hdr_len = sizeof(struct b43_fw_header);
2818 const struct b43_fw_header *hdr;
2819 struct b43_firmware *fw = &dev->fw;
2820 const struct b43_iv *ivals;
2823 hdr = (const struct b43_fw_header *)(fw->initvals.data->data);
2824 ivals = (const struct b43_iv *)(fw->initvals.data->data + hdr_len);
2825 count = be32_to_cpu(hdr->size);
2826 return b43_write_initvals(dev, ivals, count,
2827 fw->initvals.data->size - hdr_len);
2830 static int b43_upload_initvals_band(struct b43_wldev *dev)
2832 const size_t hdr_len = sizeof(struct b43_fw_header);
2833 const struct b43_fw_header *hdr;
2834 struct b43_firmware *fw = &dev->fw;
2835 const struct b43_iv *ivals;
2838 if (!fw->initvals_band.data)
2841 hdr = (const struct b43_fw_header *)(fw->initvals_band.data->data);
2842 ivals = (const struct b43_iv *)(fw->initvals_band.data->data + hdr_len);
2843 count = be32_to_cpu(hdr->size);
2844 return b43_write_initvals(dev, ivals, count,
2845 fw->initvals_band.data->size - hdr_len);
2848 /* Initialize the GPIOs
2849 * https://bcm-specs.sipsolutions.net/GPIO
2852 #ifdef CONFIG_B43_SSB
2853 static struct ssb_device *b43_ssb_gpio_dev(struct b43_wldev *dev)
2855 struct ssb_bus *bus = dev->dev->sdev->bus;
2857 #ifdef CONFIG_SSB_DRIVER_PCICORE
2858 return (bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev);
2860 return bus->chipco.dev;
2865 static int b43_gpio_init(struct b43_wldev *dev)
2867 #ifdef CONFIG_B43_SSB
2868 struct ssb_device *gpiodev;
2872 b43_maskset32(dev, B43_MMIO_MACCTL, ~B43_MACCTL_GPOUTSMSK, 0);
2873 b43_maskset16(dev, B43_MMIO_GPIO_MASK, ~0, 0xF);
2877 if (dev->dev->chip_id == 0x4301) {
2880 } else if (dev->dev->chip_id == 0x5354) {
2881 /* Don't allow overtaking buttons GPIOs */
2882 set &= 0x2; /* 0x2 is LED GPIO on BCM5354 */
2885 if (0 /* FIXME: conditional unknown */ ) {
2886 b43_write16(dev, B43_MMIO_GPIO_MASK,
2887 b43_read16(dev, B43_MMIO_GPIO_MASK)
2889 /* BT Coexistance Input */
2892 /* BT Coexistance Out */
2896 if (dev->dev->bus_sprom->boardflags_lo & B43_BFL_PACTRL) {
2897 /* PA is controlled by gpio 9, let ucode handle it */
2898 b43_write16(dev, B43_MMIO_GPIO_MASK,
2899 b43_read16(dev, B43_MMIO_GPIO_MASK)
2905 switch (dev->dev->bus_type) {
2906 #ifdef CONFIG_B43_BCMA
2908 bcma_chipco_gpio_control(&dev->dev->bdev->bus->drv_cc, mask, set);
2911 #ifdef CONFIG_B43_SSB
2913 gpiodev = b43_ssb_gpio_dev(dev);
2915 ssb_write32(gpiodev, B43_GPIO_CONTROL,
2916 (ssb_read32(gpiodev, B43_GPIO_CONTROL)
2925 /* Turn off all GPIO stuff. Call this on module unload, for example. */
2926 static void b43_gpio_cleanup(struct b43_wldev *dev)
2928 #ifdef CONFIG_B43_SSB
2929 struct ssb_device *gpiodev;
2932 switch (dev->dev->bus_type) {
2933 #ifdef CONFIG_B43_BCMA
2935 bcma_chipco_gpio_control(&dev->dev->bdev->bus->drv_cc, ~0, 0);
2938 #ifdef CONFIG_B43_SSB
2940 gpiodev = b43_ssb_gpio_dev(dev);
2942 ssb_write32(gpiodev, B43_GPIO_CONTROL, 0);
2948 /* http://bcm-specs.sipsolutions.net/EnableMac */
2949 void b43_mac_enable(struct b43_wldev *dev)
2951 if (b43_debug(dev, B43_DBG_FIRMWARE)) {
2954 fwstate = b43_shm_read16(dev, B43_SHM_SHARED,
2955 B43_SHM_SH_UCODESTAT);
2956 if ((fwstate != B43_SHM_SH_UCODESTAT_SUSP) &&
2957 (fwstate != B43_SHM_SH_UCODESTAT_SLEEP)) {
2958 b43err(dev->wl, "b43_mac_enable(): The firmware "
2959 "should be suspended, but current state is %u\n",
2964 dev->mac_suspended--;
2965 B43_WARN_ON(dev->mac_suspended < 0);
2966 if (dev->mac_suspended == 0) {
2967 b43_maskset32(dev, B43_MMIO_MACCTL, ~0, B43_MACCTL_ENABLED);
2968 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON,
2969 B43_IRQ_MAC_SUSPENDED);
2971 b43_read32(dev, B43_MMIO_MACCTL);
2972 b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2973 b43_power_saving_ctl_bits(dev, 0);
2977 /* https://bcm-specs.sipsolutions.net/SuspendMAC */
2978 void b43_mac_suspend(struct b43_wldev *dev)
2984 B43_WARN_ON(dev->mac_suspended < 0);
2986 if (dev->mac_suspended == 0) {
2987 b43_power_saving_ctl_bits(dev, B43_PS_AWAKE);
2988 b43_maskset32(dev, B43_MMIO_MACCTL, ~B43_MACCTL_ENABLED, 0);
2989 /* force pci to flush the write */
2990 b43_read32(dev, B43_MMIO_MACCTL);
2991 for (i = 35; i; i--) {
2992 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2993 if (tmp & B43_IRQ_MAC_SUSPENDED)
2997 /* Hm, it seems this will take some time. Use msleep(). */
2998 for (i = 40; i; i--) {
2999 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
3000 if (tmp & B43_IRQ_MAC_SUSPENDED)
3004 b43err(dev->wl, "MAC suspend failed\n");
3007 dev->mac_suspended++;
3010 /* https://bcm-v4.sipsolutions.net/802.11/PHY/N/MacPhyClkSet */
3011 void b43_mac_phy_clock_set(struct b43_wldev *dev, bool on)
3015 switch (dev->dev->bus_type) {
3016 #ifdef CONFIG_B43_BCMA
3018 tmp = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
3020 tmp |= B43_BCMA_IOCTL_MACPHYCLKEN;
3022 tmp &= ~B43_BCMA_IOCTL_MACPHYCLKEN;
3023 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, tmp);
3026 #ifdef CONFIG_B43_SSB
3028 tmp = ssb_read32(dev->dev->sdev, SSB_TMSLOW);
3030 tmp |= B43_TMSLOW_MACPHYCLKEN;
3032 tmp &= ~B43_TMSLOW_MACPHYCLKEN;
3033 ssb_write32(dev->dev->sdev, SSB_TMSLOW, tmp);
3039 /* brcms_b_switch_macfreq */
3040 void b43_mac_switch_freq(struct b43_wldev *dev, u8 spurmode)
3042 u16 chip_id = dev->dev->chip_id;
3044 if (chip_id == BCMA_CHIP_ID_BCM4331) {
3046 case 2: /* 168 Mhz: 2^26/168 = 0x61862 */
3047 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_LOW, 0x1862);
3048 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_HIGH, 0x6);
3050 case 1: /* 164 Mhz: 2^26/164 = 0x63e70 */
3051 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_LOW, 0x3e70);
3052 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_HIGH, 0x6);
3054 default: /* 160 Mhz: 2^26/160 = 0x66666 */
3055 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_LOW, 0x6666);
3056 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_HIGH, 0x6);
3059 } else if (chip_id == BCMA_CHIP_ID_BCM43131 ||
3060 chip_id == BCMA_CHIP_ID_BCM43217 ||
3061 chip_id == BCMA_CHIP_ID_BCM43222 ||
3062 chip_id == BCMA_CHIP_ID_BCM43224 ||
3063 chip_id == BCMA_CHIP_ID_BCM43225 ||
3064 chip_id == BCMA_CHIP_ID_BCM43227 ||
3065 chip_id == BCMA_CHIP_ID_BCM43228) {
3067 case 2: /* 126 Mhz */
3068 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_LOW, 0x2082);
3069 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_HIGH, 0x8);
3071 case 1: /* 123 Mhz */
3072 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_LOW, 0x5341);
3073 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_HIGH, 0x8);
3075 default: /* 120 Mhz */
3076 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_LOW, 0x8889);
3077 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_HIGH, 0x8);
3080 } else if (dev->phy.type == B43_PHYTYPE_LCN) {
3082 case 1: /* 82 Mhz */
3083 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_LOW, 0x7CE0);
3084 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_HIGH, 0xC);
3086 default: /* 80 Mhz */
3087 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_LOW, 0xCCCD);
3088 b43_write16(dev, B43_MMIO_TSF_CLK_FRAC_HIGH, 0xC);
3094 static void b43_adjust_opmode(struct b43_wldev *dev)
3096 struct b43_wl *wl = dev->wl;
3100 ctl = b43_read32(dev, B43_MMIO_MACCTL);
3101 /* Reset status to STA infrastructure mode. */
3102 ctl &= ~B43_MACCTL_AP;
3103 ctl &= ~B43_MACCTL_KEEP_CTL;
3104 ctl &= ~B43_MACCTL_KEEP_BADPLCP;
3105 ctl &= ~B43_MACCTL_KEEP_BAD;
3106 ctl &= ~B43_MACCTL_PROMISC;
3107 ctl &= ~B43_MACCTL_BEACPROMISC;
3108 ctl |= B43_MACCTL_INFRA;
3110 if (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
3111 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT))
3112 ctl |= B43_MACCTL_AP;
3113 else if (b43_is_mode(wl, NL80211_IFTYPE_ADHOC))
3114 ctl &= ~B43_MACCTL_INFRA;
3116 if (wl->filter_flags & FIF_CONTROL)
3117 ctl |= B43_MACCTL_KEEP_CTL;
3118 if (wl->filter_flags & FIF_FCSFAIL)
3119 ctl |= B43_MACCTL_KEEP_BAD;
3120 if (wl->filter_flags & FIF_PLCPFAIL)
3121 ctl |= B43_MACCTL_KEEP_BADPLCP;
3122 if (wl->filter_flags & FIF_BCN_PRBRESP_PROMISC)
3123 ctl |= B43_MACCTL_BEACPROMISC;
3125 /* Workaround: On old hardware the HW-MAC-address-filter
3126 * doesn't work properly, so always run promisc in filter
3127 * it in software. */
3128 if (dev->dev->core_rev <= 4)
3129 ctl |= B43_MACCTL_PROMISC;
3131 b43_write32(dev, B43_MMIO_MACCTL, ctl);
3134 if ((ctl & B43_MACCTL_INFRA) && !(ctl & B43_MACCTL_AP)) {
3135 if (dev->dev->chip_id == 0x4306 &&
3136 dev->dev->chip_rev == 3)
3141 b43_write16(dev, 0x612, cfp_pretbtt);
3143 /* FIXME: We don't currently implement the PMQ mechanism,
3144 * so always disable it. If we want to implement PMQ,
3145 * we need to enable it here (clear DISCPMQ) in AP mode.
3147 if (0 /* ctl & B43_MACCTL_AP */)
3148 b43_maskset32(dev, B43_MMIO_MACCTL, ~B43_MACCTL_DISCPMQ, 0);
3150 b43_maskset32(dev, B43_MMIO_MACCTL, ~0, B43_MACCTL_DISCPMQ);
3153 static void b43_rate_memory_write(struct b43_wldev *dev, u16 rate, int is_ofdm)
3159 offset += (b43_plcp_get_ratecode_ofdm(rate) & 0x000F) * 2;
3162 offset += (b43_plcp_get_ratecode_cck(rate) & 0x000F) * 2;
3164 b43_shm_write16(dev, B43_SHM_SHARED, offset + 0x20,
3165 b43_shm_read16(dev, B43_SHM_SHARED, offset));
3168 static void b43_rate_memory_init(struct b43_wldev *dev)
3170 switch (dev->phy.type) {
3173 case B43_PHYTYPE_LP:
3174 case B43_PHYTYPE_HT:
3175 case B43_PHYTYPE_LCN:
3176 b43_rate_memory_write(dev, B43_OFDM_RATE_6MB, 1);
3177 b43_rate_memory_write(dev, B43_OFDM_RATE_9MB, 1);
3178 b43_rate_memory_write(dev, B43_OFDM_RATE_12MB, 1);
3179 b43_rate_memory_write(dev, B43_OFDM_RATE_18MB, 1);
3180 b43_rate_memory_write(dev, B43_OFDM_RATE_24MB, 1);
3181 b43_rate_memory_write(dev, B43_OFDM_RATE_36MB, 1);
3182 b43_rate_memory_write(dev, B43_OFDM_RATE_48MB, 1);
3183 b43_rate_memory_write(dev, B43_OFDM_RATE_54MB, 1);
3186 b43_rate_memory_write(dev, B43_CCK_RATE_1MB, 0);
3187 b43_rate_memory_write(dev, B43_CCK_RATE_2MB, 0);
3188 b43_rate_memory_write(dev, B43_CCK_RATE_5MB, 0);
3189 b43_rate_memory_write(dev, B43_CCK_RATE_11MB, 0);
3196 /* Set the default values for the PHY TX Control Words. */
3197 static void b43_set_phytxctl_defaults(struct b43_wldev *dev)
3201 ctl |= B43_TXH_PHY_ENC_CCK;
3202 ctl |= B43_TXH_PHY_ANT01AUTO;
3203 ctl |= B43_TXH_PHY_TXPWR;
3205 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL, ctl);
3206 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL, ctl);
3207 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL, ctl);
3210 /* Set the TX-Antenna for management frames sent by firmware. */
3211 static void b43_mgmtframe_txantenna(struct b43_wldev *dev, int antenna)
3216 ant = b43_antenna_to_phyctl(antenna);
3219 tmp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL);
3220 tmp = (tmp & ~B43_TXH_PHY_ANT) | ant;
3221 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL, tmp);
3222 /* For Probe Resposes */
3223 tmp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL);
3224 tmp = (tmp & ~B43_TXH_PHY_ANT) | ant;
3225 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL, tmp);
3228 /* This is the opposite of b43_chip_init() */
3229 static void b43_chip_exit(struct b43_wldev *dev)
3232 b43_gpio_cleanup(dev);
3233 /* firmware is released later */
3236 /* Initialize the chip
3237 * https://bcm-specs.sipsolutions.net/ChipInit
3239 static int b43_chip_init(struct b43_wldev *dev)
3241 struct b43_phy *phy = &dev->phy;
3246 /* Initialize the MAC control */
3247 macctl = B43_MACCTL_IHR_ENABLED | B43_MACCTL_SHM_ENABLED;
3249 macctl |= B43_MACCTL_GMODE;
3250 macctl |= B43_MACCTL_INFRA;
3251 b43_write32(dev, B43_MMIO_MACCTL, macctl);
3253 err = b43_upload_microcode(dev);
3255 goto out; /* firmware is released later */
3257 err = b43_gpio_init(dev);
3259 goto out; /* firmware is released later */
3261 err = b43_upload_initvals(dev);
3263 goto err_gpio_clean;
3265 err = b43_upload_initvals_band(dev);
3267 goto err_gpio_clean;
3269 /* Turn the Analog on and initialize the PHY. */
3270 phy->ops->switch_analog(dev, 1);
3271 err = b43_phy_init(dev);
3273 goto err_gpio_clean;
3275 /* Disable Interference Mitigation. */
3276 if (phy->ops->interf_mitigation)
3277 phy->ops->interf_mitigation(dev, B43_INTERFMODE_NONE);
3279 /* Select the antennae */
3280 if (phy->ops->set_rx_antenna)
3281 phy->ops->set_rx_antenna(dev, B43_ANTENNA_DEFAULT);
3282 b43_mgmtframe_txantenna(dev, B43_ANTENNA_DEFAULT);
3284 if (phy->type == B43_PHYTYPE_B) {
3285 value16 = b43_read16(dev, 0x005E);
3287 b43_write16(dev, 0x005E, value16);
3289 b43_write32(dev, 0x0100, 0x01000000);
3290 if (dev->dev->core_rev < 5)
3291 b43_write32(dev, 0x010C, 0x01000000);
3293 b43_maskset32(dev, B43_MMIO_MACCTL, ~B43_MACCTL_INFRA, 0);
3294 b43_maskset32(dev, B43_MMIO_MACCTL, ~0, B43_MACCTL_INFRA);
3296 /* Probe Response Timeout value */
3297 /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
3298 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRMAXTIME, 0);
3300 /* Initially set the wireless operation mode. */
3301 b43_adjust_opmode(dev);
3303 if (dev->dev->core_rev < 3) {
3304 b43_write16(dev, 0x060E, 0x0000);
3305 b43_write16(dev, 0x0610, 0x8000);
3306 b43_write16(dev, 0x0604, 0x0000);
3307 b43_write16(dev, 0x0606, 0x0200);
3309 b43_write32(dev, 0x0188, 0x80000000);
3310 b43_write32(dev, 0x018C, 0x02000000);
3312 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, 0x00004000);
3313 b43_write32(dev, B43_MMIO_DMA0_IRQ_MASK, 0x0001FC00);
3314 b43_write32(dev, B43_MMIO_DMA1_IRQ_MASK, 0x0000DC00);
3315 b43_write32(dev, B43_MMIO_DMA2_IRQ_MASK, 0x0000DC00);
3316 b43_write32(dev, B43_MMIO_DMA3_IRQ_MASK, 0x0001DC00);
3317 b43_write32(dev, B43_MMIO_DMA4_IRQ_MASK, 0x0000DC00);
3318 b43_write32(dev, B43_MMIO_DMA5_IRQ_MASK, 0x0000DC00);
3320 b43_mac_phy_clock_set(dev, true);
3322 switch (dev->dev->bus_type) {
3323 #ifdef CONFIG_B43_BCMA
3325 /* FIXME: 0xE74 is quite common, but should be read from CC */
3326 b43_write16(dev, B43_MMIO_POWERUP_DELAY, 0xE74);
3329 #ifdef CONFIG_B43_SSB
3331 b43_write16(dev, B43_MMIO_POWERUP_DELAY,
3332 dev->dev->sdev->bus->chipco.fast_pwrup_delay);
3338 b43dbg(dev->wl, "Chip initialized\n");
3343 b43_gpio_cleanup(dev);
3347 static void b43_periodic_every60sec(struct b43_wldev *dev)
3349 const struct b43_phy_operations *ops = dev->phy.ops;
3351 if (ops->pwork_60sec)
3352 ops->pwork_60sec(dev);
3354 /* Force check the TX power emission now. */
3355 b43_phy_txpower_check(dev, B43_TXPWR_IGNORE_TIME);
3358 static void b43_periodic_every30sec(struct b43_wldev *dev)
3360 /* Update device statistics. */
3361 b43_calculate_link_quality(dev);
3364 static void b43_periodic_every15sec(struct b43_wldev *dev)
3366 struct b43_phy *phy = &dev->phy;
3369 if (dev->fw.opensource) {
3370 /* Check if the firmware is still alive.
3371 * It will reset the watchdog counter to 0 in its idle loop. */
3372 wdr = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_WATCHDOG_REG);
3373 if (unlikely(wdr)) {
3374 b43err(dev->wl, "Firmware watchdog: The firmware died!\n");
3375 b43_controller_restart(dev, "Firmware watchdog");
3378 b43_shm_write16(dev, B43_SHM_SCRATCH,
3379 B43_WATCHDOG_REG, 1);
3383 if (phy->ops->pwork_15sec)
3384 phy->ops->pwork_15sec(dev);
3386 atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT);
3390 if (b43_debug(dev, B43_DBG_VERBOSESTATS)) {
3393 b43dbg(dev->wl, "Stats: %7u IRQs/sec, %7u TX/sec, %7u RX/sec\n",
3394 dev->irq_count / 15,
3396 dev->rx_count / 15);
3400 for (i = 0; i < ARRAY_SIZE(dev->irq_bit_count); i++) {
3401 if (dev->irq_bit_count[i]) {
3402 b43dbg(dev->wl, "Stats: %7u IRQ-%02u/sec (0x%08X)\n",
3403 dev->irq_bit_count[i] / 15, i, (1 << i));
3404 dev->irq_bit_count[i] = 0;
3411 static void do_periodic_work(struct b43_wldev *dev)
3415 state = dev->periodic_state;
3417 b43_periodic_every60sec(dev);
3419 b43_periodic_every30sec(dev);
3420 b43_periodic_every15sec(dev);
3423 /* Periodic work locking policy:
3424 * The whole periodic work handler is protected by
3425 * wl->mutex. If another lock is needed somewhere in the
3426 * pwork callchain, it's acquired in-place, where it's needed.
3428 static void b43_periodic_work_handler(struct work_struct *work)
3430 struct b43_wldev *dev = container_of(work, struct b43_wldev,
3431 periodic_work.work);
3432 struct b43_wl *wl = dev->wl;
3433 unsigned long delay;
3435 mutex_lock(&wl->mutex);
3437 if (unlikely(b43_status(dev) != B43_STAT_STARTED))
3439 if (b43_debug(dev, B43_DBG_PWORK_STOP))
3442 do_periodic_work(dev);
3444 dev->periodic_state++;
3446 if (b43_debug(dev, B43_DBG_PWORK_FAST))
3447 delay = msecs_to_jiffies(50);
3449 delay = round_jiffies_relative(HZ * 15);
3450 ieee80211_queue_delayed_work(wl->hw, &dev->periodic_work, delay);
3452 mutex_unlock(&wl->mutex);
3455 static void b43_periodic_tasks_setup(struct b43_wldev *dev)
3457 struct delayed_work *work = &dev->periodic_work;
3459 dev->periodic_state = 0;
3460 INIT_DELAYED_WORK(work, b43_periodic_work_handler);
3461 ieee80211_queue_delayed_work(dev->wl->hw, work, 0);
3464 /* Check if communication with the device works correctly. */
3465 static int b43_validate_chipaccess(struct b43_wldev *dev)
3467 u32 v, backup0, backup4;
3469 backup0 = b43_shm_read32(dev, B43_SHM_SHARED, 0);
3470 backup4 = b43_shm_read32(dev, B43_SHM_SHARED, 4);
3472 /* Check for read/write and endianness problems. */
3473 b43_shm_write32(dev, B43_SHM_SHARED, 0, 0x55AAAA55);
3474 if (b43_shm_read32(dev, B43_SHM_SHARED, 0) != 0x55AAAA55)
3476 b43_shm_write32(dev, B43_SHM_SHARED, 0, 0xAA5555AA);
3477 if (b43_shm_read32(dev, B43_SHM_SHARED, 0) != 0xAA5555AA)
3480 /* Check if unaligned 32bit SHM_SHARED access works properly.
3481 * However, don't bail out on failure, because it's noncritical. */
3482 b43_shm_write16(dev, B43_SHM_SHARED, 0, 0x1122);
3483 b43_shm_write16(dev, B43_SHM_SHARED, 2, 0x3344);
3484 b43_shm_write16(dev, B43_SHM_SHARED, 4, 0x5566);
3485 b43_shm_write16(dev, B43_SHM_SHARED, 6, 0x7788);
3486 if (b43_shm_read32(dev, B43_SHM_SHARED, 2) != 0x55663344)
3487 b43warn(dev->wl, "Unaligned 32bit SHM read access is broken\n");
3488 b43_shm_write32(dev, B43_SHM_SHARED, 2, 0xAABBCCDD);
3489 if (b43_shm_read16(dev, B43_SHM_SHARED, 0) != 0x1122 ||
3490 b43_shm_read16(dev, B43_SHM_SHARED, 2) != 0xCCDD ||
3491 b43_shm_read16(dev, B43_SHM_SHARED, 4) != 0xAABB ||
3492 b43_shm_read16(dev, B43_SHM_SHARED, 6) != 0x7788)
3493 b43warn(dev->wl, "Unaligned 32bit SHM write access is broken\n");
3495 b43_shm_write32(dev, B43_SHM_SHARED, 0, backup0);
3496 b43_shm_write32(dev, B43_SHM_SHARED, 4, backup4);
3498 if ((dev->dev->core_rev >= 3) && (dev->dev->core_rev <= 10)) {
3499 /* The 32bit register shadows the two 16bit registers
3500 * with update sideeffects. Validate this. */
3501 b43_write16(dev, B43_MMIO_TSF_CFP_START, 0xAAAA);
3502 b43_write32(dev, B43_MMIO_TSF_CFP_START, 0xCCCCBBBB);
3503 if (b43_read16(dev, B43_MMIO_TSF_CFP_START_LOW) != 0xBBBB)
3505 if (b43_read16(dev, B43_MMIO_TSF_CFP_START_HIGH) != 0xCCCC)
3508 b43_write32(dev, B43_MMIO_TSF_CFP_START, 0);
3510 v = b43_read32(dev, B43_MMIO_MACCTL);
3511 v |= B43_MACCTL_GMODE;
3512 if (v != (B43_MACCTL_GMODE | B43_MACCTL_IHR_ENABLED))
3517 b43err(dev->wl, "Failed to validate the chipaccess\n");
3521 static void b43_security_init(struct b43_wldev *dev)
3523 dev->ktp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_KTP);
3524 /* KTP is a word address, but we address SHM bytewise.
3525 * So multiply by two.
3528 /* Number of RCMTA address slots */
3529 b43_write16(dev, B43_MMIO_RCMTA_COUNT, B43_NR_PAIRWISE_KEYS);
3530 /* Clear the key memory. */
3531 b43_clear_keys(dev);
3534 #ifdef CONFIG_B43_HWRNG
3535 static int b43_rng_read(struct hwrng *rng, u32 *data)
3537 struct b43_wl *wl = (struct b43_wl *)rng->priv;
3538 struct b43_wldev *dev;
3539 int count = -ENODEV;
3541 mutex_lock(&wl->mutex);
3542 dev = wl->current_dev;
3543 if (likely(dev && b43_status(dev) >= B43_STAT_INITIALIZED)) {
3544 *data = b43_read16(dev, B43_MMIO_RNG);
3545 count = sizeof(u16);
3547 mutex_unlock(&wl->mutex);
3551 #endif /* CONFIG_B43_HWRNG */
3553 static void b43_rng_exit(struct b43_wl *wl)
3555 #ifdef CONFIG_B43_HWRNG
3556 if (wl->rng_initialized)
3557 hwrng_unregister(&wl->rng);
3558 #endif /* CONFIG_B43_HWRNG */
3561 static int b43_rng_init(struct b43_wl *wl)
3565 #ifdef CONFIG_B43_HWRNG
3566 snprintf(wl->rng_name, ARRAY_SIZE(wl->rng_name),
3567 "%s_%s", KBUILD_MODNAME, wiphy_name(wl->hw->wiphy));
3568 wl->rng.name = wl->rng_name;
3569 wl->rng.data_read = b43_rng_read;
3570 wl->rng.priv = (unsigned long)wl;
3571 wl->rng_initialized = true;
3572 err = hwrng_register(&wl->rng);
3574 wl->rng_initialized = false;
3575 b43err(wl, "Failed to register the random "
3576 "number generator (%d)\n", err);
3578 #endif /* CONFIG_B43_HWRNG */
3583 static void b43_tx_work(struct work_struct *work)
3585 struct b43_wl *wl = container_of(work, struct b43_wl, tx_work);
3586 struct b43_wldev *dev;
3587 struct sk_buff *skb;
3591 mutex_lock(&wl->mutex);
3592 dev = wl->current_dev;
3593 if (unlikely(!dev || b43_status(dev) < B43_STAT_STARTED)) {
3594 mutex_unlock(&wl->mutex);
3598 for (queue_num = 0; queue_num < B43_QOS_QUEUE_NUM; queue_num++) {
3599 while (skb_queue_len(&wl->tx_queue[queue_num])) {
3600 skb = skb_dequeue(&wl->tx_queue[queue_num]);
3601 if (b43_using_pio_transfers(dev))
3602 err = b43_pio_tx(dev, skb);
3604 err = b43_dma_tx(dev, skb);
3605 if (err == -ENOSPC) {
3606 wl->tx_queue_stopped[queue_num] = true;
3607 b43_stop_queue(dev, queue_num);
3608 skb_queue_head(&wl->tx_queue[queue_num], skb);
3612 ieee80211_free_txskb(wl->hw, skb);
3617 wl->tx_queue_stopped[queue_num] = false;
3623 mutex_unlock(&wl->mutex);
3626 static void b43_op_tx(struct ieee80211_hw *hw,
3627 struct ieee80211_tx_control *control,
3628 struct sk_buff *skb)
3630 struct b43_wl *wl = hw_to_b43_wl(hw);
3631 u16 skb_queue_mapping;
3633 if (unlikely(skb->len < 2 + 2 + 6)) {
3634 /* Too short, this can't be a valid frame. */
3635 ieee80211_free_txskb(hw, skb);
3638 B43_WARN_ON(skb_shinfo(skb)->nr_frags);
3640 skb_queue_mapping = skb_get_queue_mapping(skb);
3641 skb_queue_tail(&wl->tx_queue[skb_queue_mapping], skb);
3642 if (!wl->tx_queue_stopped[skb_queue_mapping])
3643 ieee80211_queue_work(wl->hw, &wl->tx_work);
3645 b43_stop_queue(wl->current_dev, skb_queue_mapping);
3648 static void b43_qos_params_upload(struct b43_wldev *dev,
3649 const struct ieee80211_tx_queue_params *p,
3652 u16 params[B43_NR_QOSPARAMS];
3656 if (!dev->qos_enabled)
3659 bslots = b43_read16(dev, B43_MMIO_RNG) & p->cw_min;
3661 memset(¶ms, 0, sizeof(params));
3663 params[B43_QOSPARAM_TXOP] = p->txop * 32;
3664 params[B43_QOSPARAM_CWMIN] = p->cw_min;
3665 params[B43_QOSPARAM_CWMAX] = p->cw_max;
3666 params[B43_QOSPARAM_CWCUR] = p->cw_min;
3667 params[B43_QOSPARAM_AIFS] = p->aifs;
3668 params[B43_QOSPARAM_BSLOTS] = bslots;
3669 params[B43_QOSPARAM_REGGAP] = bslots + p->aifs;
3671 for (i = 0; i < ARRAY_SIZE(params); i++) {
3672 if (i == B43_QOSPARAM_STATUS) {
3673 tmp = b43_shm_read16(dev, B43_SHM_SHARED,
3674 shm_offset + (i * 2));
3675 /* Mark the parameters as updated. */
3677 b43_shm_write16(dev, B43_SHM_SHARED,
3678 shm_offset + (i * 2),
3681 b43_shm_write16(dev, B43_SHM_SHARED,
3682 shm_offset + (i * 2),
3688 /* Mapping of mac80211 queue numbers to b43 QoS SHM offsets. */
3689 static const u16 b43_qos_shm_offsets[] = {
3690 /* [mac80211-queue-nr] = SHM_OFFSET, */
3691 [0] = B43_QOS_VOICE,
3692 [1] = B43_QOS_VIDEO,
3693 [2] = B43_QOS_BESTEFFORT,
3694 [3] = B43_QOS_BACKGROUND,
3697 /* Update all QOS parameters in hardware. */
3698 static void b43_qos_upload_all(struct b43_wldev *dev)
3700 struct b43_wl *wl = dev->wl;
3701 struct b43_qos_params *params;
3704 if (!dev->qos_enabled)
3707 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3708 ARRAY_SIZE(wl->qos_params));
3710 b43_mac_suspend(dev);
3711 for (i = 0; i < ARRAY_SIZE(wl->qos_params); i++) {
3712 params = &(wl->qos_params[i]);
3713 b43_qos_params_upload(dev, &(params->p),
3714 b43_qos_shm_offsets[i]);
3716 b43_mac_enable(dev);
3719 static void b43_qos_clear(struct b43_wl *wl)
3721 struct b43_qos_params *params;
3724 /* Initialize QoS parameters to sane defaults. */
3726 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3727 ARRAY_SIZE(wl->qos_params));
3729 for (i = 0; i < ARRAY_SIZE(wl->qos_params); i++) {
3730 params = &(wl->qos_params[i]);
3732 switch (b43_qos_shm_offsets[i]) {
3736 params->p.cw_min = 0x0001;
3737 params->p.cw_max = 0x0001;
3742 params->p.cw_min = 0x0001;
3743 params->p.cw_max = 0x0001;
3745 case B43_QOS_BESTEFFORT:
3748 params->p.cw_min = 0x0001;
3749 params->p.cw_max = 0x03FF;
3751 case B43_QOS_BACKGROUND:
3754 params->p.cw_min = 0x0001;
3755 params->p.cw_max = 0x03FF;
3763 /* Initialize the core's QOS capabilities */
3764 static void b43_qos_init(struct b43_wldev *dev)
3766 if (!dev->qos_enabled) {
3767 /* Disable QOS support. */
3768 b43_hf_write(dev, b43_hf_read(dev) & ~B43_HF_EDCF);
3769 b43_write16(dev, B43_MMIO_IFSCTL,
3770 b43_read16(dev, B43_MMIO_IFSCTL)
3771 & ~B43_MMIO_IFSCTL_USE_EDCF);
3772 b43dbg(dev->wl, "QoS disabled\n");
3776 /* Upload the current QOS parameters. */
3777 b43_qos_upload_all(dev);
3779 /* Enable QOS support. */
3780 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_EDCF);
3781 b43_write16(dev, B43_MMIO_IFSCTL,
3782 b43_read16(dev, B43_MMIO_IFSCTL)
3783 | B43_MMIO_IFSCTL_USE_EDCF);
3784 b43dbg(dev->wl, "QoS enabled\n");
3787 static int b43_op_conf_tx(struct ieee80211_hw *hw,
3788 struct ieee80211_vif *vif,
3789 unsigned int link_id, u16 _queue,
3790 const struct ieee80211_tx_queue_params *params)
3792 struct b43_wl *wl = hw_to_b43_wl(hw);
3793 struct b43_wldev *dev;
3794 unsigned int queue = (unsigned int)_queue;
3797 if (queue >= ARRAY_SIZE(wl->qos_params)) {
3798 /* Queue not available or don't support setting
3799 * params on this queue. Return success to not
3800 * confuse mac80211. */
3803 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3804 ARRAY_SIZE(wl->qos_params));
3806 mutex_lock(&wl->mutex);
3807 dev = wl->current_dev;
3808 if (unlikely(!dev || (b43_status(dev) < B43_STAT_INITIALIZED)))
3811 memcpy(&(wl->qos_params[queue].p), params, sizeof(*params));
3812 b43_mac_suspend(dev);
3813 b43_qos_params_upload(dev, &(wl->qos_params[queue].p),
3814 b43_qos_shm_offsets[queue]);
3815 b43_mac_enable(dev);
3819 mutex_unlock(&wl->mutex);
3824 static int b43_op_get_stats(struct ieee80211_hw *hw,
3825 struct ieee80211_low_level_stats *stats)
3827 struct b43_wl *wl = hw_to_b43_wl(hw);
3829 mutex_lock(&wl->mutex);
3830 memcpy(stats, &wl->ieee_stats, sizeof(*stats));
3831 mutex_unlock(&wl->mutex);
3836 static u64 b43_op_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
3838 struct b43_wl *wl = hw_to_b43_wl(hw);
3839 struct b43_wldev *dev;
3842 mutex_lock(&wl->mutex);
3843 dev = wl->current_dev;
3845 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED))
3846 b43_tsf_read(dev, &tsf);
3850 mutex_unlock(&wl->mutex);
3855 static void b43_op_set_tsf(struct ieee80211_hw *hw,
3856 struct ieee80211_vif *vif, u64 tsf)
3858 struct b43_wl *wl = hw_to_b43_wl(hw);
3859 struct b43_wldev *dev;
3861 mutex_lock(&wl->mutex);
3862 dev = wl->current_dev;
3864 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED))
3865 b43_tsf_write(dev, tsf);
3867 mutex_unlock(&wl->mutex);
3870 static const char *band_to_string(enum nl80211_band band)
3873 case NL80211_BAND_5GHZ:
3875 case NL80211_BAND_2GHZ:
3884 /* Expects wl->mutex locked */
3885 static int b43_switch_band(struct b43_wldev *dev,
3886 struct ieee80211_channel *chan)
3888 struct b43_phy *phy = &dev->phy;
3892 switch (chan->band) {
3893 case NL80211_BAND_5GHZ:
3896 case NL80211_BAND_2GHZ:
3904 if (!((gmode && phy->supports_2ghz) ||
3905 (!gmode && phy->supports_5ghz))) {
3906 b43err(dev->wl, "This device doesn't support %s-GHz band\n",
3907 band_to_string(chan->band));
3911 if (!!phy->gmode == !!gmode) {
3912 /* This device is already running. */
3916 b43dbg(dev->wl, "Switching to %s GHz band\n",
3917 band_to_string(chan->band));
3919 /* Some new devices don't need disabling radio for band switching */
3920 if (!(phy->type == B43_PHYTYPE_N && phy->rev >= 3))
3921 b43_software_rfkill(dev, true);
3924 b43_phy_put_into_reset(dev);
3925 switch (dev->dev->bus_type) {
3926 #ifdef CONFIG_B43_BCMA
3928 tmp = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
3930 tmp |= B43_BCMA_IOCTL_GMODE;
3932 tmp &= ~B43_BCMA_IOCTL_GMODE;
3933 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, tmp);
3936 #ifdef CONFIG_B43_SSB
3938 tmp = ssb_read32(dev->dev->sdev, SSB_TMSLOW);
3940 tmp |= B43_TMSLOW_GMODE;
3942 tmp &= ~B43_TMSLOW_GMODE;
3943 ssb_write32(dev->dev->sdev, SSB_TMSLOW, tmp);
3947 b43_phy_take_out_of_reset(dev);
3949 b43_upload_initvals_band(dev);
3956 static void b43_set_beacon_listen_interval(struct b43_wldev *dev, u16 interval)
3958 interval = min_t(u16, interval, (u16)0xFF);
3959 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_BCN_LI, interval);
3962 /* Write the short and long frame retry limit values. */
3963 static void b43_set_retry_limits(struct b43_wldev *dev,
3964 unsigned int short_retry,
3965 unsigned int long_retry)
3967 /* The retry limit is a 4-bit counter. Enforce this to avoid overflowing
3968 * the chip-internal counter. */
3969 short_retry = min(short_retry, (unsigned int)0xF);
3970 long_retry = min(long_retry, (unsigned int)0xF);
3972 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_SRLIMIT,
3974 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_LRLIMIT,
3978 static int b43_op_config(struct ieee80211_hw *hw, u32 changed)
3980 struct b43_wl *wl = hw_to_b43_wl(hw);
3981 struct b43_wldev *dev = wl->current_dev;
3982 struct b43_phy *phy = &dev->phy;
3983 struct ieee80211_conf *conf = &hw->conf;
3987 mutex_lock(&wl->mutex);
3988 b43_mac_suspend(dev);
3990 if (changed & IEEE80211_CONF_CHANGE_LISTEN_INTERVAL)
3991 b43_set_beacon_listen_interval(dev, conf->listen_interval);
3993 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
3994 phy->chandef = &conf->chandef;
3995 phy->channel = conf->chandef.chan->hw_value;
3997 /* Switch the band (if necessary). */
3998 err = b43_switch_band(dev, conf->chandef.chan);
4000 goto out_mac_enable;
4002 /* Switch to the requested channel.
4003 * The firmware takes care of races with the TX handler.
4005 b43_switch_channel(dev, phy->channel);
4008 if (changed & IEEE80211_CONF_CHANGE_RETRY_LIMITS)
4009 b43_set_retry_limits(dev, conf->short_frame_max_tx_count,
4010 conf->long_frame_max_tx_count);
4011 changed &= ~IEEE80211_CONF_CHANGE_RETRY_LIMITS;
4013 goto out_mac_enable;
4015 dev->wl->radiotap_enabled = !!(conf->flags & IEEE80211_CONF_MONITOR);
4017 /* Adjust the desired TX power level. */
4018 if (conf->power_level != 0) {
4019 if (conf->power_level != phy->desired_txpower) {
4020 phy->desired_txpower = conf->power_level;
4021 b43_phy_txpower_check(dev, B43_TXPWR_IGNORE_TIME |
4022 B43_TXPWR_IGNORE_TSSI);
4026 /* Antennas for RX and management frame TX. */
4027 antenna = B43_ANTENNA_DEFAULT;
4028 b43_mgmtframe_txantenna(dev, antenna);
4029 antenna = B43_ANTENNA_DEFAULT;
4030 if (phy->ops->set_rx_antenna)
4031 phy->ops->set_rx_antenna(dev, antenna);
4033 if (wl->radio_enabled != phy->radio_on) {
4034 if (wl->radio_enabled) {
4035 b43_software_rfkill(dev, false);
4036 b43info(dev->wl, "Radio turned on by software\n");
4037 if (!dev->radio_hw_enable) {
4038 b43info(dev->wl, "The hardware RF-kill button "
4039 "still turns the radio physically off. "
4040 "Press the button to turn it on.\n");
4043 b43_software_rfkill(dev, true);
4044 b43info(dev->wl, "Radio turned off by software\n");
4049 b43_mac_enable(dev);
4050 mutex_unlock(&wl->mutex);
4055 static void b43_update_basic_rates(struct b43_wldev *dev, u32 brates)
4057 struct ieee80211_supported_band *sband =
4058 dev->wl->hw->wiphy->bands[b43_current_band(dev->wl)];
4059 const struct ieee80211_rate *rate;
4061 u16 basic, direct, offset, basic_offset, rateptr;
4063 for (i = 0; i < sband->n_bitrates; i++) {
4064 rate = &sband->bitrates[i];
4066 if (b43_is_cck_rate(rate->hw_value)) {
4067 direct = B43_SHM_SH_CCKDIRECT;
4068 basic = B43_SHM_SH_CCKBASIC;
4069 offset = b43_plcp_get_ratecode_cck(rate->hw_value);
4072 direct = B43_SHM_SH_OFDMDIRECT;
4073 basic = B43_SHM_SH_OFDMBASIC;
4074 offset = b43_plcp_get_ratecode_ofdm(rate->hw_value);
4078 rate = ieee80211_get_response_rate(sband, brates, rate->bitrate);
4080 if (b43_is_cck_rate(rate->hw_value)) {
4081 basic_offset = b43_plcp_get_ratecode_cck(rate->hw_value);
4082 basic_offset &= 0xF;
4084 basic_offset = b43_plcp_get_ratecode_ofdm(rate->hw_value);
4085 basic_offset &= 0xF;
4089 * Get the pointer that we need to point to
4090 * from the direct map
4092 rateptr = b43_shm_read16(dev, B43_SHM_SHARED,
4093 direct + 2 * basic_offset);
4094 /* and write it to the basic map */
4095 b43_shm_write16(dev, B43_SHM_SHARED, basic + 2 * offset,
4100 static void b43_op_bss_info_changed(struct ieee80211_hw *hw,
4101 struct ieee80211_vif *vif,
4102 struct ieee80211_bss_conf *conf,
4105 struct b43_wl *wl = hw_to_b43_wl(hw);
4106 struct b43_wldev *dev;
4108 mutex_lock(&wl->mutex);
4110 dev = wl->current_dev;
4111 if (!dev || b43_status(dev) < B43_STAT_STARTED)
4112 goto out_unlock_mutex;
4114 B43_WARN_ON(wl->vif != vif);
4116 if (changed & BSS_CHANGED_BSSID) {
4118 memcpy(wl->bssid, conf->bssid, ETH_ALEN);
4120 eth_zero_addr(wl->bssid);
4123 if (b43_status(dev) >= B43_STAT_INITIALIZED) {
4124 if (changed & BSS_CHANGED_BEACON &&
4125 (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
4126 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT) ||
4127 b43_is_mode(wl, NL80211_IFTYPE_ADHOC)))
4128 b43_update_templates(wl);
4130 if (changed & BSS_CHANGED_BSSID)
4131 b43_write_mac_bssid_templates(dev);
4134 b43_mac_suspend(dev);
4136 /* Update templates for AP/mesh mode. */
4137 if (changed & BSS_CHANGED_BEACON_INT &&
4138 (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
4139 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT) ||
4140 b43_is_mode(wl, NL80211_IFTYPE_ADHOC)) &&
4142 b43_set_beacon_int(dev, conf->beacon_int);
4144 if (changed & BSS_CHANGED_BASIC_RATES)
4145 b43_update_basic_rates(dev, conf->basic_rates);
4147 if (changed & BSS_CHANGED_ERP_SLOT) {
4148 if (conf->use_short_slot)
4149 b43_short_slot_timing_enable(dev);
4151 b43_short_slot_timing_disable(dev);
4154 b43_mac_enable(dev);
4156 mutex_unlock(&wl->mutex);
4159 static int b43_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
4160 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
4161 struct ieee80211_key_conf *key)
4163 struct b43_wl *wl = hw_to_b43_wl(hw);
4164 struct b43_wldev *dev;
4168 static const u8 bcast_addr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
4170 if (modparam_nohwcrypt)
4171 return -ENOSPC; /* User disabled HW-crypto */
4173 if ((vif->type == NL80211_IFTYPE_ADHOC ||
4174 vif->type == NL80211_IFTYPE_MESH_POINT) &&
4175 (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
4176 key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
4177 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
4179 * For now, disable hw crypto for the RSN IBSS group keys. This
4180 * could be optimized in the future, but until that gets
4181 * implemented, use of software crypto for group addressed
4182 * frames is a acceptable to allow RSN IBSS to be used.
4187 mutex_lock(&wl->mutex);
4189 dev = wl->current_dev;
4191 if (!dev || b43_status(dev) < B43_STAT_INITIALIZED)
4194 if (dev->fw.pcm_request_failed || !dev->hwcrypto_enabled) {
4195 /* We don't have firmware for the crypto engine.
4196 * Must use software-crypto. */
4202 switch (key->cipher) {
4203 case WLAN_CIPHER_SUITE_WEP40:
4204 algorithm = B43_SEC_ALGO_WEP40;
4206 case WLAN_CIPHER_SUITE_WEP104:
4207 algorithm = B43_SEC_ALGO_WEP104;
4209 case WLAN_CIPHER_SUITE_TKIP:
4210 algorithm = B43_SEC_ALGO_TKIP;
4212 case WLAN_CIPHER_SUITE_CCMP:
4213 algorithm = B43_SEC_ALGO_AES;
4219 index = (u8) (key->keyidx);
4225 if (algorithm == B43_SEC_ALGO_TKIP &&
4226 (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE) ||
4227 !modparam_hwtkip)) {
4228 /* We support only pairwise key */
4233 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) {
4234 if (WARN_ON(!sta)) {
4238 /* Pairwise key with an assigned MAC address. */
4239 err = b43_key_write(dev, -1, algorithm,
4240 key->key, key->keylen,
4244 err = b43_key_write(dev, index, algorithm,
4245 key->key, key->keylen, NULL, key);
4250 if (algorithm == B43_SEC_ALGO_WEP40 ||
4251 algorithm == B43_SEC_ALGO_WEP104) {
4252 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_USEDEFKEYS);
4255 b43_hf_read(dev) & ~B43_HF_USEDEFKEYS);
4257 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
4258 if (algorithm == B43_SEC_ALGO_TKIP)
4259 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
4262 err = b43_key_clear(dev, key->hw_key_idx);
4273 b43dbg(wl, "%s hardware based encryption for keyidx: %d, "
4275 cmd == SET_KEY ? "Using" : "Disabling", key->keyidx,
4276 sta ? sta->addr : bcast_addr);
4277 b43_dump_keymemory(dev);
4279 mutex_unlock(&wl->mutex);
4284 static void b43_op_configure_filter(struct ieee80211_hw *hw,
4285 unsigned int changed, unsigned int *fflags,
4288 struct b43_wl *wl = hw_to_b43_wl(hw);
4289 struct b43_wldev *dev;
4291 mutex_lock(&wl->mutex);
4292 dev = wl->current_dev;
4298 *fflags &= FIF_ALLMULTI |
4303 FIF_BCN_PRBRESP_PROMISC;
4305 changed &= FIF_ALLMULTI |
4310 FIF_BCN_PRBRESP_PROMISC;
4312 wl->filter_flags = *fflags;
4314 if (changed && b43_status(dev) >= B43_STAT_INITIALIZED)
4315 b43_adjust_opmode(dev);
4318 mutex_unlock(&wl->mutex);
4321 /* Locking: wl->mutex
4322 * Returns the current dev. This might be different from the passed in dev,
4323 * because the core might be gone away while we unlocked the mutex. */
4324 static struct b43_wldev * b43_wireless_core_stop(struct b43_wldev *dev)
4327 struct b43_wldev *orig_dev;
4335 if (!dev || b43_status(dev) < B43_STAT_STARTED)
4338 /* Cancel work. Unlock to avoid deadlocks. */
4339 mutex_unlock(&wl->mutex);
4340 cancel_delayed_work_sync(&dev->periodic_work);
4341 cancel_work_sync(&wl->tx_work);
4343 mutex_lock(&wl->mutex);
4344 dev = wl->current_dev;
4345 if (!dev || b43_status(dev) < B43_STAT_STARTED) {
4346 /* Whoops, aliens ate up the device while we were unlocked. */
4350 /* Disable interrupts on the device. */
4351 b43_set_status(dev, B43_STAT_INITIALIZED);
4352 if (b43_bus_host_is_sdio(dev->dev)) {
4353 /* wl->mutex is locked. That is enough. */
4354 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
4355 b43_read32(dev, B43_MMIO_GEN_IRQ_MASK); /* Flush */
4357 spin_lock_irq(&wl->hardirq_lock);
4358 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
4359 b43_read32(dev, B43_MMIO_GEN_IRQ_MASK); /* Flush */
4360 spin_unlock_irq(&wl->hardirq_lock);
4362 /* Synchronize and free the interrupt handlers. Unlock to avoid deadlocks. */
4364 mutex_unlock(&wl->mutex);
4365 if (b43_bus_host_is_sdio(dev->dev))
4366 b43_sdio_free_irq(dev);
4368 free_irq(dev->dev->irq, dev);
4369 mutex_lock(&wl->mutex);
4370 dev = wl->current_dev;
4373 if (dev != orig_dev) {
4374 if (b43_status(dev) >= B43_STAT_STARTED)
4378 mask = b43_read32(dev, B43_MMIO_GEN_IRQ_MASK);
4379 B43_WARN_ON(mask != 0xFFFFFFFF && mask);
4381 /* Drain all TX queues. */
4382 for (queue_num = 0; queue_num < B43_QOS_QUEUE_NUM; queue_num++) {
4383 while (skb_queue_len(&wl->tx_queue[queue_num])) {
4384 struct sk_buff *skb;
4386 skb = skb_dequeue(&wl->tx_queue[queue_num]);
4387 ieee80211_free_txskb(wl->hw, skb);
4391 b43_mac_suspend(dev);
4393 b43dbg(wl, "Wireless interface stopped\n");
4398 /* Locking: wl->mutex */
4399 static int b43_wireless_core_start(struct b43_wldev *dev)
4403 B43_WARN_ON(b43_status(dev) != B43_STAT_INITIALIZED);
4405 drain_txstatus_queue(dev);
4406 if (b43_bus_host_is_sdio(dev->dev)) {
4407 err = b43_sdio_request_irq(dev, b43_sdio_interrupt_handler);
4409 b43err(dev->wl, "Cannot request SDIO IRQ\n");
4413 err = request_threaded_irq(dev->dev->irq, b43_interrupt_handler,
4414 b43_interrupt_thread_handler,
4415 IRQF_SHARED, KBUILD_MODNAME, dev);
4417 b43err(dev->wl, "Cannot request IRQ-%d\n",
4423 /* We are ready to run. */
4424 ieee80211_wake_queues(dev->wl->hw);
4425 b43_set_status(dev, B43_STAT_STARTED);
4427 /* Start data flow (TX/RX). */
4428 b43_mac_enable(dev);
4429 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
4431 /* Start maintenance work */
4432 b43_periodic_tasks_setup(dev);
4436 b43dbg(dev->wl, "Wireless interface started\n");
4441 static char *b43_phy_name(struct b43_wldev *dev, u8 phy_type)
4452 case B43_PHYTYPE_LP:
4454 case B43_PHYTYPE_SSLPN:
4456 case B43_PHYTYPE_HT:
4458 case B43_PHYTYPE_LCN:
4460 case B43_PHYTYPE_LCNXN:
4462 case B43_PHYTYPE_LCN40:
4464 case B43_PHYTYPE_AC:
4470 /* Get PHY and RADIO versioning numbers */
4471 static int b43_phy_versioning(struct b43_wldev *dev)
4473 struct b43_phy *phy = &dev->phy;
4474 const u8 core_rev = dev->dev->core_rev;
4483 int unsupported = 0;
4485 /* Get PHY versioning */
4486 tmp = b43_read16(dev, B43_MMIO_PHY_VER);
4487 analog_type = (tmp & B43_PHYVER_ANALOG) >> B43_PHYVER_ANALOG_SHIFT;
4488 phy_type = (tmp & B43_PHYVER_TYPE) >> B43_PHYVER_TYPE_SHIFT;
4489 phy_rev = (tmp & B43_PHYVER_VERSION);
4491 /* LCNXN is continuation of N which run out of revisions */
4492 if (phy_type == B43_PHYTYPE_LCNXN) {
4493 phy_type = B43_PHYTYPE_N;
4498 #ifdef CONFIG_B43_PHY_G
4504 #ifdef CONFIG_B43_PHY_N
4510 #ifdef CONFIG_B43_PHY_LP
4511 case B43_PHYTYPE_LP:
4516 #ifdef CONFIG_B43_PHY_HT
4517 case B43_PHYTYPE_HT:
4522 #ifdef CONFIG_B43_PHY_LCN
4523 case B43_PHYTYPE_LCN:
4528 #ifdef CONFIG_B43_PHY_AC
4529 case B43_PHYTYPE_AC:
4538 b43err(dev->wl, "FOUND UNSUPPORTED PHY (Analog %u, Type %d (%s), Revision %u)\n",
4539 analog_type, phy_type, b43_phy_name(dev, phy_type),
4543 b43info(dev->wl, "Found PHY: Analog %u, Type %d (%s), Revision %u\n",
4544 analog_type, phy_type, b43_phy_name(dev, phy_type), phy_rev);
4546 /* Get RADIO versioning */
4547 if (core_rev == 40 || core_rev == 42) {
4548 radio_manuf = 0x17F;
4550 b43_write16f(dev, B43_MMIO_RADIO24_CONTROL, 0);
4551 radio_rev = b43_read16(dev, B43_MMIO_RADIO24_DATA);
4553 b43_write16f(dev, B43_MMIO_RADIO24_CONTROL, 1);
4554 radio_id = b43_read16(dev, B43_MMIO_RADIO24_DATA);
4556 radio_ver = 0; /* Is there version somewhere? */
4557 } else if (core_rev >= 24) {
4560 for (tmp = 0; tmp < 3; tmp++) {
4561 b43_write16f(dev, B43_MMIO_RADIO24_CONTROL, tmp);
4562 radio24[tmp] = b43_read16(dev, B43_MMIO_RADIO24_DATA);
4565 radio_manuf = 0x17F;
4566 radio_id = (radio24[2] << 8) | radio24[1];
4567 radio_rev = (radio24[0] & 0xF);
4568 radio_ver = (radio24[0] & 0xF0) >> 4;
4570 if (dev->dev->chip_id == 0x4317) {
4571 if (dev->dev->chip_rev == 0)
4573 else if (dev->dev->chip_rev == 1)
4578 b43_write16f(dev, B43_MMIO_RADIO_CONTROL,
4580 tmp = b43_read16(dev, B43_MMIO_RADIO_DATA_LOW);
4581 b43_write16f(dev, B43_MMIO_RADIO_CONTROL,
4583 tmp |= b43_read16(dev, B43_MMIO_RADIO_DATA_HIGH) << 16;
4585 radio_manuf = (tmp & 0x00000FFF);
4586 radio_id = (tmp & 0x0FFFF000) >> 12;
4587 radio_rev = (tmp & 0xF0000000) >> 28;
4588 radio_ver = 0; /* Probably not available on old hw */
4591 if (radio_manuf != 0x17F /* Broadcom */)
4595 if ((radio_id & 0xFFF0) != 0x2050)
4599 if (radio_id != 0x2050)
4603 if (radio_id != 0x2055 && radio_id != 0x2056 &&
4606 if (radio_id == 0x2057 &&
4607 !(radio_rev == 9 || radio_rev == 14))
4610 case B43_PHYTYPE_LP:
4611 if (radio_id != 0x2062 && radio_id != 0x2063)
4614 case B43_PHYTYPE_HT:
4615 if (radio_id != 0x2059)
4618 case B43_PHYTYPE_LCN:
4619 if (radio_id != 0x2064)
4622 case B43_PHYTYPE_AC:
4623 if (radio_id != 0x2069)
4631 "FOUND UNSUPPORTED RADIO (Manuf 0x%X, ID 0x%X, Revision %u, Version %u)\n",
4632 radio_manuf, radio_id, radio_rev, radio_ver);
4636 "Found Radio: Manuf 0x%X, ID 0x%X, Revision %u, Version %u\n",
4637 radio_manuf, radio_id, radio_rev, radio_ver);
4639 /* FIXME: b43 treats "id" as "ver" and ignores the real "ver" */
4640 phy->radio_manuf = radio_manuf;
4641 phy->radio_ver = radio_id;
4642 phy->radio_rev = radio_rev;
4644 phy->analog = analog_type;
4645 phy->type = phy_type;
4651 static void setup_struct_phy_for_init(struct b43_wldev *dev,
4652 struct b43_phy *phy)
4654 phy->hardware_power_control = !!modparam_hwpctl;
4655 phy->next_txpwr_check_time = jiffies;
4656 /* PHY TX errors counter. */
4657 atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT);
4660 phy->phy_locked = false;
4661 phy->radio_locked = false;
4665 static void setup_struct_wldev_for_init(struct b43_wldev *dev)
4667 dev->dfq_valid = false;
4669 /* Assume the radio is enabled. If it's not enabled, the state will
4670 * immediately get fixed on the first periodic work run. */
4671 dev->radio_hw_enable = true;
4674 memset(&dev->stats, 0, sizeof(dev->stats));
4676 setup_struct_phy_for_init(dev, &dev->phy);
4678 /* IRQ related flags */
4679 dev->irq_reason = 0;
4680 memset(dev->dma_reason, 0, sizeof(dev->dma_reason));
4681 dev->irq_mask = B43_IRQ_MASKTEMPLATE;
4682 if (b43_modparam_verbose < B43_VERBOSITY_DEBUG)
4683 dev->irq_mask &= ~B43_IRQ_PHY_TXERR;
4685 dev->mac_suspended = 1;
4687 /* Noise calculation context */
4688 memset(&dev->noisecalc, 0, sizeof(dev->noisecalc));
4691 static void b43_bluetooth_coext_enable(struct b43_wldev *dev)
4693 struct ssb_sprom *sprom = dev->dev->bus_sprom;
4696 if (!modparam_btcoex)
4698 if (!(sprom->boardflags_lo & B43_BFL_BTCOEXIST))
4700 if (dev->phy.type != B43_PHYTYPE_B && !dev->phy.gmode)
4703 hf = b43_hf_read(dev);
4704 if (sprom->boardflags_lo & B43_BFL_BTCMOD)
4705 hf |= B43_HF_BTCOEXALT;
4707 hf |= B43_HF_BTCOEX;
4708 b43_hf_write(dev, hf);
4711 static void b43_bluetooth_coext_disable(struct b43_wldev *dev)
4713 if (!modparam_btcoex)
4718 static void b43_imcfglo_timeouts_workaround(struct b43_wldev *dev)
4720 struct ssb_bus *bus;
4723 #ifdef CONFIG_B43_SSB
4724 if (dev->dev->bus_type != B43_BUS_SSB)
4730 bus = dev->dev->sdev->bus;
4732 if ((bus->chip_id == 0x4311 && bus->chip_rev == 2) ||
4733 (bus->chip_id == 0x4312)) {
4734 tmp = ssb_read32(dev->dev->sdev, SSB_IMCFGLO);
4735 tmp &= ~SSB_IMCFGLO_REQTO;
4736 tmp &= ~SSB_IMCFGLO_SERTO;
4738 ssb_write32(dev->dev->sdev, SSB_IMCFGLO, tmp);
4739 ssb_commit_settings(bus);
4743 static void b43_set_synth_pu_delay(struct b43_wldev *dev, bool idle)
4747 /* The time value is in microseconds. */
4749 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC) || idle)
4751 if ((dev->phy.radio_ver == 0x2050) && (dev->phy.radio_rev == 8))
4752 pu_delay = max(pu_delay, (u16)2400);
4754 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_SPUWKUP, pu_delay);
4757 /* Set the TSF CFP pre-TargetBeaconTransmissionTime. */
4758 static void b43_set_pretbtt(struct b43_wldev *dev)
4762 /* The time value is in microseconds. */
4763 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC))
4767 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRETBTT, pretbtt);
4768 b43_write16(dev, B43_MMIO_TSF_CFP_PRETBTT, pretbtt);
4771 /* Shutdown a wireless core */
4772 /* Locking: wl->mutex */
4773 static void b43_wireless_core_exit(struct b43_wldev *dev)
4775 B43_WARN_ON(dev && b43_status(dev) > B43_STAT_INITIALIZED);
4776 if (!dev || b43_status(dev) != B43_STAT_INITIALIZED)
4779 b43_set_status(dev, B43_STAT_UNINIT);
4781 /* Stop the microcode PSM. */
4782 b43_maskset32(dev, B43_MMIO_MACCTL, ~B43_MACCTL_PSM_RUN,
4783 B43_MACCTL_PSM_JMP0);
4785 switch (dev->dev->bus_type) {
4786 #ifdef CONFIG_B43_BCMA
4788 bcma_host_pci_down(dev->dev->bdev->bus);
4791 #ifdef CONFIG_B43_SSB
4801 dev->phy.ops->switch_analog(dev, 0);
4802 if (dev->wl->current_beacon) {
4803 dev_kfree_skb_any(dev->wl->current_beacon);
4804 dev->wl->current_beacon = NULL;
4807 b43_device_disable(dev, 0);
4808 b43_bus_may_powerdown(dev);
4811 /* Initialize a wireless core */
4812 static int b43_wireless_core_init(struct b43_wldev *dev)
4814 struct ssb_sprom *sprom = dev->dev->bus_sprom;
4815 struct b43_phy *phy = &dev->phy;
4819 B43_WARN_ON(b43_status(dev) != B43_STAT_UNINIT);
4821 err = b43_bus_powerup(dev, 0);
4824 if (!b43_device_is_enabled(dev))
4825 b43_wireless_core_reset(dev, phy->gmode);
4827 /* Reset all data structures. */
4828 setup_struct_wldev_for_init(dev);
4829 phy->ops->prepare_structs(dev);
4831 /* Enable IRQ routing to this device. */
4832 switch (dev->dev->bus_type) {
4833 #ifdef CONFIG_B43_BCMA
4835 bcma_host_pci_irq_ctl(dev->dev->bdev->bus,
4836 dev->dev->bdev, true);
4837 bcma_host_pci_up(dev->dev->bdev->bus);
4840 #ifdef CONFIG_B43_SSB
4842 ssb_pcicore_dev_irqvecs_enable(&dev->dev->sdev->bus->pcicore,
4848 b43_imcfglo_timeouts_workaround(dev);
4849 b43_bluetooth_coext_disable(dev);
4850 if (phy->ops->prepare_hardware) {
4851 err = phy->ops->prepare_hardware(dev);
4855 err = b43_chip_init(dev);
4858 b43_shm_write16(dev, B43_SHM_SHARED,
4859 B43_SHM_SH_WLCOREREV, dev->dev->core_rev);
4860 hf = b43_hf_read(dev);
4861 if (phy->type == B43_PHYTYPE_G) {
4865 if (sprom->boardflags_lo & B43_BFL_PACTRL)
4866 hf |= B43_HF_OFDMPABOOST;
4868 if (phy->radio_ver == 0x2050) {
4869 if (phy->radio_rev == 6)
4870 hf |= B43_HF_4318TSSI;
4871 if (phy->radio_rev < 6)
4872 hf |= B43_HF_VCORECALC;
4874 if (sprom->boardflags_lo & B43_BFL_XTAL_NOSLOW)
4875 hf |= B43_HF_DSCRQ; /* Disable slowclock requests from ucode. */
4876 #if defined(CONFIG_B43_SSB) && defined(CONFIG_SSB_DRIVER_PCICORE)
4877 if (dev->dev->bus_type == B43_BUS_SSB &&
4878 dev->dev->sdev->bus->bustype == SSB_BUSTYPE_PCI &&
4879 dev->dev->sdev->bus->pcicore.dev->id.revision <= 10)
4880 hf |= B43_HF_PCISCW; /* PCI slow clock workaround. */
4882 hf &= ~B43_HF_SKCFPUP;
4883 b43_hf_write(dev, hf);
4885 /* tell the ucode MAC capabilities */
4886 if (dev->dev->core_rev >= 13) {
4887 u32 mac_hw_cap = b43_read32(dev, B43_MMIO_MAC_HW_CAP);
4889 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_MACHW_L,
4890 mac_hw_cap & 0xffff);
4891 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_MACHW_H,
4892 (mac_hw_cap >> 16) & 0xffff);
4895 b43_set_retry_limits(dev, B43_DEFAULT_SHORT_RETRY_LIMIT,
4896 B43_DEFAULT_LONG_RETRY_LIMIT);
4897 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_SFFBLIM, 3);
4898 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_LFFBLIM, 2);
4900 /* Disable sending probe responses from firmware.
4901 * Setting the MaxTime to one usec will always trigger
4902 * a timeout, so we never send any probe resp.
4903 * A timeout of zero is infinite. */
4904 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRMAXTIME, 1);
4906 b43_rate_memory_init(dev);
4907 b43_set_phytxctl_defaults(dev);
4909 /* Minimum Contention Window */
4910 if (phy->type == B43_PHYTYPE_B)
4911 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MINCONT, 0x1F);
4913 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MINCONT, 0xF);
4914 /* Maximum Contention Window */
4915 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MAXCONT, 0x3FF);
4917 /* write phytype and phyvers */
4918 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PHYTYPE, phy->type);
4919 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PHYVER, phy->rev);
4921 if (b43_bus_host_is_pcmcia(dev->dev) ||
4922 b43_bus_host_is_sdio(dev->dev)) {
4923 dev->__using_pio_transfers = true;
4924 err = b43_pio_init(dev);
4925 } else if (dev->use_pio) {
4926 b43warn(dev->wl, "Forced PIO by use_pio module parameter. "
4927 "This should not be needed and will result in lower "
4929 dev->__using_pio_transfers = true;
4930 err = b43_pio_init(dev);
4932 dev->__using_pio_transfers = false;
4933 err = b43_dma_init(dev);
4938 b43_set_synth_pu_delay(dev, 1);
4939 b43_bluetooth_coext_enable(dev);
4941 b43_bus_powerup(dev, !(sprom->boardflags_lo & B43_BFL_XTAL_NOSLOW));
4942 b43_upload_card_macaddress(dev);
4943 b43_security_init(dev);
4945 ieee80211_wake_queues(dev->wl->hw);
4947 b43_set_status(dev, B43_STAT_INITIALIZED);
4955 b43_bus_may_powerdown(dev);
4956 B43_WARN_ON(b43_status(dev) != B43_STAT_UNINIT);
4960 static int b43_op_add_interface(struct ieee80211_hw *hw,
4961 struct ieee80211_vif *vif)
4963 struct b43_wl *wl = hw_to_b43_wl(hw);
4964 struct b43_wldev *dev;
4965 int err = -EOPNOTSUPP;
4967 /* TODO: allow AP devices to coexist */
4969 if (vif->type != NL80211_IFTYPE_AP &&
4970 vif->type != NL80211_IFTYPE_MESH_POINT &&
4971 vif->type != NL80211_IFTYPE_STATION &&
4972 vif->type != NL80211_IFTYPE_ADHOC)
4975 mutex_lock(&wl->mutex);
4977 goto out_mutex_unlock;
4979 b43dbg(wl, "Adding Interface type %d\n", vif->type);
4981 dev = wl->current_dev;
4982 wl->operating = true;
4984 wl->if_type = vif->type;
4985 memcpy(wl->mac_addr, vif->addr, ETH_ALEN);
4987 b43_adjust_opmode(dev);
4988 b43_set_pretbtt(dev);
4989 b43_set_synth_pu_delay(dev, 0);
4990 b43_upload_card_macaddress(dev);
4994 mutex_unlock(&wl->mutex);
4997 b43_op_bss_info_changed(hw, vif, &vif->bss_conf, ~0);
5002 static void b43_op_remove_interface(struct ieee80211_hw *hw,
5003 struct ieee80211_vif *vif)
5005 struct b43_wl *wl = hw_to_b43_wl(hw);
5006 struct b43_wldev *dev = wl->current_dev;
5008 b43dbg(wl, "Removing Interface type %d\n", vif->type);
5010 mutex_lock(&wl->mutex);
5012 B43_WARN_ON(!wl->operating);
5013 B43_WARN_ON(wl->vif != vif);
5016 wl->operating = false;
5018 b43_adjust_opmode(dev);
5019 eth_zero_addr(wl->mac_addr);
5020 b43_upload_card_macaddress(dev);
5022 mutex_unlock(&wl->mutex);
5025 static int b43_op_start(struct ieee80211_hw *hw)
5027 struct b43_wl *wl = hw_to_b43_wl(hw);
5028 struct b43_wldev *dev = wl->current_dev;
5032 /* Kill all old instance specific information to make sure
5033 * the card won't use it in the short timeframe between start
5034 * and mac80211 reconfiguring it. */
5035 eth_zero_addr(wl->bssid);
5036 eth_zero_addr(wl->mac_addr);
5037 wl->filter_flags = 0;
5038 wl->radiotap_enabled = false;
5040 wl->beacon0_uploaded = false;
5041 wl->beacon1_uploaded = false;
5042 wl->beacon_templates_virgin = true;
5043 wl->radio_enabled = true;
5045 mutex_lock(&wl->mutex);
5047 if (b43_status(dev) < B43_STAT_INITIALIZED) {
5048 err = b43_wireless_core_init(dev);
5050 goto out_mutex_unlock;
5054 if (b43_status(dev) < B43_STAT_STARTED) {
5055 err = b43_wireless_core_start(dev);
5058 b43_wireless_core_exit(dev);
5059 goto out_mutex_unlock;
5063 /* XXX: only do if device doesn't support rfkill irq */
5064 wiphy_rfkill_start_polling(hw->wiphy);
5067 mutex_unlock(&wl->mutex);
5070 * Configuration may have been overwritten during initialization.
5071 * Reload the configuration, but only if initialization was
5072 * successful. Reloading the configuration after a failed init
5073 * may hang the system.
5076 b43_op_config(hw, ~0);
5081 static void b43_op_stop(struct ieee80211_hw *hw, bool suspend)
5083 struct b43_wl *wl = hw_to_b43_wl(hw);
5084 struct b43_wldev *dev = wl->current_dev;
5086 cancel_work_sync(&(wl->beacon_update_trigger));
5091 mutex_lock(&wl->mutex);
5092 if (b43_status(dev) >= B43_STAT_STARTED) {
5093 dev = b43_wireless_core_stop(dev);
5097 b43_wireless_core_exit(dev);
5098 wl->radio_enabled = false;
5101 mutex_unlock(&wl->mutex);
5103 cancel_work_sync(&(wl->txpower_adjust_work));
5106 static int b43_op_beacon_set_tim(struct ieee80211_hw *hw,
5107 struct ieee80211_sta *sta, bool set)
5109 struct b43_wl *wl = hw_to_b43_wl(hw);
5111 b43_update_templates(wl);
5116 static void b43_op_sta_notify(struct ieee80211_hw *hw,
5117 struct ieee80211_vif *vif,
5118 enum sta_notify_cmd notify_cmd,
5119 struct ieee80211_sta *sta)
5121 struct b43_wl *wl = hw_to_b43_wl(hw);
5123 B43_WARN_ON(!vif || wl->vif != vif);
5126 static void b43_op_sw_scan_start_notifier(struct ieee80211_hw *hw,
5127 struct ieee80211_vif *vif,
5130 struct b43_wl *wl = hw_to_b43_wl(hw);
5131 struct b43_wldev *dev;
5133 mutex_lock(&wl->mutex);
5134 dev = wl->current_dev;
5135 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED)) {
5136 /* Disable CFP update during scan on other channels. */
5137 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_SKCFPUP);
5139 mutex_unlock(&wl->mutex);
5142 static void b43_op_sw_scan_complete_notifier(struct ieee80211_hw *hw,
5143 struct ieee80211_vif *vif)
5145 struct b43_wl *wl = hw_to_b43_wl(hw);
5146 struct b43_wldev *dev;
5148 mutex_lock(&wl->mutex);
5149 dev = wl->current_dev;
5150 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED)) {
5151 /* Re-enable CFP update. */
5152 b43_hf_write(dev, b43_hf_read(dev) & ~B43_HF_SKCFPUP);
5154 mutex_unlock(&wl->mutex);
5157 static int b43_op_get_survey(struct ieee80211_hw *hw, int idx,
5158 struct survey_info *survey)
5160 struct b43_wl *wl = hw_to_b43_wl(hw);
5161 struct b43_wldev *dev = wl->current_dev;
5162 struct ieee80211_conf *conf = &hw->conf;
5167 survey->channel = conf->chandef.chan;
5168 survey->filled = SURVEY_INFO_NOISE_DBM;
5169 survey->noise = dev->stats.link_noise;
5174 static const struct ieee80211_ops b43_hw_ops = {
5175 .add_chanctx = ieee80211_emulate_add_chanctx,
5176 .remove_chanctx = ieee80211_emulate_remove_chanctx,
5177 .change_chanctx = ieee80211_emulate_change_chanctx,
5178 .switch_vif_chanctx = ieee80211_emulate_switch_vif_chanctx,
5180 .wake_tx_queue = ieee80211_handle_wake_tx_queue,
5181 .conf_tx = b43_op_conf_tx,
5182 .add_interface = b43_op_add_interface,
5183 .remove_interface = b43_op_remove_interface,
5184 .config = b43_op_config,
5185 .bss_info_changed = b43_op_bss_info_changed,
5186 .configure_filter = b43_op_configure_filter,
5187 .set_key = b43_op_set_key,
5188 .update_tkip_key = b43_op_update_tkip_key,
5189 .get_stats = b43_op_get_stats,
5190 .get_tsf = b43_op_get_tsf,
5191 .set_tsf = b43_op_set_tsf,
5192 .start = b43_op_start,
5193 .stop = b43_op_stop,
5194 .set_tim = b43_op_beacon_set_tim,
5195 .sta_notify = b43_op_sta_notify,
5196 .sw_scan_start = b43_op_sw_scan_start_notifier,
5197 .sw_scan_complete = b43_op_sw_scan_complete_notifier,
5198 .get_survey = b43_op_get_survey,
5199 .rfkill_poll = b43_rfkill_poll,
5202 /* Hard-reset the chip. Do not call this directly.
5203 * Use b43_controller_restart()
5205 static void b43_chip_reset(struct work_struct *work)
5207 struct b43_wldev *dev =
5208 container_of(work, struct b43_wldev, restart_work);
5209 struct b43_wl *wl = dev->wl;
5213 mutex_lock(&wl->mutex);
5215 prev_status = b43_status(dev);
5216 /* Bring the device down... */
5217 if (prev_status >= B43_STAT_STARTED) {
5218 dev = b43_wireless_core_stop(dev);
5224 if (prev_status >= B43_STAT_INITIALIZED)
5225 b43_wireless_core_exit(dev);
5227 /* ...and up again. */
5228 if (prev_status >= B43_STAT_INITIALIZED) {
5229 err = b43_wireless_core_init(dev);
5233 if (prev_status >= B43_STAT_STARTED) {
5234 err = b43_wireless_core_start(dev);
5236 b43_wireless_core_exit(dev);
5242 wl->current_dev = NULL; /* Failed to init the dev. */
5243 mutex_unlock(&wl->mutex);
5246 b43err(wl, "Controller restart FAILED\n");
5250 /* reload configuration */
5251 b43_op_config(wl->hw, ~0);
5253 b43_op_bss_info_changed(wl->hw, wl->vif, &wl->vif->bss_conf, ~0);
5255 b43info(wl, "Controller restarted\n");
5258 static int b43_setup_bands(struct b43_wldev *dev,
5259 bool have_2ghz_phy, bool have_5ghz_phy)
5261 struct ieee80211_hw *hw = dev->wl->hw;
5262 struct b43_phy *phy = &dev->phy;
5266 /* We don't support all 2 GHz channels on some devices */
5267 limited_2g = phy->radio_ver == 0x2057 &&
5268 (phy->radio_rev == 9 || phy->radio_rev == 14);
5269 limited_5g = phy->radio_ver == 0x2057 &&
5270 phy->radio_rev == 9;
5273 hw->wiphy->bands[NL80211_BAND_2GHZ] = limited_2g ?
5274 &b43_band_2ghz_limited : &b43_band_2GHz;
5275 if (dev->phy.type == B43_PHYTYPE_N) {
5277 hw->wiphy->bands[NL80211_BAND_5GHZ] = limited_5g ?
5278 &b43_band_5GHz_nphy_limited :
5279 &b43_band_5GHz_nphy;
5282 hw->wiphy->bands[NL80211_BAND_5GHZ] = &b43_band_5GHz_aphy;
5285 dev->phy.supports_2ghz = have_2ghz_phy;
5286 dev->phy.supports_5ghz = have_5ghz_phy;
5291 static void b43_wireless_core_detach(struct b43_wldev *dev)
5293 /* We release firmware that late to not be required to re-request
5294 * is all the time when we reinit the core. */
5295 b43_release_firmware(dev);
5299 static void b43_supported_bands(struct b43_wldev *dev, bool *have_2ghz_phy,
5300 bool *have_5ghz_phy)
5304 #ifdef CONFIG_B43_BCMA
5305 if (dev->dev->bus_type == B43_BUS_BCMA &&
5306 dev->dev->bdev->bus->hosttype == BCMA_HOSTTYPE_PCI)
5307 dev_id = dev->dev->bdev->bus->host_pci->device;
5309 #ifdef CONFIG_B43_SSB
5310 if (dev->dev->bus_type == B43_BUS_SSB &&
5311 dev->dev->sdev->bus->bustype == SSB_BUSTYPE_PCI)
5312 dev_id = dev->dev->sdev->bus->host_pci->device;
5314 /* Override with SPROM value if available */
5315 if (dev->dev->bus_sprom->dev_id)
5316 dev_id = dev->dev->bus_sprom->dev_id;
5318 /* Note: below IDs can be "virtual" (not maching e.g. real PCI ID) */
5320 case 0x4324: /* BCM4306 */
5321 case 0x4312: /* BCM4311 */
5322 case 0x4319: /* BCM4318 */
5323 case 0x4328: /* BCM4321 */
5324 case 0x432b: /* BCM4322 */
5325 case 0x4350: /* BCM43222 */
5326 case 0x4353: /* BCM43224 */
5327 case 0x0576: /* BCM43224 */
5328 case 0x435f: /* BCM6362 */
5329 case 0x4331: /* BCM4331 */
5330 case 0x4359: /* BCM43228 */
5331 case 0x43a0: /* BCM4360 */
5332 case 0x43b1: /* BCM4352 */
5333 /* Dual band devices */
5334 *have_2ghz_phy = true;
5335 *have_5ghz_phy = true;
5337 case 0x4321: /* BCM4306 */
5338 /* There are 14e4:4321 PCI devs with 2.4 GHz BCM4321 (N-PHY) */
5339 if (dev->phy.type != B43_PHYTYPE_G)
5342 case 0x4313: /* BCM4311 */
5343 case 0x431a: /* BCM4318 */
5344 case 0x432a: /* BCM4321 */
5345 case 0x432d: /* BCM4322 */
5346 case 0x4352: /* BCM43222 */
5347 case 0x435a: /* BCM43228 */
5348 case 0x4333: /* BCM4331 */
5349 case 0x43a2: /* BCM4360 */
5350 case 0x43b3: /* BCM4352 */
5351 /* 5 GHz only devices */
5352 *have_2ghz_phy = false;
5353 *have_5ghz_phy = true;
5357 /* As a fallback, try to guess using PHY type */
5358 switch (dev->phy.type) {
5361 case B43_PHYTYPE_LP:
5362 case B43_PHYTYPE_HT:
5363 case B43_PHYTYPE_LCN:
5364 *have_2ghz_phy = true;
5365 *have_5ghz_phy = false;
5372 static int b43_wireless_core_attach(struct b43_wldev *dev)
5374 struct b43_wl *wl = dev->wl;
5375 struct b43_phy *phy = &dev->phy;
5378 bool have_2ghz_phy = false, have_5ghz_phy = false;
5380 /* Do NOT do any device initialization here.
5381 * Do it in wireless_core_init() instead.
5382 * This function is for gathering basic information about the HW, only.
5383 * Also some structs may be set up here. But most likely you want to have
5384 * that in core_init(), too.
5387 err = b43_bus_powerup(dev, 0);
5389 b43err(wl, "Bus powerup failed\n");
5393 phy->do_full_init = true;
5395 /* Try to guess supported bands for the first init needs */
5396 switch (dev->dev->bus_type) {
5397 #ifdef CONFIG_B43_BCMA
5399 tmp = bcma_aread32(dev->dev->bdev, BCMA_IOST);
5400 have_2ghz_phy = !!(tmp & B43_BCMA_IOST_2G_PHY);
5401 have_5ghz_phy = !!(tmp & B43_BCMA_IOST_5G_PHY);
5404 #ifdef CONFIG_B43_SSB
5406 if (dev->dev->core_rev >= 5) {
5407 tmp = ssb_read32(dev->dev->sdev, SSB_TMSHIGH);
5408 have_2ghz_phy = !!(tmp & B43_TMSHIGH_HAVE_2GHZ_PHY);
5409 have_5ghz_phy = !!(tmp & B43_TMSHIGH_HAVE_5GHZ_PHY);
5416 dev->phy.gmode = have_2ghz_phy;
5417 b43_wireless_core_reset(dev, dev->phy.gmode);
5419 /* Get the PHY type. */
5420 err = b43_phy_versioning(dev);
5424 /* Get real info about supported bands */
5425 b43_supported_bands(dev, &have_2ghz_phy, &have_5ghz_phy);
5427 /* We don't support 5 GHz on some PHYs yet */
5428 if (have_5ghz_phy) {
5429 switch (dev->phy.type) {
5431 case B43_PHYTYPE_LP:
5432 case B43_PHYTYPE_HT:
5433 b43warn(wl, "5 GHz band is unsupported on this PHY\n");
5434 have_5ghz_phy = false;
5438 if (!have_2ghz_phy && !have_5ghz_phy) {
5439 b43err(wl, "b43 can't support any band on this device\n");
5444 err = b43_phy_allocate(dev);
5448 dev->phy.gmode = have_2ghz_phy;
5449 b43_wireless_core_reset(dev, dev->phy.gmode);
5451 err = b43_validate_chipaccess(dev);
5454 err = b43_setup_bands(dev, have_2ghz_phy, have_5ghz_phy);
5458 /* Now set some default "current_dev" */
5459 if (!wl->current_dev)
5460 wl->current_dev = dev;
5461 INIT_WORK(&dev->restart_work, b43_chip_reset);
5463 dev->phy.ops->switch_analog(dev, 0);
5464 b43_device_disable(dev, 0);
5465 b43_bus_may_powerdown(dev);
5473 b43_bus_may_powerdown(dev);
5477 static void b43_one_core_detach(struct b43_bus_dev *dev)
5479 struct b43_wldev *wldev;
5481 /* Do not cancel ieee80211-workqueue based work here.
5482 * See comment in b43_remove(). */
5484 wldev = b43_bus_get_wldev(dev);
5485 b43_debugfs_remove_device(wldev);
5486 b43_wireless_core_detach(wldev);
5487 list_del(&wldev->list);
5488 b43_bus_set_wldev(dev, NULL);
5492 static int b43_one_core_attach(struct b43_bus_dev *dev, struct b43_wl *wl)
5494 struct b43_wldev *wldev;
5497 wldev = kzalloc(sizeof(*wldev), GFP_KERNEL);
5501 wldev->use_pio = b43_modparam_pio;
5504 b43_set_status(wldev, B43_STAT_UNINIT);
5505 wldev->bad_frames_preempt = modparam_bad_frames_preempt;
5506 INIT_LIST_HEAD(&wldev->list);
5508 err = b43_wireless_core_attach(wldev);
5510 goto err_kfree_wldev;
5512 b43_bus_set_wldev(dev, wldev);
5513 b43_debugfs_add_device(wldev);
5523 #define IS_PDEV(pdev, _vendor, _device, _subvendor, _subdevice) ( \
5524 (pdev->vendor == PCI_VENDOR_ID_##_vendor) && \
5525 (pdev->device == _device) && \
5526 (pdev->subsystem_vendor == PCI_VENDOR_ID_##_subvendor) && \
5527 (pdev->subsystem_device == _subdevice) )
5529 #ifdef CONFIG_B43_SSB
5530 static void b43_sprom_fixup(struct ssb_bus *bus)
5532 struct pci_dev *pdev;
5534 /* boardflags workarounds */
5535 if (bus->boardinfo.vendor == SSB_BOARDVENDOR_DELL &&
5536 bus->chip_id == 0x4301 && bus->sprom.board_rev == 0x74)
5537 bus->sprom.boardflags_lo |= B43_BFL_BTCOEXIST;
5538 if (bus->boardinfo.vendor == PCI_VENDOR_ID_APPLE &&
5539 bus->boardinfo.type == 0x4E && bus->sprom.board_rev > 0x40)
5540 bus->sprom.boardflags_lo |= B43_BFL_PACTRL;
5541 if (bus->bustype == SSB_BUSTYPE_PCI) {
5542 pdev = bus->host_pci;
5543 if (IS_PDEV(pdev, BROADCOM, 0x4318, ASUSTEK, 0x100F) ||
5544 IS_PDEV(pdev, BROADCOM, 0x4320, DELL, 0x0003) ||
5545 IS_PDEV(pdev, BROADCOM, 0x4320, HP, 0x12f8) ||
5546 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0015) ||
5547 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0014) ||
5548 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0013) ||
5549 IS_PDEV(pdev, BROADCOM, 0x4320, MOTOROLA, 0x7010))
5550 bus->sprom.boardflags_lo &= ~B43_BFL_BTCOEXIST;
5554 static void b43_wireless_exit(struct b43_bus_dev *dev, struct b43_wl *wl)
5556 struct ieee80211_hw *hw = wl->hw;
5558 ssb_set_devtypedata(dev->sdev, NULL);
5559 ieee80211_free_hw(hw);
5563 static struct b43_wl *b43_wireless_init(struct b43_bus_dev *dev)
5565 struct ssb_sprom *sprom = dev->bus_sprom;
5566 struct ieee80211_hw *hw;
5571 hw = ieee80211_alloc_hw(sizeof(*wl), &b43_hw_ops);
5573 b43err(NULL, "Could not allocate ieee80211 device\n");
5574 return ERR_PTR(-ENOMEM);
5576 wl = hw_to_b43_wl(hw);
5579 ieee80211_hw_set(hw, RX_INCLUDES_FCS);
5580 ieee80211_hw_set(hw, SIGNAL_DBM);
5581 ieee80211_hw_set(hw, MFP_CAPABLE);
5582 hw->wiphy->interface_modes =
5583 BIT(NL80211_IFTYPE_AP) |
5584 BIT(NL80211_IFTYPE_MESH_POINT) |
5585 BIT(NL80211_IFTYPE_STATION) |
5586 BIT(NL80211_IFTYPE_ADHOC);
5588 hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
5590 wiphy_ext_feature_set(hw->wiphy, NL80211_EXT_FEATURE_CQM_RSSI_LIST);
5592 wl->hw_registered = false;
5594 SET_IEEE80211_DEV(hw, dev->dev);
5595 if (is_valid_ether_addr(sprom->et1mac))
5596 SET_IEEE80211_PERM_ADDR(hw, sprom->et1mac);
5598 SET_IEEE80211_PERM_ADDR(hw, sprom->il0mac);
5600 /* Initialize struct b43_wl */
5602 mutex_init(&wl->mutex);
5603 spin_lock_init(&wl->hardirq_lock);
5604 spin_lock_init(&wl->beacon_lock);
5605 INIT_WORK(&wl->beacon_update_trigger, b43_beacon_update_trigger_work);
5606 INIT_WORK(&wl->txpower_adjust_work, b43_phy_txpower_adjust_work);
5607 INIT_WORK(&wl->tx_work, b43_tx_work);
5609 /* Initialize queues and flags. */
5610 for (queue_num = 0; queue_num < B43_QOS_QUEUE_NUM; queue_num++) {
5611 skb_queue_head_init(&wl->tx_queue[queue_num]);
5612 wl->tx_queue_stopped[queue_num] = false;
5615 snprintf(chip_name, ARRAY_SIZE(chip_name),
5616 (dev->chip_id > 0x9999) ? "%d" : "%04X", dev->chip_id);
5617 b43info(wl, "Broadcom %s WLAN found (core revision %u)\n", chip_name,
5622 #ifdef CONFIG_B43_BCMA
5623 static int b43_bcma_probe(struct bcma_device *core)
5625 struct b43_bus_dev *dev;
5629 if (!modparam_allhwsupport &&
5630 (core->id.rev == 0x17 || core->id.rev == 0x18)) {
5631 pr_err("Support for cores revisions 0x17 and 0x18 disabled by module param allhwsupport=0. Try b43.allhwsupport=1\n");
5635 dev = b43_bus_dev_bcma_init(core);
5639 wl = b43_wireless_init(dev);
5645 err = b43_one_core_attach(dev, wl);
5647 goto bcma_err_wireless_exit;
5649 /* setup and start work to load firmware */
5650 INIT_WORK(&wl->firmware_load, b43_request_firmware);
5651 schedule_work(&wl->firmware_load);
5655 bcma_err_wireless_exit:
5656 ieee80211_free_hw(wl->hw);
5662 static void b43_bcma_remove(struct bcma_device *core)
5664 struct b43_wldev *wldev = bcma_get_drvdata(core);
5665 struct b43_wl *wl = wldev->wl;
5667 /* We must cancel any work here before unregistering from ieee80211,
5668 * as the ieee80211 unreg will destroy the workqueue. */
5669 cancel_work_sync(&wldev->restart_work);
5670 cancel_work_sync(&wl->firmware_load);
5673 if (!wldev->fw.ucode.data)
5674 return; /* NULL if firmware never loaded */
5675 if (wl->current_dev == wldev && wl->hw_registered) {
5676 b43_leds_stop(wldev);
5677 ieee80211_unregister_hw(wl->hw);
5680 b43_one_core_detach(wldev->dev);
5682 /* Unregister HW RNG driver */
5685 b43_leds_unregister(wl);
5686 ieee80211_free_hw(wl->hw);
5690 static struct bcma_driver b43_bcma_driver = {
5691 .name = KBUILD_MODNAME,
5692 .id_table = b43_bcma_tbl,
5693 .probe = b43_bcma_probe,
5694 .remove = b43_bcma_remove,
5698 #ifdef CONFIG_B43_SSB
5700 int b43_ssb_probe(struct ssb_device *sdev, const struct ssb_device_id *id)
5702 struct b43_bus_dev *dev;
5706 dev = b43_bus_dev_ssb_init(sdev);
5710 wl = ssb_get_devtypedata(sdev);
5712 b43err(NULL, "Dual-core devices are not supported\n");
5714 goto err_ssb_kfree_dev;
5717 b43_sprom_fixup(sdev->bus);
5719 wl = b43_wireless_init(dev);
5722 goto err_ssb_kfree_dev;
5724 ssb_set_devtypedata(sdev, wl);
5725 B43_WARN_ON(ssb_get_devtypedata(sdev) != wl);
5727 err = b43_one_core_attach(dev, wl);
5729 goto err_ssb_wireless_exit;
5731 /* setup and start work to load firmware */
5732 INIT_WORK(&wl->firmware_load, b43_request_firmware);
5733 schedule_work(&wl->firmware_load);
5737 err_ssb_wireless_exit:
5738 b43_wireless_exit(dev, wl);
5744 static void b43_ssb_remove(struct ssb_device *sdev)
5746 struct b43_wl *wl = ssb_get_devtypedata(sdev);
5747 struct b43_wldev *wldev = ssb_get_drvdata(sdev);
5748 struct b43_bus_dev *dev = wldev->dev;
5750 /* We must cancel any work here before unregistering from ieee80211,
5751 * as the ieee80211 unreg will destroy the workqueue. */
5752 cancel_work_sync(&wldev->restart_work);
5753 cancel_work_sync(&wl->firmware_load);
5756 if (!wldev->fw.ucode.data)
5757 return; /* NULL if firmware never loaded */
5758 if (wl->current_dev == wldev && wl->hw_registered) {
5759 b43_leds_stop(wldev);
5760 ieee80211_unregister_hw(wl->hw);
5763 b43_one_core_detach(dev);
5765 /* Unregister HW RNG driver */
5768 b43_leds_unregister(wl);
5769 b43_wireless_exit(dev, wl);
5773 static struct ssb_driver b43_ssb_driver = {
5774 .name = KBUILD_MODNAME,
5775 .id_table = b43_ssb_tbl,
5776 .probe = b43_ssb_probe,
5777 .remove = b43_ssb_remove,
5779 #endif /* CONFIG_B43_SSB */
5781 /* Perform a hardware reset. This can be called from any context. */
5782 void b43_controller_restart(struct b43_wldev *dev, const char *reason)
5784 /* Must avoid requeueing, if we are in shutdown. */
5785 if (b43_status(dev) < B43_STAT_INITIALIZED)
5787 b43info(dev->wl, "Controller RESET (%s) ...\n", reason);
5788 ieee80211_queue_work(dev->wl->hw, &dev->restart_work);
5791 static void b43_print_driverinfo(void)
5793 const char *feat_pci = "", *feat_nphy = "",
5794 *feat_leds = "", *feat_sdio = "";
5796 #ifdef CONFIG_B43_PCI_AUTOSELECT
5799 #ifdef CONFIG_B43_PHY_N
5802 #ifdef CONFIG_B43_LEDS
5805 #ifdef CONFIG_B43_SDIO
5808 printk(KERN_INFO "Broadcom 43xx driver loaded "
5809 "[ Features: %s%s%s%s ]\n",
5810 feat_pci, feat_nphy, feat_leds, feat_sdio);
5813 static int __init b43_init(void)
5818 err = b43_sdio_init();
5821 #ifdef CONFIG_B43_BCMA
5822 err = bcma_driver_register(&b43_bcma_driver);
5826 #ifdef CONFIG_B43_SSB
5827 err = ssb_driver_register(&b43_ssb_driver);
5829 goto err_bcma_driver_exit;
5831 b43_print_driverinfo();
5835 #ifdef CONFIG_B43_SSB
5836 err_bcma_driver_exit:
5838 #ifdef CONFIG_B43_BCMA
5839 bcma_driver_unregister(&b43_bcma_driver);
5848 static void __exit b43_exit(void)
5850 #ifdef CONFIG_B43_SSB
5851 ssb_driver_unregister(&b43_ssb_driver);
5853 #ifdef CONFIG_B43_BCMA
5854 bcma_driver_unregister(&b43_bcma_driver);
5860 module_init(b43_init)
5861 module_exit(b43_exit)