blob: bff08707c430f58937412a5780559561249565dd [file] [log] [blame]
Michael Buesche4d6b792007-09-18 15:39:42 -04001/*
2
3 Broadcom B43 wireless driver
4
5 Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>
Stefano Brivio1f21ad22007-11-06 22:49:20 +01006 Copyright (c) 2005 Stefano Brivio <stefano.brivio@polimi.it>
Michael Buesch060210f2009-01-25 15:49:59 +01007 Copyright (c) 2005-2009 Michael Buesch <mb@bu3sch.de>
Michael Buesche4d6b792007-09-18 15:39:42 -04008 Copyright (c) 2005 Danny van Dyk <kugelfang@gentoo.org>
9 Copyright (c) 2005 Andreas Jaggi <andreas.jaggi@waterwave.ch>
10
Albert Herranz3dbba8e2009-09-10 19:34:49 +020011 SDIO support
12 Copyright (c) 2009 Albert Herranz <albert_herranz@yahoo.es>
13
Michael Buesche4d6b792007-09-18 15:39:42 -040014 Some parts of the code in this file are derived from the ipw2200
15 driver Copyright(c) 2003 - 2004 Intel Corporation.
16
17 This program is free software; you can redistribute it and/or modify
18 it under the terms of the GNU General Public License as published by
19 the Free Software Foundation; either version 2 of the License, or
20 (at your option) any later version.
21
22 This program is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
26
27 You should have received a copy of the GNU General Public License
28 along with this program; see the file COPYING. If not, write to
29 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
30 Boston, MA 02110-1301, USA.
31
32*/
33
34#include <linux/delay.h>
35#include <linux/init.h>
36#include <linux/moduleparam.h>
37#include <linux/if_arp.h>
38#include <linux/etherdevice.h>
Michael Buesche4d6b792007-09-18 15:39:42 -040039#include <linux/firmware.h>
40#include <linux/wireless.h>
41#include <linux/workqueue.h>
42#include <linux/skbuff.h>
Andrew Morton96cf49a2008-02-04 22:27:19 -080043#include <linux/io.h>
Michael Buesche4d6b792007-09-18 15:39:42 -040044#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090045#include <linux/slab.h>
Michael Buesche4d6b792007-09-18 15:39:42 -040046#include <asm/unaligned.h>
47
48#include "b43.h"
49#include "main.h"
50#include "debugfs.h"
Michael Bueschef1a6282008-08-27 18:53:02 +020051#include "phy_common.h"
52#include "phy_g.h"
Michael Buesch3d0da752008-08-30 02:27:19 +020053#include "phy_n.h"
Michael Buesche4d6b792007-09-18 15:39:42 -040054#include "dma.h"
Michael Buesch5100d5a2008-03-29 21:01:16 +010055#include "pio.h"
Michael Buesche4d6b792007-09-18 15:39:42 -040056#include "sysfs.h"
57#include "xmit.h"
Michael Buesche4d6b792007-09-18 15:39:42 -040058#include "lo.h"
59#include "pcmcia.h"
Albert Herranz3dbba8e2009-09-10 19:34:49 +020060#include "sdio.h"
61#include <linux/mmc/sdio_func.h>
Michael Buesche4d6b792007-09-18 15:39:42 -040062
63MODULE_DESCRIPTION("Broadcom B43 wireless driver");
64MODULE_AUTHOR("Martin Langer");
65MODULE_AUTHOR("Stefano Brivio");
66MODULE_AUTHOR("Michael Buesch");
Gábor Stefanik0136e512009-08-28 22:32:17 +020067MODULE_AUTHOR("Gábor Stefanik");
Michael Buesche4d6b792007-09-18 15:39:42 -040068MODULE_LICENSE("GPL");
69
Michael Buesch9c7d99d2008-02-09 10:23:49 +010070MODULE_FIRMWARE(B43_SUPPORTED_FIRMWARE_ID);
Tim Gardner6021e082010-01-07 11:10:38 -070071MODULE_FIRMWARE("b43/ucode11.fw");
72MODULE_FIRMWARE("b43/ucode13.fw");
73MODULE_FIRMWARE("b43/ucode14.fw");
74MODULE_FIRMWARE("b43/ucode15.fw");
Rafał Miłeckif6158392011-04-19 22:49:29 +020075MODULE_FIRMWARE("b43/ucode16_mimo.fw");
Tim Gardner6021e082010-01-07 11:10:38 -070076MODULE_FIRMWARE("b43/ucode5.fw");
77MODULE_FIRMWARE("b43/ucode9.fw");
Michael Buesche4d6b792007-09-18 15:39:42 -040078
79static int modparam_bad_frames_preempt;
80module_param_named(bad_frames_preempt, modparam_bad_frames_preempt, int, 0444);
81MODULE_PARM_DESC(bad_frames_preempt,
82 "enable(1) / disable(0) Bad Frames Preemption");
83
Michael Buesche4d6b792007-09-18 15:39:42 -040084static char modparam_fwpostfix[16];
85module_param_string(fwpostfix, modparam_fwpostfix, 16, 0444);
86MODULE_PARM_DESC(fwpostfix, "Postfix for the .fw files to load.");
87
Michael Buesche4d6b792007-09-18 15:39:42 -040088static int modparam_hwpctl;
89module_param_named(hwpctl, modparam_hwpctl, int, 0444);
90MODULE_PARM_DESC(hwpctl, "Enable hardware-side power control (default off)");
91
92static int modparam_nohwcrypt;
93module_param_named(nohwcrypt, modparam_nohwcrypt, int, 0444);
94MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
95
gregor kowski035d0242009-08-19 22:35:45 +020096static int modparam_hwtkip;
97module_param_named(hwtkip, modparam_hwtkip, int, 0444);
98MODULE_PARM_DESC(hwtkip, "Enable hardware tkip.");
99
Michael Buesch403a3a12009-06-08 21:04:57 +0200100static int modparam_qos = 1;
101module_param_named(qos, modparam_qos, int, 0444);
Michael Buesche6f5b932008-03-05 21:18:49 +0100102MODULE_PARM_DESC(qos, "Enable QOS support (default on)");
103
Michael Buesch1855ba72008-04-18 20:51:41 +0200104static int modparam_btcoex = 1;
105module_param_named(btcoex, modparam_btcoex, int, 0444);
Gábor Stefanikc71dbd32009-08-28 22:34:21 +0200106MODULE_PARM_DESC(btcoex, "Enable Bluetooth coexistence (default on)");
Michael Buesch1855ba72008-04-18 20:51:41 +0200107
Michael Buesch060210f2009-01-25 15:49:59 +0100108int b43_modparam_verbose = B43_VERBOSITY_DEFAULT;
109module_param_named(verbose, b43_modparam_verbose, int, 0644);
110MODULE_PARM_DESC(verbose, "Log message verbosity: 0=error, 1=warn, 2=info(default), 3=debug");
111
John W. Linville41950bd2010-07-21 11:37:19 -0400112static int b43_modparam_pio = B43_PIO_DEFAULT;
Linus Torvalds9e3bd912010-02-26 10:34:27 -0800113module_param_named(pio, b43_modparam_pio, int, 0644);
114MODULE_PARM_DESC(pio, "Use PIO accesses by default: 0=DMA, 1=PIO");
Michael Buesche6f5b932008-03-05 21:18:49 +0100115
Rafał Miłecki3c65ab62011-06-02 09:56:04 +0200116#ifdef CONFIG_B43_BCMA
117static const struct bcma_device_id b43_bcma_tbl[] = {
118 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x17, BCMA_ANY_CLASS),
119 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x18, BCMA_ANY_CLASS),
120 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x1D, BCMA_ANY_CLASS),
121 BCMA_CORETABLE_END
122};
123MODULE_DEVICE_TABLE(bcma, b43_bcma_tbl);
124#endif
125
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +0200126#ifdef CONFIG_B43_SSB
Michael Buesche4d6b792007-09-18 15:39:42 -0400127static const struct ssb_device_id b43_ssb_tbl[] = {
128 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 5),
129 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 6),
130 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 7),
131 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 9),
132 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 10),
Michael Bueschd5c71e42008-01-04 17:06:29 +0100133 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 11),
Rafał Miłecki003d6d22010-01-15 12:10:53 +0100134 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 12),
Larry Finger013978b2007-11-26 10:29:47 -0600135 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 13),
Michael Buesch6b1c7c62008-12-25 00:39:28 +0100136 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 15),
Johannes Berg92d61282008-12-24 12:44:09 +0100137 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 16),
Michael Buesche4d6b792007-09-18 15:39:42 -0400138 SSB_DEVTABLE_END
139};
Michael Buesche4d6b792007-09-18 15:39:42 -0400140MODULE_DEVICE_TABLE(ssb, b43_ssb_tbl);
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +0200141#endif
Michael Buesche4d6b792007-09-18 15:39:42 -0400142
143/* Channel and ratetables are shared for all devices.
144 * They can't be const, because ieee80211 puts some precalculated
145 * data in there. This data is the same for all devices, so we don't
146 * get concurrency issues */
147#define RATETAB_ENT(_rateid, _flags) \
Johannes Berg8318d782008-01-24 19:38:38 +0100148 { \
149 .bitrate = B43_RATE_TO_BASE100KBPS(_rateid), \
150 .hw_value = (_rateid), \
151 .flags = (_flags), \
Michael Buesche4d6b792007-09-18 15:39:42 -0400152 }
Johannes Berg8318d782008-01-24 19:38:38 +0100153
154/*
155 * NOTE: When changing this, sync with xmit.c's
156 * b43_plcp_get_bitrate_idx_* functions!
157 */
Michael Buesche4d6b792007-09-18 15:39:42 -0400158static struct ieee80211_rate __b43_ratetable[] = {
Johannes Berg8318d782008-01-24 19:38:38 +0100159 RATETAB_ENT(B43_CCK_RATE_1MB, 0),
160 RATETAB_ENT(B43_CCK_RATE_2MB, IEEE80211_RATE_SHORT_PREAMBLE),
161 RATETAB_ENT(B43_CCK_RATE_5MB, IEEE80211_RATE_SHORT_PREAMBLE),
162 RATETAB_ENT(B43_CCK_RATE_11MB, IEEE80211_RATE_SHORT_PREAMBLE),
163 RATETAB_ENT(B43_OFDM_RATE_6MB, 0),
164 RATETAB_ENT(B43_OFDM_RATE_9MB, 0),
165 RATETAB_ENT(B43_OFDM_RATE_12MB, 0),
166 RATETAB_ENT(B43_OFDM_RATE_18MB, 0),
167 RATETAB_ENT(B43_OFDM_RATE_24MB, 0),
168 RATETAB_ENT(B43_OFDM_RATE_36MB, 0),
169 RATETAB_ENT(B43_OFDM_RATE_48MB, 0),
170 RATETAB_ENT(B43_OFDM_RATE_54MB, 0),
Michael Buesche4d6b792007-09-18 15:39:42 -0400171};
172
173#define b43_a_ratetable (__b43_ratetable + 4)
174#define b43_a_ratetable_size 8
175#define b43_b_ratetable (__b43_ratetable + 0)
176#define b43_b_ratetable_size 4
177#define b43_g_ratetable (__b43_ratetable + 0)
178#define b43_g_ratetable_size 12
179
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100180#define CHAN4G(_channel, _freq, _flags) { \
181 .band = IEEE80211_BAND_2GHZ, \
182 .center_freq = (_freq), \
183 .hw_value = (_channel), \
184 .flags = (_flags), \
185 .max_antenna_gain = 0, \
186 .max_power = 30, \
187}
Michael Buesch96c755a2008-01-06 00:09:46 +0100188static struct ieee80211_channel b43_2ghz_chantable[] = {
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100189 CHAN4G(1, 2412, 0),
190 CHAN4G(2, 2417, 0),
191 CHAN4G(3, 2422, 0),
192 CHAN4G(4, 2427, 0),
193 CHAN4G(5, 2432, 0),
194 CHAN4G(6, 2437, 0),
195 CHAN4G(7, 2442, 0),
196 CHAN4G(8, 2447, 0),
197 CHAN4G(9, 2452, 0),
198 CHAN4G(10, 2457, 0),
199 CHAN4G(11, 2462, 0),
200 CHAN4G(12, 2467, 0),
201 CHAN4G(13, 2472, 0),
202 CHAN4G(14, 2484, 0),
203};
204#undef CHAN4G
205
206#define CHAN5G(_channel, _flags) { \
207 .band = IEEE80211_BAND_5GHZ, \
208 .center_freq = 5000 + (5 * (_channel)), \
209 .hw_value = (_channel), \
210 .flags = (_flags), \
211 .max_antenna_gain = 0, \
212 .max_power = 30, \
213}
214static struct ieee80211_channel b43_5ghz_nphy_chantable[] = {
215 CHAN5G(32, 0), CHAN5G(34, 0),
216 CHAN5G(36, 0), CHAN5G(38, 0),
217 CHAN5G(40, 0), CHAN5G(42, 0),
218 CHAN5G(44, 0), CHAN5G(46, 0),
219 CHAN5G(48, 0), CHAN5G(50, 0),
220 CHAN5G(52, 0), CHAN5G(54, 0),
221 CHAN5G(56, 0), CHAN5G(58, 0),
222 CHAN5G(60, 0), CHAN5G(62, 0),
223 CHAN5G(64, 0), CHAN5G(66, 0),
224 CHAN5G(68, 0), CHAN5G(70, 0),
225 CHAN5G(72, 0), CHAN5G(74, 0),
226 CHAN5G(76, 0), CHAN5G(78, 0),
227 CHAN5G(80, 0), CHAN5G(82, 0),
228 CHAN5G(84, 0), CHAN5G(86, 0),
229 CHAN5G(88, 0), CHAN5G(90, 0),
230 CHAN5G(92, 0), CHAN5G(94, 0),
231 CHAN5G(96, 0), CHAN5G(98, 0),
232 CHAN5G(100, 0), CHAN5G(102, 0),
233 CHAN5G(104, 0), CHAN5G(106, 0),
234 CHAN5G(108, 0), CHAN5G(110, 0),
235 CHAN5G(112, 0), CHAN5G(114, 0),
236 CHAN5G(116, 0), CHAN5G(118, 0),
237 CHAN5G(120, 0), CHAN5G(122, 0),
238 CHAN5G(124, 0), CHAN5G(126, 0),
239 CHAN5G(128, 0), CHAN5G(130, 0),
240 CHAN5G(132, 0), CHAN5G(134, 0),
241 CHAN5G(136, 0), CHAN5G(138, 0),
242 CHAN5G(140, 0), CHAN5G(142, 0),
243 CHAN5G(144, 0), CHAN5G(145, 0),
244 CHAN5G(146, 0), CHAN5G(147, 0),
245 CHAN5G(148, 0), CHAN5G(149, 0),
246 CHAN5G(150, 0), CHAN5G(151, 0),
247 CHAN5G(152, 0), CHAN5G(153, 0),
248 CHAN5G(154, 0), CHAN5G(155, 0),
249 CHAN5G(156, 0), CHAN5G(157, 0),
250 CHAN5G(158, 0), CHAN5G(159, 0),
251 CHAN5G(160, 0), CHAN5G(161, 0),
252 CHAN5G(162, 0), CHAN5G(163, 0),
253 CHAN5G(164, 0), CHAN5G(165, 0),
254 CHAN5G(166, 0), CHAN5G(168, 0),
255 CHAN5G(170, 0), CHAN5G(172, 0),
256 CHAN5G(174, 0), CHAN5G(176, 0),
257 CHAN5G(178, 0), CHAN5G(180, 0),
258 CHAN5G(182, 0), CHAN5G(184, 0),
259 CHAN5G(186, 0), CHAN5G(188, 0),
260 CHAN5G(190, 0), CHAN5G(192, 0),
261 CHAN5G(194, 0), CHAN5G(196, 0),
262 CHAN5G(198, 0), CHAN5G(200, 0),
263 CHAN5G(202, 0), CHAN5G(204, 0),
264 CHAN5G(206, 0), CHAN5G(208, 0),
265 CHAN5G(210, 0), CHAN5G(212, 0),
266 CHAN5G(214, 0), CHAN5G(216, 0),
267 CHAN5G(218, 0), CHAN5G(220, 0),
268 CHAN5G(222, 0), CHAN5G(224, 0),
269 CHAN5G(226, 0), CHAN5G(228, 0),
Michael Buesche4d6b792007-09-18 15:39:42 -0400270};
271
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100272static struct ieee80211_channel b43_5ghz_aphy_chantable[] = {
273 CHAN5G(34, 0), CHAN5G(36, 0),
274 CHAN5G(38, 0), CHAN5G(40, 0),
275 CHAN5G(42, 0), CHAN5G(44, 0),
276 CHAN5G(46, 0), CHAN5G(48, 0),
277 CHAN5G(52, 0), CHAN5G(56, 0),
278 CHAN5G(60, 0), CHAN5G(64, 0),
279 CHAN5G(100, 0), CHAN5G(104, 0),
280 CHAN5G(108, 0), CHAN5G(112, 0),
281 CHAN5G(116, 0), CHAN5G(120, 0),
282 CHAN5G(124, 0), CHAN5G(128, 0),
283 CHAN5G(132, 0), CHAN5G(136, 0),
284 CHAN5G(140, 0), CHAN5G(149, 0),
285 CHAN5G(153, 0), CHAN5G(157, 0),
286 CHAN5G(161, 0), CHAN5G(165, 0),
287 CHAN5G(184, 0), CHAN5G(188, 0),
288 CHAN5G(192, 0), CHAN5G(196, 0),
289 CHAN5G(200, 0), CHAN5G(204, 0),
290 CHAN5G(208, 0), CHAN5G(212, 0),
291 CHAN5G(216, 0),
292};
293#undef CHAN5G
294
295static struct ieee80211_supported_band b43_band_5GHz_nphy = {
296 .band = IEEE80211_BAND_5GHZ,
297 .channels = b43_5ghz_nphy_chantable,
298 .n_channels = ARRAY_SIZE(b43_5ghz_nphy_chantable),
299 .bitrates = b43_a_ratetable,
300 .n_bitrates = b43_a_ratetable_size,
Michael Buesche4d6b792007-09-18 15:39:42 -0400301};
Johannes Berg8318d782008-01-24 19:38:38 +0100302
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100303static struct ieee80211_supported_band b43_band_5GHz_aphy = {
304 .band = IEEE80211_BAND_5GHZ,
305 .channels = b43_5ghz_aphy_chantable,
306 .n_channels = ARRAY_SIZE(b43_5ghz_aphy_chantable),
307 .bitrates = b43_a_ratetable,
308 .n_bitrates = b43_a_ratetable_size,
Johannes Berg8318d782008-01-24 19:38:38 +0100309};
Michael Buesche4d6b792007-09-18 15:39:42 -0400310
Johannes Berg8318d782008-01-24 19:38:38 +0100311static struct ieee80211_supported_band b43_band_2GHz = {
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100312 .band = IEEE80211_BAND_2GHZ,
313 .channels = b43_2ghz_chantable,
314 .n_channels = ARRAY_SIZE(b43_2ghz_chantable),
315 .bitrates = b43_g_ratetable,
316 .n_bitrates = b43_g_ratetable_size,
Johannes Berg8318d782008-01-24 19:38:38 +0100317};
318
Michael Buesche4d6b792007-09-18 15:39:42 -0400319static void b43_wireless_core_exit(struct b43_wldev *dev);
320static int b43_wireless_core_init(struct b43_wldev *dev);
Michael Buesch36dbd952009-09-04 22:51:29 +0200321static struct b43_wldev * b43_wireless_core_stop(struct b43_wldev *dev);
Michael Buesche4d6b792007-09-18 15:39:42 -0400322static int b43_wireless_core_start(struct b43_wldev *dev);
323
324static int b43_ratelimit(struct b43_wl *wl)
325{
326 if (!wl || !wl->current_dev)
327 return 1;
328 if (b43_status(wl->current_dev) < B43_STAT_STARTED)
329 return 1;
330 /* We are up and running.
331 * Ratelimit the messages to avoid DoS over the net. */
332 return net_ratelimit();
333}
334
335void b43info(struct b43_wl *wl, const char *fmt, ...)
336{
Joe Perches5b736d42010-11-09 16:35:18 -0800337 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400338 va_list args;
339
Michael Buesch060210f2009-01-25 15:49:59 +0100340 if (b43_modparam_verbose < B43_VERBOSITY_INFO)
341 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400342 if (!b43_ratelimit(wl))
343 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800344
Michael Buesche4d6b792007-09-18 15:39:42 -0400345 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800346
347 vaf.fmt = fmt;
348 vaf.va = &args;
349
350 printk(KERN_INFO "b43-%s: %pV",
351 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
352
Michael Buesche4d6b792007-09-18 15:39:42 -0400353 va_end(args);
354}
355
356void b43err(struct b43_wl *wl, const char *fmt, ...)
357{
Joe Perches5b736d42010-11-09 16:35:18 -0800358 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400359 va_list args;
360
Michael Buesch060210f2009-01-25 15:49:59 +0100361 if (b43_modparam_verbose < B43_VERBOSITY_ERROR)
362 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400363 if (!b43_ratelimit(wl))
364 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800365
Michael Buesche4d6b792007-09-18 15:39:42 -0400366 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800367
368 vaf.fmt = fmt;
369 vaf.va = &args;
370
371 printk(KERN_ERR "b43-%s ERROR: %pV",
372 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
373
Michael Buesche4d6b792007-09-18 15:39:42 -0400374 va_end(args);
375}
376
377void b43warn(struct b43_wl *wl, const char *fmt, ...)
378{
Joe Perches5b736d42010-11-09 16:35:18 -0800379 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400380 va_list args;
381
Michael Buesch060210f2009-01-25 15:49:59 +0100382 if (b43_modparam_verbose < B43_VERBOSITY_WARN)
383 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400384 if (!b43_ratelimit(wl))
385 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800386
Michael Buesche4d6b792007-09-18 15:39:42 -0400387 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800388
389 vaf.fmt = fmt;
390 vaf.va = &args;
391
392 printk(KERN_WARNING "b43-%s warning: %pV",
393 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
394
Michael Buesche4d6b792007-09-18 15:39:42 -0400395 va_end(args);
396}
397
Michael Buesche4d6b792007-09-18 15:39:42 -0400398void b43dbg(struct b43_wl *wl, const char *fmt, ...)
399{
Joe Perches5b736d42010-11-09 16:35:18 -0800400 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400401 va_list args;
402
Michael Buesch060210f2009-01-25 15:49:59 +0100403 if (b43_modparam_verbose < B43_VERBOSITY_DEBUG)
404 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800405
Michael Buesche4d6b792007-09-18 15:39:42 -0400406 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800407
408 vaf.fmt = fmt;
409 vaf.va = &args;
410
411 printk(KERN_DEBUG "b43-%s debug: %pV",
412 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
413
Michael Buesche4d6b792007-09-18 15:39:42 -0400414 va_end(args);
415}
Michael Buesche4d6b792007-09-18 15:39:42 -0400416
417static void b43_ram_write(struct b43_wldev *dev, u16 offset, u32 val)
418{
419 u32 macctl;
420
421 B43_WARN_ON(offset % 4 != 0);
422
423 macctl = b43_read32(dev, B43_MMIO_MACCTL);
424 if (macctl & B43_MACCTL_BE)
425 val = swab32(val);
426
427 b43_write32(dev, B43_MMIO_RAM_CONTROL, offset);
428 mmiowb();
429 b43_write32(dev, B43_MMIO_RAM_DATA, val);
430}
431
Michael Buesch280d0e12007-12-26 18:26:17 +0100432static inline void b43_shm_control_word(struct b43_wldev *dev,
433 u16 routing, u16 offset)
Michael Buesche4d6b792007-09-18 15:39:42 -0400434{
435 u32 control;
436
437 /* "offset" is the WORD offset. */
Michael Buesche4d6b792007-09-18 15:39:42 -0400438 control = routing;
439 control <<= 16;
440 control |= offset;
441 b43_write32(dev, B43_MMIO_SHM_CONTROL, control);
442}
443
Michael Buesch69eddc82009-09-04 22:57:26 +0200444u32 b43_shm_read32(struct b43_wldev *dev, u16 routing, u16 offset)
Michael Buesche4d6b792007-09-18 15:39:42 -0400445{
446 u32 ret;
447
448 if (routing == B43_SHM_SHARED) {
449 B43_WARN_ON(offset & 0x0001);
450 if (offset & 0x0003) {
451 /* Unaligned access */
452 b43_shm_control_word(dev, routing, offset >> 2);
453 ret = b43_read16(dev, B43_MMIO_SHM_DATA_UNALIGNED);
Michael Buesche4d6b792007-09-18 15:39:42 -0400454 b43_shm_control_word(dev, routing, (offset >> 2) + 1);
Michael Bueschf62ae6c2009-07-31 20:51:41 +0200455 ret |= ((u32)b43_read16(dev, B43_MMIO_SHM_DATA)) << 16;
Michael Buesche4d6b792007-09-18 15:39:42 -0400456
Michael Buesch280d0e12007-12-26 18:26:17 +0100457 goto out;
Michael Buesche4d6b792007-09-18 15:39:42 -0400458 }
459 offset >>= 2;
460 }
461 b43_shm_control_word(dev, routing, offset);
462 ret = b43_read32(dev, B43_MMIO_SHM_DATA);
Michael Buesch280d0e12007-12-26 18:26:17 +0100463out:
Michael Buesch6bbc3212008-06-19 19:33:51 +0200464 return ret;
465}
466
Michael Buesch69eddc82009-09-04 22:57:26 +0200467u16 b43_shm_read16(struct b43_wldev *dev, u16 routing, u16 offset)
Michael Buesche4d6b792007-09-18 15:39:42 -0400468{
469 u16 ret;
470
471 if (routing == B43_SHM_SHARED) {
472 B43_WARN_ON(offset & 0x0001);
473 if (offset & 0x0003) {
474 /* Unaligned access */
475 b43_shm_control_word(dev, routing, offset >> 2);
476 ret = b43_read16(dev, B43_MMIO_SHM_DATA_UNALIGNED);
477
Michael Buesch280d0e12007-12-26 18:26:17 +0100478 goto out;
Michael Buesche4d6b792007-09-18 15:39:42 -0400479 }
480 offset >>= 2;
481 }
482 b43_shm_control_word(dev, routing, offset);
483 ret = b43_read16(dev, B43_MMIO_SHM_DATA);
Michael Buesch280d0e12007-12-26 18:26:17 +0100484out:
Michael Buesch6bbc3212008-06-19 19:33:51 +0200485 return ret;
486}
487
Michael Buesch69eddc82009-09-04 22:57:26 +0200488void b43_shm_write32(struct b43_wldev *dev, u16 routing, u16 offset, u32 value)
Michael Buesche4d6b792007-09-18 15:39:42 -0400489{
490 if (routing == B43_SHM_SHARED) {
491 B43_WARN_ON(offset & 0x0001);
492 if (offset & 0x0003) {
493 /* Unaligned access */
494 b43_shm_control_word(dev, routing, offset >> 2);
Michael Buesche4d6b792007-09-18 15:39:42 -0400495 b43_write16(dev, B43_MMIO_SHM_DATA_UNALIGNED,
Michael Bueschf62ae6c2009-07-31 20:51:41 +0200496 value & 0xFFFF);
Michael Buesche4d6b792007-09-18 15:39:42 -0400497 b43_shm_control_word(dev, routing, (offset >> 2) + 1);
Michael Bueschf62ae6c2009-07-31 20:51:41 +0200498 b43_write16(dev, B43_MMIO_SHM_DATA,
499 (value >> 16) & 0xFFFF);
Michael Buesch6bbc3212008-06-19 19:33:51 +0200500 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400501 }
502 offset >>= 2;
503 }
504 b43_shm_control_word(dev, routing, offset);
Michael Buesche4d6b792007-09-18 15:39:42 -0400505 b43_write32(dev, B43_MMIO_SHM_DATA, value);
Michael Buesch6bbc3212008-06-19 19:33:51 +0200506}
507
Michael Buesch69eddc82009-09-04 22:57:26 +0200508void b43_shm_write16(struct b43_wldev *dev, u16 routing, u16 offset, u16 value)
Michael Buesch6bbc3212008-06-19 19:33:51 +0200509{
510 if (routing == B43_SHM_SHARED) {
511 B43_WARN_ON(offset & 0x0001);
512 if (offset & 0x0003) {
513 /* Unaligned access */
514 b43_shm_control_word(dev, routing, offset >> 2);
515 b43_write16(dev, B43_MMIO_SHM_DATA_UNALIGNED, value);
516 return;
517 }
518 offset >>= 2;
519 }
520 b43_shm_control_word(dev, routing, offset);
521 b43_write16(dev, B43_MMIO_SHM_DATA, value);
522}
523
Michael Buesche4d6b792007-09-18 15:39:42 -0400524/* Read HostFlags */
John Daiker99da1852009-02-24 02:16:42 -0800525u64 b43_hf_read(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -0400526{
Michael Buesch35f0d352008-02-13 14:31:08 +0100527 u64 ret;
Michael Buesche4d6b792007-09-18 15:39:42 -0400528
529 ret = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFHI);
530 ret <<= 16;
Michael Buesch35f0d352008-02-13 14:31:08 +0100531 ret |= b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFMI);
532 ret <<= 16;
Michael Buesche4d6b792007-09-18 15:39:42 -0400533 ret |= b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFLO);
534
535 return ret;
536}
537
538/* Write HostFlags */
Michael Buesch35f0d352008-02-13 14:31:08 +0100539void b43_hf_write(struct b43_wldev *dev, u64 value)
Michael Buesche4d6b792007-09-18 15:39:42 -0400540{
Michael Buesch35f0d352008-02-13 14:31:08 +0100541 u16 lo, mi, hi;
542
543 lo = (value & 0x00000000FFFFULL);
544 mi = (value & 0x0000FFFF0000ULL) >> 16;
545 hi = (value & 0xFFFF00000000ULL) >> 32;
546 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFLO, lo);
547 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFMI, mi);
548 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFHI, hi);
Michael Buesche4d6b792007-09-18 15:39:42 -0400549}
550
Michael Buesch403a3a12009-06-08 21:04:57 +0200551/* Read the firmware capabilities bitmask (Opensource firmware only) */
552static u16 b43_fwcapa_read(struct b43_wldev *dev)
553{
554 B43_WARN_ON(!dev->fw.opensource);
555 return b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_FWCAPA);
556}
557
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100558void b43_tsf_read(struct b43_wldev *dev, u64 *tsf)
Michael Buesche4d6b792007-09-18 15:39:42 -0400559{
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100560 u32 low, high;
Michael Buesche4d6b792007-09-18 15:39:42 -0400561
Rafał Miłecki21d889d2011-05-18 02:06:38 +0200562 B43_WARN_ON(dev->dev->core_rev < 3);
Michael Buesche4d6b792007-09-18 15:39:42 -0400563
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100564 /* The hardware guarantees us an atomic read, if we
565 * read the low register first. */
566 low = b43_read32(dev, B43_MMIO_REV3PLUS_TSF_LOW);
567 high = b43_read32(dev, B43_MMIO_REV3PLUS_TSF_HIGH);
Michael Buesche4d6b792007-09-18 15:39:42 -0400568
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100569 *tsf = high;
570 *tsf <<= 32;
571 *tsf |= low;
Michael Buesche4d6b792007-09-18 15:39:42 -0400572}
573
574static void b43_time_lock(struct b43_wldev *dev)
575{
576 u32 macctl;
577
578 macctl = b43_read32(dev, B43_MMIO_MACCTL);
579 macctl |= B43_MACCTL_TBTTHOLD;
580 b43_write32(dev, B43_MMIO_MACCTL, macctl);
581 /* Commit the write */
582 b43_read32(dev, B43_MMIO_MACCTL);
583}
584
585static void b43_time_unlock(struct b43_wldev *dev)
586{
587 u32 macctl;
588
589 macctl = b43_read32(dev, B43_MMIO_MACCTL);
590 macctl &= ~B43_MACCTL_TBTTHOLD;
591 b43_write32(dev, B43_MMIO_MACCTL, macctl);
592 /* Commit the write */
593 b43_read32(dev, B43_MMIO_MACCTL);
594}
595
596static void b43_tsf_write_locked(struct b43_wldev *dev, u64 tsf)
597{
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100598 u32 low, high;
Michael Buesche4d6b792007-09-18 15:39:42 -0400599
Rafał Miłecki21d889d2011-05-18 02:06:38 +0200600 B43_WARN_ON(dev->dev->core_rev < 3);
Michael Buesche4d6b792007-09-18 15:39:42 -0400601
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100602 low = tsf;
603 high = (tsf >> 32);
604 /* The hardware guarantees us an atomic write, if we
605 * write the low register first. */
606 b43_write32(dev, B43_MMIO_REV3PLUS_TSF_LOW, low);
607 mmiowb();
608 b43_write32(dev, B43_MMIO_REV3PLUS_TSF_HIGH, high);
609 mmiowb();
Michael Buesche4d6b792007-09-18 15:39:42 -0400610}
611
612void b43_tsf_write(struct b43_wldev *dev, u64 tsf)
613{
614 b43_time_lock(dev);
615 b43_tsf_write_locked(dev, tsf);
616 b43_time_unlock(dev);
617}
618
619static
John Daiker99da1852009-02-24 02:16:42 -0800620void b43_macfilter_set(struct b43_wldev *dev, u16 offset, const u8 *mac)
Michael Buesche4d6b792007-09-18 15:39:42 -0400621{
622 static const u8 zero_addr[ETH_ALEN] = { 0 };
623 u16 data;
624
625 if (!mac)
626 mac = zero_addr;
627
628 offset |= 0x0020;
629 b43_write16(dev, B43_MMIO_MACFILTER_CONTROL, offset);
630
631 data = mac[0];
632 data |= mac[1] << 8;
633 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
634 data = mac[2];
635 data |= mac[3] << 8;
636 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
637 data = mac[4];
638 data |= mac[5] << 8;
639 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
640}
641
642static void b43_write_mac_bssid_templates(struct b43_wldev *dev)
643{
644 const u8 *mac;
645 const u8 *bssid;
646 u8 mac_bssid[ETH_ALEN * 2];
647 int i;
648 u32 tmp;
649
650 bssid = dev->wl->bssid;
651 mac = dev->wl->mac_addr;
652
653 b43_macfilter_set(dev, B43_MACFILTER_BSSID, bssid);
654
655 memcpy(mac_bssid, mac, ETH_ALEN);
656 memcpy(mac_bssid + ETH_ALEN, bssid, ETH_ALEN);
657
658 /* Write our MAC address and BSSID to template ram */
659 for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32)) {
660 tmp = (u32) (mac_bssid[i + 0]);
661 tmp |= (u32) (mac_bssid[i + 1]) << 8;
662 tmp |= (u32) (mac_bssid[i + 2]) << 16;
663 tmp |= (u32) (mac_bssid[i + 3]) << 24;
664 b43_ram_write(dev, 0x20 + i, tmp);
665 }
666}
667
Johannes Berg4150c572007-09-17 01:29:23 -0400668static void b43_upload_card_macaddress(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -0400669{
Michael Buesche4d6b792007-09-18 15:39:42 -0400670 b43_write_mac_bssid_templates(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400671 b43_macfilter_set(dev, B43_MACFILTER_SELF, dev->wl->mac_addr);
Michael Buesche4d6b792007-09-18 15:39:42 -0400672}
673
674static void b43_set_slot_time(struct b43_wldev *dev, u16 slot_time)
675{
676 /* slot_time is in usec. */
Larry Fingerb6c3f5b2010-02-02 10:08:19 -0600677 /* This test used to exit for all but a G PHY. */
678 if (b43_current_band(dev->wl) == IEEE80211_BAND_5GHZ)
Michael Buesche4d6b792007-09-18 15:39:42 -0400679 return;
Larry Fingerb6c3f5b2010-02-02 10:08:19 -0600680 b43_write16(dev, B43_MMIO_IFSSLOT, 510 + slot_time);
681 /* Shared memory location 0x0010 is the slot time and should be
682 * set to slot_time; however, this register is initially 0 and changing
683 * the value adversely affects the transmit rate for BCM4311
684 * devices. Until this behavior is unterstood, delete this step
685 *
686 * b43_shm_write16(dev, B43_SHM_SHARED, 0x0010, slot_time);
687 */
Michael Buesche4d6b792007-09-18 15:39:42 -0400688}
689
690static void b43_short_slot_timing_enable(struct b43_wldev *dev)
691{
692 b43_set_slot_time(dev, 9);
Michael Buesche4d6b792007-09-18 15:39:42 -0400693}
694
695static void b43_short_slot_timing_disable(struct b43_wldev *dev)
696{
697 b43_set_slot_time(dev, 20);
Michael Buesche4d6b792007-09-18 15:39:42 -0400698}
699
Michael Buesche4d6b792007-09-18 15:39:42 -0400700/* DummyTransmission function, as documented on
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200701 * http://bcm-v4.sipsolutions.net/802.11/DummyTransmission
Michael Buesche4d6b792007-09-18 15:39:42 -0400702 */
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200703void b43_dummy_transmission(struct b43_wldev *dev, bool ofdm, bool pa_on)
Michael Buesche4d6b792007-09-18 15:39:42 -0400704{
705 struct b43_phy *phy = &dev->phy;
706 unsigned int i, max_loop;
707 u16 value;
708 u32 buffer[5] = {
709 0x00000000,
710 0x00D40000,
711 0x00000000,
712 0x01000000,
713 0x00000000,
714 };
715
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200716 if (ofdm) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400717 max_loop = 0x1E;
718 buffer[0] = 0x000201CC;
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200719 } else {
Michael Buesche4d6b792007-09-18 15:39:42 -0400720 max_loop = 0xFA;
721 buffer[0] = 0x000B846E;
Michael Buesche4d6b792007-09-18 15:39:42 -0400722 }
723
724 for (i = 0; i < 5; i++)
725 b43_ram_write(dev, i * 4, buffer[i]);
726
Michael Buesche4d6b792007-09-18 15:39:42 -0400727 b43_write16(dev, 0x0568, 0x0000);
Rafał Miłecki21d889d2011-05-18 02:06:38 +0200728 if (dev->dev->core_rev < 11)
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200729 b43_write16(dev, 0x07C0, 0x0000);
730 else
731 b43_write16(dev, 0x07C0, 0x0100);
732 value = (ofdm ? 0x41 : 0x40);
Michael Buesche4d6b792007-09-18 15:39:42 -0400733 b43_write16(dev, 0x050C, value);
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200734 if ((phy->type == B43_PHYTYPE_N) || (phy->type == B43_PHYTYPE_LP))
735 b43_write16(dev, 0x0514, 0x1A02);
Michael Buesche4d6b792007-09-18 15:39:42 -0400736 b43_write16(dev, 0x0508, 0x0000);
737 b43_write16(dev, 0x050A, 0x0000);
738 b43_write16(dev, 0x054C, 0x0000);
739 b43_write16(dev, 0x056A, 0x0014);
740 b43_write16(dev, 0x0568, 0x0826);
741 b43_write16(dev, 0x0500, 0x0000);
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200742 if (!pa_on && (phy->type == B43_PHYTYPE_N)) {
743 //SPEC TODO
744 }
745
746 switch (phy->type) {
747 case B43_PHYTYPE_N:
748 b43_write16(dev, 0x0502, 0x00D0);
749 break;
750 case B43_PHYTYPE_LP:
751 b43_write16(dev, 0x0502, 0x0050);
752 break;
753 default:
754 b43_write16(dev, 0x0502, 0x0030);
755 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400756
757 if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
758 b43_radio_write16(dev, 0x0051, 0x0017);
759 for (i = 0x00; i < max_loop; i++) {
760 value = b43_read16(dev, 0x050E);
761 if (value & 0x0080)
762 break;
763 udelay(10);
764 }
765 for (i = 0x00; i < 0x0A; i++) {
766 value = b43_read16(dev, 0x050E);
767 if (value & 0x0400)
768 break;
769 udelay(10);
770 }
Larry Finger1d280dd2008-09-29 14:19:29 -0500771 for (i = 0x00; i < 0x19; i++) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400772 value = b43_read16(dev, 0x0690);
773 if (!(value & 0x0100))
774 break;
775 udelay(10);
776 }
777 if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
778 b43_radio_write16(dev, 0x0051, 0x0037);
779}
780
781static void key_write(struct b43_wldev *dev,
John Daiker99da1852009-02-24 02:16:42 -0800782 u8 index, u8 algorithm, const u8 *key)
Michael Buesche4d6b792007-09-18 15:39:42 -0400783{
784 unsigned int i;
785 u32 offset;
786 u16 value;
787 u16 kidx;
788
789 /* Key index/algo block */
790 kidx = b43_kidx_to_fw(dev, index);
791 value = ((kidx << 4) | algorithm);
792 b43_shm_write16(dev, B43_SHM_SHARED,
793 B43_SHM_SH_KEYIDXBLOCK + (kidx * 2), value);
794
795 /* Write the key to the Key Table Pointer offset */
796 offset = dev->ktp + (index * B43_SEC_KEYSIZE);
797 for (i = 0; i < B43_SEC_KEYSIZE; i += 2) {
798 value = key[i];
799 value |= (u16) (key[i + 1]) << 8;
800 b43_shm_write16(dev, B43_SHM_SHARED, offset + i, value);
801 }
802}
803
John Daiker99da1852009-02-24 02:16:42 -0800804static void keymac_write(struct b43_wldev *dev, u8 index, const u8 *addr)
Michael Buesche4d6b792007-09-18 15:39:42 -0400805{
806 u32 addrtmp[2] = { 0, 0, };
Michael Buesch66d2d082009-08-06 10:36:50 +0200807 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
Michael Buesche4d6b792007-09-18 15:39:42 -0400808
809 if (b43_new_kidx_api(dev))
Michael Buesch66d2d082009-08-06 10:36:50 +0200810 pairwise_keys_start = B43_NR_GROUP_KEYS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400811
Michael Buesch66d2d082009-08-06 10:36:50 +0200812 B43_WARN_ON(index < pairwise_keys_start);
813 /* We have four default TX keys and possibly four default RX keys.
Michael Buesche4d6b792007-09-18 15:39:42 -0400814 * Physical mac 0 is mapped to physical key 4 or 8, depending
815 * on the firmware version.
816 * So we must adjust the index here.
817 */
Michael Buesch66d2d082009-08-06 10:36:50 +0200818 index -= pairwise_keys_start;
819 B43_WARN_ON(index >= B43_NR_PAIRWISE_KEYS);
Michael Buesche4d6b792007-09-18 15:39:42 -0400820
821 if (addr) {
822 addrtmp[0] = addr[0];
823 addrtmp[0] |= ((u32) (addr[1]) << 8);
824 addrtmp[0] |= ((u32) (addr[2]) << 16);
825 addrtmp[0] |= ((u32) (addr[3]) << 24);
826 addrtmp[1] = addr[4];
827 addrtmp[1] |= ((u32) (addr[5]) << 8);
828 }
829
Michael Buesch66d2d082009-08-06 10:36:50 +0200830 /* Receive match transmitter address (RCMTA) mechanism */
831 b43_shm_write32(dev, B43_SHM_RCMTA,
832 (index * 2) + 0, addrtmp[0]);
833 b43_shm_write16(dev, B43_SHM_RCMTA,
834 (index * 2) + 1, addrtmp[1]);
Michael Buesche4d6b792007-09-18 15:39:42 -0400835}
836
gregor kowski035d0242009-08-19 22:35:45 +0200837/* The ucode will use phase1 key with TEK key to decrypt rx packets.
838 * When a packet is received, the iv32 is checked.
839 * - if it doesn't the packet is returned without modification (and software
840 * decryption can be done). That's what happen when iv16 wrap.
841 * - if it does, the rc4 key is computed, and decryption is tried.
842 * Either it will success and B43_RX_MAC_DEC is returned,
843 * either it fails and B43_RX_MAC_DEC|B43_RX_MAC_DECERR is returned
844 * and the packet is not usable (it got modified by the ucode).
845 * So in order to never have B43_RX_MAC_DECERR, we should provide
846 * a iv32 and phase1key that match. Because we drop packets in case of
847 * B43_RX_MAC_DECERR, if we have a correct iv32 but a wrong phase1key, all
848 * packets will be lost without higher layer knowing (ie no resync possible
849 * until next wrap).
850 *
851 * NOTE : this should support 50 key like RCMTA because
852 * (B43_SHM_SH_KEYIDXBLOCK - B43_SHM_SH_TKIPTSCTTAK)/14 = 50
853 */
854static void rx_tkip_phase1_write(struct b43_wldev *dev, u8 index, u32 iv32,
855 u16 *phase1key)
856{
857 unsigned int i;
858 u32 offset;
859 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
860
861 if (!modparam_hwtkip)
862 return;
863
864 if (b43_new_kidx_api(dev))
865 pairwise_keys_start = B43_NR_GROUP_KEYS;
866
867 B43_WARN_ON(index < pairwise_keys_start);
868 /* We have four default TX keys and possibly four default RX keys.
869 * Physical mac 0 is mapped to physical key 4 or 8, depending
870 * on the firmware version.
871 * So we must adjust the index here.
872 */
873 index -= pairwise_keys_start;
874 B43_WARN_ON(index >= B43_NR_PAIRWISE_KEYS);
875
876 if (b43_debug(dev, B43_DBG_KEYS)) {
877 b43dbg(dev->wl, "rx_tkip_phase1_write : idx 0x%x, iv32 0x%x\n",
878 index, iv32);
879 }
880 /* Write the key to the RX tkip shared mem */
881 offset = B43_SHM_SH_TKIPTSCTTAK + index * (10 + 4);
882 for (i = 0; i < 10; i += 2) {
883 b43_shm_write16(dev, B43_SHM_SHARED, offset + i,
884 phase1key ? phase1key[i / 2] : 0);
885 }
886 b43_shm_write16(dev, B43_SHM_SHARED, offset + i, iv32);
887 b43_shm_write16(dev, B43_SHM_SHARED, offset + i + 2, iv32 >> 16);
888}
889
890static void b43_op_update_tkip_key(struct ieee80211_hw *hw,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100891 struct ieee80211_vif *vif,
892 struct ieee80211_key_conf *keyconf,
893 struct ieee80211_sta *sta,
894 u32 iv32, u16 *phase1key)
gregor kowski035d0242009-08-19 22:35:45 +0200895{
896 struct b43_wl *wl = hw_to_b43_wl(hw);
897 struct b43_wldev *dev;
898 int index = keyconf->hw_key_idx;
899
900 if (B43_WARN_ON(!modparam_hwtkip))
901 return;
902
Michael Buesch96869a32010-01-24 13:13:32 +0100903 /* This is only called from the RX path through mac80211, where
904 * our mutex is already locked. */
905 B43_WARN_ON(!mutex_is_locked(&wl->mutex));
gregor kowski035d0242009-08-19 22:35:45 +0200906 dev = wl->current_dev;
Michael Buesch96869a32010-01-24 13:13:32 +0100907 B43_WARN_ON(!dev || b43_status(dev) < B43_STAT_INITIALIZED);
gregor kowski035d0242009-08-19 22:35:45 +0200908
909 keymac_write(dev, index, NULL); /* First zero out mac to avoid race */
910
911 rx_tkip_phase1_write(dev, index, iv32, phase1key);
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100912 /* only pairwise TKIP keys are supported right now */
913 if (WARN_ON(!sta))
Michael Buesch96869a32010-01-24 13:13:32 +0100914 return;
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100915 keymac_write(dev, index, sta->addr);
gregor kowski035d0242009-08-19 22:35:45 +0200916}
917
Michael Buesche4d6b792007-09-18 15:39:42 -0400918static void do_key_write(struct b43_wldev *dev,
919 u8 index, u8 algorithm,
John Daiker99da1852009-02-24 02:16:42 -0800920 const u8 *key, size_t key_len, const u8 *mac_addr)
Michael Buesche4d6b792007-09-18 15:39:42 -0400921{
922 u8 buf[B43_SEC_KEYSIZE] = { 0, };
Michael Buesch66d2d082009-08-06 10:36:50 +0200923 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
Michael Buesche4d6b792007-09-18 15:39:42 -0400924
925 if (b43_new_kidx_api(dev))
Michael Buesch66d2d082009-08-06 10:36:50 +0200926 pairwise_keys_start = B43_NR_GROUP_KEYS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400927
Michael Buesch66d2d082009-08-06 10:36:50 +0200928 B43_WARN_ON(index >= ARRAY_SIZE(dev->key));
Michael Buesche4d6b792007-09-18 15:39:42 -0400929 B43_WARN_ON(key_len > B43_SEC_KEYSIZE);
930
Michael Buesch66d2d082009-08-06 10:36:50 +0200931 if (index >= pairwise_keys_start)
Michael Buesche4d6b792007-09-18 15:39:42 -0400932 keymac_write(dev, index, NULL); /* First zero out mac. */
gregor kowski035d0242009-08-19 22:35:45 +0200933 if (algorithm == B43_SEC_ALGO_TKIP) {
934 /*
935 * We should provide an initial iv32, phase1key pair.
936 * We could start with iv32=0 and compute the corresponding
937 * phase1key, but this means calling ieee80211_get_tkip_key
938 * with a fake skb (or export other tkip function).
939 * Because we are lazy we hope iv32 won't start with
940 * 0xffffffff and let's b43_op_update_tkip_key provide a
941 * correct pair.
942 */
943 rx_tkip_phase1_write(dev, index, 0xffffffff, (u16*)buf);
944 } else if (index >= pairwise_keys_start) /* clear it */
945 rx_tkip_phase1_write(dev, index, 0, NULL);
Michael Buesche4d6b792007-09-18 15:39:42 -0400946 if (key)
947 memcpy(buf, key, key_len);
948 key_write(dev, index, algorithm, buf);
Michael Buesch66d2d082009-08-06 10:36:50 +0200949 if (index >= pairwise_keys_start)
Michael Buesche4d6b792007-09-18 15:39:42 -0400950 keymac_write(dev, index, mac_addr);
951
952 dev->key[index].algorithm = algorithm;
953}
954
955static int b43_key_write(struct b43_wldev *dev,
956 int index, u8 algorithm,
John Daiker99da1852009-02-24 02:16:42 -0800957 const u8 *key, size_t key_len,
958 const u8 *mac_addr,
Michael Buesche4d6b792007-09-18 15:39:42 -0400959 struct ieee80211_key_conf *keyconf)
960{
961 int i;
Michael Buesch66d2d082009-08-06 10:36:50 +0200962 int pairwise_keys_start;
Michael Buesche4d6b792007-09-18 15:39:42 -0400963
gregor kowski035d0242009-08-19 22:35:45 +0200964 /* For ALG_TKIP the key is encoded as a 256-bit (32 byte) data block:
965 * - Temporal Encryption Key (128 bits)
966 * - Temporal Authenticator Tx MIC Key (64 bits)
967 * - Temporal Authenticator Rx MIC Key (64 bits)
968 *
969 * Hardware only store TEK
970 */
971 if (algorithm == B43_SEC_ALGO_TKIP && key_len == 32)
972 key_len = 16;
Michael Buesche4d6b792007-09-18 15:39:42 -0400973 if (key_len > B43_SEC_KEYSIZE)
974 return -EINVAL;
Michael Buesch66d2d082009-08-06 10:36:50 +0200975 for (i = 0; i < ARRAY_SIZE(dev->key); i++) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400976 /* Check that we don't already have this key. */
977 B43_WARN_ON(dev->key[i].keyconf == keyconf);
978 }
979 if (index < 0) {
Michael Buesche808e582008-12-19 21:30:52 +0100980 /* Pairwise key. Get an empty slot for the key. */
Michael Buesche4d6b792007-09-18 15:39:42 -0400981 if (b43_new_kidx_api(dev))
Michael Buesch66d2d082009-08-06 10:36:50 +0200982 pairwise_keys_start = B43_NR_GROUP_KEYS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400983 else
Michael Buesch66d2d082009-08-06 10:36:50 +0200984 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
985 for (i = pairwise_keys_start;
986 i < pairwise_keys_start + B43_NR_PAIRWISE_KEYS;
987 i++) {
988 B43_WARN_ON(i >= ARRAY_SIZE(dev->key));
Michael Buesche4d6b792007-09-18 15:39:42 -0400989 if (!dev->key[i].keyconf) {
990 /* found empty */
991 index = i;
992 break;
993 }
994 }
995 if (index < 0) {
Michael Buesche808e582008-12-19 21:30:52 +0100996 b43warn(dev->wl, "Out of hardware key memory\n");
Michael Buesche4d6b792007-09-18 15:39:42 -0400997 return -ENOSPC;
998 }
999 } else
1000 B43_WARN_ON(index > 3);
1001
1002 do_key_write(dev, index, algorithm, key, key_len, mac_addr);
1003 if ((index <= 3) && !b43_new_kidx_api(dev)) {
1004 /* Default RX key */
1005 B43_WARN_ON(mac_addr);
1006 do_key_write(dev, index + 4, algorithm, key, key_len, NULL);
1007 }
1008 keyconf->hw_key_idx = index;
1009 dev->key[index].keyconf = keyconf;
1010
1011 return 0;
1012}
1013
1014static int b43_key_clear(struct b43_wldev *dev, int index)
1015{
Michael Buesch66d2d082009-08-06 10:36:50 +02001016 if (B43_WARN_ON((index < 0) || (index >= ARRAY_SIZE(dev->key))))
Michael Buesche4d6b792007-09-18 15:39:42 -04001017 return -EINVAL;
1018 do_key_write(dev, index, B43_SEC_ALGO_NONE,
1019 NULL, B43_SEC_KEYSIZE, NULL);
1020 if ((index <= 3) && !b43_new_kidx_api(dev)) {
1021 do_key_write(dev, index + 4, B43_SEC_ALGO_NONE,
1022 NULL, B43_SEC_KEYSIZE, NULL);
1023 }
1024 dev->key[index].keyconf = NULL;
1025
1026 return 0;
1027}
1028
1029static void b43_clear_keys(struct b43_wldev *dev)
1030{
Michael Buesch66d2d082009-08-06 10:36:50 +02001031 int i, count;
Michael Buesche4d6b792007-09-18 15:39:42 -04001032
Michael Buesch66d2d082009-08-06 10:36:50 +02001033 if (b43_new_kidx_api(dev))
1034 count = B43_NR_GROUP_KEYS + B43_NR_PAIRWISE_KEYS;
1035 else
1036 count = B43_NR_GROUP_KEYS * 2 + B43_NR_PAIRWISE_KEYS;
1037 for (i = 0; i < count; i++)
Michael Buesche4d6b792007-09-18 15:39:42 -04001038 b43_key_clear(dev, i);
1039}
1040
Michael Buesch9cf7f242008-12-19 20:24:30 +01001041static void b43_dump_keymemory(struct b43_wldev *dev)
1042{
Michael Buesch66d2d082009-08-06 10:36:50 +02001043 unsigned int i, index, count, offset, pairwise_keys_start;
Michael Buesch9cf7f242008-12-19 20:24:30 +01001044 u8 mac[ETH_ALEN];
1045 u16 algo;
1046 u32 rcmta0;
1047 u16 rcmta1;
1048 u64 hf;
1049 struct b43_key *key;
1050
1051 if (!b43_debug(dev, B43_DBG_KEYS))
1052 return;
1053
1054 hf = b43_hf_read(dev);
1055 b43dbg(dev->wl, "Hardware key memory dump: USEDEFKEYS=%u\n",
1056 !!(hf & B43_HF_USEDEFKEYS));
Michael Buesch66d2d082009-08-06 10:36:50 +02001057 if (b43_new_kidx_api(dev)) {
1058 pairwise_keys_start = B43_NR_GROUP_KEYS;
1059 count = B43_NR_GROUP_KEYS + B43_NR_PAIRWISE_KEYS;
1060 } else {
1061 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
1062 count = B43_NR_GROUP_KEYS * 2 + B43_NR_PAIRWISE_KEYS;
1063 }
1064 for (index = 0; index < count; index++) {
Michael Buesch9cf7f242008-12-19 20:24:30 +01001065 key = &(dev->key[index]);
1066 printk(KERN_DEBUG "Key slot %02u: %s",
1067 index, (key->keyconf == NULL) ? " " : "*");
1068 offset = dev->ktp + (index * B43_SEC_KEYSIZE);
1069 for (i = 0; i < B43_SEC_KEYSIZE; i += 2) {
1070 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, offset + i);
1071 printk("%02X%02X", (tmp & 0xFF), ((tmp >> 8) & 0xFF));
1072 }
1073
1074 algo = b43_shm_read16(dev, B43_SHM_SHARED,
1075 B43_SHM_SH_KEYIDXBLOCK + (index * 2));
1076 printk(" Algo: %04X/%02X", algo, key->algorithm);
1077
Michael Buesch66d2d082009-08-06 10:36:50 +02001078 if (index >= pairwise_keys_start) {
gregor kowski035d0242009-08-19 22:35:45 +02001079 if (key->algorithm == B43_SEC_ALGO_TKIP) {
1080 printk(" TKIP: ");
1081 offset = B43_SHM_SH_TKIPTSCTTAK + (index - 4) * (10 + 4);
1082 for (i = 0; i < 14; i += 2) {
1083 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, offset + i);
1084 printk("%02X%02X", (tmp & 0xFF), ((tmp >> 8) & 0xFF));
1085 }
1086 }
Michael Buesch9cf7f242008-12-19 20:24:30 +01001087 rcmta0 = b43_shm_read32(dev, B43_SHM_RCMTA,
Michael Buesch66d2d082009-08-06 10:36:50 +02001088 ((index - pairwise_keys_start) * 2) + 0);
Michael Buesch9cf7f242008-12-19 20:24:30 +01001089 rcmta1 = b43_shm_read16(dev, B43_SHM_RCMTA,
Michael Buesch66d2d082009-08-06 10:36:50 +02001090 ((index - pairwise_keys_start) * 2) + 1);
Michael Buesch9cf7f242008-12-19 20:24:30 +01001091 *((__le32 *)(&mac[0])) = cpu_to_le32(rcmta0);
1092 *((__le16 *)(&mac[4])) = cpu_to_le16(rcmta1);
Johannes Berge91d8332009-07-15 17:21:41 +02001093 printk(" MAC: %pM", mac);
Michael Buesch9cf7f242008-12-19 20:24:30 +01001094 } else
1095 printk(" DEFAULT KEY");
1096 printk("\n");
1097 }
1098}
1099
Michael Buesche4d6b792007-09-18 15:39:42 -04001100void b43_power_saving_ctl_bits(struct b43_wldev *dev, unsigned int ps_flags)
1101{
1102 u32 macctl;
1103 u16 ucstat;
1104 bool hwps;
1105 bool awake;
1106 int i;
1107
1108 B43_WARN_ON((ps_flags & B43_PS_ENABLED) &&
1109 (ps_flags & B43_PS_DISABLED));
1110 B43_WARN_ON((ps_flags & B43_PS_AWAKE) && (ps_flags & B43_PS_ASLEEP));
1111
1112 if (ps_flags & B43_PS_ENABLED) {
1113 hwps = 1;
1114 } else if (ps_flags & B43_PS_DISABLED) {
1115 hwps = 0;
1116 } else {
1117 //TODO: If powersave is not off and FIXME is not set and we are not in adhoc
1118 // and thus is not an AP and we are associated, set bit 25
1119 }
1120 if (ps_flags & B43_PS_AWAKE) {
1121 awake = 1;
1122 } else if (ps_flags & B43_PS_ASLEEP) {
1123 awake = 0;
1124 } else {
1125 //TODO: If the device is awake or this is an AP, or we are scanning, or FIXME,
1126 // or we are associated, or FIXME, or the latest PS-Poll packet sent was
1127 // successful, set bit26
1128 }
1129
1130/* FIXME: For now we force awake-on and hwps-off */
1131 hwps = 0;
1132 awake = 1;
1133
1134 macctl = b43_read32(dev, B43_MMIO_MACCTL);
1135 if (hwps)
1136 macctl |= B43_MACCTL_HWPS;
1137 else
1138 macctl &= ~B43_MACCTL_HWPS;
1139 if (awake)
1140 macctl |= B43_MACCTL_AWAKE;
1141 else
1142 macctl &= ~B43_MACCTL_AWAKE;
1143 b43_write32(dev, B43_MMIO_MACCTL, macctl);
1144 /* Commit write */
1145 b43_read32(dev, B43_MMIO_MACCTL);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02001146 if (awake && dev->dev->core_rev >= 5) {
Michael Buesche4d6b792007-09-18 15:39:42 -04001147 /* Wait for the microcode to wake up. */
1148 for (i = 0; i < 100; i++) {
1149 ucstat = b43_shm_read16(dev, B43_SHM_SHARED,
1150 B43_SHM_SH_UCODESTAT);
1151 if (ucstat != B43_SHM_SH_UCODESTAT_SLEEP)
1152 break;
1153 udelay(10);
1154 }
1155 }
1156}
1157
Rafał Miłecki42c9a452011-07-06 15:45:27 +02001158#ifdef CONFIG_B43_BCMA
1159static void b43_bcma_wireless_core_reset(struct b43_wldev *dev, bool gmode)
1160{
1161 u32 flags = 0;
1162
1163 if (gmode)
1164 flags = B43_BCMA_IOCTL_GMODE;
1165 flags |= B43_BCMA_IOCTL_PHY_CLKEN;
1166 flags |= B43_BCMA_IOCTL_PHY_BW_20MHZ; /* Make 20 MHz def */
1167 b43_device_enable(dev, flags);
1168
1169 /* TODO: reset PHY */
1170}
1171#endif
1172
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001173static void b43_ssb_wireless_core_reset(struct b43_wldev *dev, bool gmode)
Michael Buesche4d6b792007-09-18 15:39:42 -04001174{
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001175 struct ssb_device *sdev = dev->dev->sdev;
Michael Buesche4d6b792007-09-18 15:39:42 -04001176 u32 tmslow;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001177 u32 flags = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04001178
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001179 if (gmode)
1180 flags |= B43_TMSLOW_GMODE;
Michael Buesche4d6b792007-09-18 15:39:42 -04001181 flags |= B43_TMSLOW_PHYCLKEN;
1182 flags |= B43_TMSLOW_PHYRESET;
Rafał Miłecki42ab1352010-12-09 20:56:01 +01001183 if (dev->phy.type == B43_PHYTYPE_N)
1184 flags |= B43_TMSLOW_PHY_BANDWIDTH_20MHZ; /* Make 20 MHz def */
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02001185 b43_device_enable(dev, flags);
Michael Buesche4d6b792007-09-18 15:39:42 -04001186 msleep(2); /* Wait for the PLL to turn on. */
1187
1188 /* Now take the PHY out of Reset again */
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001189 tmslow = ssb_read32(sdev, SSB_TMSLOW);
Michael Buesche4d6b792007-09-18 15:39:42 -04001190 tmslow |= SSB_TMSLOW_FGC;
1191 tmslow &= ~B43_TMSLOW_PHYRESET;
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001192 ssb_write32(sdev, SSB_TMSLOW, tmslow);
1193 ssb_read32(sdev, SSB_TMSLOW); /* flush */
Michael Buesche4d6b792007-09-18 15:39:42 -04001194 msleep(1);
1195 tmslow &= ~SSB_TMSLOW_FGC;
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001196 ssb_write32(sdev, SSB_TMSLOW, tmslow);
1197 ssb_read32(sdev, SSB_TMSLOW); /* flush */
Michael Buesche4d6b792007-09-18 15:39:42 -04001198 msleep(1);
Rafał Miłecki14952982011-05-17 18:57:28 +02001199}
1200
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001201void b43_wireless_core_reset(struct b43_wldev *dev, bool gmode)
Rafał Miłecki14952982011-05-17 18:57:28 +02001202{
1203 u32 macctl;
1204
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02001205 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02001206#ifdef CONFIG_B43_BCMA
1207 case B43_BUS_BCMA:
1208 b43_bcma_wireless_core_reset(dev, gmode);
1209 break;
1210#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02001211#ifdef CONFIG_B43_SSB
1212 case B43_BUS_SSB:
1213 b43_ssb_wireless_core_reset(dev, gmode);
1214 break;
1215#endif
1216 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001217
Michael Bueschfb111372008-09-02 13:00:34 +02001218 /* Turn Analog ON, but only if we already know the PHY-type.
1219 * This protects against very early setup where we don't know the
1220 * PHY-type, yet. wireless_core_reset will be called once again later,
1221 * when we know the PHY-type. */
1222 if (dev->phy.ops)
Michael Bueschcb24f572008-09-03 12:12:20 +02001223 dev->phy.ops->switch_analog(dev, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04001224
1225 macctl = b43_read32(dev, B43_MMIO_MACCTL);
1226 macctl &= ~B43_MACCTL_GMODE;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001227 if (gmode)
Michael Buesche4d6b792007-09-18 15:39:42 -04001228 macctl |= B43_MACCTL_GMODE;
1229 macctl |= B43_MACCTL_IHR_ENABLED;
1230 b43_write32(dev, B43_MMIO_MACCTL, macctl);
1231}
1232
1233static void handle_irq_transmit_status(struct b43_wldev *dev)
1234{
1235 u32 v0, v1;
1236 u16 tmp;
1237 struct b43_txstatus stat;
1238
1239 while (1) {
1240 v0 = b43_read32(dev, B43_MMIO_XMITSTAT_0);
1241 if (!(v0 & 0x00000001))
1242 break;
1243 v1 = b43_read32(dev, B43_MMIO_XMITSTAT_1);
1244
1245 stat.cookie = (v0 >> 16);
1246 stat.seq = (v1 & 0x0000FFFF);
1247 stat.phy_stat = ((v1 & 0x00FF0000) >> 16);
1248 tmp = (v0 & 0x0000FFFF);
1249 stat.frame_count = ((tmp & 0xF000) >> 12);
1250 stat.rts_count = ((tmp & 0x0F00) >> 8);
1251 stat.supp_reason = ((tmp & 0x001C) >> 2);
1252 stat.pm_indicated = !!(tmp & 0x0080);
1253 stat.intermediate = !!(tmp & 0x0040);
1254 stat.for_ampdu = !!(tmp & 0x0020);
1255 stat.acked = !!(tmp & 0x0002);
1256
1257 b43_handle_txstatus(dev, &stat);
1258 }
1259}
1260
1261static void drain_txstatus_queue(struct b43_wldev *dev)
1262{
1263 u32 dummy;
1264
Rafał Miłecki21d889d2011-05-18 02:06:38 +02001265 if (dev->dev->core_rev < 5)
Michael Buesche4d6b792007-09-18 15:39:42 -04001266 return;
1267 /* Read all entries from the microcode TXstatus FIFO
1268 * and throw them away.
1269 */
1270 while (1) {
1271 dummy = b43_read32(dev, B43_MMIO_XMITSTAT_0);
1272 if (!(dummy & 0x00000001))
1273 break;
1274 dummy = b43_read32(dev, B43_MMIO_XMITSTAT_1);
1275 }
1276}
1277
1278static u32 b43_jssi_read(struct b43_wldev *dev)
1279{
1280 u32 val = 0;
1281
1282 val = b43_shm_read16(dev, B43_SHM_SHARED, 0x08A);
1283 val <<= 16;
1284 val |= b43_shm_read16(dev, B43_SHM_SHARED, 0x088);
1285
1286 return val;
1287}
1288
1289static void b43_jssi_write(struct b43_wldev *dev, u32 jssi)
1290{
1291 b43_shm_write16(dev, B43_SHM_SHARED, 0x088, (jssi & 0x0000FFFF));
1292 b43_shm_write16(dev, B43_SHM_SHARED, 0x08A, (jssi & 0xFFFF0000) >> 16);
1293}
1294
1295static void b43_generate_noise_sample(struct b43_wldev *dev)
1296{
1297 b43_jssi_write(dev, 0x7F7F7F7F);
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01001298 b43_write32(dev, B43_MMIO_MACCMD,
1299 b43_read32(dev, B43_MMIO_MACCMD) | B43_MACCMD_BGNOISE);
Michael Buesche4d6b792007-09-18 15:39:42 -04001300}
1301
1302static void b43_calculate_link_quality(struct b43_wldev *dev)
1303{
1304 /* Top half of Link Quality calculation. */
1305
Michael Bueschef1a6282008-08-27 18:53:02 +02001306 if (dev->phy.type != B43_PHYTYPE_G)
1307 return;
Michael Buesche4d6b792007-09-18 15:39:42 -04001308 if (dev->noisecalc.calculation_running)
1309 return;
Michael Buesche4d6b792007-09-18 15:39:42 -04001310 dev->noisecalc.calculation_running = 1;
1311 dev->noisecalc.nr_samples = 0;
1312
1313 b43_generate_noise_sample(dev);
1314}
1315
1316static void handle_irq_noise(struct b43_wldev *dev)
1317{
Michael Bueschef1a6282008-08-27 18:53:02 +02001318 struct b43_phy_g *phy = dev->phy.g;
Michael Buesche4d6b792007-09-18 15:39:42 -04001319 u16 tmp;
1320 u8 noise[4];
1321 u8 i, j;
1322 s32 average;
1323
1324 /* Bottom half of Link Quality calculation. */
1325
Michael Bueschef1a6282008-08-27 18:53:02 +02001326 if (dev->phy.type != B43_PHYTYPE_G)
1327 return;
1328
Michael Buesch98a3b2f2008-06-12 12:36:29 +02001329 /* Possible race condition: It might be possible that the user
1330 * changed to a different channel in the meantime since we
1331 * started the calculation. We ignore that fact, since it's
1332 * not really that much of a problem. The background noise is
1333 * an estimation only anyway. Slightly wrong results will get damped
1334 * by the averaging of the 8 sample rounds. Additionally the
1335 * value is shortlived. So it will be replaced by the next noise
1336 * calculation round soon. */
1337
Michael Buesche4d6b792007-09-18 15:39:42 -04001338 B43_WARN_ON(!dev->noisecalc.calculation_running);
Michael Buesch1a094042007-09-20 11:13:40 -07001339 *((__le32 *)noise) = cpu_to_le32(b43_jssi_read(dev));
Michael Buesche4d6b792007-09-18 15:39:42 -04001340 if (noise[0] == 0x7F || noise[1] == 0x7F ||
1341 noise[2] == 0x7F || noise[3] == 0x7F)
1342 goto generate_new;
1343
1344 /* Get the noise samples. */
1345 B43_WARN_ON(dev->noisecalc.nr_samples >= 8);
1346 i = dev->noisecalc.nr_samples;
Harvey Harrisoncdbf0842008-05-02 13:47:48 -07001347 noise[0] = clamp_val(noise[0], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1348 noise[1] = clamp_val(noise[1], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1349 noise[2] = clamp_val(noise[2], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1350 noise[3] = clamp_val(noise[3], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04001351 dev->noisecalc.samples[i][0] = phy->nrssi_lt[noise[0]];
1352 dev->noisecalc.samples[i][1] = phy->nrssi_lt[noise[1]];
1353 dev->noisecalc.samples[i][2] = phy->nrssi_lt[noise[2]];
1354 dev->noisecalc.samples[i][3] = phy->nrssi_lt[noise[3]];
1355 dev->noisecalc.nr_samples++;
1356 if (dev->noisecalc.nr_samples == 8) {
1357 /* Calculate the Link Quality by the noise samples. */
1358 average = 0;
1359 for (i = 0; i < 8; i++) {
1360 for (j = 0; j < 4; j++)
1361 average += dev->noisecalc.samples[i][j];
1362 }
1363 average /= (8 * 4);
1364 average *= 125;
1365 average += 64;
1366 average /= 128;
1367 tmp = b43_shm_read16(dev, B43_SHM_SHARED, 0x40C);
1368 tmp = (tmp / 128) & 0x1F;
1369 if (tmp >= 8)
1370 average += 2;
1371 else
1372 average -= 25;
1373 if (tmp == 8)
1374 average -= 72;
1375 else
1376 average -= 48;
1377
1378 dev->stats.link_noise = average;
Michael Buesche4d6b792007-09-18 15:39:42 -04001379 dev->noisecalc.calculation_running = 0;
1380 return;
1381 }
Michael Buesch98a3b2f2008-06-12 12:36:29 +02001382generate_new:
Michael Buesche4d6b792007-09-18 15:39:42 -04001383 b43_generate_noise_sample(dev);
1384}
1385
1386static void handle_irq_tbtt_indication(struct b43_wldev *dev)
1387{
Johannes Berg05c914f2008-09-11 00:01:58 +02001388 if (b43_is_mode(dev->wl, NL80211_IFTYPE_AP)) {
Michael Buesche4d6b792007-09-18 15:39:42 -04001389 ///TODO: PS TBTT
1390 } else {
1391 if (1 /*FIXME: the last PSpoll frame was sent successfully */ )
1392 b43_power_saving_ctl_bits(dev, 0);
1393 }
Johannes Berg05c914f2008-09-11 00:01:58 +02001394 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC))
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01001395 dev->dfq_valid = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04001396}
1397
1398static void handle_irq_atim_end(struct b43_wldev *dev)
1399{
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01001400 if (dev->dfq_valid) {
1401 b43_write32(dev, B43_MMIO_MACCMD,
1402 b43_read32(dev, B43_MMIO_MACCMD)
1403 | B43_MACCMD_DFQ_VALID);
1404 dev->dfq_valid = 0;
1405 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001406}
1407
1408static void handle_irq_pmq(struct b43_wldev *dev)
1409{
1410 u32 tmp;
1411
1412 //TODO: AP mode.
1413
1414 while (1) {
1415 tmp = b43_read32(dev, B43_MMIO_PS_STATUS);
1416 if (!(tmp & 0x00000008))
1417 break;
1418 }
1419 /* 16bit write is odd, but correct. */
1420 b43_write16(dev, B43_MMIO_PS_STATUS, 0x0002);
1421}
1422
1423static void b43_write_template_common(struct b43_wldev *dev,
John Daiker99da1852009-02-24 02:16:42 -08001424 const u8 *data, u16 size,
Michael Buesche4d6b792007-09-18 15:39:42 -04001425 u16 ram_offset,
1426 u16 shm_size_offset, u8 rate)
1427{
1428 u32 i, tmp;
1429 struct b43_plcp_hdr4 plcp;
1430
1431 plcp.data = 0;
1432 b43_generate_plcp_hdr(&plcp, size + FCS_LEN, rate);
1433 b43_ram_write(dev, ram_offset, le32_to_cpu(plcp.data));
1434 ram_offset += sizeof(u32);
1435 /* The PLCP is 6 bytes long, but we only wrote 4 bytes, yet.
1436 * So leave the first two bytes of the next write blank.
1437 */
1438 tmp = (u32) (data[0]) << 16;
1439 tmp |= (u32) (data[1]) << 24;
1440 b43_ram_write(dev, ram_offset, tmp);
1441 ram_offset += sizeof(u32);
1442 for (i = 2; i < size; i += sizeof(u32)) {
1443 tmp = (u32) (data[i + 0]);
1444 if (i + 1 < size)
1445 tmp |= (u32) (data[i + 1]) << 8;
1446 if (i + 2 < size)
1447 tmp |= (u32) (data[i + 2]) << 16;
1448 if (i + 3 < size)
1449 tmp |= (u32) (data[i + 3]) << 24;
1450 b43_ram_write(dev, ram_offset + i - 2, tmp);
1451 }
1452 b43_shm_write16(dev, B43_SHM_SHARED, shm_size_offset,
1453 size + sizeof(struct b43_plcp_hdr6));
1454}
1455
Michael Buesch5042c502008-04-05 15:05:00 +02001456/* Check if the use of the antenna that ieee80211 told us to
1457 * use is possible. This will fall back to DEFAULT.
1458 * "antenna_nr" is the antenna identifier we got from ieee80211. */
1459u8 b43_ieee80211_antenna_sanitize(struct b43_wldev *dev,
1460 u8 antenna_nr)
1461{
1462 u8 antenna_mask;
1463
1464 if (antenna_nr == 0) {
1465 /* Zero means "use default antenna". That's always OK. */
1466 return 0;
1467 }
1468
1469 /* Get the mask of available antennas. */
1470 if (dev->phy.gmode)
Rafał Miłecki05814832011-05-18 02:06:39 +02001471 antenna_mask = dev->dev->bus_sprom->ant_available_bg;
Michael Buesch5042c502008-04-05 15:05:00 +02001472 else
Rafał Miłecki05814832011-05-18 02:06:39 +02001473 antenna_mask = dev->dev->bus_sprom->ant_available_a;
Michael Buesch5042c502008-04-05 15:05:00 +02001474
1475 if (!(antenna_mask & (1 << (antenna_nr - 1)))) {
1476 /* This antenna is not available. Fall back to default. */
1477 return 0;
1478 }
1479
1480 return antenna_nr;
1481}
1482
Michael Buesch5042c502008-04-05 15:05:00 +02001483/* Convert a b43 antenna number value to the PHY TX control value. */
1484static u16 b43_antenna_to_phyctl(int antenna)
1485{
1486 switch (antenna) {
1487 case B43_ANTENNA0:
1488 return B43_TXH_PHY_ANT0;
1489 case B43_ANTENNA1:
1490 return B43_TXH_PHY_ANT1;
1491 case B43_ANTENNA2:
1492 return B43_TXH_PHY_ANT2;
1493 case B43_ANTENNA3:
1494 return B43_TXH_PHY_ANT3;
Gábor Stefanik64e368b2009-08-27 22:49:49 +02001495 case B43_ANTENNA_AUTO0:
1496 case B43_ANTENNA_AUTO1:
Michael Buesch5042c502008-04-05 15:05:00 +02001497 return B43_TXH_PHY_ANT01AUTO;
1498 }
1499 B43_WARN_ON(1);
1500 return 0;
1501}
1502
Michael Buesche4d6b792007-09-18 15:39:42 -04001503static void b43_write_beacon_template(struct b43_wldev *dev,
1504 u16 ram_offset,
Michael Buesch5042c502008-04-05 15:05:00 +02001505 u16 shm_size_offset)
Michael Buesche4d6b792007-09-18 15:39:42 -04001506{
Michael Buesch47f76ca2007-12-27 22:15:11 +01001507 unsigned int i, len, variable_len;
Michael Buesche66fee62007-12-26 17:47:10 +01001508 const struct ieee80211_mgmt *bcn;
1509 const u8 *ie;
1510 bool tim_found = 0;
Michael Buesch5042c502008-04-05 15:05:00 +02001511 unsigned int rate;
1512 u16 ctl;
1513 int antenna;
Johannes Berge039fa42008-05-15 12:55:29 +02001514 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(dev->wl->current_beacon);
Michael Buesche4d6b792007-09-18 15:39:42 -04001515
Michael Buesche66fee62007-12-26 17:47:10 +01001516 bcn = (const struct ieee80211_mgmt *)(dev->wl->current_beacon->data);
1517 len = min((size_t) dev->wl->current_beacon->len,
Michael Buesche4d6b792007-09-18 15:39:42 -04001518 0x200 - sizeof(struct b43_plcp_hdr6));
Johannes Berge039fa42008-05-15 12:55:29 +02001519 rate = ieee80211_get_tx_rate(dev->wl->hw, info)->hw_value;
Michael Buesche66fee62007-12-26 17:47:10 +01001520
1521 b43_write_template_common(dev, (const u8 *)bcn,
Michael Buesche4d6b792007-09-18 15:39:42 -04001522 len, ram_offset, shm_size_offset, rate);
Michael Buesche66fee62007-12-26 17:47:10 +01001523
Michael Buesch5042c502008-04-05 15:05:00 +02001524 /* Write the PHY TX control parameters. */
Johannes Berg0f4ac382008-10-09 12:18:04 +02001525 antenna = B43_ANTENNA_DEFAULT;
Michael Buesch5042c502008-04-05 15:05:00 +02001526 antenna = b43_antenna_to_phyctl(antenna);
1527 ctl = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL);
1528 /* We can't send beacons with short preamble. Would get PHY errors. */
1529 ctl &= ~B43_TXH_PHY_SHORTPRMBL;
1530 ctl &= ~B43_TXH_PHY_ANT;
1531 ctl &= ~B43_TXH_PHY_ENC;
1532 ctl |= antenna;
1533 if (b43_is_cck_rate(rate))
1534 ctl |= B43_TXH_PHY_ENC_CCK;
1535 else
1536 ctl |= B43_TXH_PHY_ENC_OFDM;
1537 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL, ctl);
1538
Michael Buesche66fee62007-12-26 17:47:10 +01001539 /* Find the position of the TIM and the DTIM_period value
1540 * and write them to SHM. */
1541 ie = bcn->u.beacon.variable;
Michael Buesch47f76ca2007-12-27 22:15:11 +01001542 variable_len = len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
1543 for (i = 0; i < variable_len - 2; ) {
Michael Buesche66fee62007-12-26 17:47:10 +01001544 uint8_t ie_id, ie_len;
1545
1546 ie_id = ie[i];
1547 ie_len = ie[i + 1];
1548 if (ie_id == 5) {
1549 u16 tim_position;
1550 u16 dtim_period;
1551 /* This is the TIM Information Element */
1552
1553 /* Check whether the ie_len is in the beacon data range. */
Michael Buesch47f76ca2007-12-27 22:15:11 +01001554 if (variable_len < ie_len + 2 + i)
Michael Buesche66fee62007-12-26 17:47:10 +01001555 break;
1556 /* A valid TIM is at least 4 bytes long. */
1557 if (ie_len < 4)
1558 break;
1559 tim_found = 1;
1560
1561 tim_position = sizeof(struct b43_plcp_hdr6);
1562 tim_position += offsetof(struct ieee80211_mgmt, u.beacon.variable);
1563 tim_position += i;
1564
1565 dtim_period = ie[i + 3];
1566
1567 b43_shm_write16(dev, B43_SHM_SHARED,
1568 B43_SHM_SH_TIMBPOS, tim_position);
1569 b43_shm_write16(dev, B43_SHM_SHARED,
1570 B43_SHM_SH_DTIMPER, dtim_period);
1571 break;
1572 }
1573 i += ie_len + 2;
1574 }
1575 if (!tim_found) {
Johannes Berg04dea132008-05-20 12:10:49 +02001576 /*
1577 * If ucode wants to modify TIM do it behind the beacon, this
1578 * will happen, for example, when doing mesh networking.
1579 */
1580 b43_shm_write16(dev, B43_SHM_SHARED,
1581 B43_SHM_SH_TIMBPOS,
1582 len + sizeof(struct b43_plcp_hdr6));
1583 b43_shm_write16(dev, B43_SHM_SHARED,
1584 B43_SHM_SH_DTIMPER, 0);
1585 }
1586 b43dbg(dev->wl, "Updated beacon template at 0x%x\n", ram_offset);
Michael Buesche4d6b792007-09-18 15:39:42 -04001587}
1588
Michael Buesch6b4bec012008-05-20 12:16:28 +02001589static void b43_upload_beacon0(struct b43_wldev *dev)
1590{
1591 struct b43_wl *wl = dev->wl;
1592
1593 if (wl->beacon0_uploaded)
1594 return;
1595 b43_write_beacon_template(dev, 0x68, 0x18);
Michael Buesch6b4bec012008-05-20 12:16:28 +02001596 wl->beacon0_uploaded = 1;
1597}
1598
1599static void b43_upload_beacon1(struct b43_wldev *dev)
1600{
1601 struct b43_wl *wl = dev->wl;
1602
1603 if (wl->beacon1_uploaded)
1604 return;
1605 b43_write_beacon_template(dev, 0x468, 0x1A);
1606 wl->beacon1_uploaded = 1;
1607}
1608
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001609static void handle_irq_beacon(struct b43_wldev *dev)
1610{
1611 struct b43_wl *wl = dev->wl;
1612 u32 cmd, beacon0_valid, beacon1_valid;
1613
Johannes Berg05c914f2008-09-11 00:01:58 +02001614 if (!b43_is_mode(wl, NL80211_IFTYPE_AP) &&
1615 !b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT))
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001616 return;
1617
1618 /* This is the bottom half of the asynchronous beacon update. */
1619
1620 /* Ignore interrupt in the future. */
Michael Buesch13790722009-04-08 21:26:27 +02001621 dev->irq_mask &= ~B43_IRQ_BEACON;
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001622
1623 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1624 beacon0_valid = (cmd & B43_MACCMD_BEACON0_VALID);
1625 beacon1_valid = (cmd & B43_MACCMD_BEACON1_VALID);
1626
1627 /* Schedule interrupt manually, if busy. */
1628 if (beacon0_valid && beacon1_valid) {
1629 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, B43_IRQ_BEACON);
Michael Buesch13790722009-04-08 21:26:27 +02001630 dev->irq_mask |= B43_IRQ_BEACON;
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001631 return;
1632 }
1633
Michael Buesch6b4bec012008-05-20 12:16:28 +02001634 if (unlikely(wl->beacon_templates_virgin)) {
1635 /* We never uploaded a beacon before.
1636 * Upload both templates now, but only mark one valid. */
1637 wl->beacon_templates_virgin = 0;
1638 b43_upload_beacon0(dev);
1639 b43_upload_beacon1(dev);
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001640 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1641 cmd |= B43_MACCMD_BEACON0_VALID;
1642 b43_write32(dev, B43_MMIO_MACCMD, cmd);
Michael Buesch6b4bec012008-05-20 12:16:28 +02001643 } else {
1644 if (!beacon0_valid) {
1645 b43_upload_beacon0(dev);
1646 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1647 cmd |= B43_MACCMD_BEACON0_VALID;
1648 b43_write32(dev, B43_MMIO_MACCMD, cmd);
1649 } else if (!beacon1_valid) {
1650 b43_upload_beacon1(dev);
1651 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1652 cmd |= B43_MACCMD_BEACON1_VALID;
1653 b43_write32(dev, B43_MMIO_MACCMD, cmd);
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001654 }
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001655 }
1656}
1657
Michael Buesch36dbd952009-09-04 22:51:29 +02001658static void b43_do_beacon_update_trigger_work(struct b43_wldev *dev)
1659{
1660 u32 old_irq_mask = dev->irq_mask;
1661
1662 /* update beacon right away or defer to irq */
1663 handle_irq_beacon(dev);
1664 if (old_irq_mask != dev->irq_mask) {
1665 /* The handler updated the IRQ mask. */
1666 B43_WARN_ON(!dev->irq_mask);
1667 if (b43_read32(dev, B43_MMIO_GEN_IRQ_MASK)) {
1668 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
1669 } else {
1670 /* Device interrupts are currently disabled. That means
1671 * we just ran the hardirq handler and scheduled the
1672 * IRQ thread. The thread will write the IRQ mask when
1673 * it finished, so there's nothing to do here. Writing
1674 * the mask _here_ would incorrectly re-enable IRQs. */
1675 }
1676 }
1677}
1678
Michael Buescha82d9922008-04-04 21:40:06 +02001679static void b43_beacon_update_trigger_work(struct work_struct *work)
1680{
1681 struct b43_wl *wl = container_of(work, struct b43_wl,
1682 beacon_update_trigger);
1683 struct b43_wldev *dev;
1684
1685 mutex_lock(&wl->mutex);
1686 dev = wl->current_dev;
1687 if (likely(dev && (b43_status(dev) >= B43_STAT_INITIALIZED))) {
Rafał Miłecki505fb012011-05-19 15:11:27 +02001688 if (b43_bus_host_is_sdio(dev->dev)) {
Michael Buesch36dbd952009-09-04 22:51:29 +02001689 /* wl->mutex is enough. */
1690 b43_do_beacon_update_trigger_work(dev);
1691 mmiowb();
1692 } else {
1693 spin_lock_irq(&wl->hardirq_lock);
1694 b43_do_beacon_update_trigger_work(dev);
1695 mmiowb();
1696 spin_unlock_irq(&wl->hardirq_lock);
1697 }
Michael Buescha82d9922008-04-04 21:40:06 +02001698 }
1699 mutex_unlock(&wl->mutex);
1700}
1701
Michael Bueschd4df6f12007-12-26 18:04:14 +01001702/* Asynchronously update the packet templates in template RAM.
Michael Buesch36dbd952009-09-04 22:51:29 +02001703 * Locking: Requires wl->mutex to be locked. */
Johannes Berg9d139c82008-07-09 14:40:37 +02001704static void b43_update_templates(struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04001705{
Johannes Berg9d139c82008-07-09 14:40:37 +02001706 struct sk_buff *beacon;
1707
Michael Buesche66fee62007-12-26 17:47:10 +01001708 /* This is the top half of the ansynchronous beacon update.
1709 * The bottom half is the beacon IRQ.
1710 * Beacon update must be asynchronous to avoid sending an
1711 * invalid beacon. This can happen for example, if the firmware
1712 * transmits a beacon while we are updating it. */
Michael Buesche4d6b792007-09-18 15:39:42 -04001713
Johannes Berg9d139c82008-07-09 14:40:37 +02001714 /* We could modify the existing beacon and set the aid bit in
1715 * the TIM field, but that would probably require resizing and
1716 * moving of data within the beacon template.
1717 * Simply request a new beacon and let mac80211 do the hard work. */
1718 beacon = ieee80211_beacon_get(wl->hw, wl->vif);
1719 if (unlikely(!beacon))
1720 return;
1721
Michael Buesche66fee62007-12-26 17:47:10 +01001722 if (wl->current_beacon)
1723 dev_kfree_skb_any(wl->current_beacon);
1724 wl->current_beacon = beacon;
1725 wl->beacon0_uploaded = 0;
1726 wl->beacon1_uploaded = 0;
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001727 ieee80211_queue_work(wl->hw, &wl->beacon_update_trigger);
Michael Buesche4d6b792007-09-18 15:39:42 -04001728}
1729
Michael Buesche4d6b792007-09-18 15:39:42 -04001730static void b43_set_beacon_int(struct b43_wldev *dev, u16 beacon_int)
1731{
1732 b43_time_lock(dev);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02001733 if (dev->dev->core_rev >= 3) {
Michael Buescha82d9922008-04-04 21:40:06 +02001734 b43_write32(dev, B43_MMIO_TSF_CFP_REP, (beacon_int << 16));
1735 b43_write32(dev, B43_MMIO_TSF_CFP_START, (beacon_int << 10));
Michael Buesche4d6b792007-09-18 15:39:42 -04001736 } else {
1737 b43_write16(dev, 0x606, (beacon_int >> 6));
1738 b43_write16(dev, 0x610, beacon_int);
1739 }
1740 b43_time_unlock(dev);
Michael Buescha82d9922008-04-04 21:40:06 +02001741 b43dbg(dev->wl, "Set beacon interval to %u\n", beacon_int);
Michael Buesche4d6b792007-09-18 15:39:42 -04001742}
1743
Michael Bueschafa83e22008-05-19 23:51:37 +02001744static void b43_handle_firmware_panic(struct b43_wldev *dev)
1745{
1746 u16 reason;
1747
1748 /* Read the register that contains the reason code for the panic. */
1749 reason = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_FWPANIC_REASON_REG);
1750 b43err(dev->wl, "Whoopsy, firmware panic! Reason: %u\n", reason);
1751
1752 switch (reason) {
1753 default:
1754 b43dbg(dev->wl, "The panic reason is unknown.\n");
1755 /* fallthrough */
1756 case B43_FWPANIC_DIE:
1757 /* Do not restart the controller or firmware.
1758 * The device is nonfunctional from now on.
1759 * Restarting would result in this panic to trigger again,
1760 * so we avoid that recursion. */
1761 break;
1762 case B43_FWPANIC_RESTART:
1763 b43_controller_restart(dev, "Microcode panic");
1764 break;
1765 }
1766}
1767
Michael Buesche4d6b792007-09-18 15:39:42 -04001768static void handle_irq_ucode_debug(struct b43_wldev *dev)
1769{
Michael Buesche48b0ee2008-05-17 22:44:35 +02001770 unsigned int i, cnt;
Michael Buesch53c06852008-05-20 00:24:36 +02001771 u16 reason, marker_id, marker_line;
Michael Buesche48b0ee2008-05-17 22:44:35 +02001772 __le16 *buf;
1773
1774 /* The proprietary firmware doesn't have this IRQ. */
1775 if (!dev->fw.opensource)
1776 return;
1777
Michael Bueschafa83e22008-05-19 23:51:37 +02001778 /* Read the register that contains the reason code for this IRQ. */
1779 reason = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_DEBUGIRQ_REASON_REG);
1780
Michael Buesche48b0ee2008-05-17 22:44:35 +02001781 switch (reason) {
1782 case B43_DEBUGIRQ_PANIC:
Michael Bueschafa83e22008-05-19 23:51:37 +02001783 b43_handle_firmware_panic(dev);
Michael Buesche48b0ee2008-05-17 22:44:35 +02001784 break;
1785 case B43_DEBUGIRQ_DUMP_SHM:
1786 if (!B43_DEBUG)
1787 break; /* Only with driver debugging enabled. */
1788 buf = kmalloc(4096, GFP_ATOMIC);
1789 if (!buf) {
1790 b43dbg(dev->wl, "SHM-dump: Failed to allocate memory\n");
1791 goto out;
1792 }
1793 for (i = 0; i < 4096; i += 2) {
1794 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, i);
1795 buf[i / 2] = cpu_to_le16(tmp);
1796 }
1797 b43info(dev->wl, "Shared memory dump:\n");
1798 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET,
1799 16, 2, buf, 4096, 1);
1800 kfree(buf);
1801 break;
1802 case B43_DEBUGIRQ_DUMP_REGS:
1803 if (!B43_DEBUG)
1804 break; /* Only with driver debugging enabled. */
1805 b43info(dev->wl, "Microcode register dump:\n");
1806 for (i = 0, cnt = 0; i < 64; i++) {
1807 u16 tmp = b43_shm_read16(dev, B43_SHM_SCRATCH, i);
1808 if (cnt == 0)
1809 printk(KERN_INFO);
1810 printk("r%02u: 0x%04X ", i, tmp);
1811 cnt++;
1812 if (cnt == 6) {
1813 printk("\n");
1814 cnt = 0;
1815 }
1816 }
1817 printk("\n");
1818 break;
Michael Buesch53c06852008-05-20 00:24:36 +02001819 case B43_DEBUGIRQ_MARKER:
1820 if (!B43_DEBUG)
1821 break; /* Only with driver debugging enabled. */
1822 marker_id = b43_shm_read16(dev, B43_SHM_SCRATCH,
1823 B43_MARKER_ID_REG);
1824 marker_line = b43_shm_read16(dev, B43_SHM_SCRATCH,
1825 B43_MARKER_LINE_REG);
1826 b43info(dev->wl, "The firmware just executed the MARKER(%u) "
1827 "at line number %u\n",
1828 marker_id, marker_line);
1829 break;
Michael Buesche48b0ee2008-05-17 22:44:35 +02001830 default:
1831 b43dbg(dev->wl, "Debug-IRQ triggered for unknown reason: %u\n",
1832 reason);
1833 }
1834out:
Michael Bueschafa83e22008-05-19 23:51:37 +02001835 /* Acknowledge the debug-IRQ, so the firmware can continue. */
1836 b43_shm_write16(dev, B43_SHM_SCRATCH,
1837 B43_DEBUGIRQ_REASON_REG, B43_DEBUGIRQ_ACK);
Michael Buesche4d6b792007-09-18 15:39:42 -04001838}
1839
Michael Buesch36dbd952009-09-04 22:51:29 +02001840static void b43_do_interrupt_thread(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04001841{
1842 u32 reason;
1843 u32 dma_reason[ARRAY_SIZE(dev->dma_reason)];
1844 u32 merged_dma_reason = 0;
Michael Buesch21954c32007-09-27 15:31:40 +02001845 int i;
Michael Buesche4d6b792007-09-18 15:39:42 -04001846
Michael Buesch36dbd952009-09-04 22:51:29 +02001847 if (unlikely(b43_status(dev) != B43_STAT_STARTED))
1848 return;
Michael Buesche4d6b792007-09-18 15:39:42 -04001849
1850 reason = dev->irq_reason;
1851 for (i = 0; i < ARRAY_SIZE(dma_reason); i++) {
1852 dma_reason[i] = dev->dma_reason[i];
1853 merged_dma_reason |= dma_reason[i];
1854 }
1855
1856 if (unlikely(reason & B43_IRQ_MAC_TXERR))
1857 b43err(dev->wl, "MAC transmission error\n");
1858
Stefano Brivio00e0b8c2007-11-25 11:10:33 +01001859 if (unlikely(reason & B43_IRQ_PHY_TXERR)) {
Michael Buesche4d6b792007-09-18 15:39:42 -04001860 b43err(dev->wl, "PHY transmission error\n");
Stefano Brivio00e0b8c2007-11-25 11:10:33 +01001861 rmb();
1862 if (unlikely(atomic_dec_and_test(&dev->phy.txerr_cnt))) {
1863 atomic_set(&dev->phy.txerr_cnt,
1864 B43_PHY_TX_BADNESS_LIMIT);
1865 b43err(dev->wl, "Too many PHY TX errors, "
1866 "restarting the controller\n");
1867 b43_controller_restart(dev, "PHY TX errors");
1868 }
1869 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001870
1871 if (unlikely(merged_dma_reason & (B43_DMAIRQ_FATALMASK |
1872 B43_DMAIRQ_NONFATALMASK))) {
1873 if (merged_dma_reason & B43_DMAIRQ_FATALMASK) {
1874 b43err(dev->wl, "Fatal DMA error: "
1875 "0x%08X, 0x%08X, 0x%08X, "
1876 "0x%08X, 0x%08X, 0x%08X\n",
1877 dma_reason[0], dma_reason[1],
1878 dma_reason[2], dma_reason[3],
1879 dma_reason[4], dma_reason[5]);
Larry Finger214ac9a2009-12-09 13:25:56 -06001880 b43err(dev->wl, "This device does not support DMA "
Larry Fingerbb64d952010-06-19 08:29:08 -05001881 "on your system. It will now be switched to PIO.\n");
Linus Torvalds9e3bd912010-02-26 10:34:27 -08001882 /* Fall back to PIO transfers if we get fatal DMA errors! */
1883 dev->use_pio = 1;
1884 b43_controller_restart(dev, "DMA error");
Michael Buesche4d6b792007-09-18 15:39:42 -04001885 return;
1886 }
1887 if (merged_dma_reason & B43_DMAIRQ_NONFATALMASK) {
1888 b43err(dev->wl, "DMA error: "
1889 "0x%08X, 0x%08X, 0x%08X, "
1890 "0x%08X, 0x%08X, 0x%08X\n",
1891 dma_reason[0], dma_reason[1],
1892 dma_reason[2], dma_reason[3],
1893 dma_reason[4], dma_reason[5]);
1894 }
1895 }
1896
1897 if (unlikely(reason & B43_IRQ_UCODE_DEBUG))
1898 handle_irq_ucode_debug(dev);
1899 if (reason & B43_IRQ_TBTT_INDI)
1900 handle_irq_tbtt_indication(dev);
1901 if (reason & B43_IRQ_ATIM_END)
1902 handle_irq_atim_end(dev);
1903 if (reason & B43_IRQ_BEACON)
1904 handle_irq_beacon(dev);
1905 if (reason & B43_IRQ_PMQ)
1906 handle_irq_pmq(dev);
Michael Buesch21954c32007-09-27 15:31:40 +02001907 if (reason & B43_IRQ_TXFIFO_FLUSH_OK)
1908 ;/* TODO */
1909 if (reason & B43_IRQ_NOISESAMPLE_OK)
Michael Buesche4d6b792007-09-18 15:39:42 -04001910 handle_irq_noise(dev);
1911
1912 /* Check the DMA reason registers for received data. */
Michael Buesch5100d5a2008-03-29 21:01:16 +01001913 if (dma_reason[0] & B43_DMAIRQ_RX_DONE) {
1914 if (b43_using_pio_transfers(dev))
1915 b43_pio_rx(dev->pio.rx_queue);
1916 else
1917 b43_dma_rx(dev->dma.rx_ring);
1918 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001919 B43_WARN_ON(dma_reason[1] & B43_DMAIRQ_RX_DONE);
1920 B43_WARN_ON(dma_reason[2] & B43_DMAIRQ_RX_DONE);
Michael Bueschb27faf82008-03-06 16:32:46 +01001921 B43_WARN_ON(dma_reason[3] & B43_DMAIRQ_RX_DONE);
Michael Buesche4d6b792007-09-18 15:39:42 -04001922 B43_WARN_ON(dma_reason[4] & B43_DMAIRQ_RX_DONE);
1923 B43_WARN_ON(dma_reason[5] & B43_DMAIRQ_RX_DONE);
1924
Michael Buesch21954c32007-09-27 15:31:40 +02001925 if (reason & B43_IRQ_TX_OK)
Michael Buesche4d6b792007-09-18 15:39:42 -04001926 handle_irq_transmit_status(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04001927
Michael Buesch36dbd952009-09-04 22:51:29 +02001928 /* Re-enable interrupts on the device by restoring the current interrupt mask. */
Michael Buesch13790722009-04-08 21:26:27 +02001929 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
Michael Buesch990b86f2009-09-12 00:48:03 +02001930
1931#if B43_DEBUG
1932 if (b43_debug(dev, B43_DBG_VERBOSESTATS)) {
1933 dev->irq_count++;
1934 for (i = 0; i < ARRAY_SIZE(dev->irq_bit_count); i++) {
1935 if (reason & (1 << i))
1936 dev->irq_bit_count[i]++;
1937 }
1938 }
1939#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04001940}
1941
Michael Buesch36dbd952009-09-04 22:51:29 +02001942/* Interrupt thread handler. Handles device interrupts in thread context. */
1943static irqreturn_t b43_interrupt_thread_handler(int irq, void *dev_id)
Michael Buesche4d6b792007-09-18 15:39:42 -04001944{
Michael Buesche4d6b792007-09-18 15:39:42 -04001945 struct b43_wldev *dev = dev_id;
Michael Buesch36dbd952009-09-04 22:51:29 +02001946
1947 mutex_lock(&dev->wl->mutex);
1948 b43_do_interrupt_thread(dev);
1949 mmiowb();
1950 mutex_unlock(&dev->wl->mutex);
1951
1952 return IRQ_HANDLED;
1953}
1954
1955static irqreturn_t b43_do_interrupt(struct b43_wldev *dev)
1956{
Michael Buesche4d6b792007-09-18 15:39:42 -04001957 u32 reason;
1958
Michael Buesch36dbd952009-09-04 22:51:29 +02001959 /* This code runs under wl->hardirq_lock, but _only_ on non-SDIO busses.
1960 * On SDIO, this runs under wl->mutex. */
Michael Buesche4d6b792007-09-18 15:39:42 -04001961
Michael Buesche4d6b792007-09-18 15:39:42 -04001962 reason = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
1963 if (reason == 0xffffffff) /* shared IRQ */
Michael Buesch36dbd952009-09-04 22:51:29 +02001964 return IRQ_NONE;
Michael Buesch13790722009-04-08 21:26:27 +02001965 reason &= dev->irq_mask;
Michael Buesche4d6b792007-09-18 15:39:42 -04001966 if (!reason)
Michael Buesch36dbd952009-09-04 22:51:29 +02001967 return IRQ_HANDLED;
Michael Buesche4d6b792007-09-18 15:39:42 -04001968
1969 dev->dma_reason[0] = b43_read32(dev, B43_MMIO_DMA0_REASON)
1970 & 0x0001DC00;
1971 dev->dma_reason[1] = b43_read32(dev, B43_MMIO_DMA1_REASON)
1972 & 0x0000DC00;
1973 dev->dma_reason[2] = b43_read32(dev, B43_MMIO_DMA2_REASON)
1974 & 0x0000DC00;
1975 dev->dma_reason[3] = b43_read32(dev, B43_MMIO_DMA3_REASON)
1976 & 0x0001DC00;
1977 dev->dma_reason[4] = b43_read32(dev, B43_MMIO_DMA4_REASON)
1978 & 0x0000DC00;
Michael Buesch13790722009-04-08 21:26:27 +02001979/* Unused ring
Michael Buesche4d6b792007-09-18 15:39:42 -04001980 dev->dma_reason[5] = b43_read32(dev, B43_MMIO_DMA5_REASON)
1981 & 0x0000DC00;
Michael Buesch13790722009-04-08 21:26:27 +02001982*/
Michael Buesche4d6b792007-09-18 15:39:42 -04001983
Michael Buesch36dbd952009-09-04 22:51:29 +02001984 /* ACK the interrupt. */
1985 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, reason);
1986 b43_write32(dev, B43_MMIO_DMA0_REASON, dev->dma_reason[0]);
1987 b43_write32(dev, B43_MMIO_DMA1_REASON, dev->dma_reason[1]);
1988 b43_write32(dev, B43_MMIO_DMA2_REASON, dev->dma_reason[2]);
1989 b43_write32(dev, B43_MMIO_DMA3_REASON, dev->dma_reason[3]);
1990 b43_write32(dev, B43_MMIO_DMA4_REASON, dev->dma_reason[4]);
1991/* Unused ring
1992 b43_write32(dev, B43_MMIO_DMA5_REASON, dev->dma_reason[5]);
1993*/
1994
1995 /* Disable IRQs on the device. The IRQ thread handler will re-enable them. */
Michael Buesch13790722009-04-08 21:26:27 +02001996 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
Michael Buesch36dbd952009-09-04 22:51:29 +02001997 /* Save the reason bitmasks for the IRQ thread handler. */
Michael Buesche4d6b792007-09-18 15:39:42 -04001998 dev->irq_reason = reason;
Michael Buesch36dbd952009-09-04 22:51:29 +02001999
2000 return IRQ_WAKE_THREAD;
2001}
2002
2003/* Interrupt handler top-half. This runs with interrupts disabled. */
2004static irqreturn_t b43_interrupt_handler(int irq, void *dev_id)
2005{
2006 struct b43_wldev *dev = dev_id;
2007 irqreturn_t ret;
2008
2009 if (unlikely(b43_status(dev) < B43_STAT_STARTED))
2010 return IRQ_NONE;
2011
2012 spin_lock(&dev->wl->hardirq_lock);
2013 ret = b43_do_interrupt(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04002014 mmiowb();
Michael Buesch36dbd952009-09-04 22:51:29 +02002015 spin_unlock(&dev->wl->hardirq_lock);
Michael Buesche4d6b792007-09-18 15:39:42 -04002016
2017 return ret;
2018}
2019
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002020/* SDIO interrupt handler. This runs in process context. */
2021static void b43_sdio_interrupt_handler(struct b43_wldev *dev)
2022{
2023 struct b43_wl *wl = dev->wl;
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002024 irqreturn_t ret;
2025
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002026 mutex_lock(&wl->mutex);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002027
2028 ret = b43_do_interrupt(dev);
2029 if (ret == IRQ_WAKE_THREAD)
2030 b43_do_interrupt_thread(dev);
2031
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002032 mutex_unlock(&wl->mutex);
2033}
2034
Michael Buesch1a9f5092009-01-23 21:21:51 +01002035void b43_do_release_fw(struct b43_firmware_file *fw)
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002036{
2037 release_firmware(fw->data);
2038 fw->data = NULL;
2039 fw->filename = NULL;
2040}
2041
Michael Buesche4d6b792007-09-18 15:39:42 -04002042static void b43_release_firmware(struct b43_wldev *dev)
2043{
Michael Buesch1a9f5092009-01-23 21:21:51 +01002044 b43_do_release_fw(&dev->fw.ucode);
2045 b43_do_release_fw(&dev->fw.pcm);
2046 b43_do_release_fw(&dev->fw.initvals);
2047 b43_do_release_fw(&dev->fw.initvals_band);
Michael Buesche4d6b792007-09-18 15:39:42 -04002048}
2049
Michael Buescheb189d8b2008-01-28 14:47:41 -08002050static void b43_print_fw_helptext(struct b43_wl *wl, bool error)
Michael Buesche4d6b792007-09-18 15:39:42 -04002051{
Hannes Ederfc68ed42009-02-14 11:50:06 +00002052 const char text[] =
2053 "You must go to " \
2054 "http://wireless.kernel.org/en/users/Drivers/b43#devicefirmware " \
2055 "and download the correct firmware for this driver version. " \
2056 "Please carefully read all instructions on this website.\n";
Michael Buescheb189d8b2008-01-28 14:47:41 -08002057
Michael Buescheb189d8b2008-01-28 14:47:41 -08002058 if (error)
2059 b43err(wl, text);
2060 else
2061 b43warn(wl, text);
Michael Buesche4d6b792007-09-18 15:39:42 -04002062}
2063
Michael Buesch1a9f5092009-01-23 21:21:51 +01002064int b43_do_request_fw(struct b43_request_fw_context *ctx,
2065 const char *name,
2066 struct b43_firmware_file *fw)
Michael Buesche4d6b792007-09-18 15:39:42 -04002067{
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002068 const struct firmware *blob;
Michael Buesche4d6b792007-09-18 15:39:42 -04002069 struct b43_fw_header *hdr;
2070 u32 size;
2071 int err;
2072
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002073 if (!name) {
2074 /* Don't fetch anything. Free possibly cached firmware. */
Michael Buesch1a9f5092009-01-23 21:21:51 +01002075 /* FIXME: We should probably keep it anyway, to save some headache
2076 * on suspend/resume with multiband devices. */
2077 b43_do_release_fw(fw);
Michael Buesche4d6b792007-09-18 15:39:42 -04002078 return 0;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002079 }
2080 if (fw->filename) {
Michael Buesch1a9f5092009-01-23 21:21:51 +01002081 if ((fw->type == ctx->req_type) &&
2082 (strcmp(fw->filename, name) == 0))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002083 return 0; /* Already have this fw. */
2084 /* Free the cached firmware first. */
Michael Buesch1a9f5092009-01-23 21:21:51 +01002085 /* FIXME: We should probably do this later after we successfully
2086 * got the new fw. This could reduce headache with multiband devices.
2087 * We could also redesign this to cache the firmware for all possible
2088 * bands all the time. */
2089 b43_do_release_fw(fw);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002090 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002091
Michael Buesch1a9f5092009-01-23 21:21:51 +01002092 switch (ctx->req_type) {
2093 case B43_FWTYPE_PROPRIETARY:
2094 snprintf(ctx->fwname, sizeof(ctx->fwname),
2095 "b43%s/%s.fw",
2096 modparam_fwpostfix, name);
2097 break;
2098 case B43_FWTYPE_OPENSOURCE:
2099 snprintf(ctx->fwname, sizeof(ctx->fwname),
2100 "b43-open%s/%s.fw",
2101 modparam_fwpostfix, name);
2102 break;
2103 default:
2104 B43_WARN_ON(1);
2105 return -ENOSYS;
2106 }
Rafał Miłeckia18c7152011-05-18 02:06:40 +02002107 err = request_firmware(&blob, ctx->fwname, ctx->dev->dev->dev);
Michael Buesch68217832008-05-17 23:43:57 +02002108 if (err == -ENOENT) {
Michael Buesch1a9f5092009-01-23 21:21:51 +01002109 snprintf(ctx->errors[ctx->req_type],
2110 sizeof(ctx->errors[ctx->req_type]),
2111 "Firmware file \"%s\" not found\n", ctx->fwname);
Michael Buesch68217832008-05-17 23:43:57 +02002112 return err;
2113 } else if (err) {
Michael Buesch1a9f5092009-01-23 21:21:51 +01002114 snprintf(ctx->errors[ctx->req_type],
2115 sizeof(ctx->errors[ctx->req_type]),
2116 "Firmware file \"%s\" request failed (err=%d)\n",
2117 ctx->fwname, err);
Michael Buesche4d6b792007-09-18 15:39:42 -04002118 return err;
2119 }
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002120 if (blob->size < sizeof(struct b43_fw_header))
Michael Buesche4d6b792007-09-18 15:39:42 -04002121 goto err_format;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002122 hdr = (struct b43_fw_header *)(blob->data);
Michael Buesche4d6b792007-09-18 15:39:42 -04002123 switch (hdr->type) {
2124 case B43_FW_TYPE_UCODE:
2125 case B43_FW_TYPE_PCM:
2126 size = be32_to_cpu(hdr->size);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002127 if (size != blob->size - sizeof(struct b43_fw_header))
Michael Buesche4d6b792007-09-18 15:39:42 -04002128 goto err_format;
2129 /* fallthrough */
2130 case B43_FW_TYPE_IV:
2131 if (hdr->ver != 1)
2132 goto err_format;
2133 break;
2134 default:
2135 goto err_format;
2136 }
2137
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002138 fw->data = blob;
2139 fw->filename = name;
Michael Buesch1a9f5092009-01-23 21:21:51 +01002140 fw->type = ctx->req_type;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002141
2142 return 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04002143
2144err_format:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002145 snprintf(ctx->errors[ctx->req_type],
2146 sizeof(ctx->errors[ctx->req_type]),
2147 "Firmware file \"%s\" format error.\n", ctx->fwname);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002148 release_firmware(blob);
2149
Michael Buesche4d6b792007-09-18 15:39:42 -04002150 return -EPROTO;
2151}
2152
Michael Buesch1a9f5092009-01-23 21:21:51 +01002153static int b43_try_request_fw(struct b43_request_fw_context *ctx)
Michael Buesche4d6b792007-09-18 15:39:42 -04002154{
Michael Buesch1a9f5092009-01-23 21:21:51 +01002155 struct b43_wldev *dev = ctx->dev;
2156 struct b43_firmware *fw = &ctx->dev->fw;
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002157 const u8 rev = ctx->dev->dev->core_rev;
Michael Buesche4d6b792007-09-18 15:39:42 -04002158 const char *filename;
2159 u32 tmshigh;
2160 int err;
2161
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002162 /* Get microcode */
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002163 if ((rev >= 5) && (rev <= 10)) {
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002164 filename = "ucode5";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002165 } else if ((rev >= 11) && (rev <= 12)) {
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002166 filename = "ucode11";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002167 } else if (rev == 13) {
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002168 filename = "ucode13";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002169 } else if (rev == 14) {
Gábor Stefanik759b9732009-08-14 14:39:53 +02002170 filename = "ucode14";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002171 } else if (rev == 15) {
Gábor Stefanik759b9732009-08-14 14:39:53 +02002172 filename = "ucode15";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002173 } else {
2174 switch (dev->phy.type) {
2175 case B43_PHYTYPE_N:
2176 if (rev >= 16)
2177 filename = "ucode16_mimo";
2178 else
2179 goto err_no_ucode;
2180 break;
2181 default:
2182 goto err_no_ucode;
2183 }
2184 }
Michael Buesch1a9f5092009-01-23 21:21:51 +01002185 err = b43_do_request_fw(ctx, filename, &fw->ucode);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002186 if (err)
2187 goto err_load;
2188
2189 /* Get PCM code */
2190 if ((rev >= 5) && (rev <= 10))
2191 filename = "pcm5";
2192 else if (rev >= 11)
2193 filename = NULL;
2194 else
2195 goto err_no_pcm;
Michael Buesch68217832008-05-17 23:43:57 +02002196 fw->pcm_request_failed = 0;
Michael Buesch1a9f5092009-01-23 21:21:51 +01002197 err = b43_do_request_fw(ctx, filename, &fw->pcm);
Michael Buesch68217832008-05-17 23:43:57 +02002198 if (err == -ENOENT) {
2199 /* We did not find a PCM file? Not fatal, but
2200 * core rev <= 10 must do without hwcrypto then. */
2201 fw->pcm_request_failed = 1;
2202 } else if (err)
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002203 goto err_load;
2204
2205 /* Get initvals */
2206 switch (dev->phy.type) {
2207 case B43_PHYTYPE_A:
2208 if ((rev >= 5) && (rev <= 10)) {
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02002209 tmshigh = ssb_read32(dev->dev->sdev, SSB_TMSHIGH);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002210 if (tmshigh & B43_TMSHIGH_HAVE_2GHZ_PHY)
2211 filename = "a0g1initvals5";
2212 else
2213 filename = "a0g0initvals5";
2214 } else
2215 goto err_no_initvals;
2216 break;
2217 case B43_PHYTYPE_G:
Michael Buesche4d6b792007-09-18 15:39:42 -04002218 if ((rev >= 5) && (rev <= 10))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002219 filename = "b0g0initvals5";
Michael Buesche4d6b792007-09-18 15:39:42 -04002220 else if (rev >= 13)
Larry.Finger@lwfinger.nete9304882008-05-15 14:07:36 -05002221 filename = "b0g0initvals13";
Michael Buesche4d6b792007-09-18 15:39:42 -04002222 else
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002223 goto err_no_initvals;
2224 break;
2225 case B43_PHYTYPE_N:
Rafał Miłeckie41596a2010-12-21 11:50:19 +01002226 if (rev >= 16)
2227 filename = "n0initvals16";
2228 else if ((rev >= 11) && (rev <= 12))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002229 filename = "n0initvals11";
2230 else
2231 goto err_no_initvals;
2232 break;
Gábor Stefanik759b9732009-08-14 14:39:53 +02002233 case B43_PHYTYPE_LP:
2234 if (rev == 13)
2235 filename = "lp0initvals13";
2236 else if (rev == 14)
2237 filename = "lp0initvals14";
2238 else if (rev >= 15)
2239 filename = "lp0initvals15";
2240 else
2241 goto err_no_initvals;
2242 break;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002243 default:
2244 goto err_no_initvals;
Michael Buesche4d6b792007-09-18 15:39:42 -04002245 }
Michael Buesch1a9f5092009-01-23 21:21:51 +01002246 err = b43_do_request_fw(ctx, filename, &fw->initvals);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002247 if (err)
2248 goto err_load;
2249
2250 /* Get bandswitch initvals */
2251 switch (dev->phy.type) {
2252 case B43_PHYTYPE_A:
2253 if ((rev >= 5) && (rev <= 10)) {
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02002254 tmshigh = ssb_read32(dev->dev->sdev, SSB_TMSHIGH);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002255 if (tmshigh & B43_TMSHIGH_HAVE_2GHZ_PHY)
2256 filename = "a0g1bsinitvals5";
2257 else
2258 filename = "a0g0bsinitvals5";
2259 } else if (rev >= 11)
2260 filename = NULL;
2261 else
2262 goto err_no_initvals;
2263 break;
2264 case B43_PHYTYPE_G:
Michael Buesche4d6b792007-09-18 15:39:42 -04002265 if ((rev >= 5) && (rev <= 10))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002266 filename = "b0g0bsinitvals5";
Michael Buesche4d6b792007-09-18 15:39:42 -04002267 else if (rev >= 11)
2268 filename = NULL;
2269 else
Michael Buesche4d6b792007-09-18 15:39:42 -04002270 goto err_no_initvals;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002271 break;
2272 case B43_PHYTYPE_N:
Rafał Miłeckie41596a2010-12-21 11:50:19 +01002273 if (rev >= 16)
2274 filename = "n0bsinitvals16";
2275 else if ((rev >= 11) && (rev <= 12))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002276 filename = "n0bsinitvals11";
2277 else
Michael Buesche4d6b792007-09-18 15:39:42 -04002278 goto err_no_initvals;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002279 break;
Gábor Stefanik759b9732009-08-14 14:39:53 +02002280 case B43_PHYTYPE_LP:
2281 if (rev == 13)
2282 filename = "lp0bsinitvals13";
2283 else if (rev == 14)
2284 filename = "lp0bsinitvals14";
2285 else if (rev >= 15)
2286 filename = "lp0bsinitvals15";
2287 else
2288 goto err_no_initvals;
2289 break;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002290 default:
2291 goto err_no_initvals;
Michael Buesche4d6b792007-09-18 15:39:42 -04002292 }
Michael Buesch1a9f5092009-01-23 21:21:51 +01002293 err = b43_do_request_fw(ctx, filename, &fw->initvals_band);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002294 if (err)
2295 goto err_load;
Michael Buesche4d6b792007-09-18 15:39:42 -04002296
2297 return 0;
2298
Michael Buesche4d6b792007-09-18 15:39:42 -04002299err_no_ucode:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002300 err = ctx->fatal_failure = -EOPNOTSUPP;
2301 b43err(dev->wl, "The driver does not know which firmware (ucode) "
2302 "is required for your device (wl-core rev %u)\n", rev);
Michael Buesche4d6b792007-09-18 15:39:42 -04002303 goto error;
2304
2305err_no_pcm:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002306 err = ctx->fatal_failure = -EOPNOTSUPP;
2307 b43err(dev->wl, "The driver does not know which firmware (PCM) "
2308 "is required for your device (wl-core rev %u)\n", rev);
Michael Buesche4d6b792007-09-18 15:39:42 -04002309 goto error;
2310
2311err_no_initvals:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002312 err = ctx->fatal_failure = -EOPNOTSUPP;
2313 b43err(dev->wl, "The driver does not know which firmware (initvals) "
2314 "is required for your device (wl-core rev %u)\n", rev);
2315 goto error;
2316
2317err_load:
2318 /* We failed to load this firmware image. The error message
2319 * already is in ctx->errors. Return and let our caller decide
2320 * what to do. */
Michael Buesche4d6b792007-09-18 15:39:42 -04002321 goto error;
2322
2323error:
2324 b43_release_firmware(dev);
2325 return err;
2326}
2327
Michael Buesch1a9f5092009-01-23 21:21:51 +01002328static int b43_request_firmware(struct b43_wldev *dev)
2329{
2330 struct b43_request_fw_context *ctx;
2331 unsigned int i;
2332 int err;
2333 const char *errmsg;
2334
2335 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
2336 if (!ctx)
2337 return -ENOMEM;
2338 ctx->dev = dev;
2339
2340 ctx->req_type = B43_FWTYPE_PROPRIETARY;
2341 err = b43_try_request_fw(ctx);
2342 if (!err)
2343 goto out; /* Successfully loaded it. */
2344 err = ctx->fatal_failure;
2345 if (err)
2346 goto out;
2347
2348 ctx->req_type = B43_FWTYPE_OPENSOURCE;
2349 err = b43_try_request_fw(ctx);
2350 if (!err)
2351 goto out; /* Successfully loaded it. */
2352 err = ctx->fatal_failure;
2353 if (err)
2354 goto out;
2355
2356 /* Could not find a usable firmware. Print the errors. */
2357 for (i = 0; i < B43_NR_FWTYPES; i++) {
2358 errmsg = ctx->errors[i];
2359 if (strlen(errmsg))
2360 b43err(dev->wl, errmsg);
2361 }
2362 b43_print_fw_helptext(dev->wl, 1);
2363 err = -ENOENT;
2364
2365out:
2366 kfree(ctx);
2367 return err;
2368}
2369
Michael Buesche4d6b792007-09-18 15:39:42 -04002370static int b43_upload_microcode(struct b43_wldev *dev)
2371{
John W. Linville652caa52010-07-29 13:27:28 -04002372 struct wiphy *wiphy = dev->wl->hw->wiphy;
Michael Buesche4d6b792007-09-18 15:39:42 -04002373 const size_t hdr_len = sizeof(struct b43_fw_header);
2374 const __be32 *data;
2375 unsigned int i, len;
2376 u16 fwrev, fwpatch, fwdate, fwtime;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002377 u32 tmp, macctl;
Michael Buesche4d6b792007-09-18 15:39:42 -04002378 int err = 0;
2379
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002380 /* Jump the microcode PSM to offset 0 */
2381 macctl = b43_read32(dev, B43_MMIO_MACCTL);
2382 B43_WARN_ON(macctl & B43_MACCTL_PSM_RUN);
2383 macctl |= B43_MACCTL_PSM_JMP0;
2384 b43_write32(dev, B43_MMIO_MACCTL, macctl);
2385 /* Zero out all microcode PSM registers and shared memory. */
2386 for (i = 0; i < 64; i++)
2387 b43_shm_write16(dev, B43_SHM_SCRATCH, i, 0);
2388 for (i = 0; i < 4096; i += 2)
2389 b43_shm_write16(dev, B43_SHM_SHARED, i, 0);
2390
Michael Buesche4d6b792007-09-18 15:39:42 -04002391 /* Upload Microcode. */
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002392 data = (__be32 *) (dev->fw.ucode.data->data + hdr_len);
2393 len = (dev->fw.ucode.data->size - hdr_len) / sizeof(__be32);
Michael Buesche4d6b792007-09-18 15:39:42 -04002394 b43_shm_control_word(dev, B43_SHM_UCODE | B43_SHM_AUTOINC_W, 0x0000);
2395 for (i = 0; i < len; i++) {
2396 b43_write32(dev, B43_MMIO_SHM_DATA, be32_to_cpu(data[i]));
2397 udelay(10);
2398 }
2399
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002400 if (dev->fw.pcm.data) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002401 /* Upload PCM data. */
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002402 data = (__be32 *) (dev->fw.pcm.data->data + hdr_len);
2403 len = (dev->fw.pcm.data->size - hdr_len) / sizeof(__be32);
Michael Buesche4d6b792007-09-18 15:39:42 -04002404 b43_shm_control_word(dev, B43_SHM_HW, 0x01EA);
2405 b43_write32(dev, B43_MMIO_SHM_DATA, 0x00004000);
2406 /* No need for autoinc bit in SHM_HW */
2407 b43_shm_control_word(dev, B43_SHM_HW, 0x01EB);
2408 for (i = 0; i < len; i++) {
2409 b43_write32(dev, B43_MMIO_SHM_DATA, be32_to_cpu(data[i]));
2410 udelay(10);
2411 }
2412 }
2413
2414 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, B43_IRQ_ALL);
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002415
2416 /* Start the microcode PSM */
2417 macctl = b43_read32(dev, B43_MMIO_MACCTL);
2418 macctl &= ~B43_MACCTL_PSM_JMP0;
2419 macctl |= B43_MACCTL_PSM_RUN;
2420 b43_write32(dev, B43_MMIO_MACCTL, macctl);
Michael Buesche4d6b792007-09-18 15:39:42 -04002421
2422 /* Wait for the microcode to load and respond */
2423 i = 0;
2424 while (1) {
2425 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2426 if (tmp == B43_IRQ_MAC_SUSPENDED)
2427 break;
2428 i++;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002429 if (i >= 20) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002430 b43err(dev->wl, "Microcode not responding\n");
Michael Buescheb189d8b2008-01-28 14:47:41 -08002431 b43_print_fw_helptext(dev->wl, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002432 err = -ENODEV;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002433 goto error;
Michael Buesche4d6b792007-09-18 15:39:42 -04002434 }
Michael Buesche175e992009-09-11 18:31:32 +02002435 msleep(50);
Michael Buesche4d6b792007-09-18 15:39:42 -04002436 }
2437 b43_read32(dev, B43_MMIO_GEN_IRQ_REASON); /* dummy read */
2438
2439 /* Get and check the revisions. */
2440 fwrev = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEREV);
2441 fwpatch = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEPATCH);
2442 fwdate = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEDATE);
2443 fwtime = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODETIME);
2444
2445 if (fwrev <= 0x128) {
2446 b43err(dev->wl, "YOUR FIRMWARE IS TOO OLD. Firmware from "
2447 "binary drivers older than version 4.x is unsupported. "
2448 "You must upgrade your firmware files.\n");
Michael Buescheb189d8b2008-01-28 14:47:41 -08002449 b43_print_fw_helptext(dev->wl, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002450 err = -EOPNOTSUPP;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002451 goto error;
Michael Buesche4d6b792007-09-18 15:39:42 -04002452 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002453 dev->fw.rev = fwrev;
2454 dev->fw.patch = fwpatch;
Michael Buesche48b0ee2008-05-17 22:44:35 +02002455 dev->fw.opensource = (fwdate == 0xFFFF);
2456
Michael Buesch403a3a12009-06-08 21:04:57 +02002457 /* Default to use-all-queues. */
2458 dev->wl->hw->queues = dev->wl->mac80211_initially_registered_queues;
2459 dev->qos_enabled = !!modparam_qos;
2460 /* Default to firmware/hardware crypto acceleration. */
2461 dev->hwcrypto_enabled = 1;
2462
Michael Buesche48b0ee2008-05-17 22:44:35 +02002463 if (dev->fw.opensource) {
Michael Buesch403a3a12009-06-08 21:04:57 +02002464 u16 fwcapa;
2465
Michael Buesche48b0ee2008-05-17 22:44:35 +02002466 /* Patchlevel info is encoded in the "time" field. */
2467 dev->fw.patch = fwtime;
Michael Buesch403a3a12009-06-08 21:04:57 +02002468 b43info(dev->wl, "Loading OpenSource firmware version %u.%u\n",
2469 dev->fw.rev, dev->fw.patch);
2470
2471 fwcapa = b43_fwcapa_read(dev);
2472 if (!(fwcapa & B43_FWCAPA_HWCRYPTO) || dev->fw.pcm_request_failed) {
2473 b43info(dev->wl, "Hardware crypto acceleration not supported by firmware\n");
2474 /* Disable hardware crypto and fall back to software crypto. */
2475 dev->hwcrypto_enabled = 0;
2476 }
2477 if (!(fwcapa & B43_FWCAPA_QOS)) {
2478 b43info(dev->wl, "QoS not supported by firmware\n");
2479 /* Disable QoS. Tweak hw->queues to 1. It will be restored before
2480 * ieee80211_unregister to make sure the networking core can
2481 * properly free possible resources. */
2482 dev->wl->hw->queues = 1;
2483 dev->qos_enabled = 0;
2484 }
Michael Buesche48b0ee2008-05-17 22:44:35 +02002485 } else {
2486 b43info(dev->wl, "Loading firmware version %u.%u "
2487 "(20%.2i-%.2i-%.2i %.2i:%.2i:%.2i)\n",
2488 fwrev, fwpatch,
2489 (fwdate >> 12) & 0xF, (fwdate >> 8) & 0xF, fwdate & 0xFF,
2490 (fwtime >> 11) & 0x1F, (fwtime >> 5) & 0x3F, fwtime & 0x1F);
Michael Buesch68217832008-05-17 23:43:57 +02002491 if (dev->fw.pcm_request_failed) {
2492 b43warn(dev->wl, "No \"pcm5.fw\" firmware file found. "
2493 "Hardware accelerated cryptography is disabled.\n");
2494 b43_print_fw_helptext(dev->wl, 0);
2495 }
Michael Buesche48b0ee2008-05-17 22:44:35 +02002496 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002497
John W. Linville652caa52010-07-29 13:27:28 -04002498 snprintf(wiphy->fw_version, sizeof(wiphy->fw_version), "%u.%u",
2499 dev->fw.rev, dev->fw.patch);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002500 wiphy->hw_version = dev->dev->core_id;
John W. Linville652caa52010-07-29 13:27:28 -04002501
Michael Buescheb189d8b2008-01-28 14:47:41 -08002502 if (b43_is_old_txhdr_format(dev)) {
Michael Bueschc5572892008-12-27 18:26:39 +01002503 /* We're over the deadline, but we keep support for old fw
2504 * until it turns out to be in major conflict with something new. */
Michael Buescheb189d8b2008-01-28 14:47:41 -08002505 b43warn(dev->wl, "You are using an old firmware image. "
Michael Bueschc5572892008-12-27 18:26:39 +01002506 "Support for old firmware will be removed soon "
2507 "(official deadline was July 2008).\n");
Michael Buescheb189d8b2008-01-28 14:47:41 -08002508 b43_print_fw_helptext(dev->wl, 0);
2509 }
2510
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002511 return 0;
2512
2513error:
2514 macctl = b43_read32(dev, B43_MMIO_MACCTL);
2515 macctl &= ~B43_MACCTL_PSM_RUN;
2516 macctl |= B43_MACCTL_PSM_JMP0;
2517 b43_write32(dev, B43_MMIO_MACCTL, macctl);
2518
Michael Buesche4d6b792007-09-18 15:39:42 -04002519 return err;
2520}
2521
2522static int b43_write_initvals(struct b43_wldev *dev,
2523 const struct b43_iv *ivals,
2524 size_t count,
2525 size_t array_size)
2526{
2527 const struct b43_iv *iv;
2528 u16 offset;
2529 size_t i;
2530 bool bit32;
2531
2532 BUILD_BUG_ON(sizeof(struct b43_iv) != 6);
2533 iv = ivals;
2534 for (i = 0; i < count; i++) {
2535 if (array_size < sizeof(iv->offset_size))
2536 goto err_format;
2537 array_size -= sizeof(iv->offset_size);
2538 offset = be16_to_cpu(iv->offset_size);
2539 bit32 = !!(offset & B43_IV_32BIT);
2540 offset &= B43_IV_OFFSET_MASK;
2541 if (offset >= 0x1000)
2542 goto err_format;
2543 if (bit32) {
2544 u32 value;
2545
2546 if (array_size < sizeof(iv->data.d32))
2547 goto err_format;
2548 array_size -= sizeof(iv->data.d32);
2549
Harvey Harrison533dd1b2008-04-29 01:03:36 -07002550 value = get_unaligned_be32(&iv->data.d32);
Michael Buesche4d6b792007-09-18 15:39:42 -04002551 b43_write32(dev, offset, value);
2552
2553 iv = (const struct b43_iv *)((const uint8_t *)iv +
2554 sizeof(__be16) +
2555 sizeof(__be32));
2556 } else {
2557 u16 value;
2558
2559 if (array_size < sizeof(iv->data.d16))
2560 goto err_format;
2561 array_size -= sizeof(iv->data.d16);
2562
2563 value = be16_to_cpu(iv->data.d16);
2564 b43_write16(dev, offset, value);
2565
2566 iv = (const struct b43_iv *)((const uint8_t *)iv +
2567 sizeof(__be16) +
2568 sizeof(__be16));
2569 }
2570 }
2571 if (array_size)
2572 goto err_format;
2573
2574 return 0;
2575
2576err_format:
2577 b43err(dev->wl, "Initial Values Firmware file-format error.\n");
Michael Buescheb189d8b2008-01-28 14:47:41 -08002578 b43_print_fw_helptext(dev->wl, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002579
2580 return -EPROTO;
2581}
2582
2583static int b43_upload_initvals(struct b43_wldev *dev)
2584{
2585 const size_t hdr_len = sizeof(struct b43_fw_header);
2586 const struct b43_fw_header *hdr;
2587 struct b43_firmware *fw = &dev->fw;
2588 const struct b43_iv *ivals;
2589 size_t count;
2590 int err;
2591
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002592 hdr = (const struct b43_fw_header *)(fw->initvals.data->data);
2593 ivals = (const struct b43_iv *)(fw->initvals.data->data + hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002594 count = be32_to_cpu(hdr->size);
2595 err = b43_write_initvals(dev, ivals, count,
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002596 fw->initvals.data->size - hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002597 if (err)
2598 goto out;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002599 if (fw->initvals_band.data) {
2600 hdr = (const struct b43_fw_header *)(fw->initvals_band.data->data);
2601 ivals = (const struct b43_iv *)(fw->initvals_band.data->data + hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002602 count = be32_to_cpu(hdr->size);
2603 err = b43_write_initvals(dev, ivals, count,
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002604 fw->initvals_band.data->size - hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002605 if (err)
2606 goto out;
2607 }
2608out:
2609
2610 return err;
2611}
2612
2613/* Initialize the GPIOs
2614 * http://bcm-specs.sipsolutions.net/GPIO
2615 */
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002616static struct ssb_device *b43_ssb_gpio_dev(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04002617{
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02002618 struct ssb_bus *bus = dev->dev->sdev->bus;
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002619
2620#ifdef CONFIG_SSB_DRIVER_PCICORE
2621 return (bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev);
2622#else
2623 return bus->chipco.dev;
2624#endif
2625}
2626
Michael Buesche4d6b792007-09-18 15:39:42 -04002627static int b43_gpio_init(struct b43_wldev *dev)
2628{
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002629 struct ssb_device *gpiodev;
Michael Buesche4d6b792007-09-18 15:39:42 -04002630 u32 mask, set;
2631
2632 b43_write32(dev, B43_MMIO_MACCTL, b43_read32(dev, B43_MMIO_MACCTL)
2633 & ~B43_MACCTL_GPOUTSMSK);
2634
Michael Buesche4d6b792007-09-18 15:39:42 -04002635 b43_write16(dev, B43_MMIO_GPIO_MASK, b43_read16(dev, B43_MMIO_GPIO_MASK)
2636 | 0x000F);
2637
2638 mask = 0x0000001F;
2639 set = 0x0000000F;
Rafał Miłeckic244e082011-05-18 02:06:41 +02002640 if (dev->dev->chip_id == 0x4301) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002641 mask |= 0x0060;
2642 set |= 0x0060;
2643 }
2644 if (0 /* FIXME: conditional unknown */ ) {
2645 b43_write16(dev, B43_MMIO_GPIO_MASK,
2646 b43_read16(dev, B43_MMIO_GPIO_MASK)
2647 | 0x0100);
2648 mask |= 0x0180;
2649 set |= 0x0180;
2650 }
Rafał Miłecki05814832011-05-18 02:06:39 +02002651 if (dev->dev->bus_sprom->boardflags_lo & B43_BFL_PACTRL) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002652 b43_write16(dev, B43_MMIO_GPIO_MASK,
2653 b43_read16(dev, B43_MMIO_GPIO_MASK)
2654 | 0x0200);
2655 mask |= 0x0200;
2656 set |= 0x0200;
2657 }
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002658 if (dev->dev->core_rev >= 2)
Michael Buesche4d6b792007-09-18 15:39:42 -04002659 mask |= 0x0010; /* FIXME: This is redundant. */
2660
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002661 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002662#ifdef CONFIG_B43_BCMA
2663 case B43_BUS_BCMA:
2664 bcma_cc_write32(&dev->dev->bdev->bus->drv_cc, BCMA_CC_GPIOCTL,
2665 (bcma_cc_read32(&dev->dev->bdev->bus->drv_cc,
2666 BCMA_CC_GPIOCTL) & mask) | set);
2667 break;
2668#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002669#ifdef CONFIG_B43_SSB
2670 case B43_BUS_SSB:
2671 gpiodev = b43_ssb_gpio_dev(dev);
2672 if (gpiodev)
2673 ssb_write32(gpiodev, B43_GPIO_CONTROL,
2674 (ssb_read32(gpiodev, B43_GPIO_CONTROL)
2675 & mask) | set);
2676 break;
2677#endif
2678 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002679
2680 return 0;
2681}
2682
2683/* Turn off all GPIO stuff. Call this on module unload, for example. */
2684static void b43_gpio_cleanup(struct b43_wldev *dev)
2685{
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002686 struct ssb_device *gpiodev;
Michael Buesche4d6b792007-09-18 15:39:42 -04002687
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002688 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002689#ifdef CONFIG_B43_BCMA
2690 case B43_BUS_BCMA:
2691 bcma_cc_write32(&dev->dev->bdev->bus->drv_cc, BCMA_CC_GPIOCTL,
2692 0);
2693 break;
2694#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002695#ifdef CONFIG_B43_SSB
2696 case B43_BUS_SSB:
2697 gpiodev = b43_ssb_gpio_dev(dev);
2698 if (gpiodev)
2699 ssb_write32(gpiodev, B43_GPIO_CONTROL, 0);
2700 break;
2701#endif
2702 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002703}
2704
2705/* http://bcm-specs.sipsolutions.net/EnableMac */
Michael Bueschf5eda472008-04-20 16:03:32 +02002706void b43_mac_enable(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04002707{
Michael Buesch923fd702008-06-20 18:02:08 +02002708 if (b43_debug(dev, B43_DBG_FIRMWARE)) {
2709 u16 fwstate;
2710
2711 fwstate = b43_shm_read16(dev, B43_SHM_SHARED,
2712 B43_SHM_SH_UCODESTAT);
2713 if ((fwstate != B43_SHM_SH_UCODESTAT_SUSP) &&
2714 (fwstate != B43_SHM_SH_UCODESTAT_SLEEP)) {
2715 b43err(dev->wl, "b43_mac_enable(): The firmware "
2716 "should be suspended, but current state is %u\n",
2717 fwstate);
2718 }
2719 }
2720
Michael Buesche4d6b792007-09-18 15:39:42 -04002721 dev->mac_suspended--;
2722 B43_WARN_ON(dev->mac_suspended < 0);
2723 if (dev->mac_suspended == 0) {
2724 b43_write32(dev, B43_MMIO_MACCTL,
2725 b43_read32(dev, B43_MMIO_MACCTL)
2726 | B43_MACCTL_ENABLED);
2727 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON,
2728 B43_IRQ_MAC_SUSPENDED);
2729 /* Commit writes */
2730 b43_read32(dev, B43_MMIO_MACCTL);
2731 b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2732 b43_power_saving_ctl_bits(dev, 0);
2733 }
2734}
2735
2736/* http://bcm-specs.sipsolutions.net/SuspendMAC */
Michael Bueschf5eda472008-04-20 16:03:32 +02002737void b43_mac_suspend(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04002738{
2739 int i;
2740 u32 tmp;
2741
Michael Buesch05b64b32007-09-28 16:19:03 +02002742 might_sleep();
Michael Buesche4d6b792007-09-18 15:39:42 -04002743 B43_WARN_ON(dev->mac_suspended < 0);
Michael Buesch05b64b32007-09-28 16:19:03 +02002744
Michael Buesche4d6b792007-09-18 15:39:42 -04002745 if (dev->mac_suspended == 0) {
2746 b43_power_saving_ctl_bits(dev, B43_PS_AWAKE);
2747 b43_write32(dev, B43_MMIO_MACCTL,
2748 b43_read32(dev, B43_MMIO_MACCTL)
2749 & ~B43_MACCTL_ENABLED);
2750 /* force pci to flush the write */
2751 b43_read32(dev, B43_MMIO_MACCTL);
Michael Bueschba380012008-04-15 21:13:36 +02002752 for (i = 35; i; i--) {
2753 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2754 if (tmp & B43_IRQ_MAC_SUSPENDED)
2755 goto out;
2756 udelay(10);
2757 }
2758 /* Hm, it seems this will take some time. Use msleep(). */
Michael Buesch05b64b32007-09-28 16:19:03 +02002759 for (i = 40; i; i--) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002760 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2761 if (tmp & B43_IRQ_MAC_SUSPENDED)
2762 goto out;
Michael Buesch05b64b32007-09-28 16:19:03 +02002763 msleep(1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002764 }
2765 b43err(dev->wl, "MAC suspend failed\n");
2766 }
Michael Buesch05b64b32007-09-28 16:19:03 +02002767out:
Michael Buesche4d6b792007-09-18 15:39:42 -04002768 dev->mac_suspended++;
2769}
2770
Rafał Miłecki858a1652011-05-10 16:05:33 +02002771/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/MacPhyClkSet */
2772void b43_mac_phy_clock_set(struct b43_wldev *dev, bool on)
2773{
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002774 u32 tmp;
2775
2776 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002777#ifdef CONFIG_B43_BCMA
2778 case B43_BUS_BCMA:
2779 tmp = bcma_read32(dev->dev->bdev, BCMA_IOCTL);
2780 if (on)
2781 tmp |= B43_BCMA_IOCTL_MACPHYCLKEN;
2782 else
2783 tmp &= ~B43_BCMA_IOCTL_MACPHYCLKEN;
2784 bcma_write32(dev->dev->bdev, BCMA_IOCTL, tmp);
2785 break;
2786#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002787#ifdef CONFIG_B43_SSB
2788 case B43_BUS_SSB:
2789 tmp = ssb_read32(dev->dev->sdev, SSB_TMSLOW);
2790 if (on)
2791 tmp |= B43_TMSLOW_MACPHYCLKEN;
2792 else
2793 tmp &= ~B43_TMSLOW_MACPHYCLKEN;
2794 ssb_write32(dev->dev->sdev, SSB_TMSLOW, tmp);
2795 break;
2796#endif
2797 }
Rafał Miłecki858a1652011-05-10 16:05:33 +02002798}
2799
Michael Buesche4d6b792007-09-18 15:39:42 -04002800static void b43_adjust_opmode(struct b43_wldev *dev)
2801{
2802 struct b43_wl *wl = dev->wl;
2803 u32 ctl;
2804 u16 cfp_pretbtt;
2805
2806 ctl = b43_read32(dev, B43_MMIO_MACCTL);
2807 /* Reset status to STA infrastructure mode. */
2808 ctl &= ~B43_MACCTL_AP;
2809 ctl &= ~B43_MACCTL_KEEP_CTL;
2810 ctl &= ~B43_MACCTL_KEEP_BADPLCP;
2811 ctl &= ~B43_MACCTL_KEEP_BAD;
2812 ctl &= ~B43_MACCTL_PROMISC;
Johannes Berg4150c572007-09-17 01:29:23 -04002813 ctl &= ~B43_MACCTL_BEACPROMISC;
Michael Buesche4d6b792007-09-18 15:39:42 -04002814 ctl |= B43_MACCTL_INFRA;
2815
Johannes Berg05c914f2008-09-11 00:01:58 +02002816 if (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
2817 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT))
Johannes Berg4150c572007-09-17 01:29:23 -04002818 ctl |= B43_MACCTL_AP;
Johannes Berg05c914f2008-09-11 00:01:58 +02002819 else if (b43_is_mode(wl, NL80211_IFTYPE_ADHOC))
Johannes Berg4150c572007-09-17 01:29:23 -04002820 ctl &= ~B43_MACCTL_INFRA;
2821
2822 if (wl->filter_flags & FIF_CONTROL)
Michael Buesche4d6b792007-09-18 15:39:42 -04002823 ctl |= B43_MACCTL_KEEP_CTL;
Johannes Berg4150c572007-09-17 01:29:23 -04002824 if (wl->filter_flags & FIF_FCSFAIL)
2825 ctl |= B43_MACCTL_KEEP_BAD;
2826 if (wl->filter_flags & FIF_PLCPFAIL)
2827 ctl |= B43_MACCTL_KEEP_BADPLCP;
2828 if (wl->filter_flags & FIF_PROMISC_IN_BSS)
Michael Buesche4d6b792007-09-18 15:39:42 -04002829 ctl |= B43_MACCTL_PROMISC;
Johannes Berg4150c572007-09-17 01:29:23 -04002830 if (wl->filter_flags & FIF_BCN_PRBRESP_PROMISC)
2831 ctl |= B43_MACCTL_BEACPROMISC;
2832
Michael Buesche4d6b792007-09-18 15:39:42 -04002833 /* Workaround: On old hardware the HW-MAC-address-filter
2834 * doesn't work properly, so always run promisc in filter
2835 * it in software. */
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002836 if (dev->dev->core_rev <= 4)
Michael Buesche4d6b792007-09-18 15:39:42 -04002837 ctl |= B43_MACCTL_PROMISC;
2838
2839 b43_write32(dev, B43_MMIO_MACCTL, ctl);
2840
2841 cfp_pretbtt = 2;
2842 if ((ctl & B43_MACCTL_INFRA) && !(ctl & B43_MACCTL_AP)) {
Rafał Miłeckic244e082011-05-18 02:06:41 +02002843 if (dev->dev->chip_id == 0x4306 &&
2844 dev->dev->chip_rev == 3)
Michael Buesche4d6b792007-09-18 15:39:42 -04002845 cfp_pretbtt = 100;
2846 else
2847 cfp_pretbtt = 50;
2848 }
2849 b43_write16(dev, 0x612, cfp_pretbtt);
Michael Buesch09ebe2f2009-09-12 00:52:48 +02002850
2851 /* FIXME: We don't currently implement the PMQ mechanism,
2852 * so always disable it. If we want to implement PMQ,
2853 * we need to enable it here (clear DISCPMQ) in AP mode.
2854 */
2855 if (0 /* ctl & B43_MACCTL_AP */) {
2856 b43_write32(dev, B43_MMIO_MACCTL,
2857 b43_read32(dev, B43_MMIO_MACCTL)
2858 & ~B43_MACCTL_DISCPMQ);
2859 } else {
2860 b43_write32(dev, B43_MMIO_MACCTL,
2861 b43_read32(dev, B43_MMIO_MACCTL)
2862 | B43_MACCTL_DISCPMQ);
2863 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002864}
2865
2866static void b43_rate_memory_write(struct b43_wldev *dev, u16 rate, int is_ofdm)
2867{
2868 u16 offset;
2869
2870 if (is_ofdm) {
2871 offset = 0x480;
2872 offset += (b43_plcp_get_ratecode_ofdm(rate) & 0x000F) * 2;
2873 } else {
2874 offset = 0x4C0;
2875 offset += (b43_plcp_get_ratecode_cck(rate) & 0x000F) * 2;
2876 }
2877 b43_shm_write16(dev, B43_SHM_SHARED, offset + 0x20,
2878 b43_shm_read16(dev, B43_SHM_SHARED, offset));
2879}
2880
2881static void b43_rate_memory_init(struct b43_wldev *dev)
2882{
2883 switch (dev->phy.type) {
2884 case B43_PHYTYPE_A:
2885 case B43_PHYTYPE_G:
Michael Buesch53a6e232008-01-13 21:23:44 +01002886 case B43_PHYTYPE_N:
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02002887 case B43_PHYTYPE_LP:
Michael Buesche4d6b792007-09-18 15:39:42 -04002888 b43_rate_memory_write(dev, B43_OFDM_RATE_6MB, 1);
2889 b43_rate_memory_write(dev, B43_OFDM_RATE_12MB, 1);
2890 b43_rate_memory_write(dev, B43_OFDM_RATE_18MB, 1);
2891 b43_rate_memory_write(dev, B43_OFDM_RATE_24MB, 1);
2892 b43_rate_memory_write(dev, B43_OFDM_RATE_36MB, 1);
2893 b43_rate_memory_write(dev, B43_OFDM_RATE_48MB, 1);
2894 b43_rate_memory_write(dev, B43_OFDM_RATE_54MB, 1);
2895 if (dev->phy.type == B43_PHYTYPE_A)
2896 break;
2897 /* fallthrough */
2898 case B43_PHYTYPE_B:
2899 b43_rate_memory_write(dev, B43_CCK_RATE_1MB, 0);
2900 b43_rate_memory_write(dev, B43_CCK_RATE_2MB, 0);
2901 b43_rate_memory_write(dev, B43_CCK_RATE_5MB, 0);
2902 b43_rate_memory_write(dev, B43_CCK_RATE_11MB, 0);
2903 break;
2904 default:
2905 B43_WARN_ON(1);
2906 }
2907}
2908
Michael Buesch5042c502008-04-05 15:05:00 +02002909/* Set the default values for the PHY TX Control Words. */
2910static void b43_set_phytxctl_defaults(struct b43_wldev *dev)
2911{
2912 u16 ctl = 0;
2913
2914 ctl |= B43_TXH_PHY_ENC_CCK;
2915 ctl |= B43_TXH_PHY_ANT01AUTO;
2916 ctl |= B43_TXH_PHY_TXPWR;
2917
2918 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL, ctl);
2919 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL, ctl);
2920 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL, ctl);
2921}
2922
Michael Buesche4d6b792007-09-18 15:39:42 -04002923/* Set the TX-Antenna for management frames sent by firmware. */
2924static void b43_mgmtframe_txantenna(struct b43_wldev *dev, int antenna)
2925{
Michael Buesch5042c502008-04-05 15:05:00 +02002926 u16 ant;
Michael Buesche4d6b792007-09-18 15:39:42 -04002927 u16 tmp;
2928
Michael Buesch5042c502008-04-05 15:05:00 +02002929 ant = b43_antenna_to_phyctl(antenna);
Michael Buesche4d6b792007-09-18 15:39:42 -04002930
Michael Buesche4d6b792007-09-18 15:39:42 -04002931 /* For ACK/CTS */
2932 tmp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL);
Michael Buescheb189d8b2008-01-28 14:47:41 -08002933 tmp = (tmp & ~B43_TXH_PHY_ANT) | ant;
Michael Buesche4d6b792007-09-18 15:39:42 -04002934 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL, tmp);
2935 /* For Probe Resposes */
2936 tmp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL);
Michael Buescheb189d8b2008-01-28 14:47:41 -08002937 tmp = (tmp & ~B43_TXH_PHY_ANT) | ant;
Michael Buesche4d6b792007-09-18 15:39:42 -04002938 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL, tmp);
2939}
2940
2941/* This is the opposite of b43_chip_init() */
2942static void b43_chip_exit(struct b43_wldev *dev)
2943{
Michael Bueschfb111372008-09-02 13:00:34 +02002944 b43_phy_exit(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04002945 b43_gpio_cleanup(dev);
2946 /* firmware is released later */
2947}
2948
2949/* Initialize the chip
2950 * http://bcm-specs.sipsolutions.net/ChipInit
2951 */
2952static int b43_chip_init(struct b43_wldev *dev)
2953{
2954 struct b43_phy *phy = &dev->phy;
Michael Bueschef1a6282008-08-27 18:53:02 +02002955 int err;
Rafał Miłecki858a1652011-05-10 16:05:33 +02002956 u32 macctl;
Michael Buesche4d6b792007-09-18 15:39:42 -04002957 u16 value16;
2958
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002959 /* Initialize the MAC control */
2960 macctl = B43_MACCTL_IHR_ENABLED | B43_MACCTL_SHM_ENABLED;
2961 if (dev->phy.gmode)
2962 macctl |= B43_MACCTL_GMODE;
2963 macctl |= B43_MACCTL_INFRA;
2964 b43_write32(dev, B43_MMIO_MACCTL, macctl);
Michael Buesche4d6b792007-09-18 15:39:42 -04002965
2966 err = b43_request_firmware(dev);
2967 if (err)
2968 goto out;
2969 err = b43_upload_microcode(dev);
2970 if (err)
2971 goto out; /* firmware is released later */
2972
2973 err = b43_gpio_init(dev);
2974 if (err)
2975 goto out; /* firmware is released later */
Michael Buesch21954c32007-09-27 15:31:40 +02002976
Michael Buesche4d6b792007-09-18 15:39:42 -04002977 err = b43_upload_initvals(dev);
2978 if (err)
Larry Finger1a8d1222007-12-14 13:59:11 +01002979 goto err_gpio_clean;
Michael Buesche4d6b792007-09-18 15:39:42 -04002980
Michael Buesch0b7dcd92008-09-03 12:31:54 +02002981 /* Turn the Analog on and initialize the PHY. */
2982 phy->ops->switch_analog(dev, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002983 err = b43_phy_init(dev);
2984 if (err)
Michael Bueschef1a6282008-08-27 18:53:02 +02002985 goto err_gpio_clean;
Michael Buesche4d6b792007-09-18 15:39:42 -04002986
Michael Bueschef1a6282008-08-27 18:53:02 +02002987 /* Disable Interference Mitigation. */
2988 if (phy->ops->interf_mitigation)
2989 phy->ops->interf_mitigation(dev, B43_INTERFMODE_NONE);
Michael Buesche4d6b792007-09-18 15:39:42 -04002990
Michael Bueschef1a6282008-08-27 18:53:02 +02002991 /* Select the antennae */
2992 if (phy->ops->set_rx_antenna)
2993 phy->ops->set_rx_antenna(dev, B43_ANTENNA_DEFAULT);
Michael Buesche4d6b792007-09-18 15:39:42 -04002994 b43_mgmtframe_txantenna(dev, B43_ANTENNA_DEFAULT);
2995
2996 if (phy->type == B43_PHYTYPE_B) {
2997 value16 = b43_read16(dev, 0x005E);
2998 value16 |= 0x0004;
2999 b43_write16(dev, 0x005E, value16);
3000 }
3001 b43_write32(dev, 0x0100, 0x01000000);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02003002 if (dev->dev->core_rev < 5)
Michael Buesche4d6b792007-09-18 15:39:42 -04003003 b43_write32(dev, 0x010C, 0x01000000);
3004
3005 b43_write32(dev, B43_MMIO_MACCTL, b43_read32(dev, B43_MMIO_MACCTL)
3006 & ~B43_MACCTL_INFRA);
3007 b43_write32(dev, B43_MMIO_MACCTL, b43_read32(dev, B43_MMIO_MACCTL)
3008 | B43_MACCTL_INFRA);
Michael Buesche4d6b792007-09-18 15:39:42 -04003009
Michael Buesche4d6b792007-09-18 15:39:42 -04003010 /* Probe Response Timeout value */
3011 /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
3012 b43_shm_write16(dev, B43_SHM_SHARED, 0x0074, 0x0000);
3013
3014 /* Initially set the wireless operation mode. */
3015 b43_adjust_opmode(dev);
3016
Rafał Miłecki21d889d2011-05-18 02:06:38 +02003017 if (dev->dev->core_rev < 3) {
Michael Buesche4d6b792007-09-18 15:39:42 -04003018 b43_write16(dev, 0x060E, 0x0000);
3019 b43_write16(dev, 0x0610, 0x8000);
3020 b43_write16(dev, 0x0604, 0x0000);
3021 b43_write16(dev, 0x0606, 0x0200);
3022 } else {
3023 b43_write32(dev, 0x0188, 0x80000000);
3024 b43_write32(dev, 0x018C, 0x02000000);
3025 }
3026 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, 0x00004000);
3027 b43_write32(dev, B43_MMIO_DMA0_IRQ_MASK, 0x0001DC00);
3028 b43_write32(dev, B43_MMIO_DMA1_IRQ_MASK, 0x0000DC00);
3029 b43_write32(dev, B43_MMIO_DMA2_IRQ_MASK, 0x0000DC00);
3030 b43_write32(dev, B43_MMIO_DMA3_IRQ_MASK, 0x0001DC00);
3031 b43_write32(dev, B43_MMIO_DMA4_IRQ_MASK, 0x0000DC00);
3032 b43_write32(dev, B43_MMIO_DMA5_IRQ_MASK, 0x0000DC00);
3033
Rafał Miłecki858a1652011-05-10 16:05:33 +02003034 b43_mac_phy_clock_set(dev, true);
Michael Buesche4d6b792007-09-18 15:39:42 -04003035
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003036 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02003037#ifdef CONFIG_B43_BCMA
3038 case B43_BUS_BCMA:
3039 /* FIXME: 0xE74 is quite common, but should be read from CC */
3040 b43_write16(dev, B43_MMIO_POWERUP_DELAY, 0xE74);
3041 break;
3042#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003043#ifdef CONFIG_B43_SSB
3044 case B43_BUS_SSB:
3045 b43_write16(dev, B43_MMIO_POWERUP_DELAY,
3046 dev->dev->sdev->bus->chipco.fast_pwrup_delay);
3047 break;
3048#endif
3049 }
Michael Buesche4d6b792007-09-18 15:39:42 -04003050
3051 err = 0;
3052 b43dbg(dev->wl, "Chip initialized\n");
Michael Buesch21954c32007-09-27 15:31:40 +02003053out:
Michael Buesche4d6b792007-09-18 15:39:42 -04003054 return err;
3055
Larry Finger1a8d1222007-12-14 13:59:11 +01003056err_gpio_clean:
Michael Buesche4d6b792007-09-18 15:39:42 -04003057 b43_gpio_cleanup(dev);
Michael Buesch21954c32007-09-27 15:31:40 +02003058 return err;
Michael Buesche4d6b792007-09-18 15:39:42 -04003059}
3060
Michael Buesche4d6b792007-09-18 15:39:42 -04003061static void b43_periodic_every60sec(struct b43_wldev *dev)
3062{
Michael Bueschef1a6282008-08-27 18:53:02 +02003063 const struct b43_phy_operations *ops = dev->phy.ops;
Michael Buesche4d6b792007-09-18 15:39:42 -04003064
Michael Bueschef1a6282008-08-27 18:53:02 +02003065 if (ops->pwork_60sec)
3066 ops->pwork_60sec(dev);
Michael Buesch18c8ade2008-08-28 19:33:40 +02003067
3068 /* Force check the TX power emission now. */
3069 b43_phy_txpower_check(dev, B43_TXPWR_IGNORE_TIME);
Michael Buesche4d6b792007-09-18 15:39:42 -04003070}
3071
3072static void b43_periodic_every30sec(struct b43_wldev *dev)
3073{
3074 /* Update device statistics. */
3075 b43_calculate_link_quality(dev);
3076}
3077
3078static void b43_periodic_every15sec(struct b43_wldev *dev)
3079{
3080 struct b43_phy *phy = &dev->phy;
Michael Buesch9b839a72008-06-20 17:44:02 +02003081 u16 wdr;
3082
3083 if (dev->fw.opensource) {
3084 /* Check if the firmware is still alive.
3085 * It will reset the watchdog counter to 0 in its idle loop. */
3086 wdr = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_WATCHDOG_REG);
3087 if (unlikely(wdr)) {
3088 b43err(dev->wl, "Firmware watchdog: The firmware died!\n");
3089 b43_controller_restart(dev, "Firmware watchdog");
3090 return;
3091 } else {
3092 b43_shm_write16(dev, B43_SHM_SCRATCH,
3093 B43_WATCHDOG_REG, 1);
3094 }
3095 }
Michael Buesche4d6b792007-09-18 15:39:42 -04003096
Michael Bueschef1a6282008-08-27 18:53:02 +02003097 if (phy->ops->pwork_15sec)
3098 phy->ops->pwork_15sec(dev);
3099
Stefano Brivio00e0b8c2007-11-25 11:10:33 +01003100 atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT);
3101 wmb();
Michael Buesch990b86f2009-09-12 00:48:03 +02003102
3103#if B43_DEBUG
3104 if (b43_debug(dev, B43_DBG_VERBOSESTATS)) {
3105 unsigned int i;
3106
3107 b43dbg(dev->wl, "Stats: %7u IRQs/sec, %7u TX/sec, %7u RX/sec\n",
3108 dev->irq_count / 15,
3109 dev->tx_count / 15,
3110 dev->rx_count / 15);
3111 dev->irq_count = 0;
3112 dev->tx_count = 0;
3113 dev->rx_count = 0;
3114 for (i = 0; i < ARRAY_SIZE(dev->irq_bit_count); i++) {
3115 if (dev->irq_bit_count[i]) {
3116 b43dbg(dev->wl, "Stats: %7u IRQ-%02u/sec (0x%08X)\n",
3117 dev->irq_bit_count[i] / 15, i, (1 << i));
3118 dev->irq_bit_count[i] = 0;
3119 }
3120 }
3121 }
3122#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04003123}
3124
Michael Buesche4d6b792007-09-18 15:39:42 -04003125static void do_periodic_work(struct b43_wldev *dev)
3126{
3127 unsigned int state;
3128
3129 state = dev->periodic_state;
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003130 if (state % 4 == 0)
Michael Buesche4d6b792007-09-18 15:39:42 -04003131 b43_periodic_every60sec(dev);
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003132 if (state % 2 == 0)
Michael Buesche4d6b792007-09-18 15:39:42 -04003133 b43_periodic_every30sec(dev);
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003134 b43_periodic_every15sec(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04003135}
3136
Michael Buesch05b64b32007-09-28 16:19:03 +02003137/* Periodic work locking policy:
3138 * The whole periodic work handler is protected by
3139 * wl->mutex. If another lock is needed somewhere in the
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003140 * pwork callchain, it's acquired in-place, where it's needed.
Michael Buesche4d6b792007-09-18 15:39:42 -04003141 */
Michael Buesche4d6b792007-09-18 15:39:42 -04003142static void b43_periodic_work_handler(struct work_struct *work)
3143{
Michael Buesch05b64b32007-09-28 16:19:03 +02003144 struct b43_wldev *dev = container_of(work, struct b43_wldev,
3145 periodic_work.work);
3146 struct b43_wl *wl = dev->wl;
3147 unsigned long delay;
Michael Buesche4d6b792007-09-18 15:39:42 -04003148
Michael Buesch05b64b32007-09-28 16:19:03 +02003149 mutex_lock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003150
3151 if (unlikely(b43_status(dev) != B43_STAT_STARTED))
3152 goto out;
3153 if (b43_debug(dev, B43_DBG_PWORK_STOP))
3154 goto out_requeue;
3155
Michael Buesch05b64b32007-09-28 16:19:03 +02003156 do_periodic_work(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04003157
Michael Buesche4d6b792007-09-18 15:39:42 -04003158 dev->periodic_state++;
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003159out_requeue:
Michael Buesche4d6b792007-09-18 15:39:42 -04003160 if (b43_debug(dev, B43_DBG_PWORK_FAST))
3161 delay = msecs_to_jiffies(50);
3162 else
Anton Blanchard82cd6822007-10-15 00:42:23 -05003163 delay = round_jiffies_relative(HZ * 15);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003164 ieee80211_queue_delayed_work(wl->hw, &dev->periodic_work, delay);
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003165out:
Michael Buesch05b64b32007-09-28 16:19:03 +02003166 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003167}
3168
3169static void b43_periodic_tasks_setup(struct b43_wldev *dev)
3170{
3171 struct delayed_work *work = &dev->periodic_work;
3172
3173 dev->periodic_state = 0;
3174 INIT_DELAYED_WORK(work, b43_periodic_work_handler);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003175 ieee80211_queue_delayed_work(dev->wl->hw, work, 0);
Michael Buesche4d6b792007-09-18 15:39:42 -04003176}
3177
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003178/* Check if communication with the device works correctly. */
Michael Buesche4d6b792007-09-18 15:39:42 -04003179static int b43_validate_chipaccess(struct b43_wldev *dev)
3180{
Michael Bueschf62ae6c2009-07-31 20:51:41 +02003181 u32 v, backup0, backup4;
Michael Buesche4d6b792007-09-18 15:39:42 -04003182
Michael Bueschf62ae6c2009-07-31 20:51:41 +02003183 backup0 = b43_shm_read32(dev, B43_SHM_SHARED, 0);
3184 backup4 = b43_shm_read32(dev, B43_SHM_SHARED, 4);
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003185
3186 /* Check for read/write and endianness problems. */
Michael Buesche4d6b792007-09-18 15:39:42 -04003187 b43_shm_write32(dev, B43_SHM_SHARED, 0, 0x55AAAA55);
3188 if (b43_shm_read32(dev, B43_SHM_SHARED, 0) != 0x55AAAA55)
3189 goto error;
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003190 b43_shm_write32(dev, B43_SHM_SHARED, 0, 0xAA5555AA);
3191 if (b43_shm_read32(dev, B43_SHM_SHARED, 0) != 0xAA5555AA)
Michael Buesche4d6b792007-09-18 15:39:42 -04003192 goto error;
3193
Michael Bueschf62ae6c2009-07-31 20:51:41 +02003194 /* Check if unaligned 32bit SHM_SHARED access works properly.
3195 * However, don't bail out on failure, because it's noncritical. */
3196 b43_shm_write16(dev, B43_SHM_SHARED, 0, 0x1122);
3197 b43_shm_write16(dev, B43_SHM_SHARED, 2, 0x3344);
3198 b43_shm_write16(dev, B43_SHM_SHARED, 4, 0x5566);
3199 b43_shm_write16(dev, B43_SHM_SHARED, 6, 0x7788);
3200 if (b43_shm_read32(dev, B43_SHM_SHARED, 2) != 0x55663344)
3201 b43warn(dev->wl, "Unaligned 32bit SHM read access is broken\n");
3202 b43_shm_write32(dev, B43_SHM_SHARED, 2, 0xAABBCCDD);
3203 if (b43_shm_read16(dev, B43_SHM_SHARED, 0) != 0x1122 ||
3204 b43_shm_read16(dev, B43_SHM_SHARED, 2) != 0xCCDD ||
3205 b43_shm_read16(dev, B43_SHM_SHARED, 4) != 0xAABB ||
3206 b43_shm_read16(dev, B43_SHM_SHARED, 6) != 0x7788)
3207 b43warn(dev->wl, "Unaligned 32bit SHM write access is broken\n");
3208
3209 b43_shm_write32(dev, B43_SHM_SHARED, 0, backup0);
3210 b43_shm_write32(dev, B43_SHM_SHARED, 4, backup4);
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003211
Rafał Miłecki21d889d2011-05-18 02:06:38 +02003212 if ((dev->dev->core_rev >= 3) && (dev->dev->core_rev <= 10)) {
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003213 /* The 32bit register shadows the two 16bit registers
3214 * with update sideeffects. Validate this. */
3215 b43_write16(dev, B43_MMIO_TSF_CFP_START, 0xAAAA);
3216 b43_write32(dev, B43_MMIO_TSF_CFP_START, 0xCCCCBBBB);
3217 if (b43_read16(dev, B43_MMIO_TSF_CFP_START_LOW) != 0xBBBB)
3218 goto error;
3219 if (b43_read16(dev, B43_MMIO_TSF_CFP_START_HIGH) != 0xCCCC)
3220 goto error;
3221 }
3222 b43_write32(dev, B43_MMIO_TSF_CFP_START, 0);
3223
3224 v = b43_read32(dev, B43_MMIO_MACCTL);
3225 v |= B43_MACCTL_GMODE;
3226 if (v != (B43_MACCTL_GMODE | B43_MACCTL_IHR_ENABLED))
Michael Buesche4d6b792007-09-18 15:39:42 -04003227 goto error;
3228
3229 return 0;
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003230error:
Michael Buesche4d6b792007-09-18 15:39:42 -04003231 b43err(dev->wl, "Failed to validate the chipaccess\n");
3232 return -ENODEV;
3233}
3234
3235static void b43_security_init(struct b43_wldev *dev)
3236{
Michael Buesche4d6b792007-09-18 15:39:42 -04003237 dev->ktp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_KTP);
3238 /* KTP is a word address, but we address SHM bytewise.
3239 * So multiply by two.
3240 */
3241 dev->ktp *= 2;
Michael Buesch66d2d082009-08-06 10:36:50 +02003242 /* Number of RCMTA address slots */
3243 b43_write16(dev, B43_MMIO_RCMTA_COUNT, B43_NR_PAIRWISE_KEYS);
3244 /* Clear the key memory. */
Michael Buesche4d6b792007-09-18 15:39:42 -04003245 b43_clear_keys(dev);
3246}
3247
Michael Buesch616de352009-03-29 13:19:31 +02003248#ifdef CONFIG_B43_HWRNG
John Daiker99da1852009-02-24 02:16:42 -08003249static int b43_rng_read(struct hwrng *rng, u32 *data)
Michael Buesche4d6b792007-09-18 15:39:42 -04003250{
3251 struct b43_wl *wl = (struct b43_wl *)rng->priv;
Michael Buescha78b3bb2009-09-11 21:44:05 +02003252 struct b43_wldev *dev;
3253 int count = -ENODEV;
Michael Buesche4d6b792007-09-18 15:39:42 -04003254
Michael Buescha78b3bb2009-09-11 21:44:05 +02003255 mutex_lock(&wl->mutex);
3256 dev = wl->current_dev;
3257 if (likely(dev && b43_status(dev) >= B43_STAT_INITIALIZED)) {
3258 *data = b43_read16(dev, B43_MMIO_RNG);
3259 count = sizeof(u16);
3260 }
3261 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003262
Michael Buescha78b3bb2009-09-11 21:44:05 +02003263 return count;
Michael Buesche4d6b792007-09-18 15:39:42 -04003264}
Michael Buesch616de352009-03-29 13:19:31 +02003265#endif /* CONFIG_B43_HWRNG */
Michael Buesche4d6b792007-09-18 15:39:42 -04003266
Rafael J. Wysockib844eba2008-03-23 20:28:24 +01003267static void b43_rng_exit(struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04003268{
Michael Buesch616de352009-03-29 13:19:31 +02003269#ifdef CONFIG_B43_HWRNG
Michael Buesche4d6b792007-09-18 15:39:42 -04003270 if (wl->rng_initialized)
Rafael J. Wysockib844eba2008-03-23 20:28:24 +01003271 hwrng_unregister(&wl->rng);
Michael Buesch616de352009-03-29 13:19:31 +02003272#endif /* CONFIG_B43_HWRNG */
Michael Buesche4d6b792007-09-18 15:39:42 -04003273}
3274
3275static int b43_rng_init(struct b43_wl *wl)
3276{
Michael Buesch616de352009-03-29 13:19:31 +02003277 int err = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04003278
Michael Buesch616de352009-03-29 13:19:31 +02003279#ifdef CONFIG_B43_HWRNG
Michael Buesche4d6b792007-09-18 15:39:42 -04003280 snprintf(wl->rng_name, ARRAY_SIZE(wl->rng_name),
3281 "%s_%s", KBUILD_MODNAME, wiphy_name(wl->hw->wiphy));
3282 wl->rng.name = wl->rng_name;
3283 wl->rng.data_read = b43_rng_read;
3284 wl->rng.priv = (unsigned long)wl;
3285 wl->rng_initialized = 1;
3286 err = hwrng_register(&wl->rng);
3287 if (err) {
3288 wl->rng_initialized = 0;
3289 b43err(wl, "Failed to register the random "
3290 "number generator (%d)\n", err);
3291 }
Michael Buesch616de352009-03-29 13:19:31 +02003292#endif /* CONFIG_B43_HWRNG */
Michael Buesche4d6b792007-09-18 15:39:42 -04003293
3294 return err;
3295}
3296
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003297static void b43_tx_work(struct work_struct *work)
Michael Buesche4d6b792007-09-18 15:39:42 -04003298{
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003299 struct b43_wl *wl = container_of(work, struct b43_wl, tx_work);
3300 struct b43_wldev *dev;
3301 struct sk_buff *skb;
3302 int err = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04003303
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003304 mutex_lock(&wl->mutex);
3305 dev = wl->current_dev;
3306 if (unlikely(!dev || b43_status(dev) < B43_STAT_STARTED)) {
3307 mutex_unlock(&wl->mutex);
3308 return;
Michael Buesch5100d5a2008-03-29 21:01:16 +01003309 }
Michael Buesch21a75d72008-04-25 19:29:08 +02003310
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003311 while (skb_queue_len(&wl->tx_queue)) {
3312 skb = skb_dequeue(&wl->tx_queue);
Michael Buesch21a75d72008-04-25 19:29:08 +02003313
Michael Buesch21a75d72008-04-25 19:29:08 +02003314 if (b43_using_pio_transfers(dev))
Johannes Berge039fa42008-05-15 12:55:29 +02003315 err = b43_pio_tx(dev, skb);
Michael Buesch21a75d72008-04-25 19:29:08 +02003316 else
Johannes Berge039fa42008-05-15 12:55:29 +02003317 err = b43_dma_tx(dev, skb);
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003318 if (unlikely(err))
3319 dev_kfree_skb(skb); /* Drop it */
Michael Buesch21a75d72008-04-25 19:29:08 +02003320 }
3321
Michael Buesch990b86f2009-09-12 00:48:03 +02003322#if B43_DEBUG
3323 dev->tx_count++;
3324#endif
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003325 mutex_unlock(&wl->mutex);
3326}
Michael Buesch21a75d72008-04-25 19:29:08 +02003327
Johannes Berg7bb45682011-02-24 14:42:06 +01003328static void b43_op_tx(struct ieee80211_hw *hw,
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003329 struct sk_buff *skb)
3330{
3331 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Bueschc9e8eae2008-06-15 15:17:29 +02003332
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003333 if (unlikely(skb->len < 2 + 2 + 6)) {
3334 /* Too short, this can't be a valid frame. */
3335 dev_kfree_skb_any(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01003336 return;
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003337 }
3338 B43_WARN_ON(skb_shinfo(skb)->nr_frags);
3339
3340 skb_queue_tail(&wl->tx_queue, skb);
3341 ieee80211_queue_work(wl->hw, &wl->tx_work);
Michael Buesche4d6b792007-09-18 15:39:42 -04003342}
3343
Michael Buesche6f5b932008-03-05 21:18:49 +01003344static void b43_qos_params_upload(struct b43_wldev *dev,
3345 const struct ieee80211_tx_queue_params *p,
3346 u16 shm_offset)
3347{
3348 u16 params[B43_NR_QOSPARAMS];
Johannes Berg0b576642008-07-15 02:08:24 -07003349 int bslots, tmp;
Michael Buesche6f5b932008-03-05 21:18:49 +01003350 unsigned int i;
3351
Michael Bueschb0544eb2009-09-06 15:42:45 +02003352 if (!dev->qos_enabled)
3353 return;
3354
Johannes Berg0b576642008-07-15 02:08:24 -07003355 bslots = b43_read16(dev, B43_MMIO_RNG) & p->cw_min;
Michael Buesche6f5b932008-03-05 21:18:49 +01003356
3357 memset(&params, 0, sizeof(params));
3358
3359 params[B43_QOSPARAM_TXOP] = p->txop * 32;
Johannes Berg0b576642008-07-15 02:08:24 -07003360 params[B43_QOSPARAM_CWMIN] = p->cw_min;
3361 params[B43_QOSPARAM_CWMAX] = p->cw_max;
3362 params[B43_QOSPARAM_CWCUR] = p->cw_min;
3363 params[B43_QOSPARAM_AIFS] = p->aifs;
Michael Buesche6f5b932008-03-05 21:18:49 +01003364 params[B43_QOSPARAM_BSLOTS] = bslots;
Johannes Berg0b576642008-07-15 02:08:24 -07003365 params[B43_QOSPARAM_REGGAP] = bslots + p->aifs;
Michael Buesche6f5b932008-03-05 21:18:49 +01003366
3367 for (i = 0; i < ARRAY_SIZE(params); i++) {
3368 if (i == B43_QOSPARAM_STATUS) {
3369 tmp = b43_shm_read16(dev, B43_SHM_SHARED,
3370 shm_offset + (i * 2));
3371 /* Mark the parameters as updated. */
3372 tmp |= 0x100;
3373 b43_shm_write16(dev, B43_SHM_SHARED,
3374 shm_offset + (i * 2),
3375 tmp);
3376 } else {
3377 b43_shm_write16(dev, B43_SHM_SHARED,
3378 shm_offset + (i * 2),
3379 params[i]);
3380 }
3381 }
3382}
3383
Michael Bueschc40c1122008-09-06 16:21:47 +02003384/* Mapping of mac80211 queue numbers to b43 QoS SHM offsets. */
3385static const u16 b43_qos_shm_offsets[] = {
3386 /* [mac80211-queue-nr] = SHM_OFFSET, */
3387 [0] = B43_QOS_VOICE,
3388 [1] = B43_QOS_VIDEO,
3389 [2] = B43_QOS_BESTEFFORT,
3390 [3] = B43_QOS_BACKGROUND,
3391};
3392
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003393/* Update all QOS parameters in hardware. */
3394static void b43_qos_upload_all(struct b43_wldev *dev)
Michael Buesche6f5b932008-03-05 21:18:49 +01003395{
3396 struct b43_wl *wl = dev->wl;
3397 struct b43_qos_params *params;
Michael Buesche6f5b932008-03-05 21:18:49 +01003398 unsigned int i;
3399
Michael Bueschb0544eb2009-09-06 15:42:45 +02003400 if (!dev->qos_enabled)
3401 return;
3402
Michael Bueschc40c1122008-09-06 16:21:47 +02003403 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3404 ARRAY_SIZE(wl->qos_params));
Michael Buesche6f5b932008-03-05 21:18:49 +01003405
3406 b43_mac_suspend(dev);
Michael Buesche6f5b932008-03-05 21:18:49 +01003407 for (i = 0; i < ARRAY_SIZE(wl->qos_params); i++) {
3408 params = &(wl->qos_params[i]);
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003409 b43_qos_params_upload(dev, &(params->p),
3410 b43_qos_shm_offsets[i]);
Michael Buesche6f5b932008-03-05 21:18:49 +01003411 }
Michael Buesche6f5b932008-03-05 21:18:49 +01003412 b43_mac_enable(dev);
3413}
3414
3415static void b43_qos_clear(struct b43_wl *wl)
3416{
3417 struct b43_qos_params *params;
3418 unsigned int i;
3419
Michael Bueschc40c1122008-09-06 16:21:47 +02003420 /* Initialize QoS parameters to sane defaults. */
3421
3422 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3423 ARRAY_SIZE(wl->qos_params));
3424
Michael Buesche6f5b932008-03-05 21:18:49 +01003425 for (i = 0; i < ARRAY_SIZE(wl->qos_params); i++) {
3426 params = &(wl->qos_params[i]);
3427
Michael Bueschc40c1122008-09-06 16:21:47 +02003428 switch (b43_qos_shm_offsets[i]) {
3429 case B43_QOS_VOICE:
3430 params->p.txop = 0;
3431 params->p.aifs = 2;
3432 params->p.cw_min = 0x0001;
3433 params->p.cw_max = 0x0001;
3434 break;
3435 case B43_QOS_VIDEO:
3436 params->p.txop = 0;
3437 params->p.aifs = 2;
3438 params->p.cw_min = 0x0001;
3439 params->p.cw_max = 0x0001;
3440 break;
3441 case B43_QOS_BESTEFFORT:
3442 params->p.txop = 0;
3443 params->p.aifs = 3;
3444 params->p.cw_min = 0x0001;
3445 params->p.cw_max = 0x03FF;
3446 break;
3447 case B43_QOS_BACKGROUND:
3448 params->p.txop = 0;
3449 params->p.aifs = 7;
3450 params->p.cw_min = 0x0001;
3451 params->p.cw_max = 0x03FF;
3452 break;
3453 default:
3454 B43_WARN_ON(1);
3455 }
Michael Buesche6f5b932008-03-05 21:18:49 +01003456 }
3457}
3458
3459/* Initialize the core's QOS capabilities */
3460static void b43_qos_init(struct b43_wldev *dev)
3461{
Michael Bueschb0544eb2009-09-06 15:42:45 +02003462 if (!dev->qos_enabled) {
3463 /* Disable QOS support. */
3464 b43_hf_write(dev, b43_hf_read(dev) & ~B43_HF_EDCF);
3465 b43_write16(dev, B43_MMIO_IFSCTL,
3466 b43_read16(dev, B43_MMIO_IFSCTL)
3467 & ~B43_MMIO_IFSCTL_USE_EDCF);
3468 b43dbg(dev->wl, "QoS disabled\n");
3469 return;
3470 }
3471
Michael Buesche6f5b932008-03-05 21:18:49 +01003472 /* Upload the current QOS parameters. */
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003473 b43_qos_upload_all(dev);
Michael Buesche6f5b932008-03-05 21:18:49 +01003474
3475 /* Enable QOS support. */
3476 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_EDCF);
3477 b43_write16(dev, B43_MMIO_IFSCTL,
3478 b43_read16(dev, B43_MMIO_IFSCTL)
3479 | B43_MMIO_IFSCTL_USE_EDCF);
Michael Bueschb0544eb2009-09-06 15:42:45 +02003480 b43dbg(dev->wl, "QoS enabled\n");
Michael Buesche6f5b932008-03-05 21:18:49 +01003481}
3482
Johannes Berge100bb62008-04-30 18:51:21 +02003483static int b43_op_conf_tx(struct ieee80211_hw *hw, u16 _queue,
Michael Buesch40faacc2007-10-28 16:29:32 +01003484 const struct ieee80211_tx_queue_params *params)
Michael Buesche4d6b792007-09-18 15:39:42 -04003485{
Michael Buesche6f5b932008-03-05 21:18:49 +01003486 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003487 struct b43_wldev *dev;
Michael Buesche6f5b932008-03-05 21:18:49 +01003488 unsigned int queue = (unsigned int)_queue;
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003489 int err = -ENODEV;
Michael Buesche6f5b932008-03-05 21:18:49 +01003490
3491 if (queue >= ARRAY_SIZE(wl->qos_params)) {
3492 /* Queue not available or don't support setting
3493 * params on this queue. Return success to not
3494 * confuse mac80211. */
3495 return 0;
3496 }
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003497 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3498 ARRAY_SIZE(wl->qos_params));
Michael Buesche6f5b932008-03-05 21:18:49 +01003499
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003500 mutex_lock(&wl->mutex);
3501 dev = wl->current_dev;
3502 if (unlikely(!dev || (b43_status(dev) < B43_STAT_INITIALIZED)))
3503 goto out_unlock;
Michael Buesche6f5b932008-03-05 21:18:49 +01003504
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003505 memcpy(&(wl->qos_params[queue].p), params, sizeof(*params));
3506 b43_mac_suspend(dev);
3507 b43_qos_params_upload(dev, &(wl->qos_params[queue].p),
3508 b43_qos_shm_offsets[queue]);
3509 b43_mac_enable(dev);
3510 err = 0;
Michael Buesche6f5b932008-03-05 21:18:49 +01003511
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003512out_unlock:
3513 mutex_unlock(&wl->mutex);
3514
3515 return err;
Michael Buesche4d6b792007-09-18 15:39:42 -04003516}
3517
Michael Buesch40faacc2007-10-28 16:29:32 +01003518static int b43_op_get_stats(struct ieee80211_hw *hw,
3519 struct ieee80211_low_level_stats *stats)
Michael Buesche4d6b792007-09-18 15:39:42 -04003520{
3521 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04003522
Michael Buesch36dbd952009-09-04 22:51:29 +02003523 mutex_lock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003524 memcpy(stats, &wl->ieee_stats, sizeof(*stats));
Michael Buesch36dbd952009-09-04 22:51:29 +02003525 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003526
3527 return 0;
3528}
3529
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003530static u64 b43_op_get_tsf(struct ieee80211_hw *hw)
3531{
3532 struct b43_wl *wl = hw_to_b43_wl(hw);
3533 struct b43_wldev *dev;
3534 u64 tsf;
3535
3536 mutex_lock(&wl->mutex);
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003537 dev = wl->current_dev;
3538
3539 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED))
3540 b43_tsf_read(dev, &tsf);
3541 else
3542 tsf = 0;
3543
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003544 mutex_unlock(&wl->mutex);
3545
3546 return tsf;
3547}
3548
3549static void b43_op_set_tsf(struct ieee80211_hw *hw, u64 tsf)
3550{
3551 struct b43_wl *wl = hw_to_b43_wl(hw);
3552 struct b43_wldev *dev;
3553
3554 mutex_lock(&wl->mutex);
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003555 dev = wl->current_dev;
3556
3557 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED))
3558 b43_tsf_write(dev, tsf);
3559
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003560 mutex_unlock(&wl->mutex);
3561}
3562
Michael Buesche4d6b792007-09-18 15:39:42 -04003563static void b43_put_phy_into_reset(struct b43_wldev *dev)
3564{
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003565 u32 tmp;
Michael Buesche4d6b792007-09-18 15:39:42 -04003566
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003567 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02003568#ifdef CONFIG_B43_BCMA
3569 case B43_BUS_BCMA:
3570 b43err(dev->wl,
3571 "Putting PHY into reset not supported on BCMA\n");
3572 break;
3573#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003574#ifdef CONFIG_B43_SSB
3575 case B43_BUS_SSB:
3576 tmp = ssb_read32(dev->dev->sdev, SSB_TMSLOW);
3577 tmp &= ~B43_TMSLOW_GMODE;
3578 tmp |= B43_TMSLOW_PHYRESET;
3579 tmp |= SSB_TMSLOW_FGC;
3580 ssb_write32(dev->dev->sdev, SSB_TMSLOW, tmp);
3581 msleep(1);
Michael Buesche4d6b792007-09-18 15:39:42 -04003582
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003583 tmp = ssb_read32(dev->dev->sdev, SSB_TMSLOW);
3584 tmp &= ~SSB_TMSLOW_FGC;
3585 tmp |= B43_TMSLOW_PHYRESET;
3586 ssb_write32(dev->dev->sdev, SSB_TMSLOW, tmp);
3587 msleep(1);
3588
3589 break;
3590#endif
3591 }
Michael Buesche4d6b792007-09-18 15:39:42 -04003592}
3593
John Daiker99da1852009-02-24 02:16:42 -08003594static const char *band_to_string(enum ieee80211_band band)
Michael Buesche4d6b792007-09-18 15:39:42 -04003595{
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003596 switch (band) {
3597 case IEEE80211_BAND_5GHZ:
3598 return "5";
3599 case IEEE80211_BAND_2GHZ:
3600 return "2.4";
3601 default:
3602 break;
3603 }
3604 B43_WARN_ON(1);
3605 return "";
3606}
3607
3608/* Expects wl->mutex locked */
3609static int b43_switch_band(struct b43_wl *wl, struct ieee80211_channel *chan)
3610{
3611 struct b43_wldev *up_dev = NULL;
Michael Buesche4d6b792007-09-18 15:39:42 -04003612 struct b43_wldev *down_dev;
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003613 struct b43_wldev *d;
Michael Buesche4d6b792007-09-18 15:39:42 -04003614 int err;
John W. Linville922d8a02009-01-12 14:40:20 -05003615 bool uninitialized_var(gmode);
Michael Buesche4d6b792007-09-18 15:39:42 -04003616 int prev_status;
3617
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003618 /* Find a device and PHY which supports the band. */
3619 list_for_each_entry(d, &wl->devlist, list) {
3620 switch (chan->band) {
3621 case IEEE80211_BAND_5GHZ:
3622 if (d->phy.supports_5ghz) {
3623 up_dev = d;
3624 gmode = 0;
3625 }
3626 break;
3627 case IEEE80211_BAND_2GHZ:
3628 if (d->phy.supports_2ghz) {
3629 up_dev = d;
3630 gmode = 1;
3631 }
3632 break;
3633 default:
3634 B43_WARN_ON(1);
3635 return -EINVAL;
3636 }
3637 if (up_dev)
3638 break;
3639 }
3640 if (!up_dev) {
3641 b43err(wl, "Could not find a device for %s-GHz band operation\n",
3642 band_to_string(chan->band));
3643 return -ENODEV;
Michael Buesche4d6b792007-09-18 15:39:42 -04003644 }
3645 if ((up_dev == wl->current_dev) &&
3646 (!!wl->current_dev->phy.gmode == !!gmode)) {
3647 /* This device is already running. */
3648 return 0;
3649 }
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003650 b43dbg(wl, "Switching to %s-GHz band\n",
3651 band_to_string(chan->band));
Michael Buesche4d6b792007-09-18 15:39:42 -04003652 down_dev = wl->current_dev;
3653
3654 prev_status = b43_status(down_dev);
3655 /* Shutdown the currently running core. */
3656 if (prev_status >= B43_STAT_STARTED)
Michael Buesch36dbd952009-09-04 22:51:29 +02003657 down_dev = b43_wireless_core_stop(down_dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04003658 if (prev_status >= B43_STAT_INITIALIZED)
3659 b43_wireless_core_exit(down_dev);
3660
3661 if (down_dev != up_dev) {
3662 /* We switch to a different core, so we put PHY into
3663 * RESET on the old core. */
3664 b43_put_phy_into_reset(down_dev);
3665 }
3666
3667 /* Now start the new core. */
3668 up_dev->phy.gmode = gmode;
3669 if (prev_status >= B43_STAT_INITIALIZED) {
3670 err = b43_wireless_core_init(up_dev);
3671 if (err) {
3672 b43err(wl, "Fatal: Could not initialize device for "
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003673 "selected %s-GHz band\n",
3674 band_to_string(chan->band));
Michael Buesche4d6b792007-09-18 15:39:42 -04003675 goto init_failure;
3676 }
3677 }
3678 if (prev_status >= B43_STAT_STARTED) {
3679 err = b43_wireless_core_start(up_dev);
3680 if (err) {
3681 b43err(wl, "Fatal: Coult not start device for "
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003682 "selected %s-GHz band\n",
3683 band_to_string(chan->band));
Michael Buesche4d6b792007-09-18 15:39:42 -04003684 b43_wireless_core_exit(up_dev);
3685 goto init_failure;
3686 }
3687 }
3688 B43_WARN_ON(b43_status(up_dev) != prev_status);
3689
3690 wl->current_dev = up_dev;
3691
3692 return 0;
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003693init_failure:
Michael Buesche4d6b792007-09-18 15:39:42 -04003694 /* Whoops, failed to init the new core. No core is operating now. */
3695 wl->current_dev = NULL;
3696 return err;
3697}
3698
Johannes Berg9124b072008-10-14 19:17:54 +02003699/* Write the short and long frame retry limit values. */
3700static void b43_set_retry_limits(struct b43_wldev *dev,
3701 unsigned int short_retry,
3702 unsigned int long_retry)
3703{
3704 /* The retry limit is a 4-bit counter. Enforce this to avoid overflowing
3705 * the chip-internal counter. */
3706 short_retry = min(short_retry, (unsigned int)0xF);
3707 long_retry = min(long_retry, (unsigned int)0xF);
3708
3709 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_SRLIMIT,
3710 short_retry);
3711 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_LRLIMIT,
3712 long_retry);
3713}
3714
Johannes Berge8975582008-10-09 12:18:51 +02003715static int b43_op_config(struct ieee80211_hw *hw, u32 changed)
Michael Buesche4d6b792007-09-18 15:39:42 -04003716{
3717 struct b43_wl *wl = hw_to_b43_wl(hw);
3718 struct b43_wldev *dev;
3719 struct b43_phy *phy;
Johannes Berge8975582008-10-09 12:18:51 +02003720 struct ieee80211_conf *conf = &hw->conf;
Michael Buesch9db1f6d2007-12-22 21:54:20 +01003721 int antenna;
Michael Buesche4d6b792007-09-18 15:39:42 -04003722 int err = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04003723
Michael Buesche4d6b792007-09-18 15:39:42 -04003724 mutex_lock(&wl->mutex);
3725
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003726 /* Switch the band (if necessary). This might change the active core. */
3727 err = b43_switch_band(wl, conf->channel);
Michael Buesche4d6b792007-09-18 15:39:42 -04003728 if (err)
3729 goto out_unlock_mutex;
3730 dev = wl->current_dev;
3731 phy = &dev->phy;
3732
Rafał Miłeckiaa4c7b22010-01-22 01:53:12 +01003733 if (conf_is_ht(conf))
3734 phy->is_40mhz =
3735 (conf_is_ht40_minus(conf) || conf_is_ht40_plus(conf));
3736 else
3737 phy->is_40mhz = false;
3738
Michael Bueschd10d0e52008-12-18 22:13:39 +01003739 b43_mac_suspend(dev);
3740
Johannes Berg9124b072008-10-14 19:17:54 +02003741 if (changed & IEEE80211_CONF_CHANGE_RETRY_LIMITS)
3742 b43_set_retry_limits(dev, conf->short_frame_max_tx_count,
3743 conf->long_frame_max_tx_count);
3744 changed &= ~IEEE80211_CONF_CHANGE_RETRY_LIMITS;
3745 if (!changed)
Michael Bueschd10d0e52008-12-18 22:13:39 +01003746 goto out_mac_enable;
Michael Buesche4d6b792007-09-18 15:39:42 -04003747
3748 /* Switch to the requested channel.
3749 * The firmware takes care of races with the TX handler. */
Johannes Berg8318d782008-01-24 19:38:38 +01003750 if (conf->channel->hw_value != phy->channel)
Michael Bueschef1a6282008-08-27 18:53:02 +02003751 b43_switch_channel(dev, conf->channel->hw_value);
Michael Buesche4d6b792007-09-18 15:39:42 -04003752
Johannes Berg0869aea2009-10-28 10:03:35 +01003753 dev->wl->radiotap_enabled = !!(conf->flags & IEEE80211_CONF_MONITOR);
Johannes Bergd42ce842007-11-23 14:50:51 +01003754
Michael Buesche4d6b792007-09-18 15:39:42 -04003755 /* Adjust the desired TX power level. */
3756 if (conf->power_level != 0) {
Michael Buesch18c8ade2008-08-28 19:33:40 +02003757 if (conf->power_level != phy->desired_txpower) {
3758 phy->desired_txpower = conf->power_level;
3759 b43_phy_txpower_check(dev, B43_TXPWR_IGNORE_TIME |
3760 B43_TXPWR_IGNORE_TSSI);
Michael Buesche4d6b792007-09-18 15:39:42 -04003761 }
3762 }
3763
3764 /* Antennas for RX and management frame TX. */
Johannes Berg0f4ac382008-10-09 12:18:04 +02003765 antenna = B43_ANTENNA_DEFAULT;
Michael Buesch9db1f6d2007-12-22 21:54:20 +01003766 b43_mgmtframe_txantenna(dev, antenna);
Johannes Berg0f4ac382008-10-09 12:18:04 +02003767 antenna = B43_ANTENNA_DEFAULT;
Michael Bueschef1a6282008-08-27 18:53:02 +02003768 if (phy->ops->set_rx_antenna)
3769 phy->ops->set_rx_antenna(dev, antenna);
Michael Buesche4d6b792007-09-18 15:39:42 -04003770
Larry Fingerfd4973c2009-06-20 12:58:11 -05003771 if (wl->radio_enabled != phy->radio_on) {
3772 if (wl->radio_enabled) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003773 b43_software_rfkill(dev, false);
Michael Bueschfda9abc2007-09-20 22:14:18 +02003774 b43info(dev->wl, "Radio turned on by software\n");
3775 if (!dev->radio_hw_enable) {
3776 b43info(dev->wl, "The hardware RF-kill button "
3777 "still turns the radio physically off. "
3778 "Press the button to turn it on.\n");
3779 }
3780 } else {
Johannes Berg19d337d2009-06-02 13:01:37 +02003781 b43_software_rfkill(dev, true);
Michael Bueschfda9abc2007-09-20 22:14:18 +02003782 b43info(dev->wl, "Radio turned off by software\n");
3783 }
3784 }
3785
Michael Bueschd10d0e52008-12-18 22:13:39 +01003786out_mac_enable:
3787 b43_mac_enable(dev);
3788out_unlock_mutex:
Michael Buesche4d6b792007-09-18 15:39:42 -04003789 mutex_unlock(&wl->mutex);
3790
3791 return err;
3792}
3793
Johannes Berg881d9482009-01-21 15:13:48 +01003794static void b43_update_basic_rates(struct b43_wldev *dev, u32 brates)
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003795{
3796 struct ieee80211_supported_band *sband =
3797 dev->wl->hw->wiphy->bands[b43_current_band(dev->wl)];
3798 struct ieee80211_rate *rate;
3799 int i;
3800 u16 basic, direct, offset, basic_offset, rateptr;
3801
3802 for (i = 0; i < sband->n_bitrates; i++) {
3803 rate = &sband->bitrates[i];
3804
3805 if (b43_is_cck_rate(rate->hw_value)) {
3806 direct = B43_SHM_SH_CCKDIRECT;
3807 basic = B43_SHM_SH_CCKBASIC;
3808 offset = b43_plcp_get_ratecode_cck(rate->hw_value);
3809 offset &= 0xF;
3810 } else {
3811 direct = B43_SHM_SH_OFDMDIRECT;
3812 basic = B43_SHM_SH_OFDMBASIC;
3813 offset = b43_plcp_get_ratecode_ofdm(rate->hw_value);
3814 offset &= 0xF;
3815 }
3816
3817 rate = ieee80211_get_response_rate(sband, brates, rate->bitrate);
3818
3819 if (b43_is_cck_rate(rate->hw_value)) {
3820 basic_offset = b43_plcp_get_ratecode_cck(rate->hw_value);
3821 basic_offset &= 0xF;
3822 } else {
3823 basic_offset = b43_plcp_get_ratecode_ofdm(rate->hw_value);
3824 basic_offset &= 0xF;
3825 }
3826
3827 /*
3828 * Get the pointer that we need to point to
3829 * from the direct map
3830 */
3831 rateptr = b43_shm_read16(dev, B43_SHM_SHARED,
3832 direct + 2 * basic_offset);
3833 /* and write it to the basic map */
3834 b43_shm_write16(dev, B43_SHM_SHARED, basic + 2 * offset,
3835 rateptr);
3836 }
3837}
3838
3839static void b43_op_bss_info_changed(struct ieee80211_hw *hw,
3840 struct ieee80211_vif *vif,
3841 struct ieee80211_bss_conf *conf,
3842 u32 changed)
3843{
3844 struct b43_wl *wl = hw_to_b43_wl(hw);
3845 struct b43_wldev *dev;
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003846
3847 mutex_lock(&wl->mutex);
3848
3849 dev = wl->current_dev;
Michael Bueschd10d0e52008-12-18 22:13:39 +01003850 if (!dev || b43_status(dev) < B43_STAT_STARTED)
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003851 goto out_unlock_mutex;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003852
3853 B43_WARN_ON(wl->vif != vif);
3854
3855 if (changed & BSS_CHANGED_BSSID) {
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003856 if (conf->bssid)
3857 memcpy(wl->bssid, conf->bssid, ETH_ALEN);
3858 else
3859 memset(wl->bssid, 0, ETH_ALEN);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003860 }
3861
Johannes Berg3f0d8432009-05-18 10:53:18 +02003862 if (b43_status(dev) >= B43_STAT_INITIALIZED) {
3863 if (changed & BSS_CHANGED_BEACON &&
3864 (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
3865 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT) ||
3866 b43_is_mode(wl, NL80211_IFTYPE_ADHOC)))
3867 b43_update_templates(wl);
3868
3869 if (changed & BSS_CHANGED_BSSID)
3870 b43_write_mac_bssid_templates(dev);
3871 }
Johannes Berg3f0d8432009-05-18 10:53:18 +02003872
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003873 b43_mac_suspend(dev);
3874
Johannes Berg57c4d7b2009-04-23 16:10:04 +02003875 /* Update templates for AP/mesh mode. */
3876 if (changed & BSS_CHANGED_BEACON_INT &&
3877 (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
3878 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT) ||
3879 b43_is_mode(wl, NL80211_IFTYPE_ADHOC)))
3880 b43_set_beacon_int(dev, conf->beacon_int);
3881
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003882 if (changed & BSS_CHANGED_BASIC_RATES)
3883 b43_update_basic_rates(dev, conf->basic_rates);
3884
3885 if (changed & BSS_CHANGED_ERP_SLOT) {
3886 if (conf->use_short_slot)
3887 b43_short_slot_timing_enable(dev);
3888 else
3889 b43_short_slot_timing_disable(dev);
3890 }
3891
3892 b43_mac_enable(dev);
Michael Bueschd10d0e52008-12-18 22:13:39 +01003893out_unlock_mutex:
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003894 mutex_unlock(&wl->mutex);
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003895}
3896
Michael Buesch40faacc2007-10-28 16:29:32 +01003897static int b43_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003898 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
3899 struct ieee80211_key_conf *key)
Michael Buesche4d6b792007-09-18 15:39:42 -04003900{
3901 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003902 struct b43_wldev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04003903 u8 algorithm;
3904 u8 index;
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003905 int err;
Michael Buesch060210f2009-01-25 15:49:59 +01003906 static const u8 bcast_addr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Michael Buesche4d6b792007-09-18 15:39:42 -04003907
3908 if (modparam_nohwcrypt)
3909 return -ENOSPC; /* User disabled HW-crypto */
3910
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003911 mutex_lock(&wl->mutex);
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003912
3913 dev = wl->current_dev;
3914 err = -ENODEV;
3915 if (!dev || b43_status(dev) < B43_STAT_INITIALIZED)
3916 goto out_unlock;
3917
Michael Buesch403a3a12009-06-08 21:04:57 +02003918 if (dev->fw.pcm_request_failed || !dev->hwcrypto_enabled) {
Michael Buesch68217832008-05-17 23:43:57 +02003919 /* We don't have firmware for the crypto engine.
3920 * Must use software-crypto. */
3921 err = -EOPNOTSUPP;
3922 goto out_unlock;
3923 }
3924
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003925 err = -EINVAL;
Johannes Berg97359d12010-08-10 09:46:38 +02003926 switch (key->cipher) {
3927 case WLAN_CIPHER_SUITE_WEP40:
3928 algorithm = B43_SEC_ALGO_WEP40;
Michael Buesche4d6b792007-09-18 15:39:42 -04003929 break;
Johannes Berg97359d12010-08-10 09:46:38 +02003930 case WLAN_CIPHER_SUITE_WEP104:
3931 algorithm = B43_SEC_ALGO_WEP104;
3932 break;
3933 case WLAN_CIPHER_SUITE_TKIP:
Michael Buesche4d6b792007-09-18 15:39:42 -04003934 algorithm = B43_SEC_ALGO_TKIP;
3935 break;
Johannes Berg97359d12010-08-10 09:46:38 +02003936 case WLAN_CIPHER_SUITE_CCMP:
Michael Buesche4d6b792007-09-18 15:39:42 -04003937 algorithm = B43_SEC_ALGO_AES;
3938 break;
3939 default:
3940 B43_WARN_ON(1);
Michael Buesche4d6b792007-09-18 15:39:42 -04003941 goto out_unlock;
3942 }
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003943 index = (u8) (key->keyidx);
3944 if (index > 3)
3945 goto out_unlock;
Michael Buesche4d6b792007-09-18 15:39:42 -04003946
3947 switch (cmd) {
3948 case SET_KEY:
gregor kowski035d0242009-08-19 22:35:45 +02003949 if (algorithm == B43_SEC_ALGO_TKIP &&
3950 (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE) ||
3951 !modparam_hwtkip)) {
3952 /* We support only pairwise key */
Michael Buesche4d6b792007-09-18 15:39:42 -04003953 err = -EOPNOTSUPP;
3954 goto out_unlock;
3955 }
3956
Michael Buesche808e582008-12-19 21:30:52 +01003957 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) {
Johannes Bergdc822b52008-12-29 12:55:09 +01003958 if (WARN_ON(!sta)) {
3959 err = -EOPNOTSUPP;
3960 goto out_unlock;
3961 }
Michael Buesche808e582008-12-19 21:30:52 +01003962 /* Pairwise key with an assigned MAC address. */
Michael Buesche4d6b792007-09-18 15:39:42 -04003963 err = b43_key_write(dev, -1, algorithm,
Johannes Bergdc822b52008-12-29 12:55:09 +01003964 key->key, key->keylen,
3965 sta->addr, key);
Michael Buesche808e582008-12-19 21:30:52 +01003966 } else {
3967 /* Group key */
3968 err = b43_key_write(dev, index, algorithm,
3969 key->key, key->keylen, NULL, key);
Michael Buesche4d6b792007-09-18 15:39:42 -04003970 }
3971 if (err)
3972 goto out_unlock;
3973
3974 if (algorithm == B43_SEC_ALGO_WEP40 ||
3975 algorithm == B43_SEC_ALGO_WEP104) {
3976 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_USEDEFKEYS);
3977 } else {
3978 b43_hf_write(dev,
3979 b43_hf_read(dev) & ~B43_HF_USEDEFKEYS);
3980 }
3981 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
gregor kowski035d0242009-08-19 22:35:45 +02003982 if (algorithm == B43_SEC_ALGO_TKIP)
3983 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Michael Buesche4d6b792007-09-18 15:39:42 -04003984 break;
3985 case DISABLE_KEY: {
3986 err = b43_key_clear(dev, key->hw_key_idx);
3987 if (err)
3988 goto out_unlock;
3989 break;
3990 }
3991 default:
3992 B43_WARN_ON(1);
3993 }
Michael Buesch9cf7f242008-12-19 20:24:30 +01003994
Michael Buesche4d6b792007-09-18 15:39:42 -04003995out_unlock:
Michael Buesche4d6b792007-09-18 15:39:42 -04003996 if (!err) {
3997 b43dbg(wl, "%s hardware based encryption for keyidx: %d, "
Johannes Berge1749612008-10-27 15:59:26 -07003998 "mac: %pM\n",
Michael Buesche4d6b792007-09-18 15:39:42 -04003999 cmd == SET_KEY ? "Using" : "Disabling", key->keyidx,
Larry Fingera1d882102009-01-14 11:15:25 -06004000 sta ? sta->addr : bcast_addr);
Michael Buesch9cf7f242008-12-19 20:24:30 +01004001 b43_dump_keymemory(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004002 }
Michael Buesch9cf7f242008-12-19 20:24:30 +01004003 mutex_unlock(&wl->mutex);
4004
Michael Buesche4d6b792007-09-18 15:39:42 -04004005 return err;
4006}
4007
Michael Buesch40faacc2007-10-28 16:29:32 +01004008static void b43_op_configure_filter(struct ieee80211_hw *hw,
4009 unsigned int changed, unsigned int *fflags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02004010 u64 multicast)
Michael Buesche4d6b792007-09-18 15:39:42 -04004011{
4012 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesch36dbd952009-09-04 22:51:29 +02004013 struct b43_wldev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004014
Michael Buesch36dbd952009-09-04 22:51:29 +02004015 mutex_lock(&wl->mutex);
4016 dev = wl->current_dev;
Johannes Berg4150c572007-09-17 01:29:23 -04004017 if (!dev) {
4018 *fflags = 0;
Michael Buesch36dbd952009-09-04 22:51:29 +02004019 goto out_unlock;
Michael Buesche4d6b792007-09-18 15:39:42 -04004020 }
Johannes Berg4150c572007-09-17 01:29:23 -04004021
Johannes Berg4150c572007-09-17 01:29:23 -04004022 *fflags &= FIF_PROMISC_IN_BSS |
4023 FIF_ALLMULTI |
4024 FIF_FCSFAIL |
4025 FIF_PLCPFAIL |
4026 FIF_CONTROL |
4027 FIF_OTHER_BSS |
4028 FIF_BCN_PRBRESP_PROMISC;
4029
4030 changed &= FIF_PROMISC_IN_BSS |
4031 FIF_ALLMULTI |
4032 FIF_FCSFAIL |
4033 FIF_PLCPFAIL |
4034 FIF_CONTROL |
4035 FIF_OTHER_BSS |
4036 FIF_BCN_PRBRESP_PROMISC;
4037
4038 wl->filter_flags = *fflags;
4039
4040 if (changed && b43_status(dev) >= B43_STAT_INITIALIZED)
4041 b43_adjust_opmode(dev);
Michael Buesch36dbd952009-09-04 22:51:29 +02004042
4043out_unlock:
4044 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04004045}
4046
Michael Buesch36dbd952009-09-04 22:51:29 +02004047/* Locking: wl->mutex
4048 * Returns the current dev. This might be different from the passed in dev,
4049 * because the core might be gone away while we unlocked the mutex. */
4050static struct b43_wldev * b43_wireless_core_stop(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04004051{
4052 struct b43_wl *wl = dev->wl;
Michael Buesch36dbd952009-09-04 22:51:29 +02004053 struct b43_wldev *orig_dev;
Michael Buesch49d965c2009-10-03 00:57:58 +02004054 u32 mask;
Michael Buesche4d6b792007-09-18 15:39:42 -04004055
Michael Buesch36dbd952009-09-04 22:51:29 +02004056redo:
4057 if (!dev || b43_status(dev) < B43_STAT_STARTED)
4058 return dev;
Stefano Brivioa19d12d2007-11-07 18:16:11 +01004059
Michael Bueschf5d40ee2009-09-04 22:53:18 +02004060 /* Cancel work. Unlock to avoid deadlocks. */
Michael Buesche4d6b792007-09-18 15:39:42 -04004061 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04004062 cancel_delayed_work_sync(&dev->periodic_work);
Michael Bueschf5d40ee2009-09-04 22:53:18 +02004063 cancel_work_sync(&wl->tx_work);
Michael Buesche4d6b792007-09-18 15:39:42 -04004064 mutex_lock(&wl->mutex);
Michael Buesch36dbd952009-09-04 22:51:29 +02004065 dev = wl->current_dev;
4066 if (!dev || b43_status(dev) < B43_STAT_STARTED) {
4067 /* Whoops, aliens ate up the device while we were unlocked. */
4068 return dev;
4069 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004070
Michael Buesch36dbd952009-09-04 22:51:29 +02004071 /* Disable interrupts on the device. */
4072 b43_set_status(dev, B43_STAT_INITIALIZED);
Rafał Miłecki505fb012011-05-19 15:11:27 +02004073 if (b43_bus_host_is_sdio(dev->dev)) {
Michael Buesch36dbd952009-09-04 22:51:29 +02004074 /* wl->mutex is locked. That is enough. */
4075 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
4076 b43_read32(dev, B43_MMIO_GEN_IRQ_MASK); /* Flush */
4077 } else {
4078 spin_lock_irq(&wl->hardirq_lock);
4079 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
4080 b43_read32(dev, B43_MMIO_GEN_IRQ_MASK); /* Flush */
4081 spin_unlock_irq(&wl->hardirq_lock);
4082 }
Michael Buesch176e9f62009-09-11 23:04:04 +02004083 /* Synchronize and free the interrupt handlers. Unlock to avoid deadlocks. */
Michael Buesch36dbd952009-09-04 22:51:29 +02004084 orig_dev = dev;
4085 mutex_unlock(&wl->mutex);
Rafał Miłecki505fb012011-05-19 15:11:27 +02004086 if (b43_bus_host_is_sdio(dev->dev)) {
Michael Buesch176e9f62009-09-11 23:04:04 +02004087 b43_sdio_free_irq(dev);
4088 } else {
Rafał Miłeckia18c7152011-05-18 02:06:40 +02004089 synchronize_irq(dev->dev->irq);
4090 free_irq(dev->dev->irq, dev);
Michael Buesch176e9f62009-09-11 23:04:04 +02004091 }
Michael Buesch36dbd952009-09-04 22:51:29 +02004092 mutex_lock(&wl->mutex);
4093 dev = wl->current_dev;
4094 if (!dev)
4095 return dev;
4096 if (dev != orig_dev) {
4097 if (b43_status(dev) >= B43_STAT_STARTED)
4098 goto redo;
4099 return dev;
4100 }
Michael Buesch49d965c2009-10-03 00:57:58 +02004101 mask = b43_read32(dev, B43_MMIO_GEN_IRQ_MASK);
4102 B43_WARN_ON(mask != 0xFFFFFFFF && mask);
Michael Buesch36dbd952009-09-04 22:51:29 +02004103
Michael Bueschf5d40ee2009-09-04 22:53:18 +02004104 /* Drain the TX queue */
4105 while (skb_queue_len(&wl->tx_queue))
4106 dev_kfree_skb(skb_dequeue(&wl->tx_queue));
4107
Michael Buesche4d6b792007-09-18 15:39:42 -04004108 b43_mac_suspend(dev);
Michael Buescha78b3bb2009-09-11 21:44:05 +02004109 b43_leds_exit(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004110 b43dbg(wl, "Wireless interface stopped\n");
Michael Buesch36dbd952009-09-04 22:51:29 +02004111
4112 return dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004113}
4114
4115/* Locking: wl->mutex */
4116static int b43_wireless_core_start(struct b43_wldev *dev)
4117{
4118 int err;
4119
4120 B43_WARN_ON(b43_status(dev) != B43_STAT_INITIALIZED);
4121
4122 drain_txstatus_queue(dev);
Rafał Miłecki505fb012011-05-19 15:11:27 +02004123 if (b43_bus_host_is_sdio(dev->dev)) {
Albert Herranz3dbba8e2009-09-10 19:34:49 +02004124 err = b43_sdio_request_irq(dev, b43_sdio_interrupt_handler);
4125 if (err) {
4126 b43err(dev->wl, "Cannot request SDIO IRQ\n");
4127 goto out;
4128 }
4129 } else {
Rafał Miłeckia18c7152011-05-18 02:06:40 +02004130 err = request_threaded_irq(dev->dev->irq, b43_interrupt_handler,
Albert Herranz3dbba8e2009-09-10 19:34:49 +02004131 b43_interrupt_thread_handler,
4132 IRQF_SHARED, KBUILD_MODNAME, dev);
4133 if (err) {
Rafał Miłeckidedb1eb2011-05-14 00:04:38 +02004134 b43err(dev->wl, "Cannot request IRQ-%d\n",
Rafał Miłeckia18c7152011-05-18 02:06:40 +02004135 dev->dev->irq);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02004136 goto out;
4137 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004138 }
4139
4140 /* We are ready to run. */
Larry Finger0866b032010-02-03 13:33:44 -06004141 ieee80211_wake_queues(dev->wl->hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04004142 b43_set_status(dev, B43_STAT_STARTED);
4143
4144 /* Start data flow (TX/RX). */
4145 b43_mac_enable(dev);
Michael Buesch13790722009-04-08 21:26:27 +02004146 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
Michael Buesche4d6b792007-09-18 15:39:42 -04004147
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004148 /* Start maintenance work */
Michael Buesche4d6b792007-09-18 15:39:42 -04004149 b43_periodic_tasks_setup(dev);
4150
Michael Buescha78b3bb2009-09-11 21:44:05 +02004151 b43_leds_init(dev);
4152
Michael Buesche4d6b792007-09-18 15:39:42 -04004153 b43dbg(dev->wl, "Wireless interface started\n");
Michael Buescha78b3bb2009-09-11 21:44:05 +02004154out:
Michael Buesche4d6b792007-09-18 15:39:42 -04004155 return err;
4156}
4157
4158/* Get PHY and RADIO versioning numbers */
4159static int b43_phy_versioning(struct b43_wldev *dev)
4160{
4161 struct b43_phy *phy = &dev->phy;
4162 u32 tmp;
4163 u8 analog_type;
4164 u8 phy_type;
4165 u8 phy_rev;
4166 u16 radio_manuf;
4167 u16 radio_ver;
4168 u16 radio_rev;
4169 int unsupported = 0;
4170
4171 /* Get PHY versioning */
4172 tmp = b43_read16(dev, B43_MMIO_PHY_VER);
4173 analog_type = (tmp & B43_PHYVER_ANALOG) >> B43_PHYVER_ANALOG_SHIFT;
4174 phy_type = (tmp & B43_PHYVER_TYPE) >> B43_PHYVER_TYPE_SHIFT;
4175 phy_rev = (tmp & B43_PHYVER_VERSION);
4176 switch (phy_type) {
4177 case B43_PHYTYPE_A:
4178 if (phy_rev >= 4)
4179 unsupported = 1;
4180 break;
4181 case B43_PHYTYPE_B:
4182 if (phy_rev != 2 && phy_rev != 4 && phy_rev != 6
4183 && phy_rev != 7)
4184 unsupported = 1;
4185 break;
4186 case B43_PHYTYPE_G:
Larry Finger013978b2007-11-26 10:29:47 -06004187 if (phy_rev > 9)
Michael Buesche4d6b792007-09-18 15:39:42 -04004188 unsupported = 1;
4189 break;
Rafał Miłecki692d2c02010-12-07 21:56:00 +01004190#ifdef CONFIG_B43_PHY_N
Michael Bueschd5c71e42008-01-04 17:06:29 +01004191 case B43_PHYTYPE_N:
Rafał Miłeckiab72efd2010-12-21 21:29:44 +01004192 if (phy_rev > 9)
Michael Bueschd5c71e42008-01-04 17:06:29 +01004193 unsupported = 1;
4194 break;
4195#endif
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004196#ifdef CONFIG_B43_PHY_LP
4197 case B43_PHYTYPE_LP:
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02004198 if (phy_rev > 2)
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004199 unsupported = 1;
4200 break;
4201#endif
Rafał Miłeckid7520b12011-06-13 16:20:06 +02004202#ifdef CONFIG_B43_PHY_HT
4203 case B43_PHYTYPE_HT:
4204 if (phy_rev > 1)
4205 unsupported = 1;
4206 break;
4207#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04004208 default:
4209 unsupported = 1;
4210 };
4211 if (unsupported) {
4212 b43err(dev->wl, "FOUND UNSUPPORTED PHY "
4213 "(Analog %u, Type %u, Revision %u)\n",
4214 analog_type, phy_type, phy_rev);
4215 return -EOPNOTSUPP;
4216 }
4217 b43dbg(dev->wl, "Found PHY: Analog %u, Type %u, Revision %u\n",
4218 analog_type, phy_type, phy_rev);
4219
4220 /* Get RADIO versioning */
Rafał Miłecki3fd48502011-07-06 20:27:24 +02004221 if (dev->dev->core_rev >= 24) {
Rafał Miłecki544e5d82011-07-06 20:27:25 +02004222 u16 radio24[3];
4223
4224 for (tmp = 0; tmp < 3; tmp++) {
4225 b43_write16(dev, B43_MMIO_RADIO24_CONTROL, tmp);
4226 radio24[tmp] = b43_read16(dev, B43_MMIO_RADIO24_DATA);
4227 }
4228
4229 /* Broadcom uses "id" for our "ver" and has separated "ver" */
4230 /* radio_ver = (radio24[0] & 0xF0) >> 4; */
4231
4232 radio_manuf = 0x17F;
4233 radio_ver = (radio24[2] << 8) | radio24[1];
4234 radio_rev = (radio24[0] & 0xF);
Michael Buesche4d6b792007-09-18 15:39:42 -04004235 } else {
Rafał Miłecki3fd48502011-07-06 20:27:24 +02004236 if (dev->dev->chip_id == 0x4317) {
4237 if (dev->dev->chip_rev == 0)
4238 tmp = 0x3205017F;
4239 else if (dev->dev->chip_rev == 1)
4240 tmp = 0x4205017F;
4241 else
4242 tmp = 0x5205017F;
4243 } else {
4244 b43_write16(dev, B43_MMIO_RADIO_CONTROL,
4245 B43_RADIOCTL_ID);
4246 tmp = b43_read16(dev, B43_MMIO_RADIO_DATA_LOW);
4247 b43_write16(dev, B43_MMIO_RADIO_CONTROL,
4248 B43_RADIOCTL_ID);
4249 tmp |= (u32)b43_read16(dev, B43_MMIO_RADIO_DATA_HIGH)
4250 << 16;
4251 }
4252 radio_manuf = (tmp & 0x00000FFF);
4253 radio_ver = (tmp & 0x0FFFF000) >> 12;
4254 radio_rev = (tmp & 0xF0000000) >> 28;
Michael Buesche4d6b792007-09-18 15:39:42 -04004255 }
Rafał Miłecki3fd48502011-07-06 20:27:24 +02004256
Michael Buesch96c755a2008-01-06 00:09:46 +01004257 if (radio_manuf != 0x17F /* Broadcom */)
4258 unsupported = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04004259 switch (phy_type) {
4260 case B43_PHYTYPE_A:
4261 if (radio_ver != 0x2060)
4262 unsupported = 1;
4263 if (radio_rev != 1)
4264 unsupported = 1;
4265 if (radio_manuf != 0x17F)
4266 unsupported = 1;
4267 break;
4268 case B43_PHYTYPE_B:
4269 if ((radio_ver & 0xFFF0) != 0x2050)
4270 unsupported = 1;
4271 break;
4272 case B43_PHYTYPE_G:
4273 if (radio_ver != 0x2050)
4274 unsupported = 1;
4275 break;
Michael Buesch96c755a2008-01-06 00:09:46 +01004276 case B43_PHYTYPE_N:
Johannes Bergbb519be2008-12-24 15:26:40 +01004277 if (radio_ver != 0x2055 && radio_ver != 0x2056)
Michael Buesch96c755a2008-01-06 00:09:46 +01004278 unsupported = 1;
4279 break;
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004280 case B43_PHYTYPE_LP:
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02004281 if (radio_ver != 0x2062 && radio_ver != 0x2063)
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004282 unsupported = 1;
4283 break;
Rafał Miłeckid7520b12011-06-13 16:20:06 +02004284 case B43_PHYTYPE_HT:
4285 if (radio_ver != 0x2059)
4286 unsupported = 1;
4287 break;
Michael Buesche4d6b792007-09-18 15:39:42 -04004288 default:
4289 B43_WARN_ON(1);
4290 }
4291 if (unsupported) {
4292 b43err(dev->wl, "FOUND UNSUPPORTED RADIO "
4293 "(Manuf 0x%X, Version 0x%X, Revision %u)\n",
4294 radio_manuf, radio_ver, radio_rev);
4295 return -EOPNOTSUPP;
4296 }
4297 b43dbg(dev->wl, "Found Radio: Manuf 0x%X, Version 0x%X, Revision %u\n",
4298 radio_manuf, radio_ver, radio_rev);
4299
4300 phy->radio_manuf = radio_manuf;
4301 phy->radio_ver = radio_ver;
4302 phy->radio_rev = radio_rev;
4303
4304 phy->analog = analog_type;
4305 phy->type = phy_type;
4306 phy->rev = phy_rev;
4307
4308 return 0;
4309}
4310
4311static void setup_struct_phy_for_init(struct b43_wldev *dev,
4312 struct b43_phy *phy)
4313{
Michael Buesche4d6b792007-09-18 15:39:42 -04004314 phy->hardware_power_control = !!modparam_hwpctl;
Michael Buesch18c8ade2008-08-28 19:33:40 +02004315 phy->next_txpwr_check_time = jiffies;
Michael Buesch8ed7fc42007-12-09 22:34:59 +01004316 /* PHY TX errors counter. */
4317 atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT);
Michael Buesch591f3dc2009-03-31 12:27:32 +02004318
4319#if B43_DEBUG
4320 phy->phy_locked = 0;
4321 phy->radio_locked = 0;
4322#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04004323}
4324
4325static void setup_struct_wldev_for_init(struct b43_wldev *dev)
4326{
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01004327 dev->dfq_valid = 0;
4328
Michael Buesch6a724d62007-09-20 22:12:58 +02004329 /* Assume the radio is enabled. If it's not enabled, the state will
4330 * immediately get fixed on the first periodic work run. */
4331 dev->radio_hw_enable = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04004332
4333 /* Stats */
4334 memset(&dev->stats, 0, sizeof(dev->stats));
4335
4336 setup_struct_phy_for_init(dev, &dev->phy);
4337
4338 /* IRQ related flags */
4339 dev->irq_reason = 0;
4340 memset(dev->dma_reason, 0, sizeof(dev->dma_reason));
Michael Buesch13790722009-04-08 21:26:27 +02004341 dev->irq_mask = B43_IRQ_MASKTEMPLATE;
Michael Buesch3e3ccb32009-03-19 19:27:21 +01004342 if (b43_modparam_verbose < B43_VERBOSITY_DEBUG)
Michael Buesch13790722009-04-08 21:26:27 +02004343 dev->irq_mask &= ~B43_IRQ_PHY_TXERR;
Michael Buesche4d6b792007-09-18 15:39:42 -04004344
4345 dev->mac_suspended = 1;
4346
4347 /* Noise calculation context */
4348 memset(&dev->noisecalc, 0, sizeof(dev->noisecalc));
4349}
4350
4351static void b43_bluetooth_coext_enable(struct b43_wldev *dev)
4352{
Rafał Miłecki05814832011-05-18 02:06:39 +02004353 struct ssb_sprom *sprom = dev->dev->bus_sprom;
Michael Buescha259d6a2008-04-18 21:06:37 +02004354 u64 hf;
Michael Buesche4d6b792007-09-18 15:39:42 -04004355
Michael Buesch1855ba72008-04-18 20:51:41 +02004356 if (!modparam_btcoex)
4357 return;
Larry Finger95de2842007-11-09 16:57:18 -06004358 if (!(sprom->boardflags_lo & B43_BFL_BTCOEXIST))
Michael Buesche4d6b792007-09-18 15:39:42 -04004359 return;
4360 if (dev->phy.type != B43_PHYTYPE_B && !dev->phy.gmode)
4361 return;
4362
4363 hf = b43_hf_read(dev);
Larry Finger95de2842007-11-09 16:57:18 -06004364 if (sprom->boardflags_lo & B43_BFL_BTCMOD)
Michael Buesche4d6b792007-09-18 15:39:42 -04004365 hf |= B43_HF_BTCOEXALT;
4366 else
4367 hf |= B43_HF_BTCOEX;
4368 b43_hf_write(dev, hf);
Michael Buesche4d6b792007-09-18 15:39:42 -04004369}
4370
4371static void b43_bluetooth_coext_disable(struct b43_wldev *dev)
Michael Buesch1855ba72008-04-18 20:51:41 +02004372{
4373 if (!modparam_btcoex)
4374 return;
4375 //TODO
Michael Buesche4d6b792007-09-18 15:39:42 -04004376}
4377
4378static void b43_imcfglo_timeouts_workaround(struct b43_wldev *dev)
4379{
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004380 struct ssb_bus *bus;
Michael Buesche4d6b792007-09-18 15:39:42 -04004381 u32 tmp;
4382
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004383 if (dev->dev->bus_type != B43_BUS_SSB)
4384 return;
4385
4386 bus = dev->dev->sdev->bus;
4387
Rafał Miłecki0fd82ea2011-05-11 02:10:59 +02004388 if ((bus->chip_id == 0x4311 && bus->chip_rev == 2) ||
4389 (bus->chip_id == 0x4312)) {
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004390 tmp = ssb_read32(dev->dev->sdev, SSB_IMCFGLO);
Rafał Miłecki0fd82ea2011-05-11 02:10:59 +02004391 tmp &= ~SSB_IMCFGLO_REQTO;
4392 tmp &= ~SSB_IMCFGLO_SERTO;
4393 tmp |= 0x3;
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004394 ssb_write32(dev->dev->sdev, SSB_IMCFGLO, tmp);
Rafał Miłecki0fd82ea2011-05-11 02:10:59 +02004395 ssb_commit_settings(bus);
Michael Buesche4d6b792007-09-18 15:39:42 -04004396 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004397}
4398
Michael Bueschd59f7202008-04-03 18:56:19 +02004399static void b43_set_synth_pu_delay(struct b43_wldev *dev, bool idle)
4400{
4401 u16 pu_delay;
4402
4403 /* The time value is in microseconds. */
4404 if (dev->phy.type == B43_PHYTYPE_A)
4405 pu_delay = 3700;
4406 else
4407 pu_delay = 1050;
Johannes Berg05c914f2008-09-11 00:01:58 +02004408 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC) || idle)
Michael Bueschd59f7202008-04-03 18:56:19 +02004409 pu_delay = 500;
4410 if ((dev->phy.radio_ver == 0x2050) && (dev->phy.radio_rev == 8))
4411 pu_delay = max(pu_delay, (u16)2400);
4412
4413 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_SPUWKUP, pu_delay);
4414}
4415
4416/* Set the TSF CFP pre-TargetBeaconTransmissionTime. */
4417static void b43_set_pretbtt(struct b43_wldev *dev)
4418{
4419 u16 pretbtt;
4420
4421 /* The time value is in microseconds. */
Johannes Berg05c914f2008-09-11 00:01:58 +02004422 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC)) {
Michael Bueschd59f7202008-04-03 18:56:19 +02004423 pretbtt = 2;
4424 } else {
4425 if (dev->phy.type == B43_PHYTYPE_A)
4426 pretbtt = 120;
4427 else
4428 pretbtt = 250;
4429 }
4430 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRETBTT, pretbtt);
4431 b43_write16(dev, B43_MMIO_TSF_CFP_PRETBTT, pretbtt);
4432}
4433
Michael Buesche4d6b792007-09-18 15:39:42 -04004434/* Shutdown a wireless core */
4435/* Locking: wl->mutex */
4436static void b43_wireless_core_exit(struct b43_wldev *dev)
4437{
Michael Buesch1f7d87b2008-01-22 20:23:34 +01004438 u32 macctl;
Michael Buesche4d6b792007-09-18 15:39:42 -04004439
Michael Buesch36dbd952009-09-04 22:51:29 +02004440 B43_WARN_ON(dev && b43_status(dev) > B43_STAT_INITIALIZED);
4441 if (!dev || b43_status(dev) != B43_STAT_INITIALIZED)
Michael Buesche4d6b792007-09-18 15:39:42 -04004442 return;
John W. Linville84c164a2010-08-06 15:31:45 -04004443
4444 /* Unregister HW RNG driver */
4445 b43_rng_exit(dev->wl);
4446
Michael Buesche4d6b792007-09-18 15:39:42 -04004447 b43_set_status(dev, B43_STAT_UNINIT);
4448
Michael Buesch1f7d87b2008-01-22 20:23:34 +01004449 /* Stop the microcode PSM. */
4450 macctl = b43_read32(dev, B43_MMIO_MACCTL);
4451 macctl &= ~B43_MACCTL_PSM_RUN;
4452 macctl |= B43_MACCTL_PSM_JMP0;
4453 b43_write32(dev, B43_MMIO_MACCTL, macctl);
4454
Michael Buesche4d6b792007-09-18 15:39:42 -04004455 b43_dma_free(dev);
Michael Buesch5100d5a2008-03-29 21:01:16 +01004456 b43_pio_free(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004457 b43_chip_exit(dev);
Michael Bueschcb24f572008-09-03 12:12:20 +02004458 dev->phy.ops->switch_analog(dev, 0);
Michael Buesche66fee62007-12-26 17:47:10 +01004459 if (dev->wl->current_beacon) {
4460 dev_kfree_skb_any(dev->wl->current_beacon);
4461 dev->wl->current_beacon = NULL;
4462 }
4463
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004464 b43_device_disable(dev, 0);
4465 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004466}
4467
4468/* Initialize a wireless core */
4469static int b43_wireless_core_init(struct b43_wldev *dev)
4470{
Rafał Miłecki05814832011-05-18 02:06:39 +02004471 struct ssb_sprom *sprom = dev->dev->bus_sprom;
Michael Buesche4d6b792007-09-18 15:39:42 -04004472 struct b43_phy *phy = &dev->phy;
4473 int err;
Michael Buescha259d6a2008-04-18 21:06:37 +02004474 u64 hf;
Michael Buesche4d6b792007-09-18 15:39:42 -04004475
4476 B43_WARN_ON(b43_status(dev) != B43_STAT_UNINIT);
4477
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004478 err = b43_bus_powerup(dev, 0);
Michael Buesche4d6b792007-09-18 15:39:42 -04004479 if (err)
4480 goto out;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02004481 if (!b43_device_is_enabled(dev))
4482 b43_wireless_core_reset(dev, phy->gmode);
Michael Buesche4d6b792007-09-18 15:39:42 -04004483
Michael Bueschfb111372008-09-02 13:00:34 +02004484 /* Reset all data structures. */
Michael Buesche4d6b792007-09-18 15:39:42 -04004485 setup_struct_wldev_for_init(dev);
Michael Bueschfb111372008-09-02 13:00:34 +02004486 phy->ops->prepare_structs(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004487
4488 /* Enable IRQ routing to this device. */
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004489 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02004490#ifdef CONFIG_B43_BCMA
4491 case B43_BUS_BCMA:
4492 bcma_core_pci_irq_ctl(&dev->dev->bdev->bus->drv_pci,
4493 dev->dev->bdev, true);
4494 break;
4495#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004496#ifdef CONFIG_B43_SSB
4497 case B43_BUS_SSB:
4498 ssb_pcicore_dev_irqvecs_enable(&dev->dev->sdev->bus->pcicore,
4499 dev->dev->sdev);
4500 break;
4501#endif
4502 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004503
4504 b43_imcfglo_timeouts_workaround(dev);
4505 b43_bluetooth_coext_disable(dev);
Michael Bueschfb111372008-09-02 13:00:34 +02004506 if (phy->ops->prepare_hardware) {
4507 err = phy->ops->prepare_hardware(dev);
Michael Bueschef1a6282008-08-27 18:53:02 +02004508 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02004509 goto err_busdown;
Michael Bueschef1a6282008-08-27 18:53:02 +02004510 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004511 err = b43_chip_init(dev);
4512 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02004513 goto err_busdown;
Michael Buesche4d6b792007-09-18 15:39:42 -04004514 b43_shm_write16(dev, B43_SHM_SHARED,
Rafał Miłecki21d889d2011-05-18 02:06:38 +02004515 B43_SHM_SH_WLCOREREV, dev->dev->core_rev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004516 hf = b43_hf_read(dev);
4517 if (phy->type == B43_PHYTYPE_G) {
4518 hf |= B43_HF_SYMW;
4519 if (phy->rev == 1)
4520 hf |= B43_HF_GDCW;
Larry Finger95de2842007-11-09 16:57:18 -06004521 if (sprom->boardflags_lo & B43_BFL_PACTRL)
Michael Buesche4d6b792007-09-18 15:39:42 -04004522 hf |= B43_HF_OFDMPABOOST;
Michael Buesch969d15c2009-02-20 14:27:15 +01004523 }
4524 if (phy->radio_ver == 0x2050) {
4525 if (phy->radio_rev == 6)
4526 hf |= B43_HF_4318TSSI;
4527 if (phy->radio_rev < 6)
4528 hf |= B43_HF_VCORECALC;
Michael Buesche4d6b792007-09-18 15:39:42 -04004529 }
Michael Buesch1cc8f472009-02-20 14:47:56 +01004530 if (sprom->boardflags_lo & B43_BFL_XTAL_NOSLOW)
4531 hf |= B43_HF_DSCRQ; /* Disable slowclock requests from ucode. */
Michael Buesch1a777332009-03-04 16:41:10 +01004532#ifdef CONFIG_SSB_DRIVER_PCICORE
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004533 if (dev->dev->bus_type == B43_BUS_SSB &&
4534 dev->dev->sdev->bus->bustype == SSB_BUSTYPE_PCI &&
4535 dev->dev->sdev->bus->pcicore.dev->id.revision <= 10)
Michael Buesch88219052009-02-20 14:58:59 +01004536 hf |= B43_HF_PCISCW; /* PCI slow clock workaround. */
Michael Buesch1a777332009-03-04 16:41:10 +01004537#endif
Michael Buesch25d3ef52009-02-20 15:39:21 +01004538 hf &= ~B43_HF_SKCFPUP;
Michael Buesche4d6b792007-09-18 15:39:42 -04004539 b43_hf_write(dev, hf);
4540
Michael Buesch74cfdba2007-10-28 16:19:44 +01004541 b43_set_retry_limits(dev, B43_DEFAULT_SHORT_RETRY_LIMIT,
4542 B43_DEFAULT_LONG_RETRY_LIMIT);
Michael Buesche4d6b792007-09-18 15:39:42 -04004543 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_SFFBLIM, 3);
4544 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_LFFBLIM, 2);
4545
4546 /* Disable sending probe responses from firmware.
4547 * Setting the MaxTime to one usec will always trigger
4548 * a timeout, so we never send any probe resp.
4549 * A timeout of zero is infinite. */
4550 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRMAXTIME, 1);
4551
4552 b43_rate_memory_init(dev);
Michael Buesch5042c502008-04-05 15:05:00 +02004553 b43_set_phytxctl_defaults(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004554
4555 /* Minimum Contention Window */
Daniel Nguc5a079f2010-03-23 00:52:44 +13004556 if (phy->type == B43_PHYTYPE_B)
Michael Buesche4d6b792007-09-18 15:39:42 -04004557 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MINCONT, 0x1F);
Daniel Nguc5a079f2010-03-23 00:52:44 +13004558 else
Michael Buesche4d6b792007-09-18 15:39:42 -04004559 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MINCONT, 0xF);
Michael Buesche4d6b792007-09-18 15:39:42 -04004560 /* Maximum Contention Window */
4561 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MAXCONT, 0x3FF);
4562
Rafał Miłecki505fb012011-05-19 15:11:27 +02004563 if (b43_bus_host_is_pcmcia(dev->dev) ||
4564 b43_bus_host_is_sdio(dev->dev) ||
Linus Torvalds9e3bd912010-02-26 10:34:27 -08004565 dev->use_pio) {
Michael Buesch5100d5a2008-03-29 21:01:16 +01004566 dev->__using_pio_transfers = 1;
4567 err = b43_pio_init(dev);
4568 } else {
4569 dev->__using_pio_transfers = 0;
4570 err = b43_dma_init(dev);
4571 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004572 if (err)
4573 goto err_chip_exit;
Michael Buesch03b29772007-12-26 14:41:30 +01004574 b43_qos_init(dev);
Michael Bueschd59f7202008-04-03 18:56:19 +02004575 b43_set_synth_pu_delay(dev, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04004576 b43_bluetooth_coext_enable(dev);
4577
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004578 b43_bus_powerup(dev, !(sprom->boardflags_lo & B43_BFL_XTAL_NOSLOW));
Johannes Berg4150c572007-09-17 01:29:23 -04004579 b43_upload_card_macaddress(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004580 b43_security_init(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004581
Michael Buesch5ab95492009-09-10 20:31:46 +02004582 ieee80211_wake_queues(dev->wl->hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04004583
4584 b43_set_status(dev, B43_STAT_INITIALIZED);
4585
John W. Linville84c164a2010-08-06 15:31:45 -04004586 /* Register HW RNG driver */
4587 b43_rng_init(dev->wl);
4588
Larry Finger1a8d1222007-12-14 13:59:11 +01004589out:
Michael Buesche4d6b792007-09-18 15:39:42 -04004590 return err;
4591
Michael Bueschef1a6282008-08-27 18:53:02 +02004592err_chip_exit:
Michael Buesche4d6b792007-09-18 15:39:42 -04004593 b43_chip_exit(dev);
Michael Bueschef1a6282008-08-27 18:53:02 +02004594err_busdown:
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004595 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004596 B43_WARN_ON(b43_status(dev) != B43_STAT_UNINIT);
4597 return err;
4598}
4599
Michael Buesch40faacc2007-10-28 16:29:32 +01004600static int b43_op_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004601 struct ieee80211_vif *vif)
Michael Buesche4d6b792007-09-18 15:39:42 -04004602{
4603 struct b43_wl *wl = hw_to_b43_wl(hw);
4604 struct b43_wldev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004605 int err = -EOPNOTSUPP;
Johannes Berg4150c572007-09-17 01:29:23 -04004606
4607 /* TODO: allow WDS/AP devices to coexist */
4608
Johannes Berg1ed32e42009-12-23 13:15:45 +01004609 if (vif->type != NL80211_IFTYPE_AP &&
4610 vif->type != NL80211_IFTYPE_MESH_POINT &&
4611 vif->type != NL80211_IFTYPE_STATION &&
4612 vif->type != NL80211_IFTYPE_WDS &&
4613 vif->type != NL80211_IFTYPE_ADHOC)
Johannes Berg4150c572007-09-17 01:29:23 -04004614 return -EOPNOTSUPP;
Michael Buesche4d6b792007-09-18 15:39:42 -04004615
4616 mutex_lock(&wl->mutex);
Johannes Berg4150c572007-09-17 01:29:23 -04004617 if (wl->operating)
Michael Buesche4d6b792007-09-18 15:39:42 -04004618 goto out_mutex_unlock;
4619
Johannes Berg1ed32e42009-12-23 13:15:45 +01004620 b43dbg(wl, "Adding Interface type %d\n", vif->type);
Michael Buesche4d6b792007-09-18 15:39:42 -04004621
4622 dev = wl->current_dev;
Johannes Berg4150c572007-09-17 01:29:23 -04004623 wl->operating = 1;
Johannes Berg1ed32e42009-12-23 13:15:45 +01004624 wl->vif = vif;
4625 wl->if_type = vif->type;
4626 memcpy(wl->mac_addr, vif->addr, ETH_ALEN);
Michael Buesche4d6b792007-09-18 15:39:42 -04004627
Michael Buesche4d6b792007-09-18 15:39:42 -04004628 b43_adjust_opmode(dev);
Michael Bueschd59f7202008-04-03 18:56:19 +02004629 b43_set_pretbtt(dev);
4630 b43_set_synth_pu_delay(dev, 0);
Johannes Berg4150c572007-09-17 01:29:23 -04004631 b43_upload_card_macaddress(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004632
4633 err = 0;
Johannes Berg4150c572007-09-17 01:29:23 -04004634 out_mutex_unlock:
Michael Buesche4d6b792007-09-18 15:39:42 -04004635 mutex_unlock(&wl->mutex);
4636
4637 return err;
4638}
4639
Michael Buesch40faacc2007-10-28 16:29:32 +01004640static void b43_op_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004641 struct ieee80211_vif *vif)
Michael Buesche4d6b792007-09-18 15:39:42 -04004642{
4643 struct b43_wl *wl = hw_to_b43_wl(hw);
Johannes Berg4150c572007-09-17 01:29:23 -04004644 struct b43_wldev *dev = wl->current_dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004645
Johannes Berg1ed32e42009-12-23 13:15:45 +01004646 b43dbg(wl, "Removing Interface type %d\n", vif->type);
Michael Buesche4d6b792007-09-18 15:39:42 -04004647
4648 mutex_lock(&wl->mutex);
Johannes Berg4150c572007-09-17 01:29:23 -04004649
4650 B43_WARN_ON(!wl->operating);
Johannes Berg1ed32e42009-12-23 13:15:45 +01004651 B43_WARN_ON(wl->vif != vif);
Johannes Berg32bfd352007-12-19 01:31:26 +01004652 wl->vif = NULL;
Johannes Berg4150c572007-09-17 01:29:23 -04004653
4654 wl->operating = 0;
4655
Johannes Berg4150c572007-09-17 01:29:23 -04004656 b43_adjust_opmode(dev);
4657 memset(wl->mac_addr, 0, ETH_ALEN);
4658 b43_upload_card_macaddress(dev);
Johannes Berg4150c572007-09-17 01:29:23 -04004659
4660 mutex_unlock(&wl->mutex);
4661}
4662
Michael Buesch40faacc2007-10-28 16:29:32 +01004663static int b43_op_start(struct ieee80211_hw *hw)
Johannes Berg4150c572007-09-17 01:29:23 -04004664{
4665 struct b43_wl *wl = hw_to_b43_wl(hw);
4666 struct b43_wldev *dev = wl->current_dev;
4667 int did_init = 0;
WANG Cong923403b2007-10-16 14:29:38 -07004668 int err = 0;
Johannes Berg4150c572007-09-17 01:29:23 -04004669
Michael Buesch7be1bb62008-01-23 21:10:56 +01004670 /* Kill all old instance specific information to make sure
4671 * the card won't use it in the short timeframe between start
4672 * and mac80211 reconfiguring it. */
4673 memset(wl->bssid, 0, ETH_ALEN);
4674 memset(wl->mac_addr, 0, ETH_ALEN);
4675 wl->filter_flags = 0;
4676 wl->radiotap_enabled = 0;
Michael Buesche6f5b932008-03-05 21:18:49 +01004677 b43_qos_clear(wl);
Michael Buesch6b4bec012008-05-20 12:16:28 +02004678 wl->beacon0_uploaded = 0;
4679 wl->beacon1_uploaded = 0;
4680 wl->beacon_templates_virgin = 1;
Larry Fingerfd4973c2009-06-20 12:58:11 -05004681 wl->radio_enabled = 1;
Michael Buesch7be1bb62008-01-23 21:10:56 +01004682
Johannes Berg4150c572007-09-17 01:29:23 -04004683 mutex_lock(&wl->mutex);
4684
4685 if (b43_status(dev) < B43_STAT_INITIALIZED) {
4686 err = b43_wireless_core_init(dev);
Johannes Bergf41f3f32009-06-07 12:30:34 -05004687 if (err)
Johannes Berg4150c572007-09-17 01:29:23 -04004688 goto out_mutex_unlock;
4689 did_init = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04004690 }
4691
Johannes Berg4150c572007-09-17 01:29:23 -04004692 if (b43_status(dev) < B43_STAT_STARTED) {
4693 err = b43_wireless_core_start(dev);
4694 if (err) {
4695 if (did_init)
4696 b43_wireless_core_exit(dev);
4697 goto out_mutex_unlock;
4698 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004699 }
Johannes Berg4150c572007-09-17 01:29:23 -04004700
Johannes Bergf41f3f32009-06-07 12:30:34 -05004701 /* XXX: only do if device doesn't support rfkill irq */
4702 wiphy_rfkill_start_polling(hw->wiphy);
4703
Johannes Berg4150c572007-09-17 01:29:23 -04004704 out_mutex_unlock:
4705 mutex_unlock(&wl->mutex);
4706
4707 return err;
4708}
4709
Michael Buesch40faacc2007-10-28 16:29:32 +01004710static void b43_op_stop(struct ieee80211_hw *hw)
Johannes Berg4150c572007-09-17 01:29:23 -04004711{
4712 struct b43_wl *wl = hw_to_b43_wl(hw);
4713 struct b43_wldev *dev = wl->current_dev;
4714
Michael Buescha82d9922008-04-04 21:40:06 +02004715 cancel_work_sync(&(wl->beacon_update_trigger));
Larry Finger1a8d1222007-12-14 13:59:11 +01004716
Johannes Berg4150c572007-09-17 01:29:23 -04004717 mutex_lock(&wl->mutex);
Michael Buesch36dbd952009-09-04 22:51:29 +02004718 if (b43_status(dev) >= B43_STAT_STARTED) {
4719 dev = b43_wireless_core_stop(dev);
4720 if (!dev)
4721 goto out_unlock;
4722 }
Johannes Berg4150c572007-09-17 01:29:23 -04004723 b43_wireless_core_exit(dev);
Larry Fingerfd4973c2009-06-20 12:58:11 -05004724 wl->radio_enabled = 0;
Michael Buesch36dbd952009-09-04 22:51:29 +02004725
4726out_unlock:
Michael Buesche4d6b792007-09-18 15:39:42 -04004727 mutex_unlock(&wl->mutex);
Michael Buesch18c8ade2008-08-28 19:33:40 +02004728
4729 cancel_work_sync(&(wl->txpower_adjust_work));
Michael Buesche4d6b792007-09-18 15:39:42 -04004730}
4731
Johannes Berg17741cd2008-09-11 00:02:02 +02004732static int b43_op_beacon_set_tim(struct ieee80211_hw *hw,
4733 struct ieee80211_sta *sta, bool set)
Michael Buesche66fee62007-12-26 17:47:10 +01004734{
4735 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesche66fee62007-12-26 17:47:10 +01004736
Felix Fietkau8f611282009-11-07 18:37:37 +01004737 /* FIXME: add locking */
Johannes Berg9d139c82008-07-09 14:40:37 +02004738 b43_update_templates(wl);
Michael Buesche66fee62007-12-26 17:47:10 +01004739
4740 return 0;
4741}
4742
Johannes Berg38968d02008-02-25 16:27:50 +01004743static void b43_op_sta_notify(struct ieee80211_hw *hw,
4744 struct ieee80211_vif *vif,
4745 enum sta_notify_cmd notify_cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02004746 struct ieee80211_sta *sta)
Johannes Berg38968d02008-02-25 16:27:50 +01004747{
4748 struct b43_wl *wl = hw_to_b43_wl(hw);
4749
4750 B43_WARN_ON(!vif || wl->vif != vif);
4751}
4752
Michael Buesch25d3ef52009-02-20 15:39:21 +01004753static void b43_op_sw_scan_start_notifier(struct ieee80211_hw *hw)
4754{
4755 struct b43_wl *wl = hw_to_b43_wl(hw);
4756 struct b43_wldev *dev;
4757
4758 mutex_lock(&wl->mutex);
4759 dev = wl->current_dev;
4760 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED)) {
4761 /* Disable CFP update during scan on other channels. */
4762 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_SKCFPUP);
4763 }
4764 mutex_unlock(&wl->mutex);
4765}
4766
4767static void b43_op_sw_scan_complete_notifier(struct ieee80211_hw *hw)
4768{
4769 struct b43_wl *wl = hw_to_b43_wl(hw);
4770 struct b43_wldev *dev;
4771
4772 mutex_lock(&wl->mutex);
4773 dev = wl->current_dev;
4774 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED)) {
4775 /* Re-enable CFP update. */
4776 b43_hf_write(dev, b43_hf_read(dev) & ~B43_HF_SKCFPUP);
4777 }
4778 mutex_unlock(&wl->mutex);
4779}
4780
John W. Linville354b4f02010-04-29 15:56:06 -04004781static int b43_op_get_survey(struct ieee80211_hw *hw, int idx,
4782 struct survey_info *survey)
4783{
4784 struct b43_wl *wl = hw_to_b43_wl(hw);
4785 struct b43_wldev *dev = wl->current_dev;
4786 struct ieee80211_conf *conf = &hw->conf;
4787
4788 if (idx != 0)
4789 return -ENOENT;
4790
4791 survey->channel = conf->channel;
4792 survey->filled = SURVEY_INFO_NOISE_DBM;
4793 survey->noise = dev->stats.link_noise;
4794
4795 return 0;
4796}
4797
Michael Buesche4d6b792007-09-18 15:39:42 -04004798static const struct ieee80211_ops b43_hw_ops = {
Michael Buesch40faacc2007-10-28 16:29:32 +01004799 .tx = b43_op_tx,
4800 .conf_tx = b43_op_conf_tx,
4801 .add_interface = b43_op_add_interface,
4802 .remove_interface = b43_op_remove_interface,
4803 .config = b43_op_config,
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01004804 .bss_info_changed = b43_op_bss_info_changed,
Michael Buesch40faacc2007-10-28 16:29:32 +01004805 .configure_filter = b43_op_configure_filter,
4806 .set_key = b43_op_set_key,
gregor kowski035d0242009-08-19 22:35:45 +02004807 .update_tkip_key = b43_op_update_tkip_key,
Michael Buesch40faacc2007-10-28 16:29:32 +01004808 .get_stats = b43_op_get_stats,
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01004809 .get_tsf = b43_op_get_tsf,
4810 .set_tsf = b43_op_set_tsf,
Michael Buesch40faacc2007-10-28 16:29:32 +01004811 .start = b43_op_start,
4812 .stop = b43_op_stop,
Michael Buesche66fee62007-12-26 17:47:10 +01004813 .set_tim = b43_op_beacon_set_tim,
Johannes Berg38968d02008-02-25 16:27:50 +01004814 .sta_notify = b43_op_sta_notify,
Michael Buesch25d3ef52009-02-20 15:39:21 +01004815 .sw_scan_start = b43_op_sw_scan_start_notifier,
4816 .sw_scan_complete = b43_op_sw_scan_complete_notifier,
John W. Linville354b4f02010-04-29 15:56:06 -04004817 .get_survey = b43_op_get_survey,
Johannes Bergf41f3f32009-06-07 12:30:34 -05004818 .rfkill_poll = b43_rfkill_poll,
Michael Buesche4d6b792007-09-18 15:39:42 -04004819};
4820
4821/* Hard-reset the chip. Do not call this directly.
4822 * Use b43_controller_restart()
4823 */
4824static void b43_chip_reset(struct work_struct *work)
4825{
4826 struct b43_wldev *dev =
4827 container_of(work, struct b43_wldev, restart_work);
4828 struct b43_wl *wl = dev->wl;
4829 int err = 0;
4830 int prev_status;
4831
4832 mutex_lock(&wl->mutex);
4833
4834 prev_status = b43_status(dev);
4835 /* Bring the device down... */
Michael Buesch36dbd952009-09-04 22:51:29 +02004836 if (prev_status >= B43_STAT_STARTED) {
4837 dev = b43_wireless_core_stop(dev);
4838 if (!dev) {
4839 err = -ENODEV;
4840 goto out;
4841 }
4842 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004843 if (prev_status >= B43_STAT_INITIALIZED)
4844 b43_wireless_core_exit(dev);
4845
4846 /* ...and up again. */
4847 if (prev_status >= B43_STAT_INITIALIZED) {
4848 err = b43_wireless_core_init(dev);
4849 if (err)
4850 goto out;
4851 }
4852 if (prev_status >= B43_STAT_STARTED) {
4853 err = b43_wireless_core_start(dev);
4854 if (err) {
4855 b43_wireless_core_exit(dev);
4856 goto out;
4857 }
4858 }
Michael Buesch3bf0a322008-05-22 16:32:16 +02004859out:
4860 if (err)
4861 wl->current_dev = NULL; /* Failed to init the dev. */
Michael Buesche4d6b792007-09-18 15:39:42 -04004862 mutex_unlock(&wl->mutex);
4863 if (err)
4864 b43err(wl, "Controller restart FAILED\n");
4865 else
4866 b43info(wl, "Controller restarted\n");
4867}
4868
Michael Bueschbb1eeff2008-02-09 12:08:58 +01004869static int b43_setup_bands(struct b43_wldev *dev,
Michael Buesch96c755a2008-01-06 00:09:46 +01004870 bool have_2ghz_phy, bool have_5ghz_phy)
Michael Buesche4d6b792007-09-18 15:39:42 -04004871{
4872 struct ieee80211_hw *hw = dev->wl->hw;
Michael Buesche4d6b792007-09-18 15:39:42 -04004873
Michael Bueschbb1eeff2008-02-09 12:08:58 +01004874 if (have_2ghz_phy)
4875 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &b43_band_2GHz;
4876 if (dev->phy.type == B43_PHYTYPE_N) {
4877 if (have_5ghz_phy)
4878 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &b43_band_5GHz_nphy;
4879 } else {
4880 if (have_5ghz_phy)
4881 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &b43_band_5GHz_aphy;
4882 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004883
Michael Bueschbb1eeff2008-02-09 12:08:58 +01004884 dev->phy.supports_2ghz = have_2ghz_phy;
4885 dev->phy.supports_5ghz = have_5ghz_phy;
Michael Buesche4d6b792007-09-18 15:39:42 -04004886
4887 return 0;
4888}
4889
4890static void b43_wireless_core_detach(struct b43_wldev *dev)
4891{
4892 /* We release firmware that late to not be required to re-request
4893 * is all the time when we reinit the core. */
4894 b43_release_firmware(dev);
Michael Bueschfb111372008-09-02 13:00:34 +02004895 b43_phy_free(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004896}
4897
4898static int b43_wireless_core_attach(struct b43_wldev *dev)
4899{
4900 struct b43_wl *wl = dev->wl;
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004901 struct pci_dev *pdev = NULL;
Michael Buesche4d6b792007-09-18 15:39:42 -04004902 int err;
Michael Buesch96c755a2008-01-06 00:09:46 +01004903 bool have_2ghz_phy = 0, have_5ghz_phy = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04004904
4905 /* Do NOT do any device initialization here.
4906 * Do it in wireless_core_init() instead.
4907 * This function is for gathering basic information about the HW, only.
4908 * Also some structs may be set up here. But most likely you want to have
4909 * that in core_init(), too.
4910 */
4911
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004912#ifdef CONFIG_B43_SSB
4913 if (dev->dev->bus_type == B43_BUS_SSB &&
4914 dev->dev->sdev->bus->bustype == SSB_BUSTYPE_PCI)
4915 pdev = dev->dev->sdev->bus->host_pci;
4916#endif
4917
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004918 err = b43_bus_powerup(dev, 0);
Michael Buesche4d6b792007-09-18 15:39:42 -04004919 if (err) {
4920 b43err(wl, "Bus powerup failed\n");
4921 goto out;
4922 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004923
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004924 /* Get the PHY type. */
4925 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02004926#ifdef CONFIG_B43_BCMA
4927 case B43_BUS_BCMA:
4928 /* FIXME */
4929 have_2ghz_phy = 1;
4930 have_5ghz_phy = 0;
4931 break;
4932#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004933#ifdef CONFIG_B43_SSB
4934 case B43_BUS_SSB:
4935 if (dev->dev->core_rev >= 5) {
4936 u32 tmshigh = ssb_read32(dev->dev->sdev, SSB_TMSHIGH);
4937 have_2ghz_phy = !!(tmshigh & B43_TMSHIGH_HAVE_2GHZ_PHY);
4938 have_5ghz_phy = !!(tmshigh & B43_TMSHIGH_HAVE_5GHZ_PHY);
4939 } else
4940 B43_WARN_ON(1);
4941 break;
4942#endif
4943 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004944
Michael Buesch96c755a2008-01-06 00:09:46 +01004945 dev->phy.gmode = have_2ghz_phy;
Larry Fingerfd4973c2009-06-20 12:58:11 -05004946 dev->phy.radio_on = 1;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02004947 b43_wireless_core_reset(dev, dev->phy.gmode);
Michael Buesche4d6b792007-09-18 15:39:42 -04004948
4949 err = b43_phy_versioning(dev);
4950 if (err)
Michael Buesch21954c32007-09-27 15:31:40 +02004951 goto err_powerdown;
Michael Buesche4d6b792007-09-18 15:39:42 -04004952 /* Check if this device supports multiband. */
4953 if (!pdev ||
4954 (pdev->device != 0x4312 &&
4955 pdev->device != 0x4319 && pdev->device != 0x4324)) {
4956 /* No multiband support. */
Michael Buesch96c755a2008-01-06 00:09:46 +01004957 have_2ghz_phy = 0;
4958 have_5ghz_phy = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04004959 switch (dev->phy.type) {
4960 case B43_PHYTYPE_A:
Michael Buesch96c755a2008-01-06 00:09:46 +01004961 have_5ghz_phy = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04004962 break;
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02004963 case B43_PHYTYPE_LP: //FIXME not always!
Gábor Stefanik86b28922009-08-16 20:22:41 +02004964#if 0 //FIXME enabling 5GHz causes a NULL pointer dereference
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02004965 have_5ghz_phy = 1;
Gábor Stefanik86b28922009-08-16 20:22:41 +02004966#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04004967 case B43_PHYTYPE_G:
Michael Buesch96c755a2008-01-06 00:09:46 +01004968 case B43_PHYTYPE_N:
4969 have_2ghz_phy = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04004970 break;
4971 default:
4972 B43_WARN_ON(1);
4973 }
4974 }
Michael Buesch96c755a2008-01-06 00:09:46 +01004975 if (dev->phy.type == B43_PHYTYPE_A) {
4976 /* FIXME */
4977 b43err(wl, "IEEE 802.11a devices are unsupported\n");
4978 err = -EOPNOTSUPP;
4979 goto err_powerdown;
4980 }
Michael Buesch2e35af12008-04-27 19:06:18 +02004981 if (1 /* disable A-PHY */) {
4982 /* FIXME: For now we disable the A-PHY on multi-PHY devices. */
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02004983 if (dev->phy.type != B43_PHYTYPE_N &&
4984 dev->phy.type != B43_PHYTYPE_LP) {
Michael Buesch2e35af12008-04-27 19:06:18 +02004985 have_2ghz_phy = 1;
4986 have_5ghz_phy = 0;
4987 }
4988 }
4989
Michael Bueschfb111372008-09-02 13:00:34 +02004990 err = b43_phy_allocate(dev);
4991 if (err)
4992 goto err_powerdown;
4993
Michael Buesch96c755a2008-01-06 00:09:46 +01004994 dev->phy.gmode = have_2ghz_phy;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02004995 b43_wireless_core_reset(dev, dev->phy.gmode);
Michael Buesche4d6b792007-09-18 15:39:42 -04004996
4997 err = b43_validate_chipaccess(dev);
4998 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02004999 goto err_phy_free;
Michael Bueschbb1eeff2008-02-09 12:08:58 +01005000 err = b43_setup_bands(dev, have_2ghz_phy, have_5ghz_phy);
Michael Buesche4d6b792007-09-18 15:39:42 -04005001 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02005002 goto err_phy_free;
Michael Buesche4d6b792007-09-18 15:39:42 -04005003
5004 /* Now set some default "current_dev" */
5005 if (!wl->current_dev)
5006 wl->current_dev = dev;
5007 INIT_WORK(&dev->restart_work, b43_chip_reset);
5008
Michael Bueschcb24f572008-09-03 12:12:20 +02005009 dev->phy.ops->switch_analog(dev, 0);
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02005010 b43_device_disable(dev, 0);
5011 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005012
5013out:
5014 return err;
5015
Michael Bueschfb111372008-09-02 13:00:34 +02005016err_phy_free:
5017 b43_phy_free(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005018err_powerdown:
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02005019 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005020 return err;
5021}
5022
Rafał Miłecki482f0532011-05-18 02:06:36 +02005023static void b43_one_core_detach(struct b43_bus_dev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04005024{
5025 struct b43_wldev *wldev;
5026 struct b43_wl *wl;
5027
Michael Buesch3bf0a322008-05-22 16:32:16 +02005028 /* Do not cancel ieee80211-workqueue based work here.
5029 * See comment in b43_remove(). */
5030
Rafał Miłecki74abacb2011-07-06 15:45:28 +02005031 wldev = b43_bus_get_wldev(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005032 wl = wldev->wl;
Michael Buesche4d6b792007-09-18 15:39:42 -04005033 b43_debugfs_remove_device(wldev);
5034 b43_wireless_core_detach(wldev);
5035 list_del(&wldev->list);
5036 wl->nr_devs--;
Rafał Miłecki74abacb2011-07-06 15:45:28 +02005037 b43_bus_set_wldev(dev, NULL);
Michael Buesche4d6b792007-09-18 15:39:42 -04005038 kfree(wldev);
5039}
5040
Rafał Miłecki482f0532011-05-18 02:06:36 +02005041static int b43_one_core_attach(struct b43_bus_dev *dev, struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04005042{
5043 struct b43_wldev *wldev;
Michael Buesche4d6b792007-09-18 15:39:42 -04005044 int err = -ENOMEM;
5045
Michael Buesche4d6b792007-09-18 15:39:42 -04005046 wldev = kzalloc(sizeof(*wldev), GFP_KERNEL);
5047 if (!wldev)
5048 goto out;
5049
Linus Torvalds9e3bd912010-02-26 10:34:27 -08005050 wldev->use_pio = b43_modparam_pio;
Rafał Miłecki482f0532011-05-18 02:06:36 +02005051 wldev->dev = dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04005052 wldev->wl = wl;
5053 b43_set_status(wldev, B43_STAT_UNINIT);
5054 wldev->bad_frames_preempt = modparam_bad_frames_preempt;
Michael Buesche4d6b792007-09-18 15:39:42 -04005055 INIT_LIST_HEAD(&wldev->list);
5056
5057 err = b43_wireless_core_attach(wldev);
5058 if (err)
5059 goto err_kfree_wldev;
5060
5061 list_add(&wldev->list, &wl->devlist);
5062 wl->nr_devs++;
Rafał Miłecki74abacb2011-07-06 15:45:28 +02005063 b43_bus_set_wldev(dev, wldev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005064 b43_debugfs_add_device(wldev);
5065
5066 out:
5067 return err;
5068
5069 err_kfree_wldev:
5070 kfree(wldev);
5071 return err;
5072}
5073
Michael Buesch9fc38452008-04-19 16:53:00 +02005074#define IS_PDEV(pdev, _vendor, _device, _subvendor, _subdevice) ( \
5075 (pdev->vendor == PCI_VENDOR_ID_##_vendor) && \
5076 (pdev->device == _device) && \
5077 (pdev->subsystem_vendor == PCI_VENDOR_ID_##_subvendor) && \
5078 (pdev->subsystem_device == _subdevice) )
5079
Michael Buesche4d6b792007-09-18 15:39:42 -04005080static void b43_sprom_fixup(struct ssb_bus *bus)
5081{
Michael Buesch1855ba72008-04-18 20:51:41 +02005082 struct pci_dev *pdev;
5083
Michael Buesche4d6b792007-09-18 15:39:42 -04005084 /* boardflags workarounds */
5085 if (bus->boardinfo.vendor == SSB_BOARDVENDOR_DELL &&
5086 bus->chip_id == 0x4301 && bus->boardinfo.rev == 0x74)
Larry Finger95de2842007-11-09 16:57:18 -06005087 bus->sprom.boardflags_lo |= B43_BFL_BTCOEXIST;
Michael Buesche4d6b792007-09-18 15:39:42 -04005088 if (bus->boardinfo.vendor == PCI_VENDOR_ID_APPLE &&
5089 bus->boardinfo.type == 0x4E && bus->boardinfo.rev > 0x40)
Larry Finger95de2842007-11-09 16:57:18 -06005090 bus->sprom.boardflags_lo |= B43_BFL_PACTRL;
Michael Buesch1855ba72008-04-18 20:51:41 +02005091 if (bus->bustype == SSB_BUSTYPE_PCI) {
5092 pdev = bus->host_pci;
Michael Buesch9fc38452008-04-19 16:53:00 +02005093 if (IS_PDEV(pdev, BROADCOM, 0x4318, ASUSTEK, 0x100F) ||
Larry Finger430cd472008-08-14 18:57:11 -05005094 IS_PDEV(pdev, BROADCOM, 0x4320, DELL, 0x0003) ||
Larry Finger570bdfb2008-09-26 08:23:00 -05005095 IS_PDEV(pdev, BROADCOM, 0x4320, HP, 0x12f8) ||
Michael Buesch9fc38452008-04-19 16:53:00 +02005096 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0015) ||
Larry Fingera58d4522008-08-10 10:19:33 -05005097 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0014) ||
Larry Finger3bb91bf2008-09-19 14:47:38 -05005098 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0013) ||
5099 IS_PDEV(pdev, BROADCOM, 0x4320, MOTOROLA, 0x7010))
Michael Buesch1855ba72008-04-18 20:51:41 +02005100 bus->sprom.boardflags_lo &= ~B43_BFL_BTCOEXIST;
5101 }
Michael Buesche4d6b792007-09-18 15:39:42 -04005102}
5103
Rafał Miłecki482f0532011-05-18 02:06:36 +02005104static void b43_wireless_exit(struct b43_bus_dev *dev, struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04005105{
5106 struct ieee80211_hw *hw = wl->hw;
5107
Rafał Miłecki482f0532011-05-18 02:06:36 +02005108 ssb_set_devtypedata(dev->sdev, NULL);
Michael Buesche4d6b792007-09-18 15:39:42 -04005109 ieee80211_free_hw(hw);
5110}
5111
Rafał Miłeckid1507052011-07-05 23:54:07 +02005112static struct b43_wl *b43_wireless_init(struct b43_bus_dev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04005113{
Rafał Miłeckid1507052011-07-05 23:54:07 +02005114 struct ssb_sprom *sprom = dev->bus_sprom;
Michael Buesche4d6b792007-09-18 15:39:42 -04005115 struct ieee80211_hw *hw;
5116 struct b43_wl *wl;
Michael Buesche4d6b792007-09-18 15:39:42 -04005117
5118 hw = ieee80211_alloc_hw(sizeof(*wl), &b43_hw_ops);
5119 if (!hw) {
5120 b43err(NULL, "Could not allocate ieee80211 device\n");
Rafał Miłecki0355a342011-05-17 14:00:01 +02005121 return ERR_PTR(-ENOMEM);
Michael Buesche4d6b792007-09-18 15:39:42 -04005122 }
Michael Buesch403a3a12009-06-08 21:04:57 +02005123 wl = hw_to_b43_wl(hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04005124
5125 /* fill hw info */
Johannes Berg605a0bd2008-07-15 10:10:01 +02005126 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
John W. Linvillef5c044e2010-04-30 15:37:00 -04005127 IEEE80211_HW_SIGNAL_DBM;
Bruno Randolf566bfe52008-05-08 19:15:40 +02005128
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07005129 hw->wiphy->interface_modes =
5130 BIT(NL80211_IFTYPE_AP) |
5131 BIT(NL80211_IFTYPE_MESH_POINT) |
5132 BIT(NL80211_IFTYPE_STATION) |
5133 BIT(NL80211_IFTYPE_WDS) |
5134 BIT(NL80211_IFTYPE_ADHOC);
5135
Michael Buesch403a3a12009-06-08 21:04:57 +02005136 hw->queues = modparam_qos ? 4 : 1;
5137 wl->mac80211_initially_registered_queues = hw->queues;
Johannes Berge6a98542008-10-21 12:40:02 +02005138 hw->max_rates = 2;
Michael Buesche4d6b792007-09-18 15:39:42 -04005139 SET_IEEE80211_DEV(hw, dev->dev);
Larry Finger95de2842007-11-09 16:57:18 -06005140 if (is_valid_ether_addr(sprom->et1mac))
5141 SET_IEEE80211_PERM_ADDR(hw, sprom->et1mac);
Michael Buesche4d6b792007-09-18 15:39:42 -04005142 else
Larry Finger95de2842007-11-09 16:57:18 -06005143 SET_IEEE80211_PERM_ADDR(hw, sprom->il0mac);
Michael Buesche4d6b792007-09-18 15:39:42 -04005144
Michael Buesch403a3a12009-06-08 21:04:57 +02005145 /* Initialize struct b43_wl */
Michael Buesche4d6b792007-09-18 15:39:42 -04005146 wl->hw = hw;
Michael Buesche4d6b792007-09-18 15:39:42 -04005147 mutex_init(&wl->mutex);
Michael Buesch36dbd952009-09-04 22:51:29 +02005148 spin_lock_init(&wl->hardirq_lock);
Michael Buesche4d6b792007-09-18 15:39:42 -04005149 INIT_LIST_HEAD(&wl->devlist);
Michael Buescha82d9922008-04-04 21:40:06 +02005150 INIT_WORK(&wl->beacon_update_trigger, b43_beacon_update_trigger_work);
Michael Buesch18c8ade2008-08-28 19:33:40 +02005151 INIT_WORK(&wl->txpower_adjust_work, b43_phy_txpower_adjust_work);
Michael Bueschf5d40ee2009-09-04 22:53:18 +02005152 INIT_WORK(&wl->tx_work, b43_tx_work);
5153 skb_queue_head_init(&wl->tx_queue);
Michael Buesche4d6b792007-09-18 15:39:42 -04005154
Michael Buesch060210f2009-01-25 15:49:59 +01005155 b43info(wl, "Broadcom %04X WLAN found (core revision %u)\n",
Rafał Miłeckid1507052011-07-05 23:54:07 +02005156 dev->chip_id, dev->core_rev);
Rafał Miłecki0355a342011-05-17 14:00:01 +02005157 return wl;
Michael Buesche4d6b792007-09-18 15:39:42 -04005158}
5159
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005160#ifdef CONFIG_B43_BCMA
5161static int b43_bcma_probe(struct bcma_device *core)
5162{
Rafał Miłecki397915c2011-07-06 19:03:46 +02005163 struct b43_bus_dev *dev;
5164
5165 dev = b43_bus_dev_bcma_init(core);
5166 if (!dev)
5167 return -ENODEV;
5168
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005169 b43err(NULL, "BCMA is not supported yet!");
Rafał Miłecki397915c2011-07-06 19:03:46 +02005170 kfree(dev);
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005171 return -EOPNOTSUPP;
5172}
5173
5174static void b43_bcma_remove(struct bcma_device *core)
5175{
5176 /* TODO */
5177}
5178
5179static struct bcma_driver b43_bcma_driver = {
5180 .name = KBUILD_MODNAME,
5181 .id_table = b43_bcma_tbl,
5182 .probe = b43_bcma_probe,
5183 .remove = b43_bcma_remove,
5184};
5185#endif
5186
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005187#ifdef CONFIG_B43_SSB
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005188static
5189int b43_ssb_probe(struct ssb_device *sdev, const struct ssb_device_id *id)
Michael Buesche4d6b792007-09-18 15:39:42 -04005190{
Rafał Miłecki482f0532011-05-18 02:06:36 +02005191 struct b43_bus_dev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04005192 struct b43_wl *wl;
5193 int err;
5194 int first = 0;
5195
Rafał Miłecki482f0532011-05-18 02:06:36 +02005196 dev = b43_bus_dev_ssb_init(sdev);
Dan Carpenter5b49b352011-06-09 10:09:34 +03005197 if (!dev)
5198 return -ENOMEM;
Rafał Miłecki482f0532011-05-18 02:06:36 +02005199
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005200 wl = ssb_get_devtypedata(sdev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005201 if (!wl) {
5202 /* Probing the first core. Must setup common struct b43_wl */
5203 first = 1;
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005204 b43_sprom_fixup(sdev->bus);
Rafał Miłeckid1507052011-07-05 23:54:07 +02005205 wl = b43_wireless_init(dev);
Rafał Miłecki0355a342011-05-17 14:00:01 +02005206 if (IS_ERR(wl)) {
5207 err = PTR_ERR(wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005208 goto out;
Rafał Miłecki0355a342011-05-17 14:00:01 +02005209 }
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005210 ssb_set_devtypedata(sdev, wl);
5211 B43_WARN_ON(ssb_get_devtypedata(sdev) != wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005212 }
Rafał Miłecki482f0532011-05-18 02:06:36 +02005213 err = b43_one_core_attach(dev, wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005214 if (err)
5215 goto err_wireless_exit;
5216
5217 if (first) {
5218 err = ieee80211_register_hw(wl->hw);
5219 if (err)
5220 goto err_one_core_detach;
Michael Buescha78b3bb2009-09-11 21:44:05 +02005221 b43_leds_register(wl->current_dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005222 }
5223
5224 out:
5225 return err;
5226
5227 err_one_core_detach:
Rafał Miłecki482f0532011-05-18 02:06:36 +02005228 b43_one_core_detach(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005229 err_wireless_exit:
5230 if (first)
Rafał Miłecki482f0532011-05-18 02:06:36 +02005231 b43_wireless_exit(dev, wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005232 return err;
5233}
5234
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005235static void b43_ssb_remove(struct ssb_device *sdev)
Michael Buesche4d6b792007-09-18 15:39:42 -04005236{
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005237 struct b43_wl *wl = ssb_get_devtypedata(sdev);
5238 struct b43_wldev *wldev = ssb_get_drvdata(sdev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005239
Michael Buesch3bf0a322008-05-22 16:32:16 +02005240 /* We must cancel any work here before unregistering from ieee80211,
5241 * as the ieee80211 unreg will destroy the workqueue. */
5242 cancel_work_sync(&wldev->restart_work);
5243
Michael Buesche4d6b792007-09-18 15:39:42 -04005244 B43_WARN_ON(!wl);
Michael Buesch403a3a12009-06-08 21:04:57 +02005245 if (wl->current_dev == wldev) {
5246 /* Restore the queues count before unregistering, because firmware detect
5247 * might have modified it. Restoring is important, so the networking
5248 * stack can properly free resources. */
5249 wl->hw->queues = wl->mac80211_initially_registered_queues;
Albert Herranz82905ac2009-09-16 00:26:19 +02005250 b43_leds_stop(wldev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005251 ieee80211_unregister_hw(wl->hw);
Michael Buesch403a3a12009-06-08 21:04:57 +02005252 }
Michael Buesche4d6b792007-09-18 15:39:42 -04005253
Rafał Miłecki482f0532011-05-18 02:06:36 +02005254 b43_one_core_detach(wldev->dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005255
5256 if (list_empty(&wl->devlist)) {
Michael Buesch727c9882009-10-01 15:54:32 +02005257 b43_leds_unregister(wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005258 /* Last core on the chip unregistered.
5259 * We can destroy common struct b43_wl.
5260 */
Rafał Miłecki482f0532011-05-18 02:06:36 +02005261 b43_wireless_exit(wldev->dev, wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005262 }
5263}
5264
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005265static struct ssb_driver b43_ssb_driver = {
5266 .name = KBUILD_MODNAME,
5267 .id_table = b43_ssb_tbl,
5268 .probe = b43_ssb_probe,
5269 .remove = b43_ssb_remove,
5270};
5271#endif /* CONFIG_B43_SSB */
5272
Michael Buesche4d6b792007-09-18 15:39:42 -04005273/* Perform a hardware reset. This can be called from any context. */
5274void b43_controller_restart(struct b43_wldev *dev, const char *reason)
5275{
5276 /* Must avoid requeueing, if we are in shutdown. */
5277 if (b43_status(dev) < B43_STAT_INITIALIZED)
5278 return;
5279 b43info(dev->wl, "Controller RESET (%s) ...\n", reason);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04005280 ieee80211_queue_work(dev->wl->hw, &dev->restart_work);
Michael Buesche4d6b792007-09-18 15:39:42 -04005281}
5282
Michael Buesch26bc7832008-02-09 00:18:35 +01005283static void b43_print_driverinfo(void)
5284{
5285 const char *feat_pci = "", *feat_pcmcia = "", *feat_nphy = "",
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005286 *feat_leds = "", *feat_sdio = "";
Michael Buesch26bc7832008-02-09 00:18:35 +01005287
5288#ifdef CONFIG_B43_PCI_AUTOSELECT
5289 feat_pci = "P";
5290#endif
5291#ifdef CONFIG_B43_PCMCIA
5292 feat_pcmcia = "M";
5293#endif
Rafał Miłecki692d2c02010-12-07 21:56:00 +01005294#ifdef CONFIG_B43_PHY_N
Michael Buesch26bc7832008-02-09 00:18:35 +01005295 feat_nphy = "N";
5296#endif
5297#ifdef CONFIG_B43_LEDS
5298 feat_leds = "L";
5299#endif
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005300#ifdef CONFIG_B43_SDIO
5301 feat_sdio = "S";
5302#endif
Michael Buesch26bc7832008-02-09 00:18:35 +01005303 printk(KERN_INFO "Broadcom 43xx driver loaded "
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005304 "[ Features: %s%s%s%s%s, Firmware-ID: "
Michael Buesch26bc7832008-02-09 00:18:35 +01005305 B43_SUPPORTED_FIRMWARE_ID " ]\n",
5306 feat_pci, feat_pcmcia, feat_nphy,
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005307 feat_leds, feat_sdio);
Michael Buesch26bc7832008-02-09 00:18:35 +01005308}
5309
Michael Buesche4d6b792007-09-18 15:39:42 -04005310static int __init b43_init(void)
5311{
5312 int err;
5313
5314 b43_debugfs_init();
5315 err = b43_pcmcia_init();
5316 if (err)
5317 goto err_dfs_exit;
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005318 err = b43_sdio_init();
Michael Buesche4d6b792007-09-18 15:39:42 -04005319 if (err)
5320 goto err_pcmcia_exit;
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005321#ifdef CONFIG_B43_BCMA
5322 err = bcma_driver_register(&b43_bcma_driver);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005323 if (err)
5324 goto err_sdio_exit;
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005325#endif
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005326#ifdef CONFIG_B43_SSB
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005327 err = ssb_driver_register(&b43_ssb_driver);
5328 if (err)
5329 goto err_bcma_driver_exit;
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005330#endif
Michael Buesch26bc7832008-02-09 00:18:35 +01005331 b43_print_driverinfo();
Michael Buesche4d6b792007-09-18 15:39:42 -04005332
5333 return err;
5334
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005335#ifdef CONFIG_B43_SSB
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005336err_bcma_driver_exit:
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005337#endif
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005338#ifdef CONFIG_B43_BCMA
5339 bcma_driver_unregister(&b43_bcma_driver);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005340err_sdio_exit:
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005341#endif
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005342 b43_sdio_exit();
Michael Buesche4d6b792007-09-18 15:39:42 -04005343err_pcmcia_exit:
5344 b43_pcmcia_exit();
5345err_dfs_exit:
5346 b43_debugfs_exit();
5347 return err;
5348}
5349
5350static void __exit b43_exit(void)
5351{
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005352#ifdef CONFIG_B43_SSB
Michael Buesche4d6b792007-09-18 15:39:42 -04005353 ssb_driver_unregister(&b43_ssb_driver);
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005354#endif
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005355#ifdef CONFIG_B43_BCMA
5356 bcma_driver_unregister(&b43_bcma_driver);
5357#endif
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005358 b43_sdio_exit();
Michael Buesche4d6b792007-09-18 15:39:42 -04005359 b43_pcmcia_exit();
5360 b43_debugfs_exit();
5361}
5362
5363module_init(b43_init)
5364module_exit(b43_exit)