blob: 56fa3a3648c43dbc32a015ece857a0f3f5bcaeac [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 Büscheb032b92011-07-04 20:50:05 +02007 Copyright (c) 2005-2009 Michael Buesch <m@bues.ch>
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>
Rafał Miłecki108f4f32011-09-03 21:01:02 +020010 Copyright (c) 2010-2011 Rafał Miłecki <zajec5@gmail.com>
Michael Buesche4d6b792007-09-18 15:39:42 -040011
Albert Herranz3dbba8e2009-09-10 19:34:49 +020012 SDIO support
13 Copyright (c) 2009 Albert Herranz <albert_herranz@yahoo.es>
14
Michael Buesche4d6b792007-09-18 15:39:42 -040015 Some parts of the code in this file are derived from the ipw2200
16 driver Copyright(c) 2003 - 2004 Intel Corporation.
17
18 This program is free software; you can redistribute it and/or modify
19 it under the terms of the GNU General Public License as published by
20 the Free Software Foundation; either version 2 of the License, or
21 (at your option) any later version.
22
23 This program is distributed in the hope that it will be useful,
24 but WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 GNU General Public License for more details.
27
28 You should have received a copy of the GNU General Public License
29 along with this program; see the file COPYING. If not, write to
30 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
31 Boston, MA 02110-1301, USA.
32
33*/
34
35#include <linux/delay.h>
36#include <linux/init.h>
37#include <linux/moduleparam.h>
38#include <linux/if_arp.h>
39#include <linux/etherdevice.h>
Michael Buesche4d6b792007-09-18 15:39:42 -040040#include <linux/firmware.h>
Michael Buesche4d6b792007-09-18 15:39:42 -040041#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");
Rafał Miłecki108f4f32011-09-03 21:01:02 +020068MODULE_AUTHOR("Rafał Miłecki");
Michael Buesche4d6b792007-09-18 15:39:42 -040069MODULE_LICENSE("GPL");
70
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
Rafał Miłeckidf766262011-08-16 12:14:07 +0200112static int b43_modparam_pio = 0;
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[] = {
Hauke Mehrtensc027ed42011-07-23 13:57:34 +0200118 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x11, BCMA_ANY_CLASS),
Rafał Miłecki3c65ab62011-06-02 09:56:04 +0200119 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x17, BCMA_ANY_CLASS),
120 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x18, BCMA_ANY_CLASS),
121 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x1D, BCMA_ANY_CLASS),
122 BCMA_CORETABLE_END
123};
124MODULE_DEVICE_TABLE(bcma, b43_bcma_tbl);
125#endif
126
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +0200127#ifdef CONFIG_B43_SSB
Michael Buesche4d6b792007-09-18 15:39:42 -0400128static const struct ssb_device_id b43_ssb_tbl[] = {
129 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 5),
130 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 6),
131 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 7),
132 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 9),
133 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 10),
Michael Bueschd5c71e42008-01-04 17:06:29 +0100134 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 11),
Rafał Miłecki003d6d22010-01-15 12:10:53 +0100135 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 12),
Larry Finger013978b2007-11-26 10:29:47 -0600136 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 13),
Michael Buesch6b1c7c62008-12-25 00:39:28 +0100137 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 15),
Johannes Berg92d61282008-12-24 12:44:09 +0100138 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 16),
Michael Buesche4d6b792007-09-18 15:39:42 -0400139 SSB_DEVTABLE_END
140};
Michael Buesche4d6b792007-09-18 15:39:42 -0400141MODULE_DEVICE_TABLE(ssb, b43_ssb_tbl);
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +0200142#endif
Michael Buesche4d6b792007-09-18 15:39:42 -0400143
144/* Channel and ratetables are shared for all devices.
145 * They can't be const, because ieee80211 puts some precalculated
146 * data in there. This data is the same for all devices, so we don't
147 * get concurrency issues */
148#define RATETAB_ENT(_rateid, _flags) \
Johannes Berg8318d782008-01-24 19:38:38 +0100149 { \
150 .bitrate = B43_RATE_TO_BASE100KBPS(_rateid), \
151 .hw_value = (_rateid), \
152 .flags = (_flags), \
Michael Buesche4d6b792007-09-18 15:39:42 -0400153 }
Johannes Berg8318d782008-01-24 19:38:38 +0100154
155/*
156 * NOTE: When changing this, sync with xmit.c's
157 * b43_plcp_get_bitrate_idx_* functions!
158 */
Michael Buesche4d6b792007-09-18 15:39:42 -0400159static struct ieee80211_rate __b43_ratetable[] = {
Johannes Berg8318d782008-01-24 19:38:38 +0100160 RATETAB_ENT(B43_CCK_RATE_1MB, 0),
161 RATETAB_ENT(B43_CCK_RATE_2MB, IEEE80211_RATE_SHORT_PREAMBLE),
162 RATETAB_ENT(B43_CCK_RATE_5MB, IEEE80211_RATE_SHORT_PREAMBLE),
163 RATETAB_ENT(B43_CCK_RATE_11MB, IEEE80211_RATE_SHORT_PREAMBLE),
164 RATETAB_ENT(B43_OFDM_RATE_6MB, 0),
165 RATETAB_ENT(B43_OFDM_RATE_9MB, 0),
166 RATETAB_ENT(B43_OFDM_RATE_12MB, 0),
167 RATETAB_ENT(B43_OFDM_RATE_18MB, 0),
168 RATETAB_ENT(B43_OFDM_RATE_24MB, 0),
169 RATETAB_ENT(B43_OFDM_RATE_36MB, 0),
170 RATETAB_ENT(B43_OFDM_RATE_48MB, 0),
171 RATETAB_ENT(B43_OFDM_RATE_54MB, 0),
Michael Buesche4d6b792007-09-18 15:39:42 -0400172};
173
174#define b43_a_ratetable (__b43_ratetable + 4)
175#define b43_a_ratetable_size 8
176#define b43_b_ratetable (__b43_ratetable + 0)
177#define b43_b_ratetable_size 4
178#define b43_g_ratetable (__b43_ratetable + 0)
179#define b43_g_ratetable_size 12
180
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100181#define CHAN4G(_channel, _freq, _flags) { \
182 .band = IEEE80211_BAND_2GHZ, \
183 .center_freq = (_freq), \
184 .hw_value = (_channel), \
185 .flags = (_flags), \
186 .max_antenna_gain = 0, \
187 .max_power = 30, \
188}
Michael Buesch96c755a2008-01-06 00:09:46 +0100189static struct ieee80211_channel b43_2ghz_chantable[] = {
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100190 CHAN4G(1, 2412, 0),
191 CHAN4G(2, 2417, 0),
192 CHAN4G(3, 2422, 0),
193 CHAN4G(4, 2427, 0),
194 CHAN4G(5, 2432, 0),
195 CHAN4G(6, 2437, 0),
196 CHAN4G(7, 2442, 0),
197 CHAN4G(8, 2447, 0),
198 CHAN4G(9, 2452, 0),
199 CHAN4G(10, 2457, 0),
200 CHAN4G(11, 2462, 0),
201 CHAN4G(12, 2467, 0),
202 CHAN4G(13, 2472, 0),
203 CHAN4G(14, 2484, 0),
204};
205#undef CHAN4G
206
207#define CHAN5G(_channel, _flags) { \
208 .band = IEEE80211_BAND_5GHZ, \
209 .center_freq = 5000 + (5 * (_channel)), \
210 .hw_value = (_channel), \
211 .flags = (_flags), \
212 .max_antenna_gain = 0, \
213 .max_power = 30, \
214}
215static struct ieee80211_channel b43_5ghz_nphy_chantable[] = {
216 CHAN5G(32, 0), CHAN5G(34, 0),
217 CHAN5G(36, 0), CHAN5G(38, 0),
218 CHAN5G(40, 0), CHAN5G(42, 0),
219 CHAN5G(44, 0), CHAN5G(46, 0),
220 CHAN5G(48, 0), CHAN5G(50, 0),
221 CHAN5G(52, 0), CHAN5G(54, 0),
222 CHAN5G(56, 0), CHAN5G(58, 0),
223 CHAN5G(60, 0), CHAN5G(62, 0),
224 CHAN5G(64, 0), CHAN5G(66, 0),
225 CHAN5G(68, 0), CHAN5G(70, 0),
226 CHAN5G(72, 0), CHAN5G(74, 0),
227 CHAN5G(76, 0), CHAN5G(78, 0),
228 CHAN5G(80, 0), CHAN5G(82, 0),
229 CHAN5G(84, 0), CHAN5G(86, 0),
230 CHAN5G(88, 0), CHAN5G(90, 0),
231 CHAN5G(92, 0), CHAN5G(94, 0),
232 CHAN5G(96, 0), CHAN5G(98, 0),
233 CHAN5G(100, 0), CHAN5G(102, 0),
234 CHAN5G(104, 0), CHAN5G(106, 0),
235 CHAN5G(108, 0), CHAN5G(110, 0),
236 CHAN5G(112, 0), CHAN5G(114, 0),
237 CHAN5G(116, 0), CHAN5G(118, 0),
238 CHAN5G(120, 0), CHAN5G(122, 0),
239 CHAN5G(124, 0), CHAN5G(126, 0),
240 CHAN5G(128, 0), CHAN5G(130, 0),
241 CHAN5G(132, 0), CHAN5G(134, 0),
242 CHAN5G(136, 0), CHAN5G(138, 0),
243 CHAN5G(140, 0), CHAN5G(142, 0),
244 CHAN5G(144, 0), CHAN5G(145, 0),
245 CHAN5G(146, 0), CHAN5G(147, 0),
246 CHAN5G(148, 0), CHAN5G(149, 0),
247 CHAN5G(150, 0), CHAN5G(151, 0),
248 CHAN5G(152, 0), CHAN5G(153, 0),
249 CHAN5G(154, 0), CHAN5G(155, 0),
250 CHAN5G(156, 0), CHAN5G(157, 0),
251 CHAN5G(158, 0), CHAN5G(159, 0),
252 CHAN5G(160, 0), CHAN5G(161, 0),
253 CHAN5G(162, 0), CHAN5G(163, 0),
254 CHAN5G(164, 0), CHAN5G(165, 0),
255 CHAN5G(166, 0), CHAN5G(168, 0),
256 CHAN5G(170, 0), CHAN5G(172, 0),
257 CHAN5G(174, 0), CHAN5G(176, 0),
258 CHAN5G(178, 0), CHAN5G(180, 0),
259 CHAN5G(182, 0), CHAN5G(184, 0),
260 CHAN5G(186, 0), CHAN5G(188, 0),
261 CHAN5G(190, 0), CHAN5G(192, 0),
262 CHAN5G(194, 0), CHAN5G(196, 0),
263 CHAN5G(198, 0), CHAN5G(200, 0),
264 CHAN5G(202, 0), CHAN5G(204, 0),
265 CHAN5G(206, 0), CHAN5G(208, 0),
266 CHAN5G(210, 0), CHAN5G(212, 0),
267 CHAN5G(214, 0), CHAN5G(216, 0),
268 CHAN5G(218, 0), CHAN5G(220, 0),
269 CHAN5G(222, 0), CHAN5G(224, 0),
270 CHAN5G(226, 0), CHAN5G(228, 0),
Michael Buesche4d6b792007-09-18 15:39:42 -0400271};
272
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100273static struct ieee80211_channel b43_5ghz_aphy_chantable[] = {
274 CHAN5G(34, 0), CHAN5G(36, 0),
275 CHAN5G(38, 0), CHAN5G(40, 0),
276 CHAN5G(42, 0), CHAN5G(44, 0),
277 CHAN5G(46, 0), CHAN5G(48, 0),
278 CHAN5G(52, 0), CHAN5G(56, 0),
279 CHAN5G(60, 0), CHAN5G(64, 0),
280 CHAN5G(100, 0), CHAN5G(104, 0),
281 CHAN5G(108, 0), CHAN5G(112, 0),
282 CHAN5G(116, 0), CHAN5G(120, 0),
283 CHAN5G(124, 0), CHAN5G(128, 0),
284 CHAN5G(132, 0), CHAN5G(136, 0),
285 CHAN5G(140, 0), CHAN5G(149, 0),
286 CHAN5G(153, 0), CHAN5G(157, 0),
287 CHAN5G(161, 0), CHAN5G(165, 0),
288 CHAN5G(184, 0), CHAN5G(188, 0),
289 CHAN5G(192, 0), CHAN5G(196, 0),
290 CHAN5G(200, 0), CHAN5G(204, 0),
291 CHAN5G(208, 0), CHAN5G(212, 0),
292 CHAN5G(216, 0),
293};
294#undef CHAN5G
295
296static struct ieee80211_supported_band b43_band_5GHz_nphy = {
297 .band = IEEE80211_BAND_5GHZ,
298 .channels = b43_5ghz_nphy_chantable,
299 .n_channels = ARRAY_SIZE(b43_5ghz_nphy_chantable),
300 .bitrates = b43_a_ratetable,
301 .n_bitrates = b43_a_ratetable_size,
Michael Buesche4d6b792007-09-18 15:39:42 -0400302};
Johannes Berg8318d782008-01-24 19:38:38 +0100303
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100304static struct ieee80211_supported_band b43_band_5GHz_aphy = {
305 .band = IEEE80211_BAND_5GHZ,
306 .channels = b43_5ghz_aphy_chantable,
307 .n_channels = ARRAY_SIZE(b43_5ghz_aphy_chantable),
308 .bitrates = b43_a_ratetable,
309 .n_bitrates = b43_a_ratetable_size,
Johannes Berg8318d782008-01-24 19:38:38 +0100310};
Michael Buesche4d6b792007-09-18 15:39:42 -0400311
Johannes Berg8318d782008-01-24 19:38:38 +0100312static struct ieee80211_supported_band b43_band_2GHz = {
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100313 .band = IEEE80211_BAND_2GHZ,
314 .channels = b43_2ghz_chantable,
315 .n_channels = ARRAY_SIZE(b43_2ghz_chantable),
316 .bitrates = b43_g_ratetable,
317 .n_bitrates = b43_g_ratetable_size,
Johannes Berg8318d782008-01-24 19:38:38 +0100318};
319
Michael Buesche4d6b792007-09-18 15:39:42 -0400320static void b43_wireless_core_exit(struct b43_wldev *dev);
321static int b43_wireless_core_init(struct b43_wldev *dev);
Michael Buesch36dbd952009-09-04 22:51:29 +0200322static struct b43_wldev * b43_wireless_core_stop(struct b43_wldev *dev);
Michael Buesche4d6b792007-09-18 15:39:42 -0400323static int b43_wireless_core_start(struct b43_wldev *dev);
Felix Fietkau2a190322011-08-10 13:50:30 -0600324static void b43_op_bss_info_changed(struct ieee80211_hw *hw,
325 struct ieee80211_vif *vif,
326 struct ieee80211_bss_conf *conf,
327 u32 changed);
Michael Buesche4d6b792007-09-18 15:39:42 -0400328
329static int b43_ratelimit(struct b43_wl *wl)
330{
331 if (!wl || !wl->current_dev)
332 return 1;
333 if (b43_status(wl->current_dev) < B43_STAT_STARTED)
334 return 1;
335 /* We are up and running.
336 * Ratelimit the messages to avoid DoS over the net. */
337 return net_ratelimit();
338}
339
340void b43info(struct b43_wl *wl, const char *fmt, ...)
341{
Joe Perches5b736d42010-11-09 16:35:18 -0800342 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400343 va_list args;
344
Michael Buesch060210f2009-01-25 15:49:59 +0100345 if (b43_modparam_verbose < B43_VERBOSITY_INFO)
346 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400347 if (!b43_ratelimit(wl))
348 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800349
Michael Buesche4d6b792007-09-18 15:39:42 -0400350 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800351
352 vaf.fmt = fmt;
353 vaf.va = &args;
354
355 printk(KERN_INFO "b43-%s: %pV",
356 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
357
Michael Buesche4d6b792007-09-18 15:39:42 -0400358 va_end(args);
359}
360
361void b43err(struct b43_wl *wl, const char *fmt, ...)
362{
Joe Perches5b736d42010-11-09 16:35:18 -0800363 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400364 va_list args;
365
Michael Buesch060210f2009-01-25 15:49:59 +0100366 if (b43_modparam_verbose < B43_VERBOSITY_ERROR)
367 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400368 if (!b43_ratelimit(wl))
369 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800370
Michael Buesche4d6b792007-09-18 15:39:42 -0400371 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800372
373 vaf.fmt = fmt;
374 vaf.va = &args;
375
376 printk(KERN_ERR "b43-%s ERROR: %pV",
377 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
378
Michael Buesche4d6b792007-09-18 15:39:42 -0400379 va_end(args);
380}
381
382void b43warn(struct b43_wl *wl, const char *fmt, ...)
383{
Joe Perches5b736d42010-11-09 16:35:18 -0800384 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400385 va_list args;
386
Michael Buesch060210f2009-01-25 15:49:59 +0100387 if (b43_modparam_verbose < B43_VERBOSITY_WARN)
388 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400389 if (!b43_ratelimit(wl))
390 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800391
Michael Buesche4d6b792007-09-18 15:39:42 -0400392 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800393
394 vaf.fmt = fmt;
395 vaf.va = &args;
396
397 printk(KERN_WARNING "b43-%s warning: %pV",
398 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
399
Michael Buesche4d6b792007-09-18 15:39:42 -0400400 va_end(args);
401}
402
Michael Buesche4d6b792007-09-18 15:39:42 -0400403void b43dbg(struct b43_wl *wl, const char *fmt, ...)
404{
Joe Perches5b736d42010-11-09 16:35:18 -0800405 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400406 va_list args;
407
Michael Buesch060210f2009-01-25 15:49:59 +0100408 if (b43_modparam_verbose < B43_VERBOSITY_DEBUG)
409 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800410
Michael Buesche4d6b792007-09-18 15:39:42 -0400411 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800412
413 vaf.fmt = fmt;
414 vaf.va = &args;
415
416 printk(KERN_DEBUG "b43-%s debug: %pV",
417 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
418
Michael Buesche4d6b792007-09-18 15:39:42 -0400419 va_end(args);
420}
Michael Buesche4d6b792007-09-18 15:39:42 -0400421
422static void b43_ram_write(struct b43_wldev *dev, u16 offset, u32 val)
423{
424 u32 macctl;
425
426 B43_WARN_ON(offset % 4 != 0);
427
428 macctl = b43_read32(dev, B43_MMIO_MACCTL);
429 if (macctl & B43_MACCTL_BE)
430 val = swab32(val);
431
432 b43_write32(dev, B43_MMIO_RAM_CONTROL, offset);
433 mmiowb();
434 b43_write32(dev, B43_MMIO_RAM_DATA, val);
435}
436
Michael Buesch280d0e12007-12-26 18:26:17 +0100437static inline void b43_shm_control_word(struct b43_wldev *dev,
438 u16 routing, u16 offset)
Michael Buesche4d6b792007-09-18 15:39:42 -0400439{
440 u32 control;
441
442 /* "offset" is the WORD offset. */
Michael Buesche4d6b792007-09-18 15:39:42 -0400443 control = routing;
444 control <<= 16;
445 control |= offset;
446 b43_write32(dev, B43_MMIO_SHM_CONTROL, control);
447}
448
Michael Buesch69eddc82009-09-04 22:57:26 +0200449u32 b43_shm_read32(struct b43_wldev *dev, u16 routing, u16 offset)
Michael Buesche4d6b792007-09-18 15:39:42 -0400450{
451 u32 ret;
452
453 if (routing == B43_SHM_SHARED) {
454 B43_WARN_ON(offset & 0x0001);
455 if (offset & 0x0003) {
456 /* Unaligned access */
457 b43_shm_control_word(dev, routing, offset >> 2);
458 ret = b43_read16(dev, B43_MMIO_SHM_DATA_UNALIGNED);
Michael Buesche4d6b792007-09-18 15:39:42 -0400459 b43_shm_control_word(dev, routing, (offset >> 2) + 1);
Michael Bueschf62ae6c2009-07-31 20:51:41 +0200460 ret |= ((u32)b43_read16(dev, B43_MMIO_SHM_DATA)) << 16;
Michael Buesche4d6b792007-09-18 15:39:42 -0400461
Michael Buesch280d0e12007-12-26 18:26:17 +0100462 goto out;
Michael Buesche4d6b792007-09-18 15:39:42 -0400463 }
464 offset >>= 2;
465 }
466 b43_shm_control_word(dev, routing, offset);
467 ret = b43_read32(dev, B43_MMIO_SHM_DATA);
Michael Buesch280d0e12007-12-26 18:26:17 +0100468out:
Michael Buesch6bbc3212008-06-19 19:33:51 +0200469 return ret;
470}
471
Michael Buesch69eddc82009-09-04 22:57:26 +0200472u16 b43_shm_read16(struct b43_wldev *dev, u16 routing, u16 offset)
Michael Buesche4d6b792007-09-18 15:39:42 -0400473{
474 u16 ret;
475
476 if (routing == B43_SHM_SHARED) {
477 B43_WARN_ON(offset & 0x0001);
478 if (offset & 0x0003) {
479 /* Unaligned access */
480 b43_shm_control_word(dev, routing, offset >> 2);
481 ret = b43_read16(dev, B43_MMIO_SHM_DATA_UNALIGNED);
482
Michael Buesch280d0e12007-12-26 18:26:17 +0100483 goto out;
Michael Buesche4d6b792007-09-18 15:39:42 -0400484 }
485 offset >>= 2;
486 }
487 b43_shm_control_word(dev, routing, offset);
488 ret = b43_read16(dev, B43_MMIO_SHM_DATA);
Michael Buesch280d0e12007-12-26 18:26:17 +0100489out:
Michael Buesch6bbc3212008-06-19 19:33:51 +0200490 return ret;
491}
492
Michael Buesch69eddc82009-09-04 22:57:26 +0200493void b43_shm_write32(struct b43_wldev *dev, u16 routing, u16 offset, u32 value)
Michael Buesche4d6b792007-09-18 15:39:42 -0400494{
495 if (routing == B43_SHM_SHARED) {
496 B43_WARN_ON(offset & 0x0001);
497 if (offset & 0x0003) {
498 /* Unaligned access */
499 b43_shm_control_word(dev, routing, offset >> 2);
Michael Buesche4d6b792007-09-18 15:39:42 -0400500 b43_write16(dev, B43_MMIO_SHM_DATA_UNALIGNED,
Michael Bueschf62ae6c2009-07-31 20:51:41 +0200501 value & 0xFFFF);
Michael Buesche4d6b792007-09-18 15:39:42 -0400502 b43_shm_control_word(dev, routing, (offset >> 2) + 1);
Michael Bueschf62ae6c2009-07-31 20:51:41 +0200503 b43_write16(dev, B43_MMIO_SHM_DATA,
504 (value >> 16) & 0xFFFF);
Michael Buesch6bbc3212008-06-19 19:33:51 +0200505 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400506 }
507 offset >>= 2;
508 }
509 b43_shm_control_word(dev, routing, offset);
Michael Buesche4d6b792007-09-18 15:39:42 -0400510 b43_write32(dev, B43_MMIO_SHM_DATA, value);
Michael Buesch6bbc3212008-06-19 19:33:51 +0200511}
512
Michael Buesch69eddc82009-09-04 22:57:26 +0200513void b43_shm_write16(struct b43_wldev *dev, u16 routing, u16 offset, u16 value)
Michael Buesch6bbc3212008-06-19 19:33:51 +0200514{
515 if (routing == B43_SHM_SHARED) {
516 B43_WARN_ON(offset & 0x0001);
517 if (offset & 0x0003) {
518 /* Unaligned access */
519 b43_shm_control_word(dev, routing, offset >> 2);
520 b43_write16(dev, B43_MMIO_SHM_DATA_UNALIGNED, value);
521 return;
522 }
523 offset >>= 2;
524 }
525 b43_shm_control_word(dev, routing, offset);
526 b43_write16(dev, B43_MMIO_SHM_DATA, value);
527}
528
Michael Buesche4d6b792007-09-18 15:39:42 -0400529/* Read HostFlags */
John Daiker99da1852009-02-24 02:16:42 -0800530u64 b43_hf_read(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -0400531{
Michael Buesch35f0d352008-02-13 14:31:08 +0100532 u64 ret;
Michael Buesche4d6b792007-09-18 15:39:42 -0400533
534 ret = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFHI);
535 ret <<= 16;
Michael Buesch35f0d352008-02-13 14:31:08 +0100536 ret |= b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFMI);
537 ret <<= 16;
Michael Buesche4d6b792007-09-18 15:39:42 -0400538 ret |= b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFLO);
539
540 return ret;
541}
542
543/* Write HostFlags */
Michael Buesch35f0d352008-02-13 14:31:08 +0100544void b43_hf_write(struct b43_wldev *dev, u64 value)
Michael Buesche4d6b792007-09-18 15:39:42 -0400545{
Michael Buesch35f0d352008-02-13 14:31:08 +0100546 u16 lo, mi, hi;
547
548 lo = (value & 0x00000000FFFFULL);
549 mi = (value & 0x0000FFFF0000ULL) >> 16;
550 hi = (value & 0xFFFF00000000ULL) >> 32;
551 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFLO, lo);
552 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFMI, mi);
553 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFHI, hi);
Michael Buesche4d6b792007-09-18 15:39:42 -0400554}
555
Michael Buesch403a3a12009-06-08 21:04:57 +0200556/* Read the firmware capabilities bitmask (Opensource firmware only) */
557static u16 b43_fwcapa_read(struct b43_wldev *dev)
558{
559 B43_WARN_ON(!dev->fw.opensource);
560 return b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_FWCAPA);
561}
562
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100563void b43_tsf_read(struct b43_wldev *dev, u64 *tsf)
Michael Buesche4d6b792007-09-18 15:39:42 -0400564{
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100565 u32 low, high;
Michael Buesche4d6b792007-09-18 15:39:42 -0400566
Rafał Miłecki21d889d2011-05-18 02:06:38 +0200567 B43_WARN_ON(dev->dev->core_rev < 3);
Michael Buesche4d6b792007-09-18 15:39:42 -0400568
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100569 /* The hardware guarantees us an atomic read, if we
570 * read the low register first. */
571 low = b43_read32(dev, B43_MMIO_REV3PLUS_TSF_LOW);
572 high = b43_read32(dev, B43_MMIO_REV3PLUS_TSF_HIGH);
Michael Buesche4d6b792007-09-18 15:39:42 -0400573
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100574 *tsf = high;
575 *tsf <<= 32;
576 *tsf |= low;
Michael Buesche4d6b792007-09-18 15:39:42 -0400577}
578
579static void b43_time_lock(struct b43_wldev *dev)
580{
581 u32 macctl;
582
583 macctl = b43_read32(dev, B43_MMIO_MACCTL);
584 macctl |= B43_MACCTL_TBTTHOLD;
585 b43_write32(dev, B43_MMIO_MACCTL, macctl);
586 /* Commit the write */
587 b43_read32(dev, B43_MMIO_MACCTL);
588}
589
590static void b43_time_unlock(struct b43_wldev *dev)
591{
592 u32 macctl;
593
594 macctl = b43_read32(dev, B43_MMIO_MACCTL);
595 macctl &= ~B43_MACCTL_TBTTHOLD;
596 b43_write32(dev, B43_MMIO_MACCTL, macctl);
597 /* Commit the write */
598 b43_read32(dev, B43_MMIO_MACCTL);
599}
600
601static void b43_tsf_write_locked(struct b43_wldev *dev, u64 tsf)
602{
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100603 u32 low, high;
Michael Buesche4d6b792007-09-18 15:39:42 -0400604
Rafał Miłecki21d889d2011-05-18 02:06:38 +0200605 B43_WARN_ON(dev->dev->core_rev < 3);
Michael Buesche4d6b792007-09-18 15:39:42 -0400606
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100607 low = tsf;
608 high = (tsf >> 32);
609 /* The hardware guarantees us an atomic write, if we
610 * write the low register first. */
611 b43_write32(dev, B43_MMIO_REV3PLUS_TSF_LOW, low);
612 mmiowb();
613 b43_write32(dev, B43_MMIO_REV3PLUS_TSF_HIGH, high);
614 mmiowb();
Michael Buesche4d6b792007-09-18 15:39:42 -0400615}
616
617void b43_tsf_write(struct b43_wldev *dev, u64 tsf)
618{
619 b43_time_lock(dev);
620 b43_tsf_write_locked(dev, tsf);
621 b43_time_unlock(dev);
622}
623
624static
John Daiker99da1852009-02-24 02:16:42 -0800625void b43_macfilter_set(struct b43_wldev *dev, u16 offset, const u8 *mac)
Michael Buesche4d6b792007-09-18 15:39:42 -0400626{
627 static const u8 zero_addr[ETH_ALEN] = { 0 };
628 u16 data;
629
630 if (!mac)
631 mac = zero_addr;
632
633 offset |= 0x0020;
634 b43_write16(dev, B43_MMIO_MACFILTER_CONTROL, offset);
635
636 data = mac[0];
637 data |= mac[1] << 8;
638 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
639 data = mac[2];
640 data |= mac[3] << 8;
641 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
642 data = mac[4];
643 data |= mac[5] << 8;
644 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
645}
646
647static void b43_write_mac_bssid_templates(struct b43_wldev *dev)
648{
649 const u8 *mac;
650 const u8 *bssid;
651 u8 mac_bssid[ETH_ALEN * 2];
652 int i;
653 u32 tmp;
654
655 bssid = dev->wl->bssid;
656 mac = dev->wl->mac_addr;
657
658 b43_macfilter_set(dev, B43_MACFILTER_BSSID, bssid);
659
660 memcpy(mac_bssid, mac, ETH_ALEN);
661 memcpy(mac_bssid + ETH_ALEN, bssid, ETH_ALEN);
662
663 /* Write our MAC address and BSSID to template ram */
664 for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32)) {
665 tmp = (u32) (mac_bssid[i + 0]);
666 tmp |= (u32) (mac_bssid[i + 1]) << 8;
667 tmp |= (u32) (mac_bssid[i + 2]) << 16;
668 tmp |= (u32) (mac_bssid[i + 3]) << 24;
669 b43_ram_write(dev, 0x20 + i, tmp);
670 }
671}
672
Johannes Berg4150c572007-09-17 01:29:23 -0400673static void b43_upload_card_macaddress(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -0400674{
Michael Buesche4d6b792007-09-18 15:39:42 -0400675 b43_write_mac_bssid_templates(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400676 b43_macfilter_set(dev, B43_MACFILTER_SELF, dev->wl->mac_addr);
Michael Buesche4d6b792007-09-18 15:39:42 -0400677}
678
679static void b43_set_slot_time(struct b43_wldev *dev, u16 slot_time)
680{
681 /* slot_time is in usec. */
Larry Fingerb6c3f5b2010-02-02 10:08:19 -0600682 /* This test used to exit for all but a G PHY. */
683 if (b43_current_band(dev->wl) == IEEE80211_BAND_5GHZ)
Michael Buesche4d6b792007-09-18 15:39:42 -0400684 return;
Larry Fingerb6c3f5b2010-02-02 10:08:19 -0600685 b43_write16(dev, B43_MMIO_IFSSLOT, 510 + slot_time);
686 /* Shared memory location 0x0010 is the slot time and should be
687 * set to slot_time; however, this register is initially 0 and changing
688 * the value adversely affects the transmit rate for BCM4311
689 * devices. Until this behavior is unterstood, delete this step
690 *
691 * b43_shm_write16(dev, B43_SHM_SHARED, 0x0010, slot_time);
692 */
Michael Buesche4d6b792007-09-18 15:39:42 -0400693}
694
695static void b43_short_slot_timing_enable(struct b43_wldev *dev)
696{
697 b43_set_slot_time(dev, 9);
Michael Buesche4d6b792007-09-18 15:39:42 -0400698}
699
700static void b43_short_slot_timing_disable(struct b43_wldev *dev)
701{
702 b43_set_slot_time(dev, 20);
Michael Buesche4d6b792007-09-18 15:39:42 -0400703}
704
Michael Buesche4d6b792007-09-18 15:39:42 -0400705/* DummyTransmission function, as documented on
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200706 * http://bcm-v4.sipsolutions.net/802.11/DummyTransmission
Michael Buesche4d6b792007-09-18 15:39:42 -0400707 */
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200708void b43_dummy_transmission(struct b43_wldev *dev, bool ofdm, bool pa_on)
Michael Buesche4d6b792007-09-18 15:39:42 -0400709{
710 struct b43_phy *phy = &dev->phy;
711 unsigned int i, max_loop;
712 u16 value;
713 u32 buffer[5] = {
714 0x00000000,
715 0x00D40000,
716 0x00000000,
717 0x01000000,
718 0x00000000,
719 };
720
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200721 if (ofdm) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400722 max_loop = 0x1E;
723 buffer[0] = 0x000201CC;
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200724 } else {
Michael Buesche4d6b792007-09-18 15:39:42 -0400725 max_loop = 0xFA;
726 buffer[0] = 0x000B846E;
Michael Buesche4d6b792007-09-18 15:39:42 -0400727 }
728
729 for (i = 0; i < 5; i++)
730 b43_ram_write(dev, i * 4, buffer[i]);
731
Michael Buesche4d6b792007-09-18 15:39:42 -0400732 b43_write16(dev, 0x0568, 0x0000);
Rafał Miłecki21d889d2011-05-18 02:06:38 +0200733 if (dev->dev->core_rev < 11)
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200734 b43_write16(dev, 0x07C0, 0x0000);
735 else
736 b43_write16(dev, 0x07C0, 0x0100);
737 value = (ofdm ? 0x41 : 0x40);
Michael Buesche4d6b792007-09-18 15:39:42 -0400738 b43_write16(dev, 0x050C, value);
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200739 if ((phy->type == B43_PHYTYPE_N) || (phy->type == B43_PHYTYPE_LP))
740 b43_write16(dev, 0x0514, 0x1A02);
Michael Buesche4d6b792007-09-18 15:39:42 -0400741 b43_write16(dev, 0x0508, 0x0000);
742 b43_write16(dev, 0x050A, 0x0000);
743 b43_write16(dev, 0x054C, 0x0000);
744 b43_write16(dev, 0x056A, 0x0014);
745 b43_write16(dev, 0x0568, 0x0826);
746 b43_write16(dev, 0x0500, 0x0000);
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200747 if (!pa_on && (phy->type == B43_PHYTYPE_N)) {
748 //SPEC TODO
749 }
750
751 switch (phy->type) {
752 case B43_PHYTYPE_N:
753 b43_write16(dev, 0x0502, 0x00D0);
754 break;
755 case B43_PHYTYPE_LP:
756 b43_write16(dev, 0x0502, 0x0050);
757 break;
758 default:
759 b43_write16(dev, 0x0502, 0x0030);
760 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400761
762 if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
763 b43_radio_write16(dev, 0x0051, 0x0017);
764 for (i = 0x00; i < max_loop; i++) {
765 value = b43_read16(dev, 0x050E);
766 if (value & 0x0080)
767 break;
768 udelay(10);
769 }
770 for (i = 0x00; i < 0x0A; i++) {
771 value = b43_read16(dev, 0x050E);
772 if (value & 0x0400)
773 break;
774 udelay(10);
775 }
Larry Finger1d280dd2008-09-29 14:19:29 -0500776 for (i = 0x00; i < 0x19; i++) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400777 value = b43_read16(dev, 0x0690);
778 if (!(value & 0x0100))
779 break;
780 udelay(10);
781 }
782 if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
783 b43_radio_write16(dev, 0x0051, 0x0037);
784}
785
786static void key_write(struct b43_wldev *dev,
John Daiker99da1852009-02-24 02:16:42 -0800787 u8 index, u8 algorithm, const u8 *key)
Michael Buesche4d6b792007-09-18 15:39:42 -0400788{
789 unsigned int i;
790 u32 offset;
791 u16 value;
792 u16 kidx;
793
794 /* Key index/algo block */
795 kidx = b43_kidx_to_fw(dev, index);
796 value = ((kidx << 4) | algorithm);
797 b43_shm_write16(dev, B43_SHM_SHARED,
798 B43_SHM_SH_KEYIDXBLOCK + (kidx * 2), value);
799
800 /* Write the key to the Key Table Pointer offset */
801 offset = dev->ktp + (index * B43_SEC_KEYSIZE);
802 for (i = 0; i < B43_SEC_KEYSIZE; i += 2) {
803 value = key[i];
804 value |= (u16) (key[i + 1]) << 8;
805 b43_shm_write16(dev, B43_SHM_SHARED, offset + i, value);
806 }
807}
808
John Daiker99da1852009-02-24 02:16:42 -0800809static void keymac_write(struct b43_wldev *dev, u8 index, const u8 *addr)
Michael Buesche4d6b792007-09-18 15:39:42 -0400810{
811 u32 addrtmp[2] = { 0, 0, };
Michael Buesch66d2d082009-08-06 10:36:50 +0200812 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
Michael Buesche4d6b792007-09-18 15:39:42 -0400813
814 if (b43_new_kidx_api(dev))
Michael Buesch66d2d082009-08-06 10:36:50 +0200815 pairwise_keys_start = B43_NR_GROUP_KEYS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400816
Michael Buesch66d2d082009-08-06 10:36:50 +0200817 B43_WARN_ON(index < pairwise_keys_start);
818 /* We have four default TX keys and possibly four default RX keys.
Michael Buesche4d6b792007-09-18 15:39:42 -0400819 * Physical mac 0 is mapped to physical key 4 or 8, depending
820 * on the firmware version.
821 * So we must adjust the index here.
822 */
Michael Buesch66d2d082009-08-06 10:36:50 +0200823 index -= pairwise_keys_start;
824 B43_WARN_ON(index >= B43_NR_PAIRWISE_KEYS);
Michael Buesche4d6b792007-09-18 15:39:42 -0400825
826 if (addr) {
827 addrtmp[0] = addr[0];
828 addrtmp[0] |= ((u32) (addr[1]) << 8);
829 addrtmp[0] |= ((u32) (addr[2]) << 16);
830 addrtmp[0] |= ((u32) (addr[3]) << 24);
831 addrtmp[1] = addr[4];
832 addrtmp[1] |= ((u32) (addr[5]) << 8);
833 }
834
Michael Buesch66d2d082009-08-06 10:36:50 +0200835 /* Receive match transmitter address (RCMTA) mechanism */
836 b43_shm_write32(dev, B43_SHM_RCMTA,
837 (index * 2) + 0, addrtmp[0]);
838 b43_shm_write16(dev, B43_SHM_RCMTA,
839 (index * 2) + 1, addrtmp[1]);
Michael Buesche4d6b792007-09-18 15:39:42 -0400840}
841
gregor kowski035d0242009-08-19 22:35:45 +0200842/* The ucode will use phase1 key with TEK key to decrypt rx packets.
843 * When a packet is received, the iv32 is checked.
844 * - if it doesn't the packet is returned without modification (and software
845 * decryption can be done). That's what happen when iv16 wrap.
846 * - if it does, the rc4 key is computed, and decryption is tried.
847 * Either it will success and B43_RX_MAC_DEC is returned,
848 * either it fails and B43_RX_MAC_DEC|B43_RX_MAC_DECERR is returned
849 * and the packet is not usable (it got modified by the ucode).
850 * So in order to never have B43_RX_MAC_DECERR, we should provide
851 * a iv32 and phase1key that match. Because we drop packets in case of
852 * B43_RX_MAC_DECERR, if we have a correct iv32 but a wrong phase1key, all
853 * packets will be lost without higher layer knowing (ie no resync possible
854 * until next wrap).
855 *
856 * NOTE : this should support 50 key like RCMTA because
857 * (B43_SHM_SH_KEYIDXBLOCK - B43_SHM_SH_TKIPTSCTTAK)/14 = 50
858 */
859static void rx_tkip_phase1_write(struct b43_wldev *dev, u8 index, u32 iv32,
860 u16 *phase1key)
861{
862 unsigned int i;
863 u32 offset;
864 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
865
866 if (!modparam_hwtkip)
867 return;
868
869 if (b43_new_kidx_api(dev))
870 pairwise_keys_start = B43_NR_GROUP_KEYS;
871
872 B43_WARN_ON(index < pairwise_keys_start);
873 /* We have four default TX keys and possibly four default RX keys.
874 * Physical mac 0 is mapped to physical key 4 or 8, depending
875 * on the firmware version.
876 * So we must adjust the index here.
877 */
878 index -= pairwise_keys_start;
879 B43_WARN_ON(index >= B43_NR_PAIRWISE_KEYS);
880
881 if (b43_debug(dev, B43_DBG_KEYS)) {
882 b43dbg(dev->wl, "rx_tkip_phase1_write : idx 0x%x, iv32 0x%x\n",
883 index, iv32);
884 }
885 /* Write the key to the RX tkip shared mem */
886 offset = B43_SHM_SH_TKIPTSCTTAK + index * (10 + 4);
887 for (i = 0; i < 10; i += 2) {
888 b43_shm_write16(dev, B43_SHM_SHARED, offset + i,
889 phase1key ? phase1key[i / 2] : 0);
890 }
891 b43_shm_write16(dev, B43_SHM_SHARED, offset + i, iv32);
892 b43_shm_write16(dev, B43_SHM_SHARED, offset + i + 2, iv32 >> 16);
893}
894
895static void b43_op_update_tkip_key(struct ieee80211_hw *hw,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100896 struct ieee80211_vif *vif,
897 struct ieee80211_key_conf *keyconf,
898 struct ieee80211_sta *sta,
899 u32 iv32, u16 *phase1key)
gregor kowski035d0242009-08-19 22:35:45 +0200900{
901 struct b43_wl *wl = hw_to_b43_wl(hw);
902 struct b43_wldev *dev;
903 int index = keyconf->hw_key_idx;
904
905 if (B43_WARN_ON(!modparam_hwtkip))
906 return;
907
Michael Buesch96869a32010-01-24 13:13:32 +0100908 /* This is only called from the RX path through mac80211, where
909 * our mutex is already locked. */
910 B43_WARN_ON(!mutex_is_locked(&wl->mutex));
gregor kowski035d0242009-08-19 22:35:45 +0200911 dev = wl->current_dev;
Michael Buesch96869a32010-01-24 13:13:32 +0100912 B43_WARN_ON(!dev || b43_status(dev) < B43_STAT_INITIALIZED);
gregor kowski035d0242009-08-19 22:35:45 +0200913
914 keymac_write(dev, index, NULL); /* First zero out mac to avoid race */
915
916 rx_tkip_phase1_write(dev, index, iv32, phase1key);
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100917 /* only pairwise TKIP keys are supported right now */
918 if (WARN_ON(!sta))
Michael Buesch96869a32010-01-24 13:13:32 +0100919 return;
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100920 keymac_write(dev, index, sta->addr);
gregor kowski035d0242009-08-19 22:35:45 +0200921}
922
Michael Buesche4d6b792007-09-18 15:39:42 -0400923static void do_key_write(struct b43_wldev *dev,
924 u8 index, u8 algorithm,
John Daiker99da1852009-02-24 02:16:42 -0800925 const u8 *key, size_t key_len, const u8 *mac_addr)
Michael Buesche4d6b792007-09-18 15:39:42 -0400926{
927 u8 buf[B43_SEC_KEYSIZE] = { 0, };
Michael Buesch66d2d082009-08-06 10:36:50 +0200928 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
Michael Buesche4d6b792007-09-18 15:39:42 -0400929
930 if (b43_new_kidx_api(dev))
Michael Buesch66d2d082009-08-06 10:36:50 +0200931 pairwise_keys_start = B43_NR_GROUP_KEYS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400932
Michael Buesch66d2d082009-08-06 10:36:50 +0200933 B43_WARN_ON(index >= ARRAY_SIZE(dev->key));
Michael Buesche4d6b792007-09-18 15:39:42 -0400934 B43_WARN_ON(key_len > B43_SEC_KEYSIZE);
935
Michael Buesch66d2d082009-08-06 10:36:50 +0200936 if (index >= pairwise_keys_start)
Michael Buesche4d6b792007-09-18 15:39:42 -0400937 keymac_write(dev, index, NULL); /* First zero out mac. */
gregor kowski035d0242009-08-19 22:35:45 +0200938 if (algorithm == B43_SEC_ALGO_TKIP) {
939 /*
940 * We should provide an initial iv32, phase1key pair.
941 * We could start with iv32=0 and compute the corresponding
942 * phase1key, but this means calling ieee80211_get_tkip_key
943 * with a fake skb (or export other tkip function).
944 * Because we are lazy we hope iv32 won't start with
945 * 0xffffffff and let's b43_op_update_tkip_key provide a
946 * correct pair.
947 */
948 rx_tkip_phase1_write(dev, index, 0xffffffff, (u16*)buf);
949 } else if (index >= pairwise_keys_start) /* clear it */
950 rx_tkip_phase1_write(dev, index, 0, NULL);
Michael Buesche4d6b792007-09-18 15:39:42 -0400951 if (key)
952 memcpy(buf, key, key_len);
953 key_write(dev, index, algorithm, buf);
Michael Buesch66d2d082009-08-06 10:36:50 +0200954 if (index >= pairwise_keys_start)
Michael Buesche4d6b792007-09-18 15:39:42 -0400955 keymac_write(dev, index, mac_addr);
956
957 dev->key[index].algorithm = algorithm;
958}
959
960static int b43_key_write(struct b43_wldev *dev,
961 int index, u8 algorithm,
John Daiker99da1852009-02-24 02:16:42 -0800962 const u8 *key, size_t key_len,
963 const u8 *mac_addr,
Michael Buesche4d6b792007-09-18 15:39:42 -0400964 struct ieee80211_key_conf *keyconf)
965{
966 int i;
Michael Buesch66d2d082009-08-06 10:36:50 +0200967 int pairwise_keys_start;
Michael Buesche4d6b792007-09-18 15:39:42 -0400968
gregor kowski035d0242009-08-19 22:35:45 +0200969 /* For ALG_TKIP the key is encoded as a 256-bit (32 byte) data block:
970 * - Temporal Encryption Key (128 bits)
971 * - Temporal Authenticator Tx MIC Key (64 bits)
972 * - Temporal Authenticator Rx MIC Key (64 bits)
973 *
974 * Hardware only store TEK
975 */
976 if (algorithm == B43_SEC_ALGO_TKIP && key_len == 32)
977 key_len = 16;
Michael Buesche4d6b792007-09-18 15:39:42 -0400978 if (key_len > B43_SEC_KEYSIZE)
979 return -EINVAL;
Michael Buesch66d2d082009-08-06 10:36:50 +0200980 for (i = 0; i < ARRAY_SIZE(dev->key); i++) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400981 /* Check that we don't already have this key. */
982 B43_WARN_ON(dev->key[i].keyconf == keyconf);
983 }
984 if (index < 0) {
Michael Buesche808e582008-12-19 21:30:52 +0100985 /* Pairwise key. Get an empty slot for the key. */
Michael Buesche4d6b792007-09-18 15:39:42 -0400986 if (b43_new_kidx_api(dev))
Michael Buesch66d2d082009-08-06 10:36:50 +0200987 pairwise_keys_start = B43_NR_GROUP_KEYS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400988 else
Michael Buesch66d2d082009-08-06 10:36:50 +0200989 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
990 for (i = pairwise_keys_start;
991 i < pairwise_keys_start + B43_NR_PAIRWISE_KEYS;
992 i++) {
993 B43_WARN_ON(i >= ARRAY_SIZE(dev->key));
Michael Buesche4d6b792007-09-18 15:39:42 -0400994 if (!dev->key[i].keyconf) {
995 /* found empty */
996 index = i;
997 break;
998 }
999 }
1000 if (index < 0) {
Michael Buesche808e582008-12-19 21:30:52 +01001001 b43warn(dev->wl, "Out of hardware key memory\n");
Michael Buesche4d6b792007-09-18 15:39:42 -04001002 return -ENOSPC;
1003 }
1004 } else
1005 B43_WARN_ON(index > 3);
1006
1007 do_key_write(dev, index, algorithm, key, key_len, mac_addr);
1008 if ((index <= 3) && !b43_new_kidx_api(dev)) {
1009 /* Default RX key */
1010 B43_WARN_ON(mac_addr);
1011 do_key_write(dev, index + 4, algorithm, key, key_len, NULL);
1012 }
1013 keyconf->hw_key_idx = index;
1014 dev->key[index].keyconf = keyconf;
1015
1016 return 0;
1017}
1018
1019static int b43_key_clear(struct b43_wldev *dev, int index)
1020{
Michael Buesch66d2d082009-08-06 10:36:50 +02001021 if (B43_WARN_ON((index < 0) || (index >= ARRAY_SIZE(dev->key))))
Michael Buesche4d6b792007-09-18 15:39:42 -04001022 return -EINVAL;
1023 do_key_write(dev, index, B43_SEC_ALGO_NONE,
1024 NULL, B43_SEC_KEYSIZE, NULL);
1025 if ((index <= 3) && !b43_new_kidx_api(dev)) {
1026 do_key_write(dev, index + 4, B43_SEC_ALGO_NONE,
1027 NULL, B43_SEC_KEYSIZE, NULL);
1028 }
1029 dev->key[index].keyconf = NULL;
1030
1031 return 0;
1032}
1033
1034static void b43_clear_keys(struct b43_wldev *dev)
1035{
Michael Buesch66d2d082009-08-06 10:36:50 +02001036 int i, count;
Michael Buesche4d6b792007-09-18 15:39:42 -04001037
Michael Buesch66d2d082009-08-06 10:36:50 +02001038 if (b43_new_kidx_api(dev))
1039 count = B43_NR_GROUP_KEYS + B43_NR_PAIRWISE_KEYS;
1040 else
1041 count = B43_NR_GROUP_KEYS * 2 + B43_NR_PAIRWISE_KEYS;
1042 for (i = 0; i < count; i++)
Michael Buesche4d6b792007-09-18 15:39:42 -04001043 b43_key_clear(dev, i);
1044}
1045
Michael Buesch9cf7f242008-12-19 20:24:30 +01001046static void b43_dump_keymemory(struct b43_wldev *dev)
1047{
Michael Buesch66d2d082009-08-06 10:36:50 +02001048 unsigned int i, index, count, offset, pairwise_keys_start;
Michael Buesch9cf7f242008-12-19 20:24:30 +01001049 u8 mac[ETH_ALEN];
1050 u16 algo;
1051 u32 rcmta0;
1052 u16 rcmta1;
1053 u64 hf;
1054 struct b43_key *key;
1055
1056 if (!b43_debug(dev, B43_DBG_KEYS))
1057 return;
1058
1059 hf = b43_hf_read(dev);
1060 b43dbg(dev->wl, "Hardware key memory dump: USEDEFKEYS=%u\n",
1061 !!(hf & B43_HF_USEDEFKEYS));
Michael Buesch66d2d082009-08-06 10:36:50 +02001062 if (b43_new_kidx_api(dev)) {
1063 pairwise_keys_start = B43_NR_GROUP_KEYS;
1064 count = B43_NR_GROUP_KEYS + B43_NR_PAIRWISE_KEYS;
1065 } else {
1066 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
1067 count = B43_NR_GROUP_KEYS * 2 + B43_NR_PAIRWISE_KEYS;
1068 }
1069 for (index = 0; index < count; index++) {
Michael Buesch9cf7f242008-12-19 20:24:30 +01001070 key = &(dev->key[index]);
1071 printk(KERN_DEBUG "Key slot %02u: %s",
1072 index, (key->keyconf == NULL) ? " " : "*");
1073 offset = dev->ktp + (index * B43_SEC_KEYSIZE);
1074 for (i = 0; i < B43_SEC_KEYSIZE; i += 2) {
1075 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, offset + i);
1076 printk("%02X%02X", (tmp & 0xFF), ((tmp >> 8) & 0xFF));
1077 }
1078
1079 algo = b43_shm_read16(dev, B43_SHM_SHARED,
1080 B43_SHM_SH_KEYIDXBLOCK + (index * 2));
1081 printk(" Algo: %04X/%02X", algo, key->algorithm);
1082
Michael Buesch66d2d082009-08-06 10:36:50 +02001083 if (index >= pairwise_keys_start) {
gregor kowski035d0242009-08-19 22:35:45 +02001084 if (key->algorithm == B43_SEC_ALGO_TKIP) {
1085 printk(" TKIP: ");
1086 offset = B43_SHM_SH_TKIPTSCTTAK + (index - 4) * (10 + 4);
1087 for (i = 0; i < 14; i += 2) {
1088 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, offset + i);
1089 printk("%02X%02X", (tmp & 0xFF), ((tmp >> 8) & 0xFF));
1090 }
1091 }
Michael Buesch9cf7f242008-12-19 20:24:30 +01001092 rcmta0 = b43_shm_read32(dev, B43_SHM_RCMTA,
Michael Buesch66d2d082009-08-06 10:36:50 +02001093 ((index - pairwise_keys_start) * 2) + 0);
Michael Buesch9cf7f242008-12-19 20:24:30 +01001094 rcmta1 = b43_shm_read16(dev, B43_SHM_RCMTA,
Michael Buesch66d2d082009-08-06 10:36:50 +02001095 ((index - pairwise_keys_start) * 2) + 1);
Michael Buesch9cf7f242008-12-19 20:24:30 +01001096 *((__le32 *)(&mac[0])) = cpu_to_le32(rcmta0);
1097 *((__le16 *)(&mac[4])) = cpu_to_le16(rcmta1);
Johannes Berge91d8332009-07-15 17:21:41 +02001098 printk(" MAC: %pM", mac);
Michael Buesch9cf7f242008-12-19 20:24:30 +01001099 } else
1100 printk(" DEFAULT KEY");
1101 printk("\n");
1102 }
1103}
1104
Michael Buesche4d6b792007-09-18 15:39:42 -04001105void b43_power_saving_ctl_bits(struct b43_wldev *dev, unsigned int ps_flags)
1106{
1107 u32 macctl;
1108 u16 ucstat;
1109 bool hwps;
1110 bool awake;
1111 int i;
1112
1113 B43_WARN_ON((ps_flags & B43_PS_ENABLED) &&
1114 (ps_flags & B43_PS_DISABLED));
1115 B43_WARN_ON((ps_flags & B43_PS_AWAKE) && (ps_flags & B43_PS_ASLEEP));
1116
1117 if (ps_flags & B43_PS_ENABLED) {
1118 hwps = 1;
1119 } else if (ps_flags & B43_PS_DISABLED) {
1120 hwps = 0;
1121 } else {
1122 //TODO: If powersave is not off and FIXME is not set and we are not in adhoc
1123 // and thus is not an AP and we are associated, set bit 25
1124 }
1125 if (ps_flags & B43_PS_AWAKE) {
1126 awake = 1;
1127 } else if (ps_flags & B43_PS_ASLEEP) {
1128 awake = 0;
1129 } else {
1130 //TODO: If the device is awake or this is an AP, or we are scanning, or FIXME,
1131 // or we are associated, or FIXME, or the latest PS-Poll packet sent was
1132 // successful, set bit26
1133 }
1134
1135/* FIXME: For now we force awake-on and hwps-off */
1136 hwps = 0;
1137 awake = 1;
1138
1139 macctl = b43_read32(dev, B43_MMIO_MACCTL);
1140 if (hwps)
1141 macctl |= B43_MACCTL_HWPS;
1142 else
1143 macctl &= ~B43_MACCTL_HWPS;
1144 if (awake)
1145 macctl |= B43_MACCTL_AWAKE;
1146 else
1147 macctl &= ~B43_MACCTL_AWAKE;
1148 b43_write32(dev, B43_MMIO_MACCTL, macctl);
1149 /* Commit write */
1150 b43_read32(dev, B43_MMIO_MACCTL);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02001151 if (awake && dev->dev->core_rev >= 5) {
Michael Buesche4d6b792007-09-18 15:39:42 -04001152 /* Wait for the microcode to wake up. */
1153 for (i = 0; i < 100; i++) {
1154 ucstat = b43_shm_read16(dev, B43_SHM_SHARED,
1155 B43_SHM_SH_UCODESTAT);
1156 if (ucstat != B43_SHM_SH_UCODESTAT_SLEEP)
1157 break;
1158 udelay(10);
1159 }
1160 }
1161}
1162
Rafał Miłecki42c9a452011-07-06 15:45:27 +02001163#ifdef CONFIG_B43_BCMA
Rafał Miłecki49173592011-07-17 01:06:06 +02001164static void b43_bcma_phy_reset(struct b43_wldev *dev)
1165{
1166 u32 flags;
1167
1168 /* Put PHY into reset */
1169 flags = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
1170 flags |= B43_BCMA_IOCTL_PHY_RESET;
1171 flags |= B43_BCMA_IOCTL_PHY_BW_20MHZ; /* Make 20 MHz def */
1172 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, flags);
1173 udelay(2);
1174
1175 /* Take PHY out of reset */
1176 flags = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
1177 flags &= ~B43_BCMA_IOCTL_PHY_RESET;
1178 flags |= BCMA_IOCTL_FGC;
1179 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, flags);
1180 udelay(1);
1181
1182 /* Do not force clock anymore */
1183 flags = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
1184 flags &= ~BCMA_IOCTL_FGC;
1185 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, flags);
1186 udelay(1);
1187}
1188
Rafał Miłecki42c9a452011-07-06 15:45:27 +02001189static void b43_bcma_wireless_core_reset(struct b43_wldev *dev, bool gmode)
1190{
Rafał Miłecki49173592011-07-17 01:06:06 +02001191 b43_device_enable(dev, B43_BCMA_IOCTL_PHY_CLKEN);
1192 bcma_core_set_clockmode(dev->dev->bdev, BCMA_CLKMODE_FAST);
1193 b43_bcma_phy_reset(dev);
1194 bcma_core_pll_ctl(dev->dev->bdev, 0x300, 0x3000000, true);
Rafał Miłecki42c9a452011-07-06 15:45:27 +02001195}
1196#endif
1197
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001198static void b43_ssb_wireless_core_reset(struct b43_wldev *dev, bool gmode)
Michael Buesche4d6b792007-09-18 15:39:42 -04001199{
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001200 struct ssb_device *sdev = dev->dev->sdev;
Michael Buesche4d6b792007-09-18 15:39:42 -04001201 u32 tmslow;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001202 u32 flags = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04001203
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001204 if (gmode)
1205 flags |= B43_TMSLOW_GMODE;
Michael Buesche4d6b792007-09-18 15:39:42 -04001206 flags |= B43_TMSLOW_PHYCLKEN;
1207 flags |= B43_TMSLOW_PHYRESET;
Rafał Miłecki42ab1352010-12-09 20:56:01 +01001208 if (dev->phy.type == B43_PHYTYPE_N)
1209 flags |= B43_TMSLOW_PHY_BANDWIDTH_20MHZ; /* Make 20 MHz def */
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02001210 b43_device_enable(dev, flags);
Michael Buesche4d6b792007-09-18 15:39:42 -04001211 msleep(2); /* Wait for the PLL to turn on. */
1212
1213 /* Now take the PHY out of Reset again */
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001214 tmslow = ssb_read32(sdev, SSB_TMSLOW);
Michael Buesche4d6b792007-09-18 15:39:42 -04001215 tmslow |= SSB_TMSLOW_FGC;
1216 tmslow &= ~B43_TMSLOW_PHYRESET;
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001217 ssb_write32(sdev, SSB_TMSLOW, tmslow);
1218 ssb_read32(sdev, SSB_TMSLOW); /* flush */
Michael Buesche4d6b792007-09-18 15:39:42 -04001219 msleep(1);
1220 tmslow &= ~SSB_TMSLOW_FGC;
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001221 ssb_write32(sdev, SSB_TMSLOW, tmslow);
1222 ssb_read32(sdev, SSB_TMSLOW); /* flush */
Michael Buesche4d6b792007-09-18 15:39:42 -04001223 msleep(1);
Rafał Miłecki14952982011-05-17 18:57:28 +02001224}
1225
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001226void b43_wireless_core_reset(struct b43_wldev *dev, bool gmode)
Rafał Miłecki14952982011-05-17 18:57:28 +02001227{
1228 u32 macctl;
1229
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02001230 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02001231#ifdef CONFIG_B43_BCMA
1232 case B43_BUS_BCMA:
1233 b43_bcma_wireless_core_reset(dev, gmode);
1234 break;
1235#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02001236#ifdef CONFIG_B43_SSB
1237 case B43_BUS_SSB:
1238 b43_ssb_wireless_core_reset(dev, gmode);
1239 break;
1240#endif
1241 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001242
Michael Bueschfb111372008-09-02 13:00:34 +02001243 /* Turn Analog ON, but only if we already know the PHY-type.
1244 * This protects against very early setup where we don't know the
1245 * PHY-type, yet. wireless_core_reset will be called once again later,
1246 * when we know the PHY-type. */
1247 if (dev->phy.ops)
Michael Bueschcb24f572008-09-03 12:12:20 +02001248 dev->phy.ops->switch_analog(dev, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04001249
1250 macctl = b43_read32(dev, B43_MMIO_MACCTL);
1251 macctl &= ~B43_MACCTL_GMODE;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001252 if (gmode)
Michael Buesche4d6b792007-09-18 15:39:42 -04001253 macctl |= B43_MACCTL_GMODE;
1254 macctl |= B43_MACCTL_IHR_ENABLED;
1255 b43_write32(dev, B43_MMIO_MACCTL, macctl);
1256}
1257
1258static void handle_irq_transmit_status(struct b43_wldev *dev)
1259{
1260 u32 v0, v1;
1261 u16 tmp;
1262 struct b43_txstatus stat;
1263
1264 while (1) {
1265 v0 = b43_read32(dev, B43_MMIO_XMITSTAT_0);
1266 if (!(v0 & 0x00000001))
1267 break;
1268 v1 = b43_read32(dev, B43_MMIO_XMITSTAT_1);
1269
1270 stat.cookie = (v0 >> 16);
1271 stat.seq = (v1 & 0x0000FFFF);
1272 stat.phy_stat = ((v1 & 0x00FF0000) >> 16);
1273 tmp = (v0 & 0x0000FFFF);
1274 stat.frame_count = ((tmp & 0xF000) >> 12);
1275 stat.rts_count = ((tmp & 0x0F00) >> 8);
1276 stat.supp_reason = ((tmp & 0x001C) >> 2);
1277 stat.pm_indicated = !!(tmp & 0x0080);
1278 stat.intermediate = !!(tmp & 0x0040);
1279 stat.for_ampdu = !!(tmp & 0x0020);
1280 stat.acked = !!(tmp & 0x0002);
1281
1282 b43_handle_txstatus(dev, &stat);
1283 }
1284}
1285
1286static void drain_txstatus_queue(struct b43_wldev *dev)
1287{
1288 u32 dummy;
1289
Rafał Miłecki21d889d2011-05-18 02:06:38 +02001290 if (dev->dev->core_rev < 5)
Michael Buesche4d6b792007-09-18 15:39:42 -04001291 return;
1292 /* Read all entries from the microcode TXstatus FIFO
1293 * and throw them away.
1294 */
1295 while (1) {
1296 dummy = b43_read32(dev, B43_MMIO_XMITSTAT_0);
1297 if (!(dummy & 0x00000001))
1298 break;
1299 dummy = b43_read32(dev, B43_MMIO_XMITSTAT_1);
1300 }
1301}
1302
1303static u32 b43_jssi_read(struct b43_wldev *dev)
1304{
1305 u32 val = 0;
1306
1307 val = b43_shm_read16(dev, B43_SHM_SHARED, 0x08A);
1308 val <<= 16;
1309 val |= b43_shm_read16(dev, B43_SHM_SHARED, 0x088);
1310
1311 return val;
1312}
1313
1314static void b43_jssi_write(struct b43_wldev *dev, u32 jssi)
1315{
1316 b43_shm_write16(dev, B43_SHM_SHARED, 0x088, (jssi & 0x0000FFFF));
1317 b43_shm_write16(dev, B43_SHM_SHARED, 0x08A, (jssi & 0xFFFF0000) >> 16);
1318}
1319
1320static void b43_generate_noise_sample(struct b43_wldev *dev)
1321{
1322 b43_jssi_write(dev, 0x7F7F7F7F);
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01001323 b43_write32(dev, B43_MMIO_MACCMD,
1324 b43_read32(dev, B43_MMIO_MACCMD) | B43_MACCMD_BGNOISE);
Michael Buesche4d6b792007-09-18 15:39:42 -04001325}
1326
1327static void b43_calculate_link_quality(struct b43_wldev *dev)
1328{
1329 /* Top half of Link Quality calculation. */
1330
Michael Bueschef1a6282008-08-27 18:53:02 +02001331 if (dev->phy.type != B43_PHYTYPE_G)
1332 return;
Michael Buesche4d6b792007-09-18 15:39:42 -04001333 if (dev->noisecalc.calculation_running)
1334 return;
Michael Buesche4d6b792007-09-18 15:39:42 -04001335 dev->noisecalc.calculation_running = 1;
1336 dev->noisecalc.nr_samples = 0;
1337
1338 b43_generate_noise_sample(dev);
1339}
1340
1341static void handle_irq_noise(struct b43_wldev *dev)
1342{
Michael Bueschef1a6282008-08-27 18:53:02 +02001343 struct b43_phy_g *phy = dev->phy.g;
Michael Buesche4d6b792007-09-18 15:39:42 -04001344 u16 tmp;
1345 u8 noise[4];
1346 u8 i, j;
1347 s32 average;
1348
1349 /* Bottom half of Link Quality calculation. */
1350
Michael Bueschef1a6282008-08-27 18:53:02 +02001351 if (dev->phy.type != B43_PHYTYPE_G)
1352 return;
1353
Michael Buesch98a3b2f2008-06-12 12:36:29 +02001354 /* Possible race condition: It might be possible that the user
1355 * changed to a different channel in the meantime since we
1356 * started the calculation. We ignore that fact, since it's
1357 * not really that much of a problem. The background noise is
1358 * an estimation only anyway. Slightly wrong results will get damped
1359 * by the averaging of the 8 sample rounds. Additionally the
1360 * value is shortlived. So it will be replaced by the next noise
1361 * calculation round soon. */
1362
Michael Buesche4d6b792007-09-18 15:39:42 -04001363 B43_WARN_ON(!dev->noisecalc.calculation_running);
Michael Buesch1a094042007-09-20 11:13:40 -07001364 *((__le32 *)noise) = cpu_to_le32(b43_jssi_read(dev));
Michael Buesche4d6b792007-09-18 15:39:42 -04001365 if (noise[0] == 0x7F || noise[1] == 0x7F ||
1366 noise[2] == 0x7F || noise[3] == 0x7F)
1367 goto generate_new;
1368
1369 /* Get the noise samples. */
1370 B43_WARN_ON(dev->noisecalc.nr_samples >= 8);
1371 i = dev->noisecalc.nr_samples;
Harvey Harrisoncdbf0842008-05-02 13:47:48 -07001372 noise[0] = clamp_val(noise[0], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1373 noise[1] = clamp_val(noise[1], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1374 noise[2] = clamp_val(noise[2], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1375 noise[3] = clamp_val(noise[3], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04001376 dev->noisecalc.samples[i][0] = phy->nrssi_lt[noise[0]];
1377 dev->noisecalc.samples[i][1] = phy->nrssi_lt[noise[1]];
1378 dev->noisecalc.samples[i][2] = phy->nrssi_lt[noise[2]];
1379 dev->noisecalc.samples[i][3] = phy->nrssi_lt[noise[3]];
1380 dev->noisecalc.nr_samples++;
1381 if (dev->noisecalc.nr_samples == 8) {
1382 /* Calculate the Link Quality by the noise samples. */
1383 average = 0;
1384 for (i = 0; i < 8; i++) {
1385 for (j = 0; j < 4; j++)
1386 average += dev->noisecalc.samples[i][j];
1387 }
1388 average /= (8 * 4);
1389 average *= 125;
1390 average += 64;
1391 average /= 128;
1392 tmp = b43_shm_read16(dev, B43_SHM_SHARED, 0x40C);
1393 tmp = (tmp / 128) & 0x1F;
1394 if (tmp >= 8)
1395 average += 2;
1396 else
1397 average -= 25;
1398 if (tmp == 8)
1399 average -= 72;
1400 else
1401 average -= 48;
1402
1403 dev->stats.link_noise = average;
Michael Buesche4d6b792007-09-18 15:39:42 -04001404 dev->noisecalc.calculation_running = 0;
1405 return;
1406 }
Michael Buesch98a3b2f2008-06-12 12:36:29 +02001407generate_new:
Michael Buesche4d6b792007-09-18 15:39:42 -04001408 b43_generate_noise_sample(dev);
1409}
1410
1411static void handle_irq_tbtt_indication(struct b43_wldev *dev)
1412{
Johannes Berg05c914f2008-09-11 00:01:58 +02001413 if (b43_is_mode(dev->wl, NL80211_IFTYPE_AP)) {
Michael Buesche4d6b792007-09-18 15:39:42 -04001414 ///TODO: PS TBTT
1415 } else {
1416 if (1 /*FIXME: the last PSpoll frame was sent successfully */ )
1417 b43_power_saving_ctl_bits(dev, 0);
1418 }
Johannes Berg05c914f2008-09-11 00:01:58 +02001419 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC))
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01001420 dev->dfq_valid = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04001421}
1422
1423static void handle_irq_atim_end(struct b43_wldev *dev)
1424{
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01001425 if (dev->dfq_valid) {
1426 b43_write32(dev, B43_MMIO_MACCMD,
1427 b43_read32(dev, B43_MMIO_MACCMD)
1428 | B43_MACCMD_DFQ_VALID);
1429 dev->dfq_valid = 0;
1430 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001431}
1432
1433static void handle_irq_pmq(struct b43_wldev *dev)
1434{
1435 u32 tmp;
1436
1437 //TODO: AP mode.
1438
1439 while (1) {
1440 tmp = b43_read32(dev, B43_MMIO_PS_STATUS);
1441 if (!(tmp & 0x00000008))
1442 break;
1443 }
1444 /* 16bit write is odd, but correct. */
1445 b43_write16(dev, B43_MMIO_PS_STATUS, 0x0002);
1446}
1447
1448static void b43_write_template_common(struct b43_wldev *dev,
John Daiker99da1852009-02-24 02:16:42 -08001449 const u8 *data, u16 size,
Michael Buesche4d6b792007-09-18 15:39:42 -04001450 u16 ram_offset,
1451 u16 shm_size_offset, u8 rate)
1452{
1453 u32 i, tmp;
1454 struct b43_plcp_hdr4 plcp;
1455
1456 plcp.data = 0;
1457 b43_generate_plcp_hdr(&plcp, size + FCS_LEN, rate);
1458 b43_ram_write(dev, ram_offset, le32_to_cpu(plcp.data));
1459 ram_offset += sizeof(u32);
1460 /* The PLCP is 6 bytes long, but we only wrote 4 bytes, yet.
1461 * So leave the first two bytes of the next write blank.
1462 */
1463 tmp = (u32) (data[0]) << 16;
1464 tmp |= (u32) (data[1]) << 24;
1465 b43_ram_write(dev, ram_offset, tmp);
1466 ram_offset += sizeof(u32);
1467 for (i = 2; i < size; i += sizeof(u32)) {
1468 tmp = (u32) (data[i + 0]);
1469 if (i + 1 < size)
1470 tmp |= (u32) (data[i + 1]) << 8;
1471 if (i + 2 < size)
1472 tmp |= (u32) (data[i + 2]) << 16;
1473 if (i + 3 < size)
1474 tmp |= (u32) (data[i + 3]) << 24;
1475 b43_ram_write(dev, ram_offset + i - 2, tmp);
1476 }
1477 b43_shm_write16(dev, B43_SHM_SHARED, shm_size_offset,
1478 size + sizeof(struct b43_plcp_hdr6));
1479}
1480
Michael Buesch5042c502008-04-05 15:05:00 +02001481/* Check if the use of the antenna that ieee80211 told us to
1482 * use is possible. This will fall back to DEFAULT.
1483 * "antenna_nr" is the antenna identifier we got from ieee80211. */
1484u8 b43_ieee80211_antenna_sanitize(struct b43_wldev *dev,
1485 u8 antenna_nr)
1486{
1487 u8 antenna_mask;
1488
1489 if (antenna_nr == 0) {
1490 /* Zero means "use default antenna". That's always OK. */
1491 return 0;
1492 }
1493
1494 /* Get the mask of available antennas. */
1495 if (dev->phy.gmode)
Rafał Miłecki05814832011-05-18 02:06:39 +02001496 antenna_mask = dev->dev->bus_sprom->ant_available_bg;
Michael Buesch5042c502008-04-05 15:05:00 +02001497 else
Rafał Miłecki05814832011-05-18 02:06:39 +02001498 antenna_mask = dev->dev->bus_sprom->ant_available_a;
Michael Buesch5042c502008-04-05 15:05:00 +02001499
1500 if (!(antenna_mask & (1 << (antenna_nr - 1)))) {
1501 /* This antenna is not available. Fall back to default. */
1502 return 0;
1503 }
1504
1505 return antenna_nr;
1506}
1507
Michael Buesch5042c502008-04-05 15:05:00 +02001508/* Convert a b43 antenna number value to the PHY TX control value. */
1509static u16 b43_antenna_to_phyctl(int antenna)
1510{
1511 switch (antenna) {
1512 case B43_ANTENNA0:
1513 return B43_TXH_PHY_ANT0;
1514 case B43_ANTENNA1:
1515 return B43_TXH_PHY_ANT1;
1516 case B43_ANTENNA2:
1517 return B43_TXH_PHY_ANT2;
1518 case B43_ANTENNA3:
1519 return B43_TXH_PHY_ANT3;
Gábor Stefanik64e368b2009-08-27 22:49:49 +02001520 case B43_ANTENNA_AUTO0:
1521 case B43_ANTENNA_AUTO1:
Michael Buesch5042c502008-04-05 15:05:00 +02001522 return B43_TXH_PHY_ANT01AUTO;
1523 }
1524 B43_WARN_ON(1);
1525 return 0;
1526}
1527
Michael Buesche4d6b792007-09-18 15:39:42 -04001528static void b43_write_beacon_template(struct b43_wldev *dev,
1529 u16 ram_offset,
Michael Buesch5042c502008-04-05 15:05:00 +02001530 u16 shm_size_offset)
Michael Buesche4d6b792007-09-18 15:39:42 -04001531{
Michael Buesch47f76ca2007-12-27 22:15:11 +01001532 unsigned int i, len, variable_len;
Michael Buesche66fee62007-12-26 17:47:10 +01001533 const struct ieee80211_mgmt *bcn;
1534 const u8 *ie;
1535 bool tim_found = 0;
Michael Buesch5042c502008-04-05 15:05:00 +02001536 unsigned int rate;
1537 u16 ctl;
1538 int antenna;
Johannes Berge039fa42008-05-15 12:55:29 +02001539 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(dev->wl->current_beacon);
Michael Buesche4d6b792007-09-18 15:39:42 -04001540
Michael Buesche66fee62007-12-26 17:47:10 +01001541 bcn = (const struct ieee80211_mgmt *)(dev->wl->current_beacon->data);
1542 len = min((size_t) dev->wl->current_beacon->len,
Michael Buesche4d6b792007-09-18 15:39:42 -04001543 0x200 - sizeof(struct b43_plcp_hdr6));
Johannes Berge039fa42008-05-15 12:55:29 +02001544 rate = ieee80211_get_tx_rate(dev->wl->hw, info)->hw_value;
Michael Buesche66fee62007-12-26 17:47:10 +01001545
1546 b43_write_template_common(dev, (const u8 *)bcn,
Michael Buesche4d6b792007-09-18 15:39:42 -04001547 len, ram_offset, shm_size_offset, rate);
Michael Buesche66fee62007-12-26 17:47:10 +01001548
Michael Buesch5042c502008-04-05 15:05:00 +02001549 /* Write the PHY TX control parameters. */
Johannes Berg0f4ac382008-10-09 12:18:04 +02001550 antenna = B43_ANTENNA_DEFAULT;
Michael Buesch5042c502008-04-05 15:05:00 +02001551 antenna = b43_antenna_to_phyctl(antenna);
1552 ctl = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL);
1553 /* We can't send beacons with short preamble. Would get PHY errors. */
1554 ctl &= ~B43_TXH_PHY_SHORTPRMBL;
1555 ctl &= ~B43_TXH_PHY_ANT;
1556 ctl &= ~B43_TXH_PHY_ENC;
1557 ctl |= antenna;
1558 if (b43_is_cck_rate(rate))
1559 ctl |= B43_TXH_PHY_ENC_CCK;
1560 else
1561 ctl |= B43_TXH_PHY_ENC_OFDM;
1562 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL, ctl);
1563
Michael Buesche66fee62007-12-26 17:47:10 +01001564 /* Find the position of the TIM and the DTIM_period value
1565 * and write them to SHM. */
1566 ie = bcn->u.beacon.variable;
Michael Buesch47f76ca2007-12-27 22:15:11 +01001567 variable_len = len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
1568 for (i = 0; i < variable_len - 2; ) {
Michael Buesche66fee62007-12-26 17:47:10 +01001569 uint8_t ie_id, ie_len;
1570
1571 ie_id = ie[i];
1572 ie_len = ie[i + 1];
1573 if (ie_id == 5) {
1574 u16 tim_position;
1575 u16 dtim_period;
1576 /* This is the TIM Information Element */
1577
1578 /* Check whether the ie_len is in the beacon data range. */
Michael Buesch47f76ca2007-12-27 22:15:11 +01001579 if (variable_len < ie_len + 2 + i)
Michael Buesche66fee62007-12-26 17:47:10 +01001580 break;
1581 /* A valid TIM is at least 4 bytes long. */
1582 if (ie_len < 4)
1583 break;
1584 tim_found = 1;
1585
1586 tim_position = sizeof(struct b43_plcp_hdr6);
1587 tim_position += offsetof(struct ieee80211_mgmt, u.beacon.variable);
1588 tim_position += i;
1589
1590 dtim_period = ie[i + 3];
1591
1592 b43_shm_write16(dev, B43_SHM_SHARED,
1593 B43_SHM_SH_TIMBPOS, tim_position);
1594 b43_shm_write16(dev, B43_SHM_SHARED,
1595 B43_SHM_SH_DTIMPER, dtim_period);
1596 break;
1597 }
1598 i += ie_len + 2;
1599 }
1600 if (!tim_found) {
Johannes Berg04dea132008-05-20 12:10:49 +02001601 /*
1602 * If ucode wants to modify TIM do it behind the beacon, this
1603 * will happen, for example, when doing mesh networking.
1604 */
1605 b43_shm_write16(dev, B43_SHM_SHARED,
1606 B43_SHM_SH_TIMBPOS,
1607 len + sizeof(struct b43_plcp_hdr6));
1608 b43_shm_write16(dev, B43_SHM_SHARED,
1609 B43_SHM_SH_DTIMPER, 0);
1610 }
1611 b43dbg(dev->wl, "Updated beacon template at 0x%x\n", ram_offset);
Michael Buesche4d6b792007-09-18 15:39:42 -04001612}
1613
Michael Buesch6b4bec02008-05-20 12:16:28 +02001614static void b43_upload_beacon0(struct b43_wldev *dev)
1615{
1616 struct b43_wl *wl = dev->wl;
1617
1618 if (wl->beacon0_uploaded)
1619 return;
1620 b43_write_beacon_template(dev, 0x68, 0x18);
Michael Buesch6b4bec02008-05-20 12:16:28 +02001621 wl->beacon0_uploaded = 1;
1622}
1623
1624static void b43_upload_beacon1(struct b43_wldev *dev)
1625{
1626 struct b43_wl *wl = dev->wl;
1627
1628 if (wl->beacon1_uploaded)
1629 return;
1630 b43_write_beacon_template(dev, 0x468, 0x1A);
1631 wl->beacon1_uploaded = 1;
1632}
1633
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001634static void handle_irq_beacon(struct b43_wldev *dev)
1635{
1636 struct b43_wl *wl = dev->wl;
1637 u32 cmd, beacon0_valid, beacon1_valid;
1638
Johannes Berg05c914f2008-09-11 00:01:58 +02001639 if (!b43_is_mode(wl, NL80211_IFTYPE_AP) &&
Manual Munz8c235162011-09-18 18:24:03 -05001640 !b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT) &&
1641 !b43_is_mode(wl, NL80211_IFTYPE_ADHOC))
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001642 return;
1643
1644 /* This is the bottom half of the asynchronous beacon update. */
1645
1646 /* Ignore interrupt in the future. */
Michael Buesch13790722009-04-08 21:26:27 +02001647 dev->irq_mask &= ~B43_IRQ_BEACON;
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001648
1649 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1650 beacon0_valid = (cmd & B43_MACCMD_BEACON0_VALID);
1651 beacon1_valid = (cmd & B43_MACCMD_BEACON1_VALID);
1652
1653 /* Schedule interrupt manually, if busy. */
1654 if (beacon0_valid && beacon1_valid) {
1655 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, B43_IRQ_BEACON);
Michael Buesch13790722009-04-08 21:26:27 +02001656 dev->irq_mask |= B43_IRQ_BEACON;
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001657 return;
1658 }
1659
Michael Buesch6b4bec02008-05-20 12:16:28 +02001660 if (unlikely(wl->beacon_templates_virgin)) {
1661 /* We never uploaded a beacon before.
1662 * Upload both templates now, but only mark one valid. */
1663 wl->beacon_templates_virgin = 0;
1664 b43_upload_beacon0(dev);
1665 b43_upload_beacon1(dev);
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001666 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1667 cmd |= B43_MACCMD_BEACON0_VALID;
1668 b43_write32(dev, B43_MMIO_MACCMD, cmd);
Michael Buesch6b4bec02008-05-20 12:16:28 +02001669 } else {
1670 if (!beacon0_valid) {
1671 b43_upload_beacon0(dev);
1672 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1673 cmd |= B43_MACCMD_BEACON0_VALID;
1674 b43_write32(dev, B43_MMIO_MACCMD, cmd);
1675 } else if (!beacon1_valid) {
1676 b43_upload_beacon1(dev);
1677 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1678 cmd |= B43_MACCMD_BEACON1_VALID;
1679 b43_write32(dev, B43_MMIO_MACCMD, cmd);
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001680 }
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001681 }
1682}
1683
Michael Buesch36dbd952009-09-04 22:51:29 +02001684static void b43_do_beacon_update_trigger_work(struct b43_wldev *dev)
1685{
1686 u32 old_irq_mask = dev->irq_mask;
1687
1688 /* update beacon right away or defer to irq */
1689 handle_irq_beacon(dev);
1690 if (old_irq_mask != dev->irq_mask) {
1691 /* The handler updated the IRQ mask. */
1692 B43_WARN_ON(!dev->irq_mask);
1693 if (b43_read32(dev, B43_MMIO_GEN_IRQ_MASK)) {
1694 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
1695 } else {
1696 /* Device interrupts are currently disabled. That means
1697 * we just ran the hardirq handler and scheduled the
1698 * IRQ thread. The thread will write the IRQ mask when
1699 * it finished, so there's nothing to do here. Writing
1700 * the mask _here_ would incorrectly re-enable IRQs. */
1701 }
1702 }
1703}
1704
Michael Buescha82d9922008-04-04 21:40:06 +02001705static void b43_beacon_update_trigger_work(struct work_struct *work)
1706{
1707 struct b43_wl *wl = container_of(work, struct b43_wl,
1708 beacon_update_trigger);
1709 struct b43_wldev *dev;
1710
1711 mutex_lock(&wl->mutex);
1712 dev = wl->current_dev;
1713 if (likely(dev && (b43_status(dev) >= B43_STAT_INITIALIZED))) {
Rafał Miłecki505fb012011-05-19 15:11:27 +02001714 if (b43_bus_host_is_sdio(dev->dev)) {
Michael Buesch36dbd952009-09-04 22:51:29 +02001715 /* wl->mutex is enough. */
1716 b43_do_beacon_update_trigger_work(dev);
1717 mmiowb();
1718 } else {
1719 spin_lock_irq(&wl->hardirq_lock);
1720 b43_do_beacon_update_trigger_work(dev);
1721 mmiowb();
1722 spin_unlock_irq(&wl->hardirq_lock);
1723 }
Michael Buescha82d9922008-04-04 21:40:06 +02001724 }
1725 mutex_unlock(&wl->mutex);
1726}
1727
Michael Bueschd4df6f12007-12-26 18:04:14 +01001728/* Asynchronously update the packet templates in template RAM.
Michael Buesch36dbd952009-09-04 22:51:29 +02001729 * Locking: Requires wl->mutex to be locked. */
Johannes Berg9d139c82008-07-09 14:40:37 +02001730static void b43_update_templates(struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04001731{
Johannes Berg9d139c82008-07-09 14:40:37 +02001732 struct sk_buff *beacon;
1733
Michael Buesche66fee62007-12-26 17:47:10 +01001734 /* This is the top half of the ansynchronous beacon update.
1735 * The bottom half is the beacon IRQ.
1736 * Beacon update must be asynchronous to avoid sending an
1737 * invalid beacon. This can happen for example, if the firmware
1738 * transmits a beacon while we are updating it. */
Michael Buesche4d6b792007-09-18 15:39:42 -04001739
Johannes Berg9d139c82008-07-09 14:40:37 +02001740 /* We could modify the existing beacon and set the aid bit in
1741 * the TIM field, but that would probably require resizing and
1742 * moving of data within the beacon template.
1743 * Simply request a new beacon and let mac80211 do the hard work. */
1744 beacon = ieee80211_beacon_get(wl->hw, wl->vif);
1745 if (unlikely(!beacon))
1746 return;
1747
Michael Buesche66fee62007-12-26 17:47:10 +01001748 if (wl->current_beacon)
1749 dev_kfree_skb_any(wl->current_beacon);
1750 wl->current_beacon = beacon;
1751 wl->beacon0_uploaded = 0;
1752 wl->beacon1_uploaded = 0;
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001753 ieee80211_queue_work(wl->hw, &wl->beacon_update_trigger);
Michael Buesche4d6b792007-09-18 15:39:42 -04001754}
1755
Michael Buesche4d6b792007-09-18 15:39:42 -04001756static void b43_set_beacon_int(struct b43_wldev *dev, u16 beacon_int)
1757{
1758 b43_time_lock(dev);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02001759 if (dev->dev->core_rev >= 3) {
Michael Buescha82d9922008-04-04 21:40:06 +02001760 b43_write32(dev, B43_MMIO_TSF_CFP_REP, (beacon_int << 16));
1761 b43_write32(dev, B43_MMIO_TSF_CFP_START, (beacon_int << 10));
Michael Buesche4d6b792007-09-18 15:39:42 -04001762 } else {
1763 b43_write16(dev, 0x606, (beacon_int >> 6));
1764 b43_write16(dev, 0x610, beacon_int);
1765 }
1766 b43_time_unlock(dev);
Michael Buescha82d9922008-04-04 21:40:06 +02001767 b43dbg(dev->wl, "Set beacon interval to %u\n", beacon_int);
Michael Buesche4d6b792007-09-18 15:39:42 -04001768}
1769
Michael Bueschafa83e22008-05-19 23:51:37 +02001770static void b43_handle_firmware_panic(struct b43_wldev *dev)
1771{
1772 u16 reason;
1773
1774 /* Read the register that contains the reason code for the panic. */
1775 reason = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_FWPANIC_REASON_REG);
1776 b43err(dev->wl, "Whoopsy, firmware panic! Reason: %u\n", reason);
1777
1778 switch (reason) {
1779 default:
1780 b43dbg(dev->wl, "The panic reason is unknown.\n");
1781 /* fallthrough */
1782 case B43_FWPANIC_DIE:
1783 /* Do not restart the controller or firmware.
1784 * The device is nonfunctional from now on.
1785 * Restarting would result in this panic to trigger again,
1786 * so we avoid that recursion. */
1787 break;
1788 case B43_FWPANIC_RESTART:
1789 b43_controller_restart(dev, "Microcode panic");
1790 break;
1791 }
1792}
1793
Michael Buesche4d6b792007-09-18 15:39:42 -04001794static void handle_irq_ucode_debug(struct b43_wldev *dev)
1795{
Michael Buesche48b0ee2008-05-17 22:44:35 +02001796 unsigned int i, cnt;
Michael Buesch53c06852008-05-20 00:24:36 +02001797 u16 reason, marker_id, marker_line;
Michael Buesche48b0ee2008-05-17 22:44:35 +02001798 __le16 *buf;
1799
1800 /* The proprietary firmware doesn't have this IRQ. */
1801 if (!dev->fw.opensource)
1802 return;
1803
Michael Bueschafa83e22008-05-19 23:51:37 +02001804 /* Read the register that contains the reason code for this IRQ. */
1805 reason = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_DEBUGIRQ_REASON_REG);
1806
Michael Buesche48b0ee2008-05-17 22:44:35 +02001807 switch (reason) {
1808 case B43_DEBUGIRQ_PANIC:
Michael Bueschafa83e22008-05-19 23:51:37 +02001809 b43_handle_firmware_panic(dev);
Michael Buesche48b0ee2008-05-17 22:44:35 +02001810 break;
1811 case B43_DEBUGIRQ_DUMP_SHM:
1812 if (!B43_DEBUG)
1813 break; /* Only with driver debugging enabled. */
1814 buf = kmalloc(4096, GFP_ATOMIC);
1815 if (!buf) {
1816 b43dbg(dev->wl, "SHM-dump: Failed to allocate memory\n");
1817 goto out;
1818 }
1819 for (i = 0; i < 4096; i += 2) {
1820 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, i);
1821 buf[i / 2] = cpu_to_le16(tmp);
1822 }
1823 b43info(dev->wl, "Shared memory dump:\n");
1824 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET,
1825 16, 2, buf, 4096, 1);
1826 kfree(buf);
1827 break;
1828 case B43_DEBUGIRQ_DUMP_REGS:
1829 if (!B43_DEBUG)
1830 break; /* Only with driver debugging enabled. */
1831 b43info(dev->wl, "Microcode register dump:\n");
1832 for (i = 0, cnt = 0; i < 64; i++) {
1833 u16 tmp = b43_shm_read16(dev, B43_SHM_SCRATCH, i);
1834 if (cnt == 0)
1835 printk(KERN_INFO);
1836 printk("r%02u: 0x%04X ", i, tmp);
1837 cnt++;
1838 if (cnt == 6) {
1839 printk("\n");
1840 cnt = 0;
1841 }
1842 }
1843 printk("\n");
1844 break;
Michael Buesch53c06852008-05-20 00:24:36 +02001845 case B43_DEBUGIRQ_MARKER:
1846 if (!B43_DEBUG)
1847 break; /* Only with driver debugging enabled. */
1848 marker_id = b43_shm_read16(dev, B43_SHM_SCRATCH,
1849 B43_MARKER_ID_REG);
1850 marker_line = b43_shm_read16(dev, B43_SHM_SCRATCH,
1851 B43_MARKER_LINE_REG);
1852 b43info(dev->wl, "The firmware just executed the MARKER(%u) "
1853 "at line number %u\n",
1854 marker_id, marker_line);
1855 break;
Michael Buesche48b0ee2008-05-17 22:44:35 +02001856 default:
1857 b43dbg(dev->wl, "Debug-IRQ triggered for unknown reason: %u\n",
1858 reason);
1859 }
1860out:
Michael Bueschafa83e22008-05-19 23:51:37 +02001861 /* Acknowledge the debug-IRQ, so the firmware can continue. */
1862 b43_shm_write16(dev, B43_SHM_SCRATCH,
1863 B43_DEBUGIRQ_REASON_REG, B43_DEBUGIRQ_ACK);
Michael Buesche4d6b792007-09-18 15:39:42 -04001864}
1865
Michael Buesch36dbd952009-09-04 22:51:29 +02001866static void b43_do_interrupt_thread(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04001867{
1868 u32 reason;
1869 u32 dma_reason[ARRAY_SIZE(dev->dma_reason)];
1870 u32 merged_dma_reason = 0;
Michael Buesch21954c32007-09-27 15:31:40 +02001871 int i;
Michael Buesche4d6b792007-09-18 15:39:42 -04001872
Michael Buesch36dbd952009-09-04 22:51:29 +02001873 if (unlikely(b43_status(dev) != B43_STAT_STARTED))
1874 return;
Michael Buesche4d6b792007-09-18 15:39:42 -04001875
1876 reason = dev->irq_reason;
1877 for (i = 0; i < ARRAY_SIZE(dma_reason); i++) {
1878 dma_reason[i] = dev->dma_reason[i];
1879 merged_dma_reason |= dma_reason[i];
1880 }
1881
1882 if (unlikely(reason & B43_IRQ_MAC_TXERR))
1883 b43err(dev->wl, "MAC transmission error\n");
1884
Stefano Brivio00e0b8c2007-11-25 11:10:33 +01001885 if (unlikely(reason & B43_IRQ_PHY_TXERR)) {
Michael Buesche4d6b792007-09-18 15:39:42 -04001886 b43err(dev->wl, "PHY transmission error\n");
Stefano Brivio00e0b8c2007-11-25 11:10:33 +01001887 rmb();
1888 if (unlikely(atomic_dec_and_test(&dev->phy.txerr_cnt))) {
1889 atomic_set(&dev->phy.txerr_cnt,
1890 B43_PHY_TX_BADNESS_LIMIT);
1891 b43err(dev->wl, "Too many PHY TX errors, "
1892 "restarting the controller\n");
1893 b43_controller_restart(dev, "PHY TX errors");
1894 }
1895 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001896
1897 if (unlikely(merged_dma_reason & (B43_DMAIRQ_FATALMASK |
1898 B43_DMAIRQ_NONFATALMASK))) {
1899 if (merged_dma_reason & B43_DMAIRQ_FATALMASK) {
1900 b43err(dev->wl, "Fatal DMA error: "
1901 "0x%08X, 0x%08X, 0x%08X, "
1902 "0x%08X, 0x%08X, 0x%08X\n",
1903 dma_reason[0], dma_reason[1],
1904 dma_reason[2], dma_reason[3],
1905 dma_reason[4], dma_reason[5]);
Larry Finger214ac9a2009-12-09 13:25:56 -06001906 b43err(dev->wl, "This device does not support DMA "
Larry Fingerbb64d952010-06-19 08:29:08 -05001907 "on your system. It will now be switched to PIO.\n");
Linus Torvalds9e3bd912010-02-26 10:34:27 -08001908 /* Fall back to PIO transfers if we get fatal DMA errors! */
1909 dev->use_pio = 1;
1910 b43_controller_restart(dev, "DMA error");
Michael Buesche4d6b792007-09-18 15:39:42 -04001911 return;
1912 }
1913 if (merged_dma_reason & B43_DMAIRQ_NONFATALMASK) {
1914 b43err(dev->wl, "DMA error: "
1915 "0x%08X, 0x%08X, 0x%08X, "
1916 "0x%08X, 0x%08X, 0x%08X\n",
1917 dma_reason[0], dma_reason[1],
1918 dma_reason[2], dma_reason[3],
1919 dma_reason[4], dma_reason[5]);
1920 }
1921 }
1922
1923 if (unlikely(reason & B43_IRQ_UCODE_DEBUG))
1924 handle_irq_ucode_debug(dev);
1925 if (reason & B43_IRQ_TBTT_INDI)
1926 handle_irq_tbtt_indication(dev);
1927 if (reason & B43_IRQ_ATIM_END)
1928 handle_irq_atim_end(dev);
1929 if (reason & B43_IRQ_BEACON)
1930 handle_irq_beacon(dev);
1931 if (reason & B43_IRQ_PMQ)
1932 handle_irq_pmq(dev);
Michael Buesch21954c32007-09-27 15:31:40 +02001933 if (reason & B43_IRQ_TXFIFO_FLUSH_OK)
1934 ;/* TODO */
1935 if (reason & B43_IRQ_NOISESAMPLE_OK)
Michael Buesche4d6b792007-09-18 15:39:42 -04001936 handle_irq_noise(dev);
1937
1938 /* Check the DMA reason registers for received data. */
Michael Buesch5100d5a2008-03-29 21:01:16 +01001939 if (dma_reason[0] & B43_DMAIRQ_RX_DONE) {
1940 if (b43_using_pio_transfers(dev))
1941 b43_pio_rx(dev->pio.rx_queue);
1942 else
1943 b43_dma_rx(dev->dma.rx_ring);
1944 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001945 B43_WARN_ON(dma_reason[1] & B43_DMAIRQ_RX_DONE);
1946 B43_WARN_ON(dma_reason[2] & B43_DMAIRQ_RX_DONE);
Michael Bueschb27faf82008-03-06 16:32:46 +01001947 B43_WARN_ON(dma_reason[3] & B43_DMAIRQ_RX_DONE);
Michael Buesche4d6b792007-09-18 15:39:42 -04001948 B43_WARN_ON(dma_reason[4] & B43_DMAIRQ_RX_DONE);
1949 B43_WARN_ON(dma_reason[5] & B43_DMAIRQ_RX_DONE);
1950
Michael Buesch21954c32007-09-27 15:31:40 +02001951 if (reason & B43_IRQ_TX_OK)
Michael Buesche4d6b792007-09-18 15:39:42 -04001952 handle_irq_transmit_status(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04001953
Michael Buesch36dbd952009-09-04 22:51:29 +02001954 /* Re-enable interrupts on the device by restoring the current interrupt mask. */
Michael Buesch13790722009-04-08 21:26:27 +02001955 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
Michael Buesch990b86f2009-09-12 00:48:03 +02001956
1957#if B43_DEBUG
1958 if (b43_debug(dev, B43_DBG_VERBOSESTATS)) {
1959 dev->irq_count++;
1960 for (i = 0; i < ARRAY_SIZE(dev->irq_bit_count); i++) {
1961 if (reason & (1 << i))
1962 dev->irq_bit_count[i]++;
1963 }
1964 }
1965#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04001966}
1967
Michael Buesch36dbd952009-09-04 22:51:29 +02001968/* Interrupt thread handler. Handles device interrupts in thread context. */
1969static irqreturn_t b43_interrupt_thread_handler(int irq, void *dev_id)
Michael Buesche4d6b792007-09-18 15:39:42 -04001970{
Michael Buesche4d6b792007-09-18 15:39:42 -04001971 struct b43_wldev *dev = dev_id;
Michael Buesch36dbd952009-09-04 22:51:29 +02001972
1973 mutex_lock(&dev->wl->mutex);
1974 b43_do_interrupt_thread(dev);
1975 mmiowb();
1976 mutex_unlock(&dev->wl->mutex);
1977
1978 return IRQ_HANDLED;
1979}
1980
1981static irqreturn_t b43_do_interrupt(struct b43_wldev *dev)
1982{
Michael Buesche4d6b792007-09-18 15:39:42 -04001983 u32 reason;
1984
Michael Buesch36dbd952009-09-04 22:51:29 +02001985 /* This code runs under wl->hardirq_lock, but _only_ on non-SDIO busses.
1986 * On SDIO, this runs under wl->mutex. */
Michael Buesche4d6b792007-09-18 15:39:42 -04001987
Michael Buesche4d6b792007-09-18 15:39:42 -04001988 reason = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
1989 if (reason == 0xffffffff) /* shared IRQ */
Michael Buesch36dbd952009-09-04 22:51:29 +02001990 return IRQ_NONE;
Michael Buesch13790722009-04-08 21:26:27 +02001991 reason &= dev->irq_mask;
Michael Buesche4d6b792007-09-18 15:39:42 -04001992 if (!reason)
Sebastian Andrzej Siewiorcae56142011-07-07 21:58:10 +02001993 return IRQ_NONE;
Michael Buesche4d6b792007-09-18 15:39:42 -04001994
1995 dev->dma_reason[0] = b43_read32(dev, B43_MMIO_DMA0_REASON)
1996 & 0x0001DC00;
1997 dev->dma_reason[1] = b43_read32(dev, B43_MMIO_DMA1_REASON)
1998 & 0x0000DC00;
1999 dev->dma_reason[2] = b43_read32(dev, B43_MMIO_DMA2_REASON)
2000 & 0x0000DC00;
2001 dev->dma_reason[3] = b43_read32(dev, B43_MMIO_DMA3_REASON)
2002 & 0x0001DC00;
2003 dev->dma_reason[4] = b43_read32(dev, B43_MMIO_DMA4_REASON)
2004 & 0x0000DC00;
Michael Buesch13790722009-04-08 21:26:27 +02002005/* Unused ring
Michael Buesche4d6b792007-09-18 15:39:42 -04002006 dev->dma_reason[5] = b43_read32(dev, B43_MMIO_DMA5_REASON)
2007 & 0x0000DC00;
Michael Buesch13790722009-04-08 21:26:27 +02002008*/
Michael Buesche4d6b792007-09-18 15:39:42 -04002009
Michael Buesch36dbd952009-09-04 22:51:29 +02002010 /* ACK the interrupt. */
2011 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, reason);
2012 b43_write32(dev, B43_MMIO_DMA0_REASON, dev->dma_reason[0]);
2013 b43_write32(dev, B43_MMIO_DMA1_REASON, dev->dma_reason[1]);
2014 b43_write32(dev, B43_MMIO_DMA2_REASON, dev->dma_reason[2]);
2015 b43_write32(dev, B43_MMIO_DMA3_REASON, dev->dma_reason[3]);
2016 b43_write32(dev, B43_MMIO_DMA4_REASON, dev->dma_reason[4]);
2017/* Unused ring
2018 b43_write32(dev, B43_MMIO_DMA5_REASON, dev->dma_reason[5]);
2019*/
2020
2021 /* Disable IRQs on the device. The IRQ thread handler will re-enable them. */
Michael Buesch13790722009-04-08 21:26:27 +02002022 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
Michael Buesch36dbd952009-09-04 22:51:29 +02002023 /* Save the reason bitmasks for the IRQ thread handler. */
Michael Buesche4d6b792007-09-18 15:39:42 -04002024 dev->irq_reason = reason;
Michael Buesch36dbd952009-09-04 22:51:29 +02002025
2026 return IRQ_WAKE_THREAD;
2027}
2028
2029/* Interrupt handler top-half. This runs with interrupts disabled. */
2030static irqreturn_t b43_interrupt_handler(int irq, void *dev_id)
2031{
2032 struct b43_wldev *dev = dev_id;
2033 irqreturn_t ret;
2034
2035 if (unlikely(b43_status(dev) < B43_STAT_STARTED))
2036 return IRQ_NONE;
2037
2038 spin_lock(&dev->wl->hardirq_lock);
2039 ret = b43_do_interrupt(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04002040 mmiowb();
Michael Buesch36dbd952009-09-04 22:51:29 +02002041 spin_unlock(&dev->wl->hardirq_lock);
Michael Buesche4d6b792007-09-18 15:39:42 -04002042
2043 return ret;
2044}
2045
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002046/* SDIO interrupt handler. This runs in process context. */
2047static void b43_sdio_interrupt_handler(struct b43_wldev *dev)
2048{
2049 struct b43_wl *wl = dev->wl;
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002050 irqreturn_t ret;
2051
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002052 mutex_lock(&wl->mutex);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002053
2054 ret = b43_do_interrupt(dev);
2055 if (ret == IRQ_WAKE_THREAD)
2056 b43_do_interrupt_thread(dev);
2057
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002058 mutex_unlock(&wl->mutex);
2059}
2060
Michael Buesch1a9f5092009-01-23 21:21:51 +01002061void b43_do_release_fw(struct b43_firmware_file *fw)
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002062{
2063 release_firmware(fw->data);
2064 fw->data = NULL;
2065 fw->filename = NULL;
2066}
2067
Michael Buesche4d6b792007-09-18 15:39:42 -04002068static void b43_release_firmware(struct b43_wldev *dev)
2069{
Michael Buesch1a9f5092009-01-23 21:21:51 +01002070 b43_do_release_fw(&dev->fw.ucode);
2071 b43_do_release_fw(&dev->fw.pcm);
2072 b43_do_release_fw(&dev->fw.initvals);
2073 b43_do_release_fw(&dev->fw.initvals_band);
Michael Buesche4d6b792007-09-18 15:39:42 -04002074}
2075
Michael Buescheb189d82008-01-28 14:47:41 -08002076static void b43_print_fw_helptext(struct b43_wl *wl, bool error)
Michael Buesche4d6b792007-09-18 15:39:42 -04002077{
Hannes Ederfc68ed42009-02-14 11:50:06 +00002078 const char text[] =
2079 "You must go to " \
2080 "http://wireless.kernel.org/en/users/Drivers/b43#devicefirmware " \
2081 "and download the correct firmware for this driver version. " \
2082 "Please carefully read all instructions on this website.\n";
Michael Buescheb189d82008-01-28 14:47:41 -08002083
Michael Buescheb189d82008-01-28 14:47:41 -08002084 if (error)
2085 b43err(wl, text);
2086 else
2087 b43warn(wl, text);
Michael Buesche4d6b792007-09-18 15:39:42 -04002088}
2089
Michael Buesch1a9f5092009-01-23 21:21:51 +01002090int b43_do_request_fw(struct b43_request_fw_context *ctx,
2091 const char *name,
2092 struct b43_firmware_file *fw)
Michael Buesche4d6b792007-09-18 15:39:42 -04002093{
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002094 const struct firmware *blob;
Michael Buesche4d6b792007-09-18 15:39:42 -04002095 struct b43_fw_header *hdr;
2096 u32 size;
2097 int err;
2098
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002099 if (!name) {
2100 /* Don't fetch anything. Free possibly cached firmware. */
Michael Buesch1a9f5092009-01-23 21:21:51 +01002101 /* FIXME: We should probably keep it anyway, to save some headache
2102 * on suspend/resume with multiband devices. */
2103 b43_do_release_fw(fw);
Michael Buesche4d6b792007-09-18 15:39:42 -04002104 return 0;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002105 }
2106 if (fw->filename) {
Michael Buesch1a9f5092009-01-23 21:21:51 +01002107 if ((fw->type == ctx->req_type) &&
2108 (strcmp(fw->filename, name) == 0))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002109 return 0; /* Already have this fw. */
2110 /* Free the cached firmware first. */
Michael Buesch1a9f5092009-01-23 21:21:51 +01002111 /* FIXME: We should probably do this later after we successfully
2112 * got the new fw. This could reduce headache with multiband devices.
2113 * We could also redesign this to cache the firmware for all possible
2114 * bands all the time. */
2115 b43_do_release_fw(fw);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002116 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002117
Michael Buesch1a9f5092009-01-23 21:21:51 +01002118 switch (ctx->req_type) {
2119 case B43_FWTYPE_PROPRIETARY:
2120 snprintf(ctx->fwname, sizeof(ctx->fwname),
2121 "b43%s/%s.fw",
2122 modparam_fwpostfix, name);
2123 break;
2124 case B43_FWTYPE_OPENSOURCE:
2125 snprintf(ctx->fwname, sizeof(ctx->fwname),
2126 "b43-open%s/%s.fw",
2127 modparam_fwpostfix, name);
2128 break;
2129 default:
2130 B43_WARN_ON(1);
2131 return -ENOSYS;
2132 }
Rafał Miłeckia18c7152011-05-18 02:06:40 +02002133 err = request_firmware(&blob, ctx->fwname, ctx->dev->dev->dev);
Michael Buesch68217832008-05-17 23:43:57 +02002134 if (err == -ENOENT) {
Michael Buesch1a9f5092009-01-23 21:21:51 +01002135 snprintf(ctx->errors[ctx->req_type],
2136 sizeof(ctx->errors[ctx->req_type]),
2137 "Firmware file \"%s\" not found\n", ctx->fwname);
Michael Buesch68217832008-05-17 23:43:57 +02002138 return err;
2139 } else if (err) {
Michael Buesch1a9f5092009-01-23 21:21:51 +01002140 snprintf(ctx->errors[ctx->req_type],
2141 sizeof(ctx->errors[ctx->req_type]),
2142 "Firmware file \"%s\" request failed (err=%d)\n",
2143 ctx->fwname, err);
Michael Buesche4d6b792007-09-18 15:39:42 -04002144 return err;
2145 }
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002146 if (blob->size < sizeof(struct b43_fw_header))
Michael Buesche4d6b792007-09-18 15:39:42 -04002147 goto err_format;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002148 hdr = (struct b43_fw_header *)(blob->data);
Michael Buesche4d6b792007-09-18 15:39:42 -04002149 switch (hdr->type) {
2150 case B43_FW_TYPE_UCODE:
2151 case B43_FW_TYPE_PCM:
2152 size = be32_to_cpu(hdr->size);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002153 if (size != blob->size - sizeof(struct b43_fw_header))
Michael Buesche4d6b792007-09-18 15:39:42 -04002154 goto err_format;
2155 /* fallthrough */
2156 case B43_FW_TYPE_IV:
2157 if (hdr->ver != 1)
2158 goto err_format;
2159 break;
2160 default:
2161 goto err_format;
2162 }
2163
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002164 fw->data = blob;
2165 fw->filename = name;
Michael Buesch1a9f5092009-01-23 21:21:51 +01002166 fw->type = ctx->req_type;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002167
2168 return 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04002169
2170err_format:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002171 snprintf(ctx->errors[ctx->req_type],
2172 sizeof(ctx->errors[ctx->req_type]),
2173 "Firmware file \"%s\" format error.\n", ctx->fwname);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002174 release_firmware(blob);
2175
Michael Buesche4d6b792007-09-18 15:39:42 -04002176 return -EPROTO;
2177}
2178
Michael Buesch1a9f5092009-01-23 21:21:51 +01002179static int b43_try_request_fw(struct b43_request_fw_context *ctx)
Michael Buesche4d6b792007-09-18 15:39:42 -04002180{
Michael Buesch1a9f5092009-01-23 21:21:51 +01002181 struct b43_wldev *dev = ctx->dev;
2182 struct b43_firmware *fw = &ctx->dev->fw;
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002183 const u8 rev = ctx->dev->dev->core_rev;
Michael Buesche4d6b792007-09-18 15:39:42 -04002184 const char *filename;
2185 u32 tmshigh;
2186 int err;
2187
Rafał Miłecki8b9bda72011-07-07 18:58:24 +02002188 /* Files for HT and LCN were found by trying one by one */
2189
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002190 /* Get microcode */
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002191 if ((rev >= 5) && (rev <= 10)) {
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002192 filename = "ucode5";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002193 } else if ((rev >= 11) && (rev <= 12)) {
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002194 filename = "ucode11";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002195 } else if (rev == 13) {
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002196 filename = "ucode13";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002197 } else if (rev == 14) {
Gábor Stefanik759b9732009-08-14 14:39:53 +02002198 filename = "ucode14";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002199 } else if (rev == 15) {
Gábor Stefanik759b9732009-08-14 14:39:53 +02002200 filename = "ucode15";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002201 } else {
2202 switch (dev->phy.type) {
2203 case B43_PHYTYPE_N:
2204 if (rev >= 16)
2205 filename = "ucode16_mimo";
2206 else
2207 goto err_no_ucode;
2208 break;
Rafał Miłecki8b9bda72011-07-07 18:58:24 +02002209 case B43_PHYTYPE_HT:
2210 if (rev == 29)
2211 filename = "ucode29_mimo";
2212 else
2213 goto err_no_ucode;
2214 break;
2215 case B43_PHYTYPE_LCN:
2216 if (rev == 24)
2217 filename = "ucode24_mimo";
2218 else
2219 goto err_no_ucode;
2220 break;
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002221 default:
2222 goto err_no_ucode;
2223 }
2224 }
Michael Buesch1a9f5092009-01-23 21:21:51 +01002225 err = b43_do_request_fw(ctx, filename, &fw->ucode);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002226 if (err)
2227 goto err_load;
2228
2229 /* Get PCM code */
2230 if ((rev >= 5) && (rev <= 10))
2231 filename = "pcm5";
2232 else if (rev >= 11)
2233 filename = NULL;
2234 else
2235 goto err_no_pcm;
Michael Buesch68217832008-05-17 23:43:57 +02002236 fw->pcm_request_failed = 0;
Michael Buesch1a9f5092009-01-23 21:21:51 +01002237 err = b43_do_request_fw(ctx, filename, &fw->pcm);
Michael Buesch68217832008-05-17 23:43:57 +02002238 if (err == -ENOENT) {
2239 /* We did not find a PCM file? Not fatal, but
2240 * core rev <= 10 must do without hwcrypto then. */
2241 fw->pcm_request_failed = 1;
2242 } else if (err)
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002243 goto err_load;
2244
2245 /* Get initvals */
2246 switch (dev->phy.type) {
2247 case B43_PHYTYPE_A:
2248 if ((rev >= 5) && (rev <= 10)) {
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02002249 tmshigh = ssb_read32(dev->dev->sdev, SSB_TMSHIGH);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002250 if (tmshigh & B43_TMSHIGH_HAVE_2GHZ_PHY)
2251 filename = "a0g1initvals5";
2252 else
2253 filename = "a0g0initvals5";
2254 } else
2255 goto err_no_initvals;
2256 break;
2257 case B43_PHYTYPE_G:
Michael Buesche4d6b792007-09-18 15:39:42 -04002258 if ((rev >= 5) && (rev <= 10))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002259 filename = "b0g0initvals5";
Michael Buesche4d6b792007-09-18 15:39:42 -04002260 else if (rev >= 13)
Larry.Finger@lwfinger.nete9304882008-05-15 14:07:36 -05002261 filename = "b0g0initvals13";
Michael Buesche4d6b792007-09-18 15:39:42 -04002262 else
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002263 goto err_no_initvals;
2264 break;
2265 case B43_PHYTYPE_N:
Rafał Miłeckie41596a2010-12-21 11:50:19 +01002266 if (rev >= 16)
2267 filename = "n0initvals16";
2268 else if ((rev >= 11) && (rev <= 12))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002269 filename = "n0initvals11";
2270 else
2271 goto err_no_initvals;
2272 break;
Gábor Stefanik759b9732009-08-14 14:39:53 +02002273 case B43_PHYTYPE_LP:
2274 if (rev == 13)
2275 filename = "lp0initvals13";
2276 else if (rev == 14)
2277 filename = "lp0initvals14";
2278 else if (rev >= 15)
2279 filename = "lp0initvals15";
2280 else
2281 goto err_no_initvals;
2282 break;
Rafał Miłecki8b9bda72011-07-07 18:58:24 +02002283 case B43_PHYTYPE_HT:
2284 if (rev == 29)
2285 filename = "ht0initvals29";
2286 else
2287 goto err_no_initvals;
2288 break;
2289 case B43_PHYTYPE_LCN:
2290 if (rev == 24)
2291 filename = "lcn0initvals24";
2292 else
2293 goto err_no_initvals;
2294 break;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002295 default:
2296 goto err_no_initvals;
Michael Buesche4d6b792007-09-18 15:39:42 -04002297 }
Michael Buesch1a9f5092009-01-23 21:21:51 +01002298 err = b43_do_request_fw(ctx, filename, &fw->initvals);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002299 if (err)
2300 goto err_load;
2301
2302 /* Get bandswitch initvals */
2303 switch (dev->phy.type) {
2304 case B43_PHYTYPE_A:
2305 if ((rev >= 5) && (rev <= 10)) {
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02002306 tmshigh = ssb_read32(dev->dev->sdev, SSB_TMSHIGH);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002307 if (tmshigh & B43_TMSHIGH_HAVE_2GHZ_PHY)
2308 filename = "a0g1bsinitvals5";
2309 else
2310 filename = "a0g0bsinitvals5";
2311 } else if (rev >= 11)
2312 filename = NULL;
2313 else
2314 goto err_no_initvals;
2315 break;
2316 case B43_PHYTYPE_G:
Michael Buesche4d6b792007-09-18 15:39:42 -04002317 if ((rev >= 5) && (rev <= 10))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002318 filename = "b0g0bsinitvals5";
Michael Buesche4d6b792007-09-18 15:39:42 -04002319 else if (rev >= 11)
2320 filename = NULL;
2321 else
Michael Buesche4d6b792007-09-18 15:39:42 -04002322 goto err_no_initvals;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002323 break;
2324 case B43_PHYTYPE_N:
Rafał Miłeckie41596a2010-12-21 11:50:19 +01002325 if (rev >= 16)
2326 filename = "n0bsinitvals16";
2327 else if ((rev >= 11) && (rev <= 12))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002328 filename = "n0bsinitvals11";
2329 else
Michael Buesche4d6b792007-09-18 15:39:42 -04002330 goto err_no_initvals;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002331 break;
Gábor Stefanik759b9732009-08-14 14:39:53 +02002332 case B43_PHYTYPE_LP:
2333 if (rev == 13)
2334 filename = "lp0bsinitvals13";
2335 else if (rev == 14)
2336 filename = "lp0bsinitvals14";
2337 else if (rev >= 15)
2338 filename = "lp0bsinitvals15";
2339 else
2340 goto err_no_initvals;
2341 break;
Rafał Miłecki8b9bda72011-07-07 18:58:24 +02002342 case B43_PHYTYPE_HT:
2343 if (rev == 29)
2344 filename = "ht0bsinitvals29";
2345 else
2346 goto err_no_initvals;
2347 break;
2348 case B43_PHYTYPE_LCN:
2349 if (rev == 24)
2350 filename = "lcn0bsinitvals24";
2351 else
2352 goto err_no_initvals;
2353 break;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002354 default:
2355 goto err_no_initvals;
Michael Buesche4d6b792007-09-18 15:39:42 -04002356 }
Michael Buesch1a9f5092009-01-23 21:21:51 +01002357 err = b43_do_request_fw(ctx, filename, &fw->initvals_band);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002358 if (err)
2359 goto err_load;
Michael Buesche4d6b792007-09-18 15:39:42 -04002360
2361 return 0;
2362
Michael Buesche4d6b792007-09-18 15:39:42 -04002363err_no_ucode:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002364 err = ctx->fatal_failure = -EOPNOTSUPP;
2365 b43err(dev->wl, "The driver does not know which firmware (ucode) "
2366 "is required for your device (wl-core rev %u)\n", rev);
Michael Buesche4d6b792007-09-18 15:39:42 -04002367 goto error;
2368
2369err_no_pcm:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002370 err = ctx->fatal_failure = -EOPNOTSUPP;
2371 b43err(dev->wl, "The driver does not know which firmware (PCM) "
2372 "is required for your device (wl-core rev %u)\n", rev);
Michael Buesche4d6b792007-09-18 15:39:42 -04002373 goto error;
2374
2375err_no_initvals:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002376 err = ctx->fatal_failure = -EOPNOTSUPP;
2377 b43err(dev->wl, "The driver does not know which firmware (initvals) "
2378 "is required for your device (wl-core rev %u)\n", rev);
2379 goto error;
2380
2381err_load:
2382 /* We failed to load this firmware image. The error message
2383 * already is in ctx->errors. Return and let our caller decide
2384 * what to do. */
Michael Buesche4d6b792007-09-18 15:39:42 -04002385 goto error;
2386
2387error:
2388 b43_release_firmware(dev);
2389 return err;
2390}
2391
Michael Buesch1a9f5092009-01-23 21:21:51 +01002392static int b43_request_firmware(struct b43_wldev *dev)
2393{
2394 struct b43_request_fw_context *ctx;
2395 unsigned int i;
2396 int err;
2397 const char *errmsg;
2398
2399 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
2400 if (!ctx)
2401 return -ENOMEM;
2402 ctx->dev = dev;
2403
2404 ctx->req_type = B43_FWTYPE_PROPRIETARY;
2405 err = b43_try_request_fw(ctx);
2406 if (!err)
2407 goto out; /* Successfully loaded it. */
2408 err = ctx->fatal_failure;
2409 if (err)
2410 goto out;
2411
2412 ctx->req_type = B43_FWTYPE_OPENSOURCE;
2413 err = b43_try_request_fw(ctx);
2414 if (!err)
2415 goto out; /* Successfully loaded it. */
2416 err = ctx->fatal_failure;
2417 if (err)
2418 goto out;
2419
2420 /* Could not find a usable firmware. Print the errors. */
2421 for (i = 0; i < B43_NR_FWTYPES; i++) {
2422 errmsg = ctx->errors[i];
2423 if (strlen(errmsg))
2424 b43err(dev->wl, errmsg);
2425 }
2426 b43_print_fw_helptext(dev->wl, 1);
2427 err = -ENOENT;
2428
2429out:
2430 kfree(ctx);
2431 return err;
2432}
2433
Michael Buesche4d6b792007-09-18 15:39:42 -04002434static int b43_upload_microcode(struct b43_wldev *dev)
2435{
John W. Linville652caa52010-07-29 13:27:28 -04002436 struct wiphy *wiphy = dev->wl->hw->wiphy;
Michael Buesche4d6b792007-09-18 15:39:42 -04002437 const size_t hdr_len = sizeof(struct b43_fw_header);
2438 const __be32 *data;
2439 unsigned int i, len;
2440 u16 fwrev, fwpatch, fwdate, fwtime;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002441 u32 tmp, macctl;
Michael Buesche4d6b792007-09-18 15:39:42 -04002442 int err = 0;
2443
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002444 /* Jump the microcode PSM to offset 0 */
2445 macctl = b43_read32(dev, B43_MMIO_MACCTL);
2446 B43_WARN_ON(macctl & B43_MACCTL_PSM_RUN);
2447 macctl |= B43_MACCTL_PSM_JMP0;
2448 b43_write32(dev, B43_MMIO_MACCTL, macctl);
2449 /* Zero out all microcode PSM registers and shared memory. */
2450 for (i = 0; i < 64; i++)
2451 b43_shm_write16(dev, B43_SHM_SCRATCH, i, 0);
2452 for (i = 0; i < 4096; i += 2)
2453 b43_shm_write16(dev, B43_SHM_SHARED, i, 0);
2454
Michael Buesche4d6b792007-09-18 15:39:42 -04002455 /* Upload Microcode. */
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002456 data = (__be32 *) (dev->fw.ucode.data->data + hdr_len);
2457 len = (dev->fw.ucode.data->size - hdr_len) / sizeof(__be32);
Michael Buesche4d6b792007-09-18 15:39:42 -04002458 b43_shm_control_word(dev, B43_SHM_UCODE | B43_SHM_AUTOINC_W, 0x0000);
2459 for (i = 0; i < len; i++) {
2460 b43_write32(dev, B43_MMIO_SHM_DATA, be32_to_cpu(data[i]));
2461 udelay(10);
2462 }
2463
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002464 if (dev->fw.pcm.data) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002465 /* Upload PCM data. */
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002466 data = (__be32 *) (dev->fw.pcm.data->data + hdr_len);
2467 len = (dev->fw.pcm.data->size - hdr_len) / sizeof(__be32);
Michael Buesche4d6b792007-09-18 15:39:42 -04002468 b43_shm_control_word(dev, B43_SHM_HW, 0x01EA);
2469 b43_write32(dev, B43_MMIO_SHM_DATA, 0x00004000);
2470 /* No need for autoinc bit in SHM_HW */
2471 b43_shm_control_word(dev, B43_SHM_HW, 0x01EB);
2472 for (i = 0; i < len; i++) {
2473 b43_write32(dev, B43_MMIO_SHM_DATA, be32_to_cpu(data[i]));
2474 udelay(10);
2475 }
2476 }
2477
2478 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, B43_IRQ_ALL);
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002479
2480 /* Start the microcode PSM */
2481 macctl = b43_read32(dev, B43_MMIO_MACCTL);
2482 macctl &= ~B43_MACCTL_PSM_JMP0;
2483 macctl |= B43_MACCTL_PSM_RUN;
2484 b43_write32(dev, B43_MMIO_MACCTL, macctl);
Michael Buesche4d6b792007-09-18 15:39:42 -04002485
2486 /* Wait for the microcode to load and respond */
2487 i = 0;
2488 while (1) {
2489 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2490 if (tmp == B43_IRQ_MAC_SUSPENDED)
2491 break;
2492 i++;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002493 if (i >= 20) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002494 b43err(dev->wl, "Microcode not responding\n");
Michael Buescheb189d82008-01-28 14:47:41 -08002495 b43_print_fw_helptext(dev->wl, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002496 err = -ENODEV;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002497 goto error;
Michael Buesche4d6b792007-09-18 15:39:42 -04002498 }
Michael Buesche175e992009-09-11 18:31:32 +02002499 msleep(50);
Michael Buesche4d6b792007-09-18 15:39:42 -04002500 }
2501 b43_read32(dev, B43_MMIO_GEN_IRQ_REASON); /* dummy read */
2502
2503 /* Get and check the revisions. */
2504 fwrev = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEREV);
2505 fwpatch = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEPATCH);
2506 fwdate = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEDATE);
2507 fwtime = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODETIME);
2508
2509 if (fwrev <= 0x128) {
2510 b43err(dev->wl, "YOUR FIRMWARE IS TOO OLD. Firmware from "
2511 "binary drivers older than version 4.x is unsupported. "
2512 "You must upgrade your firmware files.\n");
Michael Buescheb189d82008-01-28 14:47:41 -08002513 b43_print_fw_helptext(dev->wl, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002514 err = -EOPNOTSUPP;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002515 goto error;
Michael Buesche4d6b792007-09-18 15:39:42 -04002516 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002517 dev->fw.rev = fwrev;
2518 dev->fw.patch = fwpatch;
Rafał Miłecki5d852902011-08-11 15:07:16 +02002519 if (dev->fw.rev >= 598)
2520 dev->fw.hdr_format = B43_FW_HDR_598;
2521 else if (dev->fw.rev >= 410)
Rafał Miłeckiefe02492011-08-11 15:07:15 +02002522 dev->fw.hdr_format = B43_FW_HDR_410;
2523 else
2524 dev->fw.hdr_format = B43_FW_HDR_351;
Michael Buesche48b0ee2008-05-17 22:44:35 +02002525 dev->fw.opensource = (fwdate == 0xFFFF);
2526
Michael Buesch403a3a12009-06-08 21:04:57 +02002527 /* Default to use-all-queues. */
2528 dev->wl->hw->queues = dev->wl->mac80211_initially_registered_queues;
2529 dev->qos_enabled = !!modparam_qos;
2530 /* Default to firmware/hardware crypto acceleration. */
2531 dev->hwcrypto_enabled = 1;
2532
Michael Buesche48b0ee2008-05-17 22:44:35 +02002533 if (dev->fw.opensource) {
Michael Buesch403a3a12009-06-08 21:04:57 +02002534 u16 fwcapa;
2535
Michael Buesche48b0ee2008-05-17 22:44:35 +02002536 /* Patchlevel info is encoded in the "time" field. */
2537 dev->fw.patch = fwtime;
Michael Buesch403a3a12009-06-08 21:04:57 +02002538 b43info(dev->wl, "Loading OpenSource firmware version %u.%u\n",
2539 dev->fw.rev, dev->fw.patch);
2540
2541 fwcapa = b43_fwcapa_read(dev);
2542 if (!(fwcapa & B43_FWCAPA_HWCRYPTO) || dev->fw.pcm_request_failed) {
2543 b43info(dev->wl, "Hardware crypto acceleration not supported by firmware\n");
2544 /* Disable hardware crypto and fall back to software crypto. */
2545 dev->hwcrypto_enabled = 0;
2546 }
2547 if (!(fwcapa & B43_FWCAPA_QOS)) {
2548 b43info(dev->wl, "QoS not supported by firmware\n");
2549 /* Disable QoS. Tweak hw->queues to 1. It will be restored before
2550 * ieee80211_unregister to make sure the networking core can
2551 * properly free possible resources. */
2552 dev->wl->hw->queues = 1;
2553 dev->qos_enabled = 0;
2554 }
Michael Buesche48b0ee2008-05-17 22:44:35 +02002555 } else {
2556 b43info(dev->wl, "Loading firmware version %u.%u "
2557 "(20%.2i-%.2i-%.2i %.2i:%.2i:%.2i)\n",
2558 fwrev, fwpatch,
2559 (fwdate >> 12) & 0xF, (fwdate >> 8) & 0xF, fwdate & 0xFF,
2560 (fwtime >> 11) & 0x1F, (fwtime >> 5) & 0x3F, fwtime & 0x1F);
Michael Buesch68217832008-05-17 23:43:57 +02002561 if (dev->fw.pcm_request_failed) {
2562 b43warn(dev->wl, "No \"pcm5.fw\" firmware file found. "
2563 "Hardware accelerated cryptography is disabled.\n");
2564 b43_print_fw_helptext(dev->wl, 0);
2565 }
Michael Buesche48b0ee2008-05-17 22:44:35 +02002566 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002567
John W. Linville652caa52010-07-29 13:27:28 -04002568 snprintf(wiphy->fw_version, sizeof(wiphy->fw_version), "%u.%u",
2569 dev->fw.rev, dev->fw.patch);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002570 wiphy->hw_version = dev->dev->core_id;
John W. Linville652caa52010-07-29 13:27:28 -04002571
Rafał Miłeckiefe02492011-08-11 15:07:15 +02002572 if (dev->fw.hdr_format == B43_FW_HDR_351) {
Michael Bueschc5572892008-12-27 18:26:39 +01002573 /* We're over the deadline, but we keep support for old fw
2574 * until it turns out to be in major conflict with something new. */
Michael Buescheb189d82008-01-28 14:47:41 -08002575 b43warn(dev->wl, "You are using an old firmware image. "
Michael Bueschc5572892008-12-27 18:26:39 +01002576 "Support for old firmware will be removed soon "
2577 "(official deadline was July 2008).\n");
Michael Buescheb189d82008-01-28 14:47:41 -08002578 b43_print_fw_helptext(dev->wl, 0);
2579 }
2580
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002581 return 0;
2582
2583error:
2584 macctl = b43_read32(dev, B43_MMIO_MACCTL);
2585 macctl &= ~B43_MACCTL_PSM_RUN;
2586 macctl |= B43_MACCTL_PSM_JMP0;
2587 b43_write32(dev, B43_MMIO_MACCTL, macctl);
2588
Michael Buesche4d6b792007-09-18 15:39:42 -04002589 return err;
2590}
2591
2592static int b43_write_initvals(struct b43_wldev *dev,
2593 const struct b43_iv *ivals,
2594 size_t count,
2595 size_t array_size)
2596{
2597 const struct b43_iv *iv;
2598 u16 offset;
2599 size_t i;
2600 bool bit32;
2601
2602 BUILD_BUG_ON(sizeof(struct b43_iv) != 6);
2603 iv = ivals;
2604 for (i = 0; i < count; i++) {
2605 if (array_size < sizeof(iv->offset_size))
2606 goto err_format;
2607 array_size -= sizeof(iv->offset_size);
2608 offset = be16_to_cpu(iv->offset_size);
2609 bit32 = !!(offset & B43_IV_32BIT);
2610 offset &= B43_IV_OFFSET_MASK;
2611 if (offset >= 0x1000)
2612 goto err_format;
2613 if (bit32) {
2614 u32 value;
2615
2616 if (array_size < sizeof(iv->data.d32))
2617 goto err_format;
2618 array_size -= sizeof(iv->data.d32);
2619
Harvey Harrison533dd1b2008-04-29 01:03:36 -07002620 value = get_unaligned_be32(&iv->data.d32);
Michael Buesche4d6b792007-09-18 15:39:42 -04002621 b43_write32(dev, offset, value);
2622
2623 iv = (const struct b43_iv *)((const uint8_t *)iv +
2624 sizeof(__be16) +
2625 sizeof(__be32));
2626 } else {
2627 u16 value;
2628
2629 if (array_size < sizeof(iv->data.d16))
2630 goto err_format;
2631 array_size -= sizeof(iv->data.d16);
2632
2633 value = be16_to_cpu(iv->data.d16);
2634 b43_write16(dev, offset, value);
2635
2636 iv = (const struct b43_iv *)((const uint8_t *)iv +
2637 sizeof(__be16) +
2638 sizeof(__be16));
2639 }
2640 }
2641 if (array_size)
2642 goto err_format;
2643
2644 return 0;
2645
2646err_format:
2647 b43err(dev->wl, "Initial Values Firmware file-format error.\n");
Michael Buescheb189d82008-01-28 14:47:41 -08002648 b43_print_fw_helptext(dev->wl, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002649
2650 return -EPROTO;
2651}
2652
2653static int b43_upload_initvals(struct b43_wldev *dev)
2654{
2655 const size_t hdr_len = sizeof(struct b43_fw_header);
2656 const struct b43_fw_header *hdr;
2657 struct b43_firmware *fw = &dev->fw;
2658 const struct b43_iv *ivals;
2659 size_t count;
2660 int err;
2661
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002662 hdr = (const struct b43_fw_header *)(fw->initvals.data->data);
2663 ivals = (const struct b43_iv *)(fw->initvals.data->data + hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002664 count = be32_to_cpu(hdr->size);
2665 err = b43_write_initvals(dev, ivals, count,
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002666 fw->initvals.data->size - hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002667 if (err)
2668 goto out;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002669 if (fw->initvals_band.data) {
2670 hdr = (const struct b43_fw_header *)(fw->initvals_band.data->data);
2671 ivals = (const struct b43_iv *)(fw->initvals_band.data->data + hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002672 count = be32_to_cpu(hdr->size);
2673 err = b43_write_initvals(dev, ivals, count,
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002674 fw->initvals_band.data->size - hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002675 if (err)
2676 goto out;
2677 }
2678out:
2679
2680 return err;
2681}
2682
2683/* Initialize the GPIOs
2684 * http://bcm-specs.sipsolutions.net/GPIO
2685 */
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002686static struct ssb_device *b43_ssb_gpio_dev(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04002687{
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02002688 struct ssb_bus *bus = dev->dev->sdev->bus;
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002689
2690#ifdef CONFIG_SSB_DRIVER_PCICORE
2691 return (bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev);
2692#else
2693 return bus->chipco.dev;
2694#endif
2695}
2696
Michael Buesche4d6b792007-09-18 15:39:42 -04002697static int b43_gpio_init(struct b43_wldev *dev)
2698{
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002699 struct ssb_device *gpiodev;
Michael Buesche4d6b792007-09-18 15:39:42 -04002700 u32 mask, set;
2701
2702 b43_write32(dev, B43_MMIO_MACCTL, b43_read32(dev, B43_MMIO_MACCTL)
2703 & ~B43_MACCTL_GPOUTSMSK);
2704
Michael Buesche4d6b792007-09-18 15:39:42 -04002705 b43_write16(dev, B43_MMIO_GPIO_MASK, b43_read16(dev, B43_MMIO_GPIO_MASK)
2706 | 0x000F);
2707
2708 mask = 0x0000001F;
2709 set = 0x0000000F;
Rafał Miłeckic244e082011-05-18 02:06:41 +02002710 if (dev->dev->chip_id == 0x4301) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002711 mask |= 0x0060;
2712 set |= 0x0060;
2713 }
2714 if (0 /* FIXME: conditional unknown */ ) {
2715 b43_write16(dev, B43_MMIO_GPIO_MASK,
2716 b43_read16(dev, B43_MMIO_GPIO_MASK)
2717 | 0x0100);
2718 mask |= 0x0180;
2719 set |= 0x0180;
2720 }
Rafał Miłecki05814832011-05-18 02:06:39 +02002721 if (dev->dev->bus_sprom->boardflags_lo & B43_BFL_PACTRL) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002722 b43_write16(dev, B43_MMIO_GPIO_MASK,
2723 b43_read16(dev, B43_MMIO_GPIO_MASK)
2724 | 0x0200);
2725 mask |= 0x0200;
2726 set |= 0x0200;
2727 }
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002728 if (dev->dev->core_rev >= 2)
Michael Buesche4d6b792007-09-18 15:39:42 -04002729 mask |= 0x0010; /* FIXME: This is redundant. */
2730
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002731 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002732#ifdef CONFIG_B43_BCMA
2733 case B43_BUS_BCMA:
2734 bcma_cc_write32(&dev->dev->bdev->bus->drv_cc, BCMA_CC_GPIOCTL,
2735 (bcma_cc_read32(&dev->dev->bdev->bus->drv_cc,
2736 BCMA_CC_GPIOCTL) & mask) | set);
2737 break;
2738#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002739#ifdef CONFIG_B43_SSB
2740 case B43_BUS_SSB:
2741 gpiodev = b43_ssb_gpio_dev(dev);
2742 if (gpiodev)
2743 ssb_write32(gpiodev, B43_GPIO_CONTROL,
2744 (ssb_read32(gpiodev, B43_GPIO_CONTROL)
2745 & mask) | set);
2746 break;
2747#endif
2748 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002749
2750 return 0;
2751}
2752
2753/* Turn off all GPIO stuff. Call this on module unload, for example. */
2754static void b43_gpio_cleanup(struct b43_wldev *dev)
2755{
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002756 struct ssb_device *gpiodev;
Michael Buesche4d6b792007-09-18 15:39:42 -04002757
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002758 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002759#ifdef CONFIG_B43_BCMA
2760 case B43_BUS_BCMA:
2761 bcma_cc_write32(&dev->dev->bdev->bus->drv_cc, BCMA_CC_GPIOCTL,
2762 0);
2763 break;
2764#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002765#ifdef CONFIG_B43_SSB
2766 case B43_BUS_SSB:
2767 gpiodev = b43_ssb_gpio_dev(dev);
2768 if (gpiodev)
2769 ssb_write32(gpiodev, B43_GPIO_CONTROL, 0);
2770 break;
2771#endif
2772 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002773}
2774
2775/* http://bcm-specs.sipsolutions.net/EnableMac */
Michael Bueschf5eda472008-04-20 16:03:32 +02002776void b43_mac_enable(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04002777{
Michael Buesch923fd702008-06-20 18:02:08 +02002778 if (b43_debug(dev, B43_DBG_FIRMWARE)) {
2779 u16 fwstate;
2780
2781 fwstate = b43_shm_read16(dev, B43_SHM_SHARED,
2782 B43_SHM_SH_UCODESTAT);
2783 if ((fwstate != B43_SHM_SH_UCODESTAT_SUSP) &&
2784 (fwstate != B43_SHM_SH_UCODESTAT_SLEEP)) {
2785 b43err(dev->wl, "b43_mac_enable(): The firmware "
2786 "should be suspended, but current state is %u\n",
2787 fwstate);
2788 }
2789 }
2790
Michael Buesche4d6b792007-09-18 15:39:42 -04002791 dev->mac_suspended--;
2792 B43_WARN_ON(dev->mac_suspended < 0);
2793 if (dev->mac_suspended == 0) {
2794 b43_write32(dev, B43_MMIO_MACCTL,
2795 b43_read32(dev, B43_MMIO_MACCTL)
2796 | B43_MACCTL_ENABLED);
2797 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON,
2798 B43_IRQ_MAC_SUSPENDED);
2799 /* Commit writes */
2800 b43_read32(dev, B43_MMIO_MACCTL);
2801 b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2802 b43_power_saving_ctl_bits(dev, 0);
2803 }
2804}
2805
2806/* http://bcm-specs.sipsolutions.net/SuspendMAC */
Michael Bueschf5eda472008-04-20 16:03:32 +02002807void b43_mac_suspend(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04002808{
2809 int i;
2810 u32 tmp;
2811
Michael Buesch05b64b32007-09-28 16:19:03 +02002812 might_sleep();
Michael Buesche4d6b792007-09-18 15:39:42 -04002813 B43_WARN_ON(dev->mac_suspended < 0);
Michael Buesch05b64b32007-09-28 16:19:03 +02002814
Michael Buesche4d6b792007-09-18 15:39:42 -04002815 if (dev->mac_suspended == 0) {
2816 b43_power_saving_ctl_bits(dev, B43_PS_AWAKE);
2817 b43_write32(dev, B43_MMIO_MACCTL,
2818 b43_read32(dev, B43_MMIO_MACCTL)
2819 & ~B43_MACCTL_ENABLED);
2820 /* force pci to flush the write */
2821 b43_read32(dev, B43_MMIO_MACCTL);
Michael Bueschba380012008-04-15 21:13:36 +02002822 for (i = 35; i; i--) {
2823 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2824 if (tmp & B43_IRQ_MAC_SUSPENDED)
2825 goto out;
2826 udelay(10);
2827 }
2828 /* Hm, it seems this will take some time. Use msleep(). */
Michael Buesch05b64b32007-09-28 16:19:03 +02002829 for (i = 40; i; i--) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002830 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2831 if (tmp & B43_IRQ_MAC_SUSPENDED)
2832 goto out;
Michael Buesch05b64b32007-09-28 16:19:03 +02002833 msleep(1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002834 }
2835 b43err(dev->wl, "MAC suspend failed\n");
2836 }
Michael Buesch05b64b32007-09-28 16:19:03 +02002837out:
Michael Buesche4d6b792007-09-18 15:39:42 -04002838 dev->mac_suspended++;
2839}
2840
Rafał Miłecki858a1652011-05-10 16:05:33 +02002841/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/MacPhyClkSet */
2842void b43_mac_phy_clock_set(struct b43_wldev *dev, bool on)
2843{
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002844 u32 tmp;
2845
2846 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002847#ifdef CONFIG_B43_BCMA
2848 case B43_BUS_BCMA:
Rafał Miłecki36677872011-07-16 18:27:55 +02002849 tmp = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002850 if (on)
2851 tmp |= B43_BCMA_IOCTL_MACPHYCLKEN;
2852 else
2853 tmp &= ~B43_BCMA_IOCTL_MACPHYCLKEN;
Rafał Miłecki36677872011-07-16 18:27:55 +02002854 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, tmp);
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002855 break;
2856#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002857#ifdef CONFIG_B43_SSB
2858 case B43_BUS_SSB:
2859 tmp = ssb_read32(dev->dev->sdev, SSB_TMSLOW);
2860 if (on)
2861 tmp |= B43_TMSLOW_MACPHYCLKEN;
2862 else
2863 tmp &= ~B43_TMSLOW_MACPHYCLKEN;
2864 ssb_write32(dev->dev->sdev, SSB_TMSLOW, tmp);
2865 break;
2866#endif
2867 }
Rafał Miłecki858a1652011-05-10 16:05:33 +02002868}
2869
Michael Buesche4d6b792007-09-18 15:39:42 -04002870static void b43_adjust_opmode(struct b43_wldev *dev)
2871{
2872 struct b43_wl *wl = dev->wl;
2873 u32 ctl;
2874 u16 cfp_pretbtt;
2875
2876 ctl = b43_read32(dev, B43_MMIO_MACCTL);
2877 /* Reset status to STA infrastructure mode. */
2878 ctl &= ~B43_MACCTL_AP;
2879 ctl &= ~B43_MACCTL_KEEP_CTL;
2880 ctl &= ~B43_MACCTL_KEEP_BADPLCP;
2881 ctl &= ~B43_MACCTL_KEEP_BAD;
2882 ctl &= ~B43_MACCTL_PROMISC;
Johannes Berg4150c572007-09-17 01:29:23 -04002883 ctl &= ~B43_MACCTL_BEACPROMISC;
Michael Buesche4d6b792007-09-18 15:39:42 -04002884 ctl |= B43_MACCTL_INFRA;
2885
Johannes Berg05c914f2008-09-11 00:01:58 +02002886 if (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
2887 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT))
Johannes Berg4150c572007-09-17 01:29:23 -04002888 ctl |= B43_MACCTL_AP;
Johannes Berg05c914f2008-09-11 00:01:58 +02002889 else if (b43_is_mode(wl, NL80211_IFTYPE_ADHOC))
Johannes Berg4150c572007-09-17 01:29:23 -04002890 ctl &= ~B43_MACCTL_INFRA;
2891
2892 if (wl->filter_flags & FIF_CONTROL)
Michael Buesche4d6b792007-09-18 15:39:42 -04002893 ctl |= B43_MACCTL_KEEP_CTL;
Johannes Berg4150c572007-09-17 01:29:23 -04002894 if (wl->filter_flags & FIF_FCSFAIL)
2895 ctl |= B43_MACCTL_KEEP_BAD;
2896 if (wl->filter_flags & FIF_PLCPFAIL)
2897 ctl |= B43_MACCTL_KEEP_BADPLCP;
2898 if (wl->filter_flags & FIF_PROMISC_IN_BSS)
Michael Buesche4d6b792007-09-18 15:39:42 -04002899 ctl |= B43_MACCTL_PROMISC;
Johannes Berg4150c572007-09-17 01:29:23 -04002900 if (wl->filter_flags & FIF_BCN_PRBRESP_PROMISC)
2901 ctl |= B43_MACCTL_BEACPROMISC;
2902
Michael Buesche4d6b792007-09-18 15:39:42 -04002903 /* Workaround: On old hardware the HW-MAC-address-filter
2904 * doesn't work properly, so always run promisc in filter
2905 * it in software. */
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002906 if (dev->dev->core_rev <= 4)
Michael Buesche4d6b792007-09-18 15:39:42 -04002907 ctl |= B43_MACCTL_PROMISC;
2908
2909 b43_write32(dev, B43_MMIO_MACCTL, ctl);
2910
2911 cfp_pretbtt = 2;
2912 if ((ctl & B43_MACCTL_INFRA) && !(ctl & B43_MACCTL_AP)) {
Rafał Miłeckic244e082011-05-18 02:06:41 +02002913 if (dev->dev->chip_id == 0x4306 &&
2914 dev->dev->chip_rev == 3)
Michael Buesche4d6b792007-09-18 15:39:42 -04002915 cfp_pretbtt = 100;
2916 else
2917 cfp_pretbtt = 50;
2918 }
2919 b43_write16(dev, 0x612, cfp_pretbtt);
Michael Buesch09ebe2f2009-09-12 00:52:48 +02002920
2921 /* FIXME: We don't currently implement the PMQ mechanism,
2922 * so always disable it. If we want to implement PMQ,
2923 * we need to enable it here (clear DISCPMQ) in AP mode.
2924 */
2925 if (0 /* ctl & B43_MACCTL_AP */) {
2926 b43_write32(dev, B43_MMIO_MACCTL,
2927 b43_read32(dev, B43_MMIO_MACCTL)
2928 & ~B43_MACCTL_DISCPMQ);
2929 } else {
2930 b43_write32(dev, B43_MMIO_MACCTL,
2931 b43_read32(dev, B43_MMIO_MACCTL)
2932 | B43_MACCTL_DISCPMQ);
2933 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002934}
2935
2936static void b43_rate_memory_write(struct b43_wldev *dev, u16 rate, int is_ofdm)
2937{
2938 u16 offset;
2939
2940 if (is_ofdm) {
2941 offset = 0x480;
2942 offset += (b43_plcp_get_ratecode_ofdm(rate) & 0x000F) * 2;
2943 } else {
2944 offset = 0x4C0;
2945 offset += (b43_plcp_get_ratecode_cck(rate) & 0x000F) * 2;
2946 }
2947 b43_shm_write16(dev, B43_SHM_SHARED, offset + 0x20,
2948 b43_shm_read16(dev, B43_SHM_SHARED, offset));
2949}
2950
2951static void b43_rate_memory_init(struct b43_wldev *dev)
2952{
2953 switch (dev->phy.type) {
2954 case B43_PHYTYPE_A:
2955 case B43_PHYTYPE_G:
Michael Buesch53a6e232008-01-13 21:23:44 +01002956 case B43_PHYTYPE_N:
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02002957 case B43_PHYTYPE_LP:
Rafał Miłecki6a461c22011-08-12 00:03:25 +02002958 case B43_PHYTYPE_HT:
Rafał Miłecki0b4ff452011-08-31 23:36:16 +02002959 case B43_PHYTYPE_LCN:
Michael Buesche4d6b792007-09-18 15:39:42 -04002960 b43_rate_memory_write(dev, B43_OFDM_RATE_6MB, 1);
2961 b43_rate_memory_write(dev, B43_OFDM_RATE_12MB, 1);
2962 b43_rate_memory_write(dev, B43_OFDM_RATE_18MB, 1);
2963 b43_rate_memory_write(dev, B43_OFDM_RATE_24MB, 1);
2964 b43_rate_memory_write(dev, B43_OFDM_RATE_36MB, 1);
2965 b43_rate_memory_write(dev, B43_OFDM_RATE_48MB, 1);
2966 b43_rate_memory_write(dev, B43_OFDM_RATE_54MB, 1);
2967 if (dev->phy.type == B43_PHYTYPE_A)
2968 break;
2969 /* fallthrough */
2970 case B43_PHYTYPE_B:
2971 b43_rate_memory_write(dev, B43_CCK_RATE_1MB, 0);
2972 b43_rate_memory_write(dev, B43_CCK_RATE_2MB, 0);
2973 b43_rate_memory_write(dev, B43_CCK_RATE_5MB, 0);
2974 b43_rate_memory_write(dev, B43_CCK_RATE_11MB, 0);
2975 break;
2976 default:
2977 B43_WARN_ON(1);
2978 }
2979}
2980
Michael Buesch5042c502008-04-05 15:05:00 +02002981/* Set the default values for the PHY TX Control Words. */
2982static void b43_set_phytxctl_defaults(struct b43_wldev *dev)
2983{
2984 u16 ctl = 0;
2985
2986 ctl |= B43_TXH_PHY_ENC_CCK;
2987 ctl |= B43_TXH_PHY_ANT01AUTO;
2988 ctl |= B43_TXH_PHY_TXPWR;
2989
2990 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL, ctl);
2991 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL, ctl);
2992 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL, ctl);
2993}
2994
Michael Buesche4d6b792007-09-18 15:39:42 -04002995/* Set the TX-Antenna for management frames sent by firmware. */
2996static void b43_mgmtframe_txantenna(struct b43_wldev *dev, int antenna)
2997{
Michael Buesch5042c502008-04-05 15:05:00 +02002998 u16 ant;
Michael Buesche4d6b792007-09-18 15:39:42 -04002999 u16 tmp;
3000
Michael Buesch5042c502008-04-05 15:05:00 +02003001 ant = b43_antenna_to_phyctl(antenna);
Michael Buesche4d6b792007-09-18 15:39:42 -04003002
Michael Buesche4d6b792007-09-18 15:39:42 -04003003 /* For ACK/CTS */
3004 tmp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL);
Michael Buescheb189d82008-01-28 14:47:41 -08003005 tmp = (tmp & ~B43_TXH_PHY_ANT) | ant;
Michael Buesche4d6b792007-09-18 15:39:42 -04003006 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL, tmp);
3007 /* For Probe Resposes */
3008 tmp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL);
Michael Buescheb189d82008-01-28 14:47:41 -08003009 tmp = (tmp & ~B43_TXH_PHY_ANT) | ant;
Michael Buesche4d6b792007-09-18 15:39:42 -04003010 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL, tmp);
3011}
3012
3013/* This is the opposite of b43_chip_init() */
3014static void b43_chip_exit(struct b43_wldev *dev)
3015{
Michael Bueschfb111372008-09-02 13:00:34 +02003016 b43_phy_exit(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04003017 b43_gpio_cleanup(dev);
3018 /* firmware is released later */
3019}
3020
3021/* Initialize the chip
3022 * http://bcm-specs.sipsolutions.net/ChipInit
3023 */
3024static int b43_chip_init(struct b43_wldev *dev)
3025{
3026 struct b43_phy *phy = &dev->phy;
Michael Bueschef1a6282008-08-27 18:53:02 +02003027 int err;
Rafał Miłecki858a1652011-05-10 16:05:33 +02003028 u32 macctl;
Michael Buesche4d6b792007-09-18 15:39:42 -04003029 u16 value16;
3030
Michael Buesch1f7d87b2008-01-22 20:23:34 +01003031 /* Initialize the MAC control */
3032 macctl = B43_MACCTL_IHR_ENABLED | B43_MACCTL_SHM_ENABLED;
3033 if (dev->phy.gmode)
3034 macctl |= B43_MACCTL_GMODE;
3035 macctl |= B43_MACCTL_INFRA;
3036 b43_write32(dev, B43_MMIO_MACCTL, macctl);
Michael Buesche4d6b792007-09-18 15:39:42 -04003037
3038 err = b43_request_firmware(dev);
3039 if (err)
3040 goto out;
3041 err = b43_upload_microcode(dev);
3042 if (err)
3043 goto out; /* firmware is released later */
3044
3045 err = b43_gpio_init(dev);
3046 if (err)
3047 goto out; /* firmware is released later */
Michael Buesch21954c32007-09-27 15:31:40 +02003048
Michael Buesche4d6b792007-09-18 15:39:42 -04003049 err = b43_upload_initvals(dev);
3050 if (err)
Larry Finger1a8d1222007-12-14 13:59:11 +01003051 goto err_gpio_clean;
Michael Buesche4d6b792007-09-18 15:39:42 -04003052
Michael Buesch0b7dcd92008-09-03 12:31:54 +02003053 /* Turn the Analog on and initialize the PHY. */
3054 phy->ops->switch_analog(dev, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04003055 err = b43_phy_init(dev);
3056 if (err)
Michael Bueschef1a6282008-08-27 18:53:02 +02003057 goto err_gpio_clean;
Michael Buesche4d6b792007-09-18 15:39:42 -04003058
Michael Bueschef1a6282008-08-27 18:53:02 +02003059 /* Disable Interference Mitigation. */
3060 if (phy->ops->interf_mitigation)
3061 phy->ops->interf_mitigation(dev, B43_INTERFMODE_NONE);
Michael Buesche4d6b792007-09-18 15:39:42 -04003062
Michael Bueschef1a6282008-08-27 18:53:02 +02003063 /* Select the antennae */
3064 if (phy->ops->set_rx_antenna)
3065 phy->ops->set_rx_antenna(dev, B43_ANTENNA_DEFAULT);
Michael Buesche4d6b792007-09-18 15:39:42 -04003066 b43_mgmtframe_txantenna(dev, B43_ANTENNA_DEFAULT);
3067
3068 if (phy->type == B43_PHYTYPE_B) {
3069 value16 = b43_read16(dev, 0x005E);
3070 value16 |= 0x0004;
3071 b43_write16(dev, 0x005E, value16);
3072 }
3073 b43_write32(dev, 0x0100, 0x01000000);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02003074 if (dev->dev->core_rev < 5)
Michael Buesche4d6b792007-09-18 15:39:42 -04003075 b43_write32(dev, 0x010C, 0x01000000);
3076
3077 b43_write32(dev, B43_MMIO_MACCTL, b43_read32(dev, B43_MMIO_MACCTL)
3078 & ~B43_MACCTL_INFRA);
3079 b43_write32(dev, B43_MMIO_MACCTL, b43_read32(dev, B43_MMIO_MACCTL)
3080 | B43_MACCTL_INFRA);
Michael Buesche4d6b792007-09-18 15:39:42 -04003081
Michael Buesche4d6b792007-09-18 15:39:42 -04003082 /* Probe Response Timeout value */
3083 /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
3084 b43_shm_write16(dev, B43_SHM_SHARED, 0x0074, 0x0000);
3085
3086 /* Initially set the wireless operation mode. */
3087 b43_adjust_opmode(dev);
3088
Rafał Miłecki21d889d2011-05-18 02:06:38 +02003089 if (dev->dev->core_rev < 3) {
Michael Buesche4d6b792007-09-18 15:39:42 -04003090 b43_write16(dev, 0x060E, 0x0000);
3091 b43_write16(dev, 0x0610, 0x8000);
3092 b43_write16(dev, 0x0604, 0x0000);
3093 b43_write16(dev, 0x0606, 0x0200);
3094 } else {
3095 b43_write32(dev, 0x0188, 0x80000000);
3096 b43_write32(dev, 0x018C, 0x02000000);
3097 }
3098 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, 0x00004000);
3099 b43_write32(dev, B43_MMIO_DMA0_IRQ_MASK, 0x0001DC00);
3100 b43_write32(dev, B43_MMIO_DMA1_IRQ_MASK, 0x0000DC00);
3101 b43_write32(dev, B43_MMIO_DMA2_IRQ_MASK, 0x0000DC00);
3102 b43_write32(dev, B43_MMIO_DMA3_IRQ_MASK, 0x0001DC00);
3103 b43_write32(dev, B43_MMIO_DMA4_IRQ_MASK, 0x0000DC00);
3104 b43_write32(dev, B43_MMIO_DMA5_IRQ_MASK, 0x0000DC00);
3105
Rafał Miłecki858a1652011-05-10 16:05:33 +02003106 b43_mac_phy_clock_set(dev, true);
Michael Buesche4d6b792007-09-18 15:39:42 -04003107
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003108 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02003109#ifdef CONFIG_B43_BCMA
3110 case B43_BUS_BCMA:
3111 /* FIXME: 0xE74 is quite common, but should be read from CC */
3112 b43_write16(dev, B43_MMIO_POWERUP_DELAY, 0xE74);
3113 break;
3114#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003115#ifdef CONFIG_B43_SSB
3116 case B43_BUS_SSB:
3117 b43_write16(dev, B43_MMIO_POWERUP_DELAY,
3118 dev->dev->sdev->bus->chipco.fast_pwrup_delay);
3119 break;
3120#endif
3121 }
Michael Buesche4d6b792007-09-18 15:39:42 -04003122
3123 err = 0;
3124 b43dbg(dev->wl, "Chip initialized\n");
Michael Buesch21954c32007-09-27 15:31:40 +02003125out:
Michael Buesche4d6b792007-09-18 15:39:42 -04003126 return err;
3127
Larry Finger1a8d1222007-12-14 13:59:11 +01003128err_gpio_clean:
Michael Buesche4d6b792007-09-18 15:39:42 -04003129 b43_gpio_cleanup(dev);
Michael Buesch21954c32007-09-27 15:31:40 +02003130 return err;
Michael Buesche4d6b792007-09-18 15:39:42 -04003131}
3132
Michael Buesche4d6b792007-09-18 15:39:42 -04003133static void b43_periodic_every60sec(struct b43_wldev *dev)
3134{
Michael Bueschef1a6282008-08-27 18:53:02 +02003135 const struct b43_phy_operations *ops = dev->phy.ops;
Michael Buesche4d6b792007-09-18 15:39:42 -04003136
Michael Bueschef1a6282008-08-27 18:53:02 +02003137 if (ops->pwork_60sec)
3138 ops->pwork_60sec(dev);
Michael Buesch18c8ade2008-08-28 19:33:40 +02003139
3140 /* Force check the TX power emission now. */
3141 b43_phy_txpower_check(dev, B43_TXPWR_IGNORE_TIME);
Michael Buesche4d6b792007-09-18 15:39:42 -04003142}
3143
3144static void b43_periodic_every30sec(struct b43_wldev *dev)
3145{
3146 /* Update device statistics. */
3147 b43_calculate_link_quality(dev);
3148}
3149
3150static void b43_periodic_every15sec(struct b43_wldev *dev)
3151{
3152 struct b43_phy *phy = &dev->phy;
Michael Buesch9b839a72008-06-20 17:44:02 +02003153 u16 wdr;
3154
3155 if (dev->fw.opensource) {
3156 /* Check if the firmware is still alive.
3157 * It will reset the watchdog counter to 0 in its idle loop. */
3158 wdr = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_WATCHDOG_REG);
3159 if (unlikely(wdr)) {
3160 b43err(dev->wl, "Firmware watchdog: The firmware died!\n");
3161 b43_controller_restart(dev, "Firmware watchdog");
3162 return;
3163 } else {
3164 b43_shm_write16(dev, B43_SHM_SCRATCH,
3165 B43_WATCHDOG_REG, 1);
3166 }
3167 }
Michael Buesche4d6b792007-09-18 15:39:42 -04003168
Michael Bueschef1a6282008-08-27 18:53:02 +02003169 if (phy->ops->pwork_15sec)
3170 phy->ops->pwork_15sec(dev);
3171
Stefano Brivio00e0b8c2007-11-25 11:10:33 +01003172 atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT);
3173 wmb();
Michael Buesch990b86f2009-09-12 00:48:03 +02003174
3175#if B43_DEBUG
3176 if (b43_debug(dev, B43_DBG_VERBOSESTATS)) {
3177 unsigned int i;
3178
3179 b43dbg(dev->wl, "Stats: %7u IRQs/sec, %7u TX/sec, %7u RX/sec\n",
3180 dev->irq_count / 15,
3181 dev->tx_count / 15,
3182 dev->rx_count / 15);
3183 dev->irq_count = 0;
3184 dev->tx_count = 0;
3185 dev->rx_count = 0;
3186 for (i = 0; i < ARRAY_SIZE(dev->irq_bit_count); i++) {
3187 if (dev->irq_bit_count[i]) {
3188 b43dbg(dev->wl, "Stats: %7u IRQ-%02u/sec (0x%08X)\n",
3189 dev->irq_bit_count[i] / 15, i, (1 << i));
3190 dev->irq_bit_count[i] = 0;
3191 }
3192 }
3193 }
3194#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04003195}
3196
Michael Buesche4d6b792007-09-18 15:39:42 -04003197static void do_periodic_work(struct b43_wldev *dev)
3198{
3199 unsigned int state;
3200
3201 state = dev->periodic_state;
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003202 if (state % 4 == 0)
Michael Buesche4d6b792007-09-18 15:39:42 -04003203 b43_periodic_every60sec(dev);
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003204 if (state % 2 == 0)
Michael Buesche4d6b792007-09-18 15:39:42 -04003205 b43_periodic_every30sec(dev);
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003206 b43_periodic_every15sec(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04003207}
3208
Michael Buesch05b64b32007-09-28 16:19:03 +02003209/* Periodic work locking policy:
3210 * The whole periodic work handler is protected by
3211 * wl->mutex. If another lock is needed somewhere in the
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003212 * pwork callchain, it's acquired in-place, where it's needed.
Michael Buesche4d6b792007-09-18 15:39:42 -04003213 */
Michael Buesche4d6b792007-09-18 15:39:42 -04003214static void b43_periodic_work_handler(struct work_struct *work)
3215{
Michael Buesch05b64b32007-09-28 16:19:03 +02003216 struct b43_wldev *dev = container_of(work, struct b43_wldev,
3217 periodic_work.work);
3218 struct b43_wl *wl = dev->wl;
3219 unsigned long delay;
Michael Buesche4d6b792007-09-18 15:39:42 -04003220
Michael Buesch05b64b32007-09-28 16:19:03 +02003221 mutex_lock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003222
3223 if (unlikely(b43_status(dev) != B43_STAT_STARTED))
3224 goto out;
3225 if (b43_debug(dev, B43_DBG_PWORK_STOP))
3226 goto out_requeue;
3227
Michael Buesch05b64b32007-09-28 16:19:03 +02003228 do_periodic_work(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04003229
Michael Buesche4d6b792007-09-18 15:39:42 -04003230 dev->periodic_state++;
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003231out_requeue:
Michael Buesche4d6b792007-09-18 15:39:42 -04003232 if (b43_debug(dev, B43_DBG_PWORK_FAST))
3233 delay = msecs_to_jiffies(50);
3234 else
Anton Blanchard82cd6822007-10-15 00:42:23 -05003235 delay = round_jiffies_relative(HZ * 15);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003236 ieee80211_queue_delayed_work(wl->hw, &dev->periodic_work, delay);
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003237out:
Michael Buesch05b64b32007-09-28 16:19:03 +02003238 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003239}
3240
3241static void b43_periodic_tasks_setup(struct b43_wldev *dev)
3242{
3243 struct delayed_work *work = &dev->periodic_work;
3244
3245 dev->periodic_state = 0;
3246 INIT_DELAYED_WORK(work, b43_periodic_work_handler);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003247 ieee80211_queue_delayed_work(dev->wl->hw, work, 0);
Michael Buesche4d6b792007-09-18 15:39:42 -04003248}
3249
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003250/* Check if communication with the device works correctly. */
Michael Buesche4d6b792007-09-18 15:39:42 -04003251static int b43_validate_chipaccess(struct b43_wldev *dev)
3252{
Michael Bueschf62ae6c2009-07-31 20:51:41 +02003253 u32 v, backup0, backup4;
Michael Buesche4d6b792007-09-18 15:39:42 -04003254
Michael Bueschf62ae6c2009-07-31 20:51:41 +02003255 backup0 = b43_shm_read32(dev, B43_SHM_SHARED, 0);
3256 backup4 = b43_shm_read32(dev, B43_SHM_SHARED, 4);
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003257
3258 /* Check for read/write and endianness problems. */
Michael Buesche4d6b792007-09-18 15:39:42 -04003259 b43_shm_write32(dev, B43_SHM_SHARED, 0, 0x55AAAA55);
3260 if (b43_shm_read32(dev, B43_SHM_SHARED, 0) != 0x55AAAA55)
3261 goto error;
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003262 b43_shm_write32(dev, B43_SHM_SHARED, 0, 0xAA5555AA);
3263 if (b43_shm_read32(dev, B43_SHM_SHARED, 0) != 0xAA5555AA)
Michael Buesche4d6b792007-09-18 15:39:42 -04003264 goto error;
3265
Michael Bueschf62ae6c2009-07-31 20:51:41 +02003266 /* Check if unaligned 32bit SHM_SHARED access works properly.
3267 * However, don't bail out on failure, because it's noncritical. */
3268 b43_shm_write16(dev, B43_SHM_SHARED, 0, 0x1122);
3269 b43_shm_write16(dev, B43_SHM_SHARED, 2, 0x3344);
3270 b43_shm_write16(dev, B43_SHM_SHARED, 4, 0x5566);
3271 b43_shm_write16(dev, B43_SHM_SHARED, 6, 0x7788);
3272 if (b43_shm_read32(dev, B43_SHM_SHARED, 2) != 0x55663344)
3273 b43warn(dev->wl, "Unaligned 32bit SHM read access is broken\n");
3274 b43_shm_write32(dev, B43_SHM_SHARED, 2, 0xAABBCCDD);
3275 if (b43_shm_read16(dev, B43_SHM_SHARED, 0) != 0x1122 ||
3276 b43_shm_read16(dev, B43_SHM_SHARED, 2) != 0xCCDD ||
3277 b43_shm_read16(dev, B43_SHM_SHARED, 4) != 0xAABB ||
3278 b43_shm_read16(dev, B43_SHM_SHARED, 6) != 0x7788)
3279 b43warn(dev->wl, "Unaligned 32bit SHM write access is broken\n");
3280
3281 b43_shm_write32(dev, B43_SHM_SHARED, 0, backup0);
3282 b43_shm_write32(dev, B43_SHM_SHARED, 4, backup4);
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003283
Rafał Miłecki21d889d2011-05-18 02:06:38 +02003284 if ((dev->dev->core_rev >= 3) && (dev->dev->core_rev <= 10)) {
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003285 /* The 32bit register shadows the two 16bit registers
3286 * with update sideeffects. Validate this. */
3287 b43_write16(dev, B43_MMIO_TSF_CFP_START, 0xAAAA);
3288 b43_write32(dev, B43_MMIO_TSF_CFP_START, 0xCCCCBBBB);
3289 if (b43_read16(dev, B43_MMIO_TSF_CFP_START_LOW) != 0xBBBB)
3290 goto error;
3291 if (b43_read16(dev, B43_MMIO_TSF_CFP_START_HIGH) != 0xCCCC)
3292 goto error;
3293 }
3294 b43_write32(dev, B43_MMIO_TSF_CFP_START, 0);
3295
3296 v = b43_read32(dev, B43_MMIO_MACCTL);
3297 v |= B43_MACCTL_GMODE;
3298 if (v != (B43_MACCTL_GMODE | B43_MACCTL_IHR_ENABLED))
Michael Buesche4d6b792007-09-18 15:39:42 -04003299 goto error;
3300
3301 return 0;
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003302error:
Michael Buesche4d6b792007-09-18 15:39:42 -04003303 b43err(dev->wl, "Failed to validate the chipaccess\n");
3304 return -ENODEV;
3305}
3306
3307static void b43_security_init(struct b43_wldev *dev)
3308{
Michael Buesche4d6b792007-09-18 15:39:42 -04003309 dev->ktp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_KTP);
3310 /* KTP is a word address, but we address SHM bytewise.
3311 * So multiply by two.
3312 */
3313 dev->ktp *= 2;
Michael Buesch66d2d082009-08-06 10:36:50 +02003314 /* Number of RCMTA address slots */
3315 b43_write16(dev, B43_MMIO_RCMTA_COUNT, B43_NR_PAIRWISE_KEYS);
3316 /* Clear the key memory. */
Michael Buesche4d6b792007-09-18 15:39:42 -04003317 b43_clear_keys(dev);
3318}
3319
Michael Buesch616de352009-03-29 13:19:31 +02003320#ifdef CONFIG_B43_HWRNG
John Daiker99da1852009-02-24 02:16:42 -08003321static int b43_rng_read(struct hwrng *rng, u32 *data)
Michael Buesche4d6b792007-09-18 15:39:42 -04003322{
3323 struct b43_wl *wl = (struct b43_wl *)rng->priv;
Michael Buescha78b3bb2009-09-11 21:44:05 +02003324 struct b43_wldev *dev;
3325 int count = -ENODEV;
Michael Buesche4d6b792007-09-18 15:39:42 -04003326
Michael Buescha78b3bb2009-09-11 21:44:05 +02003327 mutex_lock(&wl->mutex);
3328 dev = wl->current_dev;
3329 if (likely(dev && b43_status(dev) >= B43_STAT_INITIALIZED)) {
3330 *data = b43_read16(dev, B43_MMIO_RNG);
3331 count = sizeof(u16);
3332 }
3333 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003334
Michael Buescha78b3bb2009-09-11 21:44:05 +02003335 return count;
Michael Buesche4d6b792007-09-18 15:39:42 -04003336}
Michael Buesch616de352009-03-29 13:19:31 +02003337#endif /* CONFIG_B43_HWRNG */
Michael Buesche4d6b792007-09-18 15:39:42 -04003338
Rafael J. Wysockib844eba2008-03-23 20:28:24 +01003339static void b43_rng_exit(struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04003340{
Michael Buesch616de352009-03-29 13:19:31 +02003341#ifdef CONFIG_B43_HWRNG
Michael Buesche4d6b792007-09-18 15:39:42 -04003342 if (wl->rng_initialized)
Rafael J. Wysockib844eba2008-03-23 20:28:24 +01003343 hwrng_unregister(&wl->rng);
Michael Buesch616de352009-03-29 13:19:31 +02003344#endif /* CONFIG_B43_HWRNG */
Michael Buesche4d6b792007-09-18 15:39:42 -04003345}
3346
3347static int b43_rng_init(struct b43_wl *wl)
3348{
Michael Buesch616de352009-03-29 13:19:31 +02003349 int err = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04003350
Michael Buesch616de352009-03-29 13:19:31 +02003351#ifdef CONFIG_B43_HWRNG
Michael Buesche4d6b792007-09-18 15:39:42 -04003352 snprintf(wl->rng_name, ARRAY_SIZE(wl->rng_name),
3353 "%s_%s", KBUILD_MODNAME, wiphy_name(wl->hw->wiphy));
3354 wl->rng.name = wl->rng_name;
3355 wl->rng.data_read = b43_rng_read;
3356 wl->rng.priv = (unsigned long)wl;
3357 wl->rng_initialized = 1;
3358 err = hwrng_register(&wl->rng);
3359 if (err) {
3360 wl->rng_initialized = 0;
3361 b43err(wl, "Failed to register the random "
3362 "number generator (%d)\n", err);
3363 }
Michael Buesch616de352009-03-29 13:19:31 +02003364#endif /* CONFIG_B43_HWRNG */
Michael Buesche4d6b792007-09-18 15:39:42 -04003365
3366 return err;
3367}
3368
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003369static void b43_tx_work(struct work_struct *work)
Michael Buesche4d6b792007-09-18 15:39:42 -04003370{
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003371 struct b43_wl *wl = container_of(work, struct b43_wl, tx_work);
3372 struct b43_wldev *dev;
3373 struct sk_buff *skb;
3374 int err = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04003375
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003376 mutex_lock(&wl->mutex);
3377 dev = wl->current_dev;
3378 if (unlikely(!dev || b43_status(dev) < B43_STAT_STARTED)) {
3379 mutex_unlock(&wl->mutex);
3380 return;
Michael Buesch5100d5a2008-03-29 21:01:16 +01003381 }
Michael Buesch21a75d72008-04-25 19:29:08 +02003382
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003383 while (skb_queue_len(&wl->tx_queue)) {
3384 skb = skb_dequeue(&wl->tx_queue);
Michael Buesch21a75d72008-04-25 19:29:08 +02003385
Michael Buesch21a75d72008-04-25 19:29:08 +02003386 if (b43_using_pio_transfers(dev))
Johannes Berge039fa42008-05-15 12:55:29 +02003387 err = b43_pio_tx(dev, skb);
Michael Buesch21a75d72008-04-25 19:29:08 +02003388 else
Johannes Berge039fa42008-05-15 12:55:29 +02003389 err = b43_dma_tx(dev, skb);
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003390 if (unlikely(err))
3391 dev_kfree_skb(skb); /* Drop it */
Michael Buesch21a75d72008-04-25 19:29:08 +02003392 }
3393
Michael Buesch990b86f2009-09-12 00:48:03 +02003394#if B43_DEBUG
3395 dev->tx_count++;
3396#endif
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003397 mutex_unlock(&wl->mutex);
3398}
Michael Buesch21a75d72008-04-25 19:29:08 +02003399
Johannes Berg7bb45682011-02-24 14:42:06 +01003400static void b43_op_tx(struct ieee80211_hw *hw,
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003401 struct sk_buff *skb)
3402{
3403 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Bueschc9e8eae2008-06-15 15:17:29 +02003404
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003405 if (unlikely(skb->len < 2 + 2 + 6)) {
3406 /* Too short, this can't be a valid frame. */
3407 dev_kfree_skb_any(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01003408 return;
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003409 }
3410 B43_WARN_ON(skb_shinfo(skb)->nr_frags);
3411
3412 skb_queue_tail(&wl->tx_queue, skb);
3413 ieee80211_queue_work(wl->hw, &wl->tx_work);
Michael Buesche4d6b792007-09-18 15:39:42 -04003414}
3415
Michael Buesche6f5b932008-03-05 21:18:49 +01003416static void b43_qos_params_upload(struct b43_wldev *dev,
3417 const struct ieee80211_tx_queue_params *p,
3418 u16 shm_offset)
3419{
3420 u16 params[B43_NR_QOSPARAMS];
Johannes Berg0b576642008-07-15 02:08:24 -07003421 int bslots, tmp;
Michael Buesche6f5b932008-03-05 21:18:49 +01003422 unsigned int i;
3423
Michael Bueschb0544eb2009-09-06 15:42:45 +02003424 if (!dev->qos_enabled)
3425 return;
3426
Johannes Berg0b576642008-07-15 02:08:24 -07003427 bslots = b43_read16(dev, B43_MMIO_RNG) & p->cw_min;
Michael Buesche6f5b932008-03-05 21:18:49 +01003428
3429 memset(&params, 0, sizeof(params));
3430
3431 params[B43_QOSPARAM_TXOP] = p->txop * 32;
Johannes Berg0b576642008-07-15 02:08:24 -07003432 params[B43_QOSPARAM_CWMIN] = p->cw_min;
3433 params[B43_QOSPARAM_CWMAX] = p->cw_max;
3434 params[B43_QOSPARAM_CWCUR] = p->cw_min;
3435 params[B43_QOSPARAM_AIFS] = p->aifs;
Michael Buesche6f5b932008-03-05 21:18:49 +01003436 params[B43_QOSPARAM_BSLOTS] = bslots;
Johannes Berg0b576642008-07-15 02:08:24 -07003437 params[B43_QOSPARAM_REGGAP] = bslots + p->aifs;
Michael Buesche6f5b932008-03-05 21:18:49 +01003438
3439 for (i = 0; i < ARRAY_SIZE(params); i++) {
3440 if (i == B43_QOSPARAM_STATUS) {
3441 tmp = b43_shm_read16(dev, B43_SHM_SHARED,
3442 shm_offset + (i * 2));
3443 /* Mark the parameters as updated. */
3444 tmp |= 0x100;
3445 b43_shm_write16(dev, B43_SHM_SHARED,
3446 shm_offset + (i * 2),
3447 tmp);
3448 } else {
3449 b43_shm_write16(dev, B43_SHM_SHARED,
3450 shm_offset + (i * 2),
3451 params[i]);
3452 }
3453 }
3454}
3455
Michael Bueschc40c1122008-09-06 16:21:47 +02003456/* Mapping of mac80211 queue numbers to b43 QoS SHM offsets. */
3457static const u16 b43_qos_shm_offsets[] = {
3458 /* [mac80211-queue-nr] = SHM_OFFSET, */
3459 [0] = B43_QOS_VOICE,
3460 [1] = B43_QOS_VIDEO,
3461 [2] = B43_QOS_BESTEFFORT,
3462 [3] = B43_QOS_BACKGROUND,
3463};
3464
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003465/* Update all QOS parameters in hardware. */
3466static void b43_qos_upload_all(struct b43_wldev *dev)
Michael Buesche6f5b932008-03-05 21:18:49 +01003467{
3468 struct b43_wl *wl = dev->wl;
3469 struct b43_qos_params *params;
Michael Buesche6f5b932008-03-05 21:18:49 +01003470 unsigned int i;
3471
Michael Bueschb0544eb2009-09-06 15:42:45 +02003472 if (!dev->qos_enabled)
3473 return;
3474
Michael Bueschc40c1122008-09-06 16:21:47 +02003475 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3476 ARRAY_SIZE(wl->qos_params));
Michael Buesche6f5b932008-03-05 21:18:49 +01003477
3478 b43_mac_suspend(dev);
Michael Buesche6f5b932008-03-05 21:18:49 +01003479 for (i = 0; i < ARRAY_SIZE(wl->qos_params); i++) {
3480 params = &(wl->qos_params[i]);
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003481 b43_qos_params_upload(dev, &(params->p),
3482 b43_qos_shm_offsets[i]);
Michael Buesche6f5b932008-03-05 21:18:49 +01003483 }
Michael Buesche6f5b932008-03-05 21:18:49 +01003484 b43_mac_enable(dev);
3485}
3486
3487static void b43_qos_clear(struct b43_wl *wl)
3488{
3489 struct b43_qos_params *params;
3490 unsigned int i;
3491
Michael Bueschc40c1122008-09-06 16:21:47 +02003492 /* Initialize QoS parameters to sane defaults. */
3493
3494 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3495 ARRAY_SIZE(wl->qos_params));
3496
Michael Buesche6f5b932008-03-05 21:18:49 +01003497 for (i = 0; i < ARRAY_SIZE(wl->qos_params); i++) {
3498 params = &(wl->qos_params[i]);
3499
Michael Bueschc40c1122008-09-06 16:21:47 +02003500 switch (b43_qos_shm_offsets[i]) {
3501 case B43_QOS_VOICE:
3502 params->p.txop = 0;
3503 params->p.aifs = 2;
3504 params->p.cw_min = 0x0001;
3505 params->p.cw_max = 0x0001;
3506 break;
3507 case B43_QOS_VIDEO:
3508 params->p.txop = 0;
3509 params->p.aifs = 2;
3510 params->p.cw_min = 0x0001;
3511 params->p.cw_max = 0x0001;
3512 break;
3513 case B43_QOS_BESTEFFORT:
3514 params->p.txop = 0;
3515 params->p.aifs = 3;
3516 params->p.cw_min = 0x0001;
3517 params->p.cw_max = 0x03FF;
3518 break;
3519 case B43_QOS_BACKGROUND:
3520 params->p.txop = 0;
3521 params->p.aifs = 7;
3522 params->p.cw_min = 0x0001;
3523 params->p.cw_max = 0x03FF;
3524 break;
3525 default:
3526 B43_WARN_ON(1);
3527 }
Michael Buesche6f5b932008-03-05 21:18:49 +01003528 }
3529}
3530
3531/* Initialize the core's QOS capabilities */
3532static void b43_qos_init(struct b43_wldev *dev)
3533{
Michael Bueschb0544eb2009-09-06 15:42:45 +02003534 if (!dev->qos_enabled) {
3535 /* Disable QOS support. */
3536 b43_hf_write(dev, b43_hf_read(dev) & ~B43_HF_EDCF);
3537 b43_write16(dev, B43_MMIO_IFSCTL,
3538 b43_read16(dev, B43_MMIO_IFSCTL)
3539 & ~B43_MMIO_IFSCTL_USE_EDCF);
3540 b43dbg(dev->wl, "QoS disabled\n");
3541 return;
3542 }
3543
Michael Buesche6f5b932008-03-05 21:18:49 +01003544 /* Upload the current QOS parameters. */
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003545 b43_qos_upload_all(dev);
Michael Buesche6f5b932008-03-05 21:18:49 +01003546
3547 /* Enable QOS support. */
3548 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_EDCF);
3549 b43_write16(dev, B43_MMIO_IFSCTL,
3550 b43_read16(dev, B43_MMIO_IFSCTL)
3551 | B43_MMIO_IFSCTL_USE_EDCF);
Michael Bueschb0544eb2009-09-06 15:42:45 +02003552 b43dbg(dev->wl, "QoS enabled\n");
Michael Buesche6f5b932008-03-05 21:18:49 +01003553}
3554
Johannes Berge100bb62008-04-30 18:51:21 +02003555static int b43_op_conf_tx(struct ieee80211_hw *hw, u16 _queue,
Michael Buesch40faacc2007-10-28 16:29:32 +01003556 const struct ieee80211_tx_queue_params *params)
Michael Buesche4d6b792007-09-18 15:39:42 -04003557{
Michael Buesche6f5b932008-03-05 21:18:49 +01003558 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003559 struct b43_wldev *dev;
Michael Buesche6f5b932008-03-05 21:18:49 +01003560 unsigned int queue = (unsigned int)_queue;
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003561 int err = -ENODEV;
Michael Buesche6f5b932008-03-05 21:18:49 +01003562
3563 if (queue >= ARRAY_SIZE(wl->qos_params)) {
3564 /* Queue not available or don't support setting
3565 * params on this queue. Return success to not
3566 * confuse mac80211. */
3567 return 0;
3568 }
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003569 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3570 ARRAY_SIZE(wl->qos_params));
Michael Buesche6f5b932008-03-05 21:18:49 +01003571
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003572 mutex_lock(&wl->mutex);
3573 dev = wl->current_dev;
3574 if (unlikely(!dev || (b43_status(dev) < B43_STAT_INITIALIZED)))
3575 goto out_unlock;
Michael Buesche6f5b932008-03-05 21:18:49 +01003576
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003577 memcpy(&(wl->qos_params[queue].p), params, sizeof(*params));
3578 b43_mac_suspend(dev);
3579 b43_qos_params_upload(dev, &(wl->qos_params[queue].p),
3580 b43_qos_shm_offsets[queue]);
3581 b43_mac_enable(dev);
3582 err = 0;
Michael Buesche6f5b932008-03-05 21:18:49 +01003583
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003584out_unlock:
3585 mutex_unlock(&wl->mutex);
3586
3587 return err;
Michael Buesche4d6b792007-09-18 15:39:42 -04003588}
3589
Michael Buesch40faacc2007-10-28 16:29:32 +01003590static int b43_op_get_stats(struct ieee80211_hw *hw,
3591 struct ieee80211_low_level_stats *stats)
Michael Buesche4d6b792007-09-18 15:39:42 -04003592{
3593 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04003594
Michael Buesch36dbd952009-09-04 22:51:29 +02003595 mutex_lock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003596 memcpy(stats, &wl->ieee_stats, sizeof(*stats));
Michael Buesch36dbd952009-09-04 22:51:29 +02003597 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003598
3599 return 0;
3600}
3601
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003602static u64 b43_op_get_tsf(struct ieee80211_hw *hw)
3603{
3604 struct b43_wl *wl = hw_to_b43_wl(hw);
3605 struct b43_wldev *dev;
3606 u64 tsf;
3607
3608 mutex_lock(&wl->mutex);
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003609 dev = wl->current_dev;
3610
3611 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED))
3612 b43_tsf_read(dev, &tsf);
3613 else
3614 tsf = 0;
3615
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003616 mutex_unlock(&wl->mutex);
3617
3618 return tsf;
3619}
3620
3621static void b43_op_set_tsf(struct ieee80211_hw *hw, u64 tsf)
3622{
3623 struct b43_wl *wl = hw_to_b43_wl(hw);
3624 struct b43_wldev *dev;
3625
3626 mutex_lock(&wl->mutex);
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003627 dev = wl->current_dev;
3628
3629 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED))
3630 b43_tsf_write(dev, tsf);
3631
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003632 mutex_unlock(&wl->mutex);
3633}
3634
Michael Buesche4d6b792007-09-18 15:39:42 -04003635static void b43_put_phy_into_reset(struct b43_wldev *dev)
3636{
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003637 u32 tmp;
Michael Buesche4d6b792007-09-18 15:39:42 -04003638
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003639 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02003640#ifdef CONFIG_B43_BCMA
3641 case B43_BUS_BCMA:
3642 b43err(dev->wl,
3643 "Putting PHY into reset not supported on BCMA\n");
3644 break;
3645#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003646#ifdef CONFIG_B43_SSB
3647 case B43_BUS_SSB:
3648 tmp = ssb_read32(dev->dev->sdev, SSB_TMSLOW);
3649 tmp &= ~B43_TMSLOW_GMODE;
3650 tmp |= B43_TMSLOW_PHYRESET;
3651 tmp |= SSB_TMSLOW_FGC;
3652 ssb_write32(dev->dev->sdev, SSB_TMSLOW, tmp);
3653 msleep(1);
Michael Buesche4d6b792007-09-18 15:39:42 -04003654
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003655 tmp = ssb_read32(dev->dev->sdev, SSB_TMSLOW);
3656 tmp &= ~SSB_TMSLOW_FGC;
3657 tmp |= B43_TMSLOW_PHYRESET;
3658 ssb_write32(dev->dev->sdev, SSB_TMSLOW, tmp);
3659 msleep(1);
3660
3661 break;
3662#endif
3663 }
Michael Buesche4d6b792007-09-18 15:39:42 -04003664}
3665
John Daiker99da1852009-02-24 02:16:42 -08003666static const char *band_to_string(enum ieee80211_band band)
Michael Buesche4d6b792007-09-18 15:39:42 -04003667{
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003668 switch (band) {
3669 case IEEE80211_BAND_5GHZ:
3670 return "5";
3671 case IEEE80211_BAND_2GHZ:
3672 return "2.4";
3673 default:
3674 break;
3675 }
3676 B43_WARN_ON(1);
3677 return "";
3678}
3679
3680/* Expects wl->mutex locked */
3681static int b43_switch_band(struct b43_wl *wl, struct ieee80211_channel *chan)
3682{
3683 struct b43_wldev *up_dev = NULL;
Michael Buesche4d6b792007-09-18 15:39:42 -04003684 struct b43_wldev *down_dev;
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003685 struct b43_wldev *d;
Michael Buesche4d6b792007-09-18 15:39:42 -04003686 int err;
John W. Linville922d8a02009-01-12 14:40:20 -05003687 bool uninitialized_var(gmode);
Michael Buesche4d6b792007-09-18 15:39:42 -04003688 int prev_status;
3689
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003690 /* Find a device and PHY which supports the band. */
3691 list_for_each_entry(d, &wl->devlist, list) {
3692 switch (chan->band) {
3693 case IEEE80211_BAND_5GHZ:
3694 if (d->phy.supports_5ghz) {
3695 up_dev = d;
3696 gmode = 0;
3697 }
3698 break;
3699 case IEEE80211_BAND_2GHZ:
3700 if (d->phy.supports_2ghz) {
3701 up_dev = d;
3702 gmode = 1;
3703 }
3704 break;
3705 default:
3706 B43_WARN_ON(1);
3707 return -EINVAL;
3708 }
3709 if (up_dev)
3710 break;
3711 }
3712 if (!up_dev) {
3713 b43err(wl, "Could not find a device for %s-GHz band operation\n",
3714 band_to_string(chan->band));
3715 return -ENODEV;
Michael Buesche4d6b792007-09-18 15:39:42 -04003716 }
3717 if ((up_dev == wl->current_dev) &&
3718 (!!wl->current_dev->phy.gmode == !!gmode)) {
3719 /* This device is already running. */
3720 return 0;
3721 }
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003722 b43dbg(wl, "Switching to %s-GHz band\n",
3723 band_to_string(chan->band));
Michael Buesche4d6b792007-09-18 15:39:42 -04003724 down_dev = wl->current_dev;
3725
3726 prev_status = b43_status(down_dev);
3727 /* Shutdown the currently running core. */
3728 if (prev_status >= B43_STAT_STARTED)
Michael Buesch36dbd952009-09-04 22:51:29 +02003729 down_dev = b43_wireless_core_stop(down_dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04003730 if (prev_status >= B43_STAT_INITIALIZED)
3731 b43_wireless_core_exit(down_dev);
3732
3733 if (down_dev != up_dev) {
3734 /* We switch to a different core, so we put PHY into
3735 * RESET on the old core. */
3736 b43_put_phy_into_reset(down_dev);
3737 }
3738
3739 /* Now start the new core. */
3740 up_dev->phy.gmode = gmode;
3741 if (prev_status >= B43_STAT_INITIALIZED) {
3742 err = b43_wireless_core_init(up_dev);
3743 if (err) {
3744 b43err(wl, "Fatal: Could not initialize device for "
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003745 "selected %s-GHz band\n",
3746 band_to_string(chan->band));
Michael Buesche4d6b792007-09-18 15:39:42 -04003747 goto init_failure;
3748 }
3749 }
3750 if (prev_status >= B43_STAT_STARTED) {
3751 err = b43_wireless_core_start(up_dev);
3752 if (err) {
3753 b43err(wl, "Fatal: Coult not start device for "
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003754 "selected %s-GHz band\n",
3755 band_to_string(chan->band));
Michael Buesche4d6b792007-09-18 15:39:42 -04003756 b43_wireless_core_exit(up_dev);
3757 goto init_failure;
3758 }
3759 }
3760 B43_WARN_ON(b43_status(up_dev) != prev_status);
3761
3762 wl->current_dev = up_dev;
3763
3764 return 0;
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003765init_failure:
Michael Buesche4d6b792007-09-18 15:39:42 -04003766 /* Whoops, failed to init the new core. No core is operating now. */
3767 wl->current_dev = NULL;
3768 return err;
3769}
3770
Johannes Berg9124b072008-10-14 19:17:54 +02003771/* Write the short and long frame retry limit values. */
3772static void b43_set_retry_limits(struct b43_wldev *dev,
3773 unsigned int short_retry,
3774 unsigned int long_retry)
3775{
3776 /* The retry limit is a 4-bit counter. Enforce this to avoid overflowing
3777 * the chip-internal counter. */
3778 short_retry = min(short_retry, (unsigned int)0xF);
3779 long_retry = min(long_retry, (unsigned int)0xF);
3780
3781 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_SRLIMIT,
3782 short_retry);
3783 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_LRLIMIT,
3784 long_retry);
3785}
3786
Johannes Berge8975582008-10-09 12:18:51 +02003787static int b43_op_config(struct ieee80211_hw *hw, u32 changed)
Michael Buesche4d6b792007-09-18 15:39:42 -04003788{
3789 struct b43_wl *wl = hw_to_b43_wl(hw);
3790 struct b43_wldev *dev;
3791 struct b43_phy *phy;
Johannes Berge8975582008-10-09 12:18:51 +02003792 struct ieee80211_conf *conf = &hw->conf;
Michael Buesch9db1f6d2007-12-22 21:54:20 +01003793 int antenna;
Michael Buesche4d6b792007-09-18 15:39:42 -04003794 int err = 0;
Felix Fietkau2a190322011-08-10 13:50:30 -06003795 bool reload_bss = false;
Michael Buesche4d6b792007-09-18 15:39:42 -04003796
Michael Buesche4d6b792007-09-18 15:39:42 -04003797 mutex_lock(&wl->mutex);
3798
Felix Fietkau2a190322011-08-10 13:50:30 -06003799 dev = wl->current_dev;
3800
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003801 /* Switch the band (if necessary). This might change the active core. */
3802 err = b43_switch_band(wl, conf->channel);
Michael Buesche4d6b792007-09-18 15:39:42 -04003803 if (err)
3804 goto out_unlock_mutex;
Felix Fietkau2a190322011-08-10 13:50:30 -06003805
3806 /* Need to reload all settings if the core changed */
3807 if (dev != wl->current_dev) {
3808 dev = wl->current_dev;
3809 changed = ~0;
3810 reload_bss = true;
3811 }
3812
Michael Buesche4d6b792007-09-18 15:39:42 -04003813 phy = &dev->phy;
3814
Rafał Miłeckiaa4c7b22010-01-22 01:53:12 +01003815 if (conf_is_ht(conf))
3816 phy->is_40mhz =
3817 (conf_is_ht40_minus(conf) || conf_is_ht40_plus(conf));
3818 else
3819 phy->is_40mhz = false;
3820
Michael Bueschd10d0e52008-12-18 22:13:39 +01003821 b43_mac_suspend(dev);
3822
Johannes Berg9124b072008-10-14 19:17:54 +02003823 if (changed & IEEE80211_CONF_CHANGE_RETRY_LIMITS)
3824 b43_set_retry_limits(dev, conf->short_frame_max_tx_count,
3825 conf->long_frame_max_tx_count);
3826 changed &= ~IEEE80211_CONF_CHANGE_RETRY_LIMITS;
3827 if (!changed)
Michael Bueschd10d0e52008-12-18 22:13:39 +01003828 goto out_mac_enable;
Michael Buesche4d6b792007-09-18 15:39:42 -04003829
3830 /* Switch to the requested channel.
3831 * The firmware takes care of races with the TX handler. */
Johannes Berg8318d782008-01-24 19:38:38 +01003832 if (conf->channel->hw_value != phy->channel)
Michael Bueschef1a6282008-08-27 18:53:02 +02003833 b43_switch_channel(dev, conf->channel->hw_value);
Michael Buesche4d6b792007-09-18 15:39:42 -04003834
Johannes Berg0869aea2009-10-28 10:03:35 +01003835 dev->wl->radiotap_enabled = !!(conf->flags & IEEE80211_CONF_MONITOR);
Johannes Bergd42ce842007-11-23 14:50:51 +01003836
Michael Buesche4d6b792007-09-18 15:39:42 -04003837 /* Adjust the desired TX power level. */
3838 if (conf->power_level != 0) {
Michael Buesch18c8ade2008-08-28 19:33:40 +02003839 if (conf->power_level != phy->desired_txpower) {
3840 phy->desired_txpower = conf->power_level;
3841 b43_phy_txpower_check(dev, B43_TXPWR_IGNORE_TIME |
3842 B43_TXPWR_IGNORE_TSSI);
Michael Buesche4d6b792007-09-18 15:39:42 -04003843 }
3844 }
3845
3846 /* Antennas for RX and management frame TX. */
Johannes Berg0f4ac382008-10-09 12:18:04 +02003847 antenna = B43_ANTENNA_DEFAULT;
Michael Buesch9db1f6d2007-12-22 21:54:20 +01003848 b43_mgmtframe_txantenna(dev, antenna);
Johannes Berg0f4ac382008-10-09 12:18:04 +02003849 antenna = B43_ANTENNA_DEFAULT;
Michael Bueschef1a6282008-08-27 18:53:02 +02003850 if (phy->ops->set_rx_antenna)
3851 phy->ops->set_rx_antenna(dev, antenna);
Michael Buesche4d6b792007-09-18 15:39:42 -04003852
Larry Fingerfd4973c2009-06-20 12:58:11 -05003853 if (wl->radio_enabled != phy->radio_on) {
3854 if (wl->radio_enabled) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003855 b43_software_rfkill(dev, false);
Michael Bueschfda9abc2007-09-20 22:14:18 +02003856 b43info(dev->wl, "Radio turned on by software\n");
3857 if (!dev->radio_hw_enable) {
3858 b43info(dev->wl, "The hardware RF-kill button "
3859 "still turns the radio physically off. "
3860 "Press the button to turn it on.\n");
3861 }
3862 } else {
Johannes Berg19d337d2009-06-02 13:01:37 +02003863 b43_software_rfkill(dev, true);
Michael Bueschfda9abc2007-09-20 22:14:18 +02003864 b43info(dev->wl, "Radio turned off by software\n");
3865 }
3866 }
3867
Michael Bueschd10d0e52008-12-18 22:13:39 +01003868out_mac_enable:
3869 b43_mac_enable(dev);
3870out_unlock_mutex:
Michael Buesche4d6b792007-09-18 15:39:42 -04003871 mutex_unlock(&wl->mutex);
3872
Felix Fietkau2a190322011-08-10 13:50:30 -06003873 if (wl->vif && reload_bss)
3874 b43_op_bss_info_changed(hw, wl->vif, &wl->vif->bss_conf, ~0);
3875
Michael Buesche4d6b792007-09-18 15:39:42 -04003876 return err;
3877}
3878
Johannes Berg881d9482009-01-21 15:13:48 +01003879static void b43_update_basic_rates(struct b43_wldev *dev, u32 brates)
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003880{
3881 struct ieee80211_supported_band *sband =
3882 dev->wl->hw->wiphy->bands[b43_current_band(dev->wl)];
3883 struct ieee80211_rate *rate;
3884 int i;
3885 u16 basic, direct, offset, basic_offset, rateptr;
3886
3887 for (i = 0; i < sband->n_bitrates; i++) {
3888 rate = &sband->bitrates[i];
3889
3890 if (b43_is_cck_rate(rate->hw_value)) {
3891 direct = B43_SHM_SH_CCKDIRECT;
3892 basic = B43_SHM_SH_CCKBASIC;
3893 offset = b43_plcp_get_ratecode_cck(rate->hw_value);
3894 offset &= 0xF;
3895 } else {
3896 direct = B43_SHM_SH_OFDMDIRECT;
3897 basic = B43_SHM_SH_OFDMBASIC;
3898 offset = b43_plcp_get_ratecode_ofdm(rate->hw_value);
3899 offset &= 0xF;
3900 }
3901
3902 rate = ieee80211_get_response_rate(sband, brates, rate->bitrate);
3903
3904 if (b43_is_cck_rate(rate->hw_value)) {
3905 basic_offset = b43_plcp_get_ratecode_cck(rate->hw_value);
3906 basic_offset &= 0xF;
3907 } else {
3908 basic_offset = b43_plcp_get_ratecode_ofdm(rate->hw_value);
3909 basic_offset &= 0xF;
3910 }
3911
3912 /*
3913 * Get the pointer that we need to point to
3914 * from the direct map
3915 */
3916 rateptr = b43_shm_read16(dev, B43_SHM_SHARED,
3917 direct + 2 * basic_offset);
3918 /* and write it to the basic map */
3919 b43_shm_write16(dev, B43_SHM_SHARED, basic + 2 * offset,
3920 rateptr);
3921 }
3922}
3923
3924static void b43_op_bss_info_changed(struct ieee80211_hw *hw,
3925 struct ieee80211_vif *vif,
3926 struct ieee80211_bss_conf *conf,
3927 u32 changed)
3928{
3929 struct b43_wl *wl = hw_to_b43_wl(hw);
3930 struct b43_wldev *dev;
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003931
3932 mutex_lock(&wl->mutex);
3933
3934 dev = wl->current_dev;
Michael Bueschd10d0e52008-12-18 22:13:39 +01003935 if (!dev || b43_status(dev) < B43_STAT_STARTED)
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003936 goto out_unlock_mutex;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003937
3938 B43_WARN_ON(wl->vif != vif);
3939
3940 if (changed & BSS_CHANGED_BSSID) {
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003941 if (conf->bssid)
3942 memcpy(wl->bssid, conf->bssid, ETH_ALEN);
3943 else
3944 memset(wl->bssid, 0, ETH_ALEN);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003945 }
3946
Johannes Berg3f0d8432009-05-18 10:53:18 +02003947 if (b43_status(dev) >= B43_STAT_INITIALIZED) {
3948 if (changed & BSS_CHANGED_BEACON &&
3949 (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
3950 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT) ||
3951 b43_is_mode(wl, NL80211_IFTYPE_ADHOC)))
3952 b43_update_templates(wl);
3953
3954 if (changed & BSS_CHANGED_BSSID)
3955 b43_write_mac_bssid_templates(dev);
3956 }
Johannes Berg3f0d8432009-05-18 10:53:18 +02003957
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003958 b43_mac_suspend(dev);
3959
Johannes Berg57c4d7b2009-04-23 16:10:04 +02003960 /* Update templates for AP/mesh mode. */
3961 if (changed & BSS_CHANGED_BEACON_INT &&
3962 (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
3963 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT) ||
Felix Fietkau2a190322011-08-10 13:50:30 -06003964 b43_is_mode(wl, NL80211_IFTYPE_ADHOC)) &&
3965 conf->beacon_int)
Johannes Berg57c4d7b2009-04-23 16:10:04 +02003966 b43_set_beacon_int(dev, conf->beacon_int);
3967
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003968 if (changed & BSS_CHANGED_BASIC_RATES)
3969 b43_update_basic_rates(dev, conf->basic_rates);
3970
3971 if (changed & BSS_CHANGED_ERP_SLOT) {
3972 if (conf->use_short_slot)
3973 b43_short_slot_timing_enable(dev);
3974 else
3975 b43_short_slot_timing_disable(dev);
3976 }
3977
3978 b43_mac_enable(dev);
Michael Bueschd10d0e52008-12-18 22:13:39 +01003979out_unlock_mutex:
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003980 mutex_unlock(&wl->mutex);
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003981}
3982
Michael Buesch40faacc2007-10-28 16:29:32 +01003983static int b43_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003984 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
3985 struct ieee80211_key_conf *key)
Michael Buesche4d6b792007-09-18 15:39:42 -04003986{
3987 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003988 struct b43_wldev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04003989 u8 algorithm;
3990 u8 index;
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003991 int err;
Michael Buesch060210f2009-01-25 15:49:59 +01003992 static const u8 bcast_addr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Michael Buesche4d6b792007-09-18 15:39:42 -04003993
3994 if (modparam_nohwcrypt)
3995 return -ENOSPC; /* User disabled HW-crypto */
3996
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003997 mutex_lock(&wl->mutex);
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003998
3999 dev = wl->current_dev;
4000 err = -ENODEV;
4001 if (!dev || b43_status(dev) < B43_STAT_INITIALIZED)
4002 goto out_unlock;
4003
Michael Buesch403a3a12009-06-08 21:04:57 +02004004 if (dev->fw.pcm_request_failed || !dev->hwcrypto_enabled) {
Michael Buesch68217832008-05-17 23:43:57 +02004005 /* We don't have firmware for the crypto engine.
4006 * Must use software-crypto. */
4007 err = -EOPNOTSUPP;
4008 goto out_unlock;
4009 }
4010
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01004011 err = -EINVAL;
Johannes Berg97359d12010-08-10 09:46:38 +02004012 switch (key->cipher) {
4013 case WLAN_CIPHER_SUITE_WEP40:
4014 algorithm = B43_SEC_ALGO_WEP40;
Michael Buesche4d6b792007-09-18 15:39:42 -04004015 break;
Johannes Berg97359d12010-08-10 09:46:38 +02004016 case WLAN_CIPHER_SUITE_WEP104:
4017 algorithm = B43_SEC_ALGO_WEP104;
4018 break;
4019 case WLAN_CIPHER_SUITE_TKIP:
Michael Buesche4d6b792007-09-18 15:39:42 -04004020 algorithm = B43_SEC_ALGO_TKIP;
4021 break;
Johannes Berg97359d12010-08-10 09:46:38 +02004022 case WLAN_CIPHER_SUITE_CCMP:
Michael Buesche4d6b792007-09-18 15:39:42 -04004023 algorithm = B43_SEC_ALGO_AES;
4024 break;
4025 default:
4026 B43_WARN_ON(1);
Michael Buesche4d6b792007-09-18 15:39:42 -04004027 goto out_unlock;
4028 }
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01004029 index = (u8) (key->keyidx);
4030 if (index > 3)
4031 goto out_unlock;
Michael Buesche4d6b792007-09-18 15:39:42 -04004032
4033 switch (cmd) {
4034 case SET_KEY:
gregor kowski035d0242009-08-19 22:35:45 +02004035 if (algorithm == B43_SEC_ALGO_TKIP &&
4036 (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE) ||
4037 !modparam_hwtkip)) {
4038 /* We support only pairwise key */
Michael Buesche4d6b792007-09-18 15:39:42 -04004039 err = -EOPNOTSUPP;
4040 goto out_unlock;
4041 }
4042
Michael Buesche808e582008-12-19 21:30:52 +01004043 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) {
Johannes Bergdc822b52008-12-29 12:55:09 +01004044 if (WARN_ON(!sta)) {
4045 err = -EOPNOTSUPP;
4046 goto out_unlock;
4047 }
Michael Buesche808e582008-12-19 21:30:52 +01004048 /* Pairwise key with an assigned MAC address. */
Michael Buesche4d6b792007-09-18 15:39:42 -04004049 err = b43_key_write(dev, -1, algorithm,
Johannes Bergdc822b52008-12-29 12:55:09 +01004050 key->key, key->keylen,
4051 sta->addr, key);
Michael Buesche808e582008-12-19 21:30:52 +01004052 } else {
4053 /* Group key */
4054 err = b43_key_write(dev, index, algorithm,
4055 key->key, key->keylen, NULL, key);
Michael Buesche4d6b792007-09-18 15:39:42 -04004056 }
4057 if (err)
4058 goto out_unlock;
4059
4060 if (algorithm == B43_SEC_ALGO_WEP40 ||
4061 algorithm == B43_SEC_ALGO_WEP104) {
4062 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_USEDEFKEYS);
4063 } else {
4064 b43_hf_write(dev,
4065 b43_hf_read(dev) & ~B43_HF_USEDEFKEYS);
4066 }
4067 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
gregor kowski035d0242009-08-19 22:35:45 +02004068 if (algorithm == B43_SEC_ALGO_TKIP)
4069 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Michael Buesche4d6b792007-09-18 15:39:42 -04004070 break;
4071 case DISABLE_KEY: {
4072 err = b43_key_clear(dev, key->hw_key_idx);
4073 if (err)
4074 goto out_unlock;
4075 break;
4076 }
4077 default:
4078 B43_WARN_ON(1);
4079 }
Michael Buesch9cf7f242008-12-19 20:24:30 +01004080
Michael Buesche4d6b792007-09-18 15:39:42 -04004081out_unlock:
Michael Buesche4d6b792007-09-18 15:39:42 -04004082 if (!err) {
4083 b43dbg(wl, "%s hardware based encryption for keyidx: %d, "
Johannes Berge1749612008-10-27 15:59:26 -07004084 "mac: %pM\n",
Michael Buesche4d6b792007-09-18 15:39:42 -04004085 cmd == SET_KEY ? "Using" : "Disabling", key->keyidx,
Larry Fingera1d882102009-01-14 11:15:25 -06004086 sta ? sta->addr : bcast_addr);
Michael Buesch9cf7f242008-12-19 20:24:30 +01004087 b43_dump_keymemory(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004088 }
Michael Buesch9cf7f242008-12-19 20:24:30 +01004089 mutex_unlock(&wl->mutex);
4090
Michael Buesche4d6b792007-09-18 15:39:42 -04004091 return err;
4092}
4093
Michael Buesch40faacc2007-10-28 16:29:32 +01004094static void b43_op_configure_filter(struct ieee80211_hw *hw,
4095 unsigned int changed, unsigned int *fflags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02004096 u64 multicast)
Michael Buesche4d6b792007-09-18 15:39:42 -04004097{
4098 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesch36dbd952009-09-04 22:51:29 +02004099 struct b43_wldev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004100
Michael Buesch36dbd952009-09-04 22:51:29 +02004101 mutex_lock(&wl->mutex);
4102 dev = wl->current_dev;
Johannes Berg4150c572007-09-17 01:29:23 -04004103 if (!dev) {
4104 *fflags = 0;
Michael Buesch36dbd952009-09-04 22:51:29 +02004105 goto out_unlock;
Michael Buesche4d6b792007-09-18 15:39:42 -04004106 }
Johannes Berg4150c572007-09-17 01:29:23 -04004107
Johannes Berg4150c572007-09-17 01:29:23 -04004108 *fflags &= FIF_PROMISC_IN_BSS |
4109 FIF_ALLMULTI |
4110 FIF_FCSFAIL |
4111 FIF_PLCPFAIL |
4112 FIF_CONTROL |
4113 FIF_OTHER_BSS |
4114 FIF_BCN_PRBRESP_PROMISC;
4115
4116 changed &= FIF_PROMISC_IN_BSS |
4117 FIF_ALLMULTI |
4118 FIF_FCSFAIL |
4119 FIF_PLCPFAIL |
4120 FIF_CONTROL |
4121 FIF_OTHER_BSS |
4122 FIF_BCN_PRBRESP_PROMISC;
4123
4124 wl->filter_flags = *fflags;
4125
4126 if (changed && b43_status(dev) >= B43_STAT_INITIALIZED)
4127 b43_adjust_opmode(dev);
Michael Buesch36dbd952009-09-04 22:51:29 +02004128
4129out_unlock:
4130 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04004131}
4132
Michael Buesch36dbd952009-09-04 22:51:29 +02004133/* Locking: wl->mutex
4134 * Returns the current dev. This might be different from the passed in dev,
4135 * because the core might be gone away while we unlocked the mutex. */
4136static struct b43_wldev * b43_wireless_core_stop(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04004137{
Larry Finger9a53bf52011-08-27 15:53:42 -05004138 struct b43_wl *wl;
Michael Buesch36dbd952009-09-04 22:51:29 +02004139 struct b43_wldev *orig_dev;
Michael Buesch49d965c2009-10-03 00:57:58 +02004140 u32 mask;
Michael Buesche4d6b792007-09-18 15:39:42 -04004141
Larry Finger9a53bf52011-08-27 15:53:42 -05004142 if (!dev)
4143 return NULL;
4144 wl = dev->wl;
Michael Buesch36dbd952009-09-04 22:51:29 +02004145redo:
4146 if (!dev || b43_status(dev) < B43_STAT_STARTED)
4147 return dev;
Stefano Brivioa19d12d2007-11-07 18:16:11 +01004148
Michael Bueschf5d40ee2009-09-04 22:53:18 +02004149 /* Cancel work. Unlock to avoid deadlocks. */
Michael Buesche4d6b792007-09-18 15:39:42 -04004150 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04004151 cancel_delayed_work_sync(&dev->periodic_work);
Michael Bueschf5d40ee2009-09-04 22:53:18 +02004152 cancel_work_sync(&wl->tx_work);
Michael Buesche4d6b792007-09-18 15:39:42 -04004153 mutex_lock(&wl->mutex);
Michael Buesch36dbd952009-09-04 22:51:29 +02004154 dev = wl->current_dev;
4155 if (!dev || b43_status(dev) < B43_STAT_STARTED) {
4156 /* Whoops, aliens ate up the device while we were unlocked. */
4157 return dev;
4158 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004159
Michael Buesch36dbd952009-09-04 22:51:29 +02004160 /* Disable interrupts on the device. */
4161 b43_set_status(dev, B43_STAT_INITIALIZED);
Rafał Miłecki505fb012011-05-19 15:11:27 +02004162 if (b43_bus_host_is_sdio(dev->dev)) {
Michael Buesch36dbd952009-09-04 22:51:29 +02004163 /* wl->mutex is locked. That is enough. */
4164 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
4165 b43_read32(dev, B43_MMIO_GEN_IRQ_MASK); /* Flush */
4166 } else {
4167 spin_lock_irq(&wl->hardirq_lock);
4168 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
4169 b43_read32(dev, B43_MMIO_GEN_IRQ_MASK); /* Flush */
4170 spin_unlock_irq(&wl->hardirq_lock);
4171 }
Michael Buesch176e9f62009-09-11 23:04:04 +02004172 /* Synchronize and free the interrupt handlers. Unlock to avoid deadlocks. */
Michael Buesch36dbd952009-09-04 22:51:29 +02004173 orig_dev = dev;
4174 mutex_unlock(&wl->mutex);
Rafał Miłecki505fb012011-05-19 15:11:27 +02004175 if (b43_bus_host_is_sdio(dev->dev)) {
Michael Buesch176e9f62009-09-11 23:04:04 +02004176 b43_sdio_free_irq(dev);
4177 } else {
Rafał Miłeckia18c7152011-05-18 02:06:40 +02004178 synchronize_irq(dev->dev->irq);
4179 free_irq(dev->dev->irq, dev);
Michael Buesch176e9f62009-09-11 23:04:04 +02004180 }
Michael Buesch36dbd952009-09-04 22:51:29 +02004181 mutex_lock(&wl->mutex);
4182 dev = wl->current_dev;
4183 if (!dev)
4184 return dev;
4185 if (dev != orig_dev) {
4186 if (b43_status(dev) >= B43_STAT_STARTED)
4187 goto redo;
4188 return dev;
4189 }
Michael Buesch49d965c2009-10-03 00:57:58 +02004190 mask = b43_read32(dev, B43_MMIO_GEN_IRQ_MASK);
4191 B43_WARN_ON(mask != 0xFFFFFFFF && mask);
Michael Buesch36dbd952009-09-04 22:51:29 +02004192
Michael Bueschf5d40ee2009-09-04 22:53:18 +02004193 /* Drain the TX queue */
4194 while (skb_queue_len(&wl->tx_queue))
4195 dev_kfree_skb(skb_dequeue(&wl->tx_queue));
4196
Michael Buesche4d6b792007-09-18 15:39:42 -04004197 b43_mac_suspend(dev);
Michael Buescha78b3bb2009-09-11 21:44:05 +02004198 b43_leds_exit(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004199 b43dbg(wl, "Wireless interface stopped\n");
Michael Buesch36dbd952009-09-04 22:51:29 +02004200
4201 return dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004202}
4203
4204/* Locking: wl->mutex */
4205static int b43_wireless_core_start(struct b43_wldev *dev)
4206{
4207 int err;
4208
4209 B43_WARN_ON(b43_status(dev) != B43_STAT_INITIALIZED);
4210
4211 drain_txstatus_queue(dev);
Rafał Miłecki505fb012011-05-19 15:11:27 +02004212 if (b43_bus_host_is_sdio(dev->dev)) {
Albert Herranz3dbba8e2009-09-10 19:34:49 +02004213 err = b43_sdio_request_irq(dev, b43_sdio_interrupt_handler);
4214 if (err) {
4215 b43err(dev->wl, "Cannot request SDIO IRQ\n");
4216 goto out;
4217 }
4218 } else {
Rafał Miłeckia18c7152011-05-18 02:06:40 +02004219 err = request_threaded_irq(dev->dev->irq, b43_interrupt_handler,
Albert Herranz3dbba8e2009-09-10 19:34:49 +02004220 b43_interrupt_thread_handler,
4221 IRQF_SHARED, KBUILD_MODNAME, dev);
4222 if (err) {
Rafał Miłeckidedb1eb2011-05-14 00:04:38 +02004223 b43err(dev->wl, "Cannot request IRQ-%d\n",
Rafał Miłeckia18c7152011-05-18 02:06:40 +02004224 dev->dev->irq);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02004225 goto out;
4226 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004227 }
4228
4229 /* We are ready to run. */
Larry Finger0866b032010-02-03 13:33:44 -06004230 ieee80211_wake_queues(dev->wl->hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04004231 b43_set_status(dev, B43_STAT_STARTED);
4232
4233 /* Start data flow (TX/RX). */
4234 b43_mac_enable(dev);
Michael Buesch13790722009-04-08 21:26:27 +02004235 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
Michael Buesche4d6b792007-09-18 15:39:42 -04004236
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004237 /* Start maintenance work */
Michael Buesche4d6b792007-09-18 15:39:42 -04004238 b43_periodic_tasks_setup(dev);
4239
Michael Buescha78b3bb2009-09-11 21:44:05 +02004240 b43_leds_init(dev);
4241
Michael Buesche4d6b792007-09-18 15:39:42 -04004242 b43dbg(dev->wl, "Wireless interface started\n");
Michael Buescha78b3bb2009-09-11 21:44:05 +02004243out:
Michael Buesche4d6b792007-09-18 15:39:42 -04004244 return err;
4245}
4246
4247/* Get PHY and RADIO versioning numbers */
4248static int b43_phy_versioning(struct b43_wldev *dev)
4249{
4250 struct b43_phy *phy = &dev->phy;
4251 u32 tmp;
4252 u8 analog_type;
4253 u8 phy_type;
4254 u8 phy_rev;
4255 u16 radio_manuf;
4256 u16 radio_ver;
4257 u16 radio_rev;
4258 int unsupported = 0;
4259
4260 /* Get PHY versioning */
4261 tmp = b43_read16(dev, B43_MMIO_PHY_VER);
4262 analog_type = (tmp & B43_PHYVER_ANALOG) >> B43_PHYVER_ANALOG_SHIFT;
4263 phy_type = (tmp & B43_PHYVER_TYPE) >> B43_PHYVER_TYPE_SHIFT;
4264 phy_rev = (tmp & B43_PHYVER_VERSION);
4265 switch (phy_type) {
4266 case B43_PHYTYPE_A:
4267 if (phy_rev >= 4)
4268 unsupported = 1;
4269 break;
4270 case B43_PHYTYPE_B:
4271 if (phy_rev != 2 && phy_rev != 4 && phy_rev != 6
4272 && phy_rev != 7)
4273 unsupported = 1;
4274 break;
4275 case B43_PHYTYPE_G:
Larry Finger013978b2007-11-26 10:29:47 -06004276 if (phy_rev > 9)
Michael Buesche4d6b792007-09-18 15:39:42 -04004277 unsupported = 1;
4278 break;
Rafał Miłecki692d2c02010-12-07 21:56:00 +01004279#ifdef CONFIG_B43_PHY_N
Michael Bueschd5c71e42008-01-04 17:06:29 +01004280 case B43_PHYTYPE_N:
Rafał Miłeckiab72efd2010-12-21 21:29:44 +01004281 if (phy_rev > 9)
Michael Bueschd5c71e42008-01-04 17:06:29 +01004282 unsupported = 1;
4283 break;
4284#endif
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004285#ifdef CONFIG_B43_PHY_LP
4286 case B43_PHYTYPE_LP:
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02004287 if (phy_rev > 2)
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004288 unsupported = 1;
4289 break;
4290#endif
Rafał Miłeckid7520b12011-06-13 16:20:06 +02004291#ifdef CONFIG_B43_PHY_HT
4292 case B43_PHYTYPE_HT:
4293 if (phy_rev > 1)
4294 unsupported = 1;
4295 break;
4296#endif
Rafał Miłecki1d738e62011-07-07 15:25:27 +02004297#ifdef CONFIG_B43_PHY_LCN
4298 case B43_PHYTYPE_LCN:
4299 if (phy_rev > 1)
4300 unsupported = 1;
4301 break;
4302#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04004303 default:
4304 unsupported = 1;
Joe Perches6403eab2011-06-03 11:51:20 +00004305 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004306 if (unsupported) {
4307 b43err(dev->wl, "FOUND UNSUPPORTED PHY "
4308 "(Analog %u, Type %u, Revision %u)\n",
4309 analog_type, phy_type, phy_rev);
4310 return -EOPNOTSUPP;
4311 }
4312 b43dbg(dev->wl, "Found PHY: Analog %u, Type %u, Revision %u\n",
4313 analog_type, phy_type, phy_rev);
4314
4315 /* Get RADIO versioning */
Rafał Miłecki3fd48502011-07-06 20:27:24 +02004316 if (dev->dev->core_rev >= 24) {
Rafał Miłecki544e5d82011-07-06 20:27:25 +02004317 u16 radio24[3];
4318
4319 for (tmp = 0; tmp < 3; tmp++) {
4320 b43_write16(dev, B43_MMIO_RADIO24_CONTROL, tmp);
4321 radio24[tmp] = b43_read16(dev, B43_MMIO_RADIO24_DATA);
4322 }
4323
4324 /* Broadcom uses "id" for our "ver" and has separated "ver" */
4325 /* radio_ver = (radio24[0] & 0xF0) >> 4; */
4326
4327 radio_manuf = 0x17F;
4328 radio_ver = (radio24[2] << 8) | radio24[1];
4329 radio_rev = (radio24[0] & 0xF);
Michael Buesche4d6b792007-09-18 15:39:42 -04004330 } else {
Rafał Miłecki3fd48502011-07-06 20:27:24 +02004331 if (dev->dev->chip_id == 0x4317) {
4332 if (dev->dev->chip_rev == 0)
4333 tmp = 0x3205017F;
4334 else if (dev->dev->chip_rev == 1)
4335 tmp = 0x4205017F;
4336 else
4337 tmp = 0x5205017F;
4338 } else {
4339 b43_write16(dev, B43_MMIO_RADIO_CONTROL,
4340 B43_RADIOCTL_ID);
4341 tmp = b43_read16(dev, B43_MMIO_RADIO_DATA_LOW);
4342 b43_write16(dev, B43_MMIO_RADIO_CONTROL,
4343 B43_RADIOCTL_ID);
4344 tmp |= (u32)b43_read16(dev, B43_MMIO_RADIO_DATA_HIGH)
4345 << 16;
4346 }
4347 radio_manuf = (tmp & 0x00000FFF);
4348 radio_ver = (tmp & 0x0FFFF000) >> 12;
4349 radio_rev = (tmp & 0xF0000000) >> 28;
Michael Buesche4d6b792007-09-18 15:39:42 -04004350 }
Rafał Miłecki3fd48502011-07-06 20:27:24 +02004351
Michael Buesch96c755a2008-01-06 00:09:46 +01004352 if (radio_manuf != 0x17F /* Broadcom */)
4353 unsupported = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04004354 switch (phy_type) {
4355 case B43_PHYTYPE_A:
4356 if (radio_ver != 0x2060)
4357 unsupported = 1;
4358 if (radio_rev != 1)
4359 unsupported = 1;
4360 if (radio_manuf != 0x17F)
4361 unsupported = 1;
4362 break;
4363 case B43_PHYTYPE_B:
4364 if ((radio_ver & 0xFFF0) != 0x2050)
4365 unsupported = 1;
4366 break;
4367 case B43_PHYTYPE_G:
4368 if (radio_ver != 0x2050)
4369 unsupported = 1;
4370 break;
Michael Buesch96c755a2008-01-06 00:09:46 +01004371 case B43_PHYTYPE_N:
Johannes Bergbb519be2008-12-24 15:26:40 +01004372 if (radio_ver != 0x2055 && radio_ver != 0x2056)
Michael Buesch96c755a2008-01-06 00:09:46 +01004373 unsupported = 1;
4374 break;
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004375 case B43_PHYTYPE_LP:
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02004376 if (radio_ver != 0x2062 && radio_ver != 0x2063)
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004377 unsupported = 1;
4378 break;
Rafał Miłeckid7520b12011-06-13 16:20:06 +02004379 case B43_PHYTYPE_HT:
4380 if (radio_ver != 0x2059)
4381 unsupported = 1;
4382 break;
Rafał Miłecki1d738e62011-07-07 15:25:27 +02004383 case B43_PHYTYPE_LCN:
4384 if (radio_ver != 0x2064)
4385 unsupported = 1;
4386 break;
Michael Buesche4d6b792007-09-18 15:39:42 -04004387 default:
4388 B43_WARN_ON(1);
4389 }
4390 if (unsupported) {
4391 b43err(dev->wl, "FOUND UNSUPPORTED RADIO "
4392 "(Manuf 0x%X, Version 0x%X, Revision %u)\n",
4393 radio_manuf, radio_ver, radio_rev);
4394 return -EOPNOTSUPP;
4395 }
4396 b43dbg(dev->wl, "Found Radio: Manuf 0x%X, Version 0x%X, Revision %u\n",
4397 radio_manuf, radio_ver, radio_rev);
4398
4399 phy->radio_manuf = radio_manuf;
4400 phy->radio_ver = radio_ver;
4401 phy->radio_rev = radio_rev;
4402
4403 phy->analog = analog_type;
4404 phy->type = phy_type;
4405 phy->rev = phy_rev;
4406
4407 return 0;
4408}
4409
4410static void setup_struct_phy_for_init(struct b43_wldev *dev,
4411 struct b43_phy *phy)
4412{
Michael Buesche4d6b792007-09-18 15:39:42 -04004413 phy->hardware_power_control = !!modparam_hwpctl;
Michael Buesch18c8ade2008-08-28 19:33:40 +02004414 phy->next_txpwr_check_time = jiffies;
Michael Buesch8ed7fc42007-12-09 22:34:59 +01004415 /* PHY TX errors counter. */
4416 atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT);
Michael Buesch591f3dc2009-03-31 12:27:32 +02004417
4418#if B43_DEBUG
4419 phy->phy_locked = 0;
4420 phy->radio_locked = 0;
4421#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04004422}
4423
4424static void setup_struct_wldev_for_init(struct b43_wldev *dev)
4425{
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01004426 dev->dfq_valid = 0;
4427
Michael Buesch6a724d62007-09-20 22:12:58 +02004428 /* Assume the radio is enabled. If it's not enabled, the state will
4429 * immediately get fixed on the first periodic work run. */
4430 dev->radio_hw_enable = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04004431
4432 /* Stats */
4433 memset(&dev->stats, 0, sizeof(dev->stats));
4434
4435 setup_struct_phy_for_init(dev, &dev->phy);
4436
4437 /* IRQ related flags */
4438 dev->irq_reason = 0;
4439 memset(dev->dma_reason, 0, sizeof(dev->dma_reason));
Michael Buesch13790722009-04-08 21:26:27 +02004440 dev->irq_mask = B43_IRQ_MASKTEMPLATE;
Michael Buesch3e3ccb32009-03-19 19:27:21 +01004441 if (b43_modparam_verbose < B43_VERBOSITY_DEBUG)
Michael Buesch13790722009-04-08 21:26:27 +02004442 dev->irq_mask &= ~B43_IRQ_PHY_TXERR;
Michael Buesche4d6b792007-09-18 15:39:42 -04004443
4444 dev->mac_suspended = 1;
4445
4446 /* Noise calculation context */
4447 memset(&dev->noisecalc, 0, sizeof(dev->noisecalc));
4448}
4449
4450static void b43_bluetooth_coext_enable(struct b43_wldev *dev)
4451{
Rafał Miłecki05814832011-05-18 02:06:39 +02004452 struct ssb_sprom *sprom = dev->dev->bus_sprom;
Michael Buescha259d6a2008-04-18 21:06:37 +02004453 u64 hf;
Michael Buesche4d6b792007-09-18 15:39:42 -04004454
Michael Buesch1855ba72008-04-18 20:51:41 +02004455 if (!modparam_btcoex)
4456 return;
Larry Finger95de2842007-11-09 16:57:18 -06004457 if (!(sprom->boardflags_lo & B43_BFL_BTCOEXIST))
Michael Buesche4d6b792007-09-18 15:39:42 -04004458 return;
4459 if (dev->phy.type != B43_PHYTYPE_B && !dev->phy.gmode)
4460 return;
4461
4462 hf = b43_hf_read(dev);
Larry Finger95de2842007-11-09 16:57:18 -06004463 if (sprom->boardflags_lo & B43_BFL_BTCMOD)
Michael Buesche4d6b792007-09-18 15:39:42 -04004464 hf |= B43_HF_BTCOEXALT;
4465 else
4466 hf |= B43_HF_BTCOEX;
4467 b43_hf_write(dev, hf);
Michael Buesche4d6b792007-09-18 15:39:42 -04004468}
4469
4470static void b43_bluetooth_coext_disable(struct b43_wldev *dev)
Michael Buesch1855ba72008-04-18 20:51:41 +02004471{
4472 if (!modparam_btcoex)
4473 return;
4474 //TODO
Michael Buesche4d6b792007-09-18 15:39:42 -04004475}
4476
4477static void b43_imcfglo_timeouts_workaround(struct b43_wldev *dev)
4478{
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004479 struct ssb_bus *bus;
Michael Buesche4d6b792007-09-18 15:39:42 -04004480 u32 tmp;
4481
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004482 if (dev->dev->bus_type != B43_BUS_SSB)
4483 return;
4484
4485 bus = dev->dev->sdev->bus;
4486
Rafał Miłecki0fd82ea2011-05-11 02:10:59 +02004487 if ((bus->chip_id == 0x4311 && bus->chip_rev == 2) ||
4488 (bus->chip_id == 0x4312)) {
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004489 tmp = ssb_read32(dev->dev->sdev, SSB_IMCFGLO);
Rafał Miłecki0fd82ea2011-05-11 02:10:59 +02004490 tmp &= ~SSB_IMCFGLO_REQTO;
4491 tmp &= ~SSB_IMCFGLO_SERTO;
4492 tmp |= 0x3;
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004493 ssb_write32(dev->dev->sdev, SSB_IMCFGLO, tmp);
Rafał Miłecki0fd82ea2011-05-11 02:10:59 +02004494 ssb_commit_settings(bus);
Michael Buesche4d6b792007-09-18 15:39:42 -04004495 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004496}
4497
Michael Bueschd59f7202008-04-03 18:56:19 +02004498static void b43_set_synth_pu_delay(struct b43_wldev *dev, bool idle)
4499{
4500 u16 pu_delay;
4501
4502 /* The time value is in microseconds. */
4503 if (dev->phy.type == B43_PHYTYPE_A)
4504 pu_delay = 3700;
4505 else
4506 pu_delay = 1050;
Johannes Berg05c914f2008-09-11 00:01:58 +02004507 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC) || idle)
Michael Bueschd59f7202008-04-03 18:56:19 +02004508 pu_delay = 500;
4509 if ((dev->phy.radio_ver == 0x2050) && (dev->phy.radio_rev == 8))
4510 pu_delay = max(pu_delay, (u16)2400);
4511
4512 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_SPUWKUP, pu_delay);
4513}
4514
4515/* Set the TSF CFP pre-TargetBeaconTransmissionTime. */
4516static void b43_set_pretbtt(struct b43_wldev *dev)
4517{
4518 u16 pretbtt;
4519
4520 /* The time value is in microseconds. */
Johannes Berg05c914f2008-09-11 00:01:58 +02004521 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC)) {
Michael Bueschd59f7202008-04-03 18:56:19 +02004522 pretbtt = 2;
4523 } else {
4524 if (dev->phy.type == B43_PHYTYPE_A)
4525 pretbtt = 120;
4526 else
4527 pretbtt = 250;
4528 }
4529 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRETBTT, pretbtt);
4530 b43_write16(dev, B43_MMIO_TSF_CFP_PRETBTT, pretbtt);
4531}
4532
Michael Buesche4d6b792007-09-18 15:39:42 -04004533/* Shutdown a wireless core */
4534/* Locking: wl->mutex */
4535static void b43_wireless_core_exit(struct b43_wldev *dev)
4536{
Michael Buesch1f7d87b2008-01-22 20:23:34 +01004537 u32 macctl;
Michael Buesche4d6b792007-09-18 15:39:42 -04004538
Michael Buesch36dbd952009-09-04 22:51:29 +02004539 B43_WARN_ON(dev && b43_status(dev) > B43_STAT_INITIALIZED);
4540 if (!dev || b43_status(dev) != B43_STAT_INITIALIZED)
Michael Buesche4d6b792007-09-18 15:39:42 -04004541 return;
John W. Linville84c164a2010-08-06 15:31:45 -04004542
4543 /* Unregister HW RNG driver */
4544 b43_rng_exit(dev->wl);
4545
Michael Buesche4d6b792007-09-18 15:39:42 -04004546 b43_set_status(dev, B43_STAT_UNINIT);
4547
Michael Buesch1f7d87b2008-01-22 20:23:34 +01004548 /* Stop the microcode PSM. */
4549 macctl = b43_read32(dev, B43_MMIO_MACCTL);
4550 macctl &= ~B43_MACCTL_PSM_RUN;
4551 macctl |= B43_MACCTL_PSM_JMP0;
4552 b43_write32(dev, B43_MMIO_MACCTL, macctl);
4553
Michael Buesche4d6b792007-09-18 15:39:42 -04004554 b43_dma_free(dev);
Michael Buesch5100d5a2008-03-29 21:01:16 +01004555 b43_pio_free(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004556 b43_chip_exit(dev);
Michael Bueschcb24f572008-09-03 12:12:20 +02004557 dev->phy.ops->switch_analog(dev, 0);
Michael Buesche66fee62007-12-26 17:47:10 +01004558 if (dev->wl->current_beacon) {
4559 dev_kfree_skb_any(dev->wl->current_beacon);
4560 dev->wl->current_beacon = NULL;
4561 }
4562
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004563 b43_device_disable(dev, 0);
4564 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004565}
4566
4567/* Initialize a wireless core */
4568static int b43_wireless_core_init(struct b43_wldev *dev)
4569{
Rafał Miłecki05814832011-05-18 02:06:39 +02004570 struct ssb_sprom *sprom = dev->dev->bus_sprom;
Michael Buesche4d6b792007-09-18 15:39:42 -04004571 struct b43_phy *phy = &dev->phy;
4572 int err;
Michael Buescha259d6a2008-04-18 21:06:37 +02004573 u64 hf;
Michael Buesche4d6b792007-09-18 15:39:42 -04004574
4575 B43_WARN_ON(b43_status(dev) != B43_STAT_UNINIT);
4576
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004577 err = b43_bus_powerup(dev, 0);
Michael Buesche4d6b792007-09-18 15:39:42 -04004578 if (err)
4579 goto out;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02004580 if (!b43_device_is_enabled(dev))
4581 b43_wireless_core_reset(dev, phy->gmode);
Michael Buesche4d6b792007-09-18 15:39:42 -04004582
Michael Bueschfb111372008-09-02 13:00:34 +02004583 /* Reset all data structures. */
Michael Buesche4d6b792007-09-18 15:39:42 -04004584 setup_struct_wldev_for_init(dev);
Michael Bueschfb111372008-09-02 13:00:34 +02004585 phy->ops->prepare_structs(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004586
4587 /* Enable IRQ routing to this device. */
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004588 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02004589#ifdef CONFIG_B43_BCMA
4590 case B43_BUS_BCMA:
4591 bcma_core_pci_irq_ctl(&dev->dev->bdev->bus->drv_pci,
4592 dev->dev->bdev, true);
4593 break;
4594#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004595#ifdef CONFIG_B43_SSB
4596 case B43_BUS_SSB:
4597 ssb_pcicore_dev_irqvecs_enable(&dev->dev->sdev->bus->pcicore,
4598 dev->dev->sdev);
4599 break;
4600#endif
4601 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004602
4603 b43_imcfglo_timeouts_workaround(dev);
4604 b43_bluetooth_coext_disable(dev);
Michael Bueschfb111372008-09-02 13:00:34 +02004605 if (phy->ops->prepare_hardware) {
4606 err = phy->ops->prepare_hardware(dev);
Michael Bueschef1a6282008-08-27 18:53:02 +02004607 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02004608 goto err_busdown;
Michael Bueschef1a6282008-08-27 18:53:02 +02004609 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004610 err = b43_chip_init(dev);
4611 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02004612 goto err_busdown;
Michael Buesche4d6b792007-09-18 15:39:42 -04004613 b43_shm_write16(dev, B43_SHM_SHARED,
Rafał Miłecki21d889d2011-05-18 02:06:38 +02004614 B43_SHM_SH_WLCOREREV, dev->dev->core_rev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004615 hf = b43_hf_read(dev);
4616 if (phy->type == B43_PHYTYPE_G) {
4617 hf |= B43_HF_SYMW;
4618 if (phy->rev == 1)
4619 hf |= B43_HF_GDCW;
Larry Finger95de2842007-11-09 16:57:18 -06004620 if (sprom->boardflags_lo & B43_BFL_PACTRL)
Michael Buesche4d6b792007-09-18 15:39:42 -04004621 hf |= B43_HF_OFDMPABOOST;
Michael Buesch969d15c2009-02-20 14:27:15 +01004622 }
4623 if (phy->radio_ver == 0x2050) {
4624 if (phy->radio_rev == 6)
4625 hf |= B43_HF_4318TSSI;
4626 if (phy->radio_rev < 6)
4627 hf |= B43_HF_VCORECALC;
Michael Buesche4d6b792007-09-18 15:39:42 -04004628 }
Michael Buesch1cc8f472009-02-20 14:47:56 +01004629 if (sprom->boardflags_lo & B43_BFL_XTAL_NOSLOW)
4630 hf |= B43_HF_DSCRQ; /* Disable slowclock requests from ucode. */
Michael Buesch1a777332009-03-04 16:41:10 +01004631#ifdef CONFIG_SSB_DRIVER_PCICORE
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004632 if (dev->dev->bus_type == B43_BUS_SSB &&
4633 dev->dev->sdev->bus->bustype == SSB_BUSTYPE_PCI &&
4634 dev->dev->sdev->bus->pcicore.dev->id.revision <= 10)
Michael Buesch88219052009-02-20 14:58:59 +01004635 hf |= B43_HF_PCISCW; /* PCI slow clock workaround. */
Michael Buesch1a777332009-03-04 16:41:10 +01004636#endif
Michael Buesch25d3ef52009-02-20 15:39:21 +01004637 hf &= ~B43_HF_SKCFPUP;
Michael Buesche4d6b792007-09-18 15:39:42 -04004638 b43_hf_write(dev, hf);
4639
Michael Buesch74cfdba2007-10-28 16:19:44 +01004640 b43_set_retry_limits(dev, B43_DEFAULT_SHORT_RETRY_LIMIT,
4641 B43_DEFAULT_LONG_RETRY_LIMIT);
Michael Buesche4d6b792007-09-18 15:39:42 -04004642 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_SFFBLIM, 3);
4643 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_LFFBLIM, 2);
4644
4645 /* Disable sending probe responses from firmware.
4646 * Setting the MaxTime to one usec will always trigger
4647 * a timeout, so we never send any probe resp.
4648 * A timeout of zero is infinite. */
4649 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRMAXTIME, 1);
4650
4651 b43_rate_memory_init(dev);
Michael Buesch5042c502008-04-05 15:05:00 +02004652 b43_set_phytxctl_defaults(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004653
4654 /* Minimum Contention Window */
Daniel Nguc5a079f2010-03-23 00:52:44 +13004655 if (phy->type == B43_PHYTYPE_B)
Michael Buesche4d6b792007-09-18 15:39:42 -04004656 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MINCONT, 0x1F);
Daniel Nguc5a079f2010-03-23 00:52:44 +13004657 else
Michael Buesche4d6b792007-09-18 15:39:42 -04004658 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MINCONT, 0xF);
Michael Buesche4d6b792007-09-18 15:39:42 -04004659 /* Maximum Contention Window */
4660 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MAXCONT, 0x3FF);
4661
Rafał Miłecki505fb012011-05-19 15:11:27 +02004662 if (b43_bus_host_is_pcmcia(dev->dev) ||
Rafał Miłeckicbe1e822011-08-16 21:44:21 +02004663 b43_bus_host_is_sdio(dev->dev)) {
4664 dev->__using_pio_transfers = 1;
4665 err = b43_pio_init(dev);
4666 } else if (dev->use_pio) {
4667 b43warn(dev->wl, "Forced PIO by use_pio module parameter. "
4668 "This should not be needed and will result in lower "
4669 "performance.\n");
Michael Buesch5100d5a2008-03-29 21:01:16 +01004670 dev->__using_pio_transfers = 1;
4671 err = b43_pio_init(dev);
4672 } else {
4673 dev->__using_pio_transfers = 0;
4674 err = b43_dma_init(dev);
4675 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004676 if (err)
4677 goto err_chip_exit;
Michael Buesch03b29772007-12-26 14:41:30 +01004678 b43_qos_init(dev);
Michael Bueschd59f7202008-04-03 18:56:19 +02004679 b43_set_synth_pu_delay(dev, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04004680 b43_bluetooth_coext_enable(dev);
4681
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004682 b43_bus_powerup(dev, !(sprom->boardflags_lo & B43_BFL_XTAL_NOSLOW));
Johannes Berg4150c572007-09-17 01:29:23 -04004683 b43_upload_card_macaddress(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004684 b43_security_init(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004685
Michael Buesch5ab95492009-09-10 20:31:46 +02004686 ieee80211_wake_queues(dev->wl->hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04004687
4688 b43_set_status(dev, B43_STAT_INITIALIZED);
4689
John W. Linville84c164a2010-08-06 15:31:45 -04004690 /* Register HW RNG driver */
4691 b43_rng_init(dev->wl);
4692
Larry Finger1a8d1222007-12-14 13:59:11 +01004693out:
Michael Buesche4d6b792007-09-18 15:39:42 -04004694 return err;
4695
Michael Bueschef1a6282008-08-27 18:53:02 +02004696err_chip_exit:
Michael Buesche4d6b792007-09-18 15:39:42 -04004697 b43_chip_exit(dev);
Michael Bueschef1a6282008-08-27 18:53:02 +02004698err_busdown:
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004699 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004700 B43_WARN_ON(b43_status(dev) != B43_STAT_UNINIT);
4701 return err;
4702}
4703
Michael Buesch40faacc2007-10-28 16:29:32 +01004704static int b43_op_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004705 struct ieee80211_vif *vif)
Michael Buesche4d6b792007-09-18 15:39:42 -04004706{
4707 struct b43_wl *wl = hw_to_b43_wl(hw);
4708 struct b43_wldev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004709 int err = -EOPNOTSUPP;
Johannes Berg4150c572007-09-17 01:29:23 -04004710
4711 /* TODO: allow WDS/AP devices to coexist */
4712
Johannes Berg1ed32e42009-12-23 13:15:45 +01004713 if (vif->type != NL80211_IFTYPE_AP &&
4714 vif->type != NL80211_IFTYPE_MESH_POINT &&
4715 vif->type != NL80211_IFTYPE_STATION &&
4716 vif->type != NL80211_IFTYPE_WDS &&
4717 vif->type != NL80211_IFTYPE_ADHOC)
Johannes Berg4150c572007-09-17 01:29:23 -04004718 return -EOPNOTSUPP;
Michael Buesche4d6b792007-09-18 15:39:42 -04004719
4720 mutex_lock(&wl->mutex);
Johannes Berg4150c572007-09-17 01:29:23 -04004721 if (wl->operating)
Michael Buesche4d6b792007-09-18 15:39:42 -04004722 goto out_mutex_unlock;
4723
Johannes Berg1ed32e42009-12-23 13:15:45 +01004724 b43dbg(wl, "Adding Interface type %d\n", vif->type);
Michael Buesche4d6b792007-09-18 15:39:42 -04004725
4726 dev = wl->current_dev;
Johannes Berg4150c572007-09-17 01:29:23 -04004727 wl->operating = 1;
Johannes Berg1ed32e42009-12-23 13:15:45 +01004728 wl->vif = vif;
4729 wl->if_type = vif->type;
4730 memcpy(wl->mac_addr, vif->addr, ETH_ALEN);
Michael Buesche4d6b792007-09-18 15:39:42 -04004731
Michael Buesche4d6b792007-09-18 15:39:42 -04004732 b43_adjust_opmode(dev);
Michael Bueschd59f7202008-04-03 18:56:19 +02004733 b43_set_pretbtt(dev);
4734 b43_set_synth_pu_delay(dev, 0);
Johannes Berg4150c572007-09-17 01:29:23 -04004735 b43_upload_card_macaddress(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004736
4737 err = 0;
Johannes Berg4150c572007-09-17 01:29:23 -04004738 out_mutex_unlock:
Michael Buesche4d6b792007-09-18 15:39:42 -04004739 mutex_unlock(&wl->mutex);
4740
Felix Fietkau2a190322011-08-10 13:50:30 -06004741 if (err == 0)
4742 b43_op_bss_info_changed(hw, vif, &vif->bss_conf, ~0);
4743
Michael Buesche4d6b792007-09-18 15:39:42 -04004744 return err;
4745}
4746
Michael Buesch40faacc2007-10-28 16:29:32 +01004747static void b43_op_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004748 struct ieee80211_vif *vif)
Michael Buesche4d6b792007-09-18 15:39:42 -04004749{
4750 struct b43_wl *wl = hw_to_b43_wl(hw);
Johannes Berg4150c572007-09-17 01:29:23 -04004751 struct b43_wldev *dev = wl->current_dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004752
Johannes Berg1ed32e42009-12-23 13:15:45 +01004753 b43dbg(wl, "Removing Interface type %d\n", vif->type);
Michael Buesche4d6b792007-09-18 15:39:42 -04004754
4755 mutex_lock(&wl->mutex);
Johannes Berg4150c572007-09-17 01:29:23 -04004756
4757 B43_WARN_ON(!wl->operating);
Johannes Berg1ed32e42009-12-23 13:15:45 +01004758 B43_WARN_ON(wl->vif != vif);
Johannes Berg32bfd352007-12-19 01:31:26 +01004759 wl->vif = NULL;
Johannes Berg4150c572007-09-17 01:29:23 -04004760
4761 wl->operating = 0;
4762
Johannes Berg4150c572007-09-17 01:29:23 -04004763 b43_adjust_opmode(dev);
4764 memset(wl->mac_addr, 0, ETH_ALEN);
4765 b43_upload_card_macaddress(dev);
Johannes Berg4150c572007-09-17 01:29:23 -04004766
4767 mutex_unlock(&wl->mutex);
4768}
4769
Michael Buesch40faacc2007-10-28 16:29:32 +01004770static int b43_op_start(struct ieee80211_hw *hw)
Johannes Berg4150c572007-09-17 01:29:23 -04004771{
4772 struct b43_wl *wl = hw_to_b43_wl(hw);
4773 struct b43_wldev *dev = wl->current_dev;
4774 int did_init = 0;
WANG Cong923403b2007-10-16 14:29:38 -07004775 int err = 0;
Johannes Berg4150c572007-09-17 01:29:23 -04004776
Michael Buesch7be1bb62008-01-23 21:10:56 +01004777 /* Kill all old instance specific information to make sure
4778 * the card won't use it in the short timeframe between start
4779 * and mac80211 reconfiguring it. */
4780 memset(wl->bssid, 0, ETH_ALEN);
4781 memset(wl->mac_addr, 0, ETH_ALEN);
4782 wl->filter_flags = 0;
4783 wl->radiotap_enabled = 0;
Michael Buesche6f5b932008-03-05 21:18:49 +01004784 b43_qos_clear(wl);
Michael Buesch6b4bec02008-05-20 12:16:28 +02004785 wl->beacon0_uploaded = 0;
4786 wl->beacon1_uploaded = 0;
4787 wl->beacon_templates_virgin = 1;
Larry Fingerfd4973c2009-06-20 12:58:11 -05004788 wl->radio_enabled = 1;
Michael Buesch7be1bb62008-01-23 21:10:56 +01004789
Johannes Berg4150c572007-09-17 01:29:23 -04004790 mutex_lock(&wl->mutex);
4791
4792 if (b43_status(dev) < B43_STAT_INITIALIZED) {
4793 err = b43_wireless_core_init(dev);
Johannes Bergf41f3f32009-06-07 12:30:34 -05004794 if (err)
Johannes Berg4150c572007-09-17 01:29:23 -04004795 goto out_mutex_unlock;
4796 did_init = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04004797 }
4798
Johannes Berg4150c572007-09-17 01:29:23 -04004799 if (b43_status(dev) < B43_STAT_STARTED) {
4800 err = b43_wireless_core_start(dev);
4801 if (err) {
4802 if (did_init)
4803 b43_wireless_core_exit(dev);
4804 goto out_mutex_unlock;
4805 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004806 }
Johannes Berg4150c572007-09-17 01:29:23 -04004807
Johannes Bergf41f3f32009-06-07 12:30:34 -05004808 /* XXX: only do if device doesn't support rfkill irq */
4809 wiphy_rfkill_start_polling(hw->wiphy);
4810
Johannes Berg4150c572007-09-17 01:29:23 -04004811 out_mutex_unlock:
4812 mutex_unlock(&wl->mutex);
4813
Felix Fietkau2a190322011-08-10 13:50:30 -06004814 /* reload configuration */
4815 b43_op_config(hw, ~0);
4816
Johannes Berg4150c572007-09-17 01:29:23 -04004817 return err;
4818}
4819
Michael Buesch40faacc2007-10-28 16:29:32 +01004820static void b43_op_stop(struct ieee80211_hw *hw)
Johannes Berg4150c572007-09-17 01:29:23 -04004821{
4822 struct b43_wl *wl = hw_to_b43_wl(hw);
4823 struct b43_wldev *dev = wl->current_dev;
4824
Michael Buescha82d9922008-04-04 21:40:06 +02004825 cancel_work_sync(&(wl->beacon_update_trigger));
Larry Finger1a8d1222007-12-14 13:59:11 +01004826
Johannes Berg4150c572007-09-17 01:29:23 -04004827 mutex_lock(&wl->mutex);
Michael Buesch36dbd952009-09-04 22:51:29 +02004828 if (b43_status(dev) >= B43_STAT_STARTED) {
4829 dev = b43_wireless_core_stop(dev);
4830 if (!dev)
4831 goto out_unlock;
4832 }
Johannes Berg4150c572007-09-17 01:29:23 -04004833 b43_wireless_core_exit(dev);
Larry Fingerfd4973c2009-06-20 12:58:11 -05004834 wl->radio_enabled = 0;
Michael Buesch36dbd952009-09-04 22:51:29 +02004835
4836out_unlock:
Michael Buesche4d6b792007-09-18 15:39:42 -04004837 mutex_unlock(&wl->mutex);
Michael Buesch18c8ade2008-08-28 19:33:40 +02004838
4839 cancel_work_sync(&(wl->txpower_adjust_work));
Michael Buesche4d6b792007-09-18 15:39:42 -04004840}
4841
Johannes Berg17741cd2008-09-11 00:02:02 +02004842static int b43_op_beacon_set_tim(struct ieee80211_hw *hw,
4843 struct ieee80211_sta *sta, bool set)
Michael Buesche66fee62007-12-26 17:47:10 +01004844{
4845 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesche66fee62007-12-26 17:47:10 +01004846
Felix Fietkau8f611282009-11-07 18:37:37 +01004847 /* FIXME: add locking */
Johannes Berg9d139c82008-07-09 14:40:37 +02004848 b43_update_templates(wl);
Michael Buesche66fee62007-12-26 17:47:10 +01004849
4850 return 0;
4851}
4852
Johannes Berg38968d02008-02-25 16:27:50 +01004853static void b43_op_sta_notify(struct ieee80211_hw *hw,
4854 struct ieee80211_vif *vif,
4855 enum sta_notify_cmd notify_cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02004856 struct ieee80211_sta *sta)
Johannes Berg38968d02008-02-25 16:27:50 +01004857{
4858 struct b43_wl *wl = hw_to_b43_wl(hw);
4859
4860 B43_WARN_ON(!vif || wl->vif != vif);
4861}
4862
Michael Buesch25d3ef52009-02-20 15:39:21 +01004863static void b43_op_sw_scan_start_notifier(struct ieee80211_hw *hw)
4864{
4865 struct b43_wl *wl = hw_to_b43_wl(hw);
4866 struct b43_wldev *dev;
4867
4868 mutex_lock(&wl->mutex);
4869 dev = wl->current_dev;
4870 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED)) {
4871 /* Disable CFP update during scan on other channels. */
4872 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_SKCFPUP);
4873 }
4874 mutex_unlock(&wl->mutex);
4875}
4876
4877static void b43_op_sw_scan_complete_notifier(struct ieee80211_hw *hw)
4878{
4879 struct b43_wl *wl = hw_to_b43_wl(hw);
4880 struct b43_wldev *dev;
4881
4882 mutex_lock(&wl->mutex);
4883 dev = wl->current_dev;
4884 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED)) {
4885 /* Re-enable CFP update. */
4886 b43_hf_write(dev, b43_hf_read(dev) & ~B43_HF_SKCFPUP);
4887 }
4888 mutex_unlock(&wl->mutex);
4889}
4890
John W. Linville354b4f02010-04-29 15:56:06 -04004891static int b43_op_get_survey(struct ieee80211_hw *hw, int idx,
4892 struct survey_info *survey)
4893{
4894 struct b43_wl *wl = hw_to_b43_wl(hw);
4895 struct b43_wldev *dev = wl->current_dev;
4896 struct ieee80211_conf *conf = &hw->conf;
4897
4898 if (idx != 0)
4899 return -ENOENT;
4900
4901 survey->channel = conf->channel;
4902 survey->filled = SURVEY_INFO_NOISE_DBM;
4903 survey->noise = dev->stats.link_noise;
4904
4905 return 0;
4906}
4907
Michael Buesche4d6b792007-09-18 15:39:42 -04004908static const struct ieee80211_ops b43_hw_ops = {
Michael Buesch40faacc2007-10-28 16:29:32 +01004909 .tx = b43_op_tx,
4910 .conf_tx = b43_op_conf_tx,
4911 .add_interface = b43_op_add_interface,
4912 .remove_interface = b43_op_remove_interface,
4913 .config = b43_op_config,
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01004914 .bss_info_changed = b43_op_bss_info_changed,
Michael Buesch40faacc2007-10-28 16:29:32 +01004915 .configure_filter = b43_op_configure_filter,
4916 .set_key = b43_op_set_key,
gregor kowski035d0242009-08-19 22:35:45 +02004917 .update_tkip_key = b43_op_update_tkip_key,
Michael Buesch40faacc2007-10-28 16:29:32 +01004918 .get_stats = b43_op_get_stats,
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01004919 .get_tsf = b43_op_get_tsf,
4920 .set_tsf = b43_op_set_tsf,
Michael Buesch40faacc2007-10-28 16:29:32 +01004921 .start = b43_op_start,
4922 .stop = b43_op_stop,
Michael Buesche66fee62007-12-26 17:47:10 +01004923 .set_tim = b43_op_beacon_set_tim,
Johannes Berg38968d02008-02-25 16:27:50 +01004924 .sta_notify = b43_op_sta_notify,
Michael Buesch25d3ef52009-02-20 15:39:21 +01004925 .sw_scan_start = b43_op_sw_scan_start_notifier,
4926 .sw_scan_complete = b43_op_sw_scan_complete_notifier,
John W. Linville354b4f02010-04-29 15:56:06 -04004927 .get_survey = b43_op_get_survey,
Johannes Bergf41f3f32009-06-07 12:30:34 -05004928 .rfkill_poll = b43_rfkill_poll,
Michael Buesche4d6b792007-09-18 15:39:42 -04004929};
4930
4931/* Hard-reset the chip. Do not call this directly.
4932 * Use b43_controller_restart()
4933 */
4934static void b43_chip_reset(struct work_struct *work)
4935{
4936 struct b43_wldev *dev =
4937 container_of(work, struct b43_wldev, restart_work);
4938 struct b43_wl *wl = dev->wl;
4939 int err = 0;
4940 int prev_status;
4941
4942 mutex_lock(&wl->mutex);
4943
4944 prev_status = b43_status(dev);
4945 /* Bring the device down... */
Michael Buesch36dbd952009-09-04 22:51:29 +02004946 if (prev_status >= B43_STAT_STARTED) {
4947 dev = b43_wireless_core_stop(dev);
4948 if (!dev) {
4949 err = -ENODEV;
4950 goto out;
4951 }
4952 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004953 if (prev_status >= B43_STAT_INITIALIZED)
4954 b43_wireless_core_exit(dev);
4955
4956 /* ...and up again. */
4957 if (prev_status >= B43_STAT_INITIALIZED) {
4958 err = b43_wireless_core_init(dev);
4959 if (err)
4960 goto out;
4961 }
4962 if (prev_status >= B43_STAT_STARTED) {
4963 err = b43_wireless_core_start(dev);
4964 if (err) {
4965 b43_wireless_core_exit(dev);
4966 goto out;
4967 }
4968 }
Michael Buesch3bf0a322008-05-22 16:32:16 +02004969out:
4970 if (err)
4971 wl->current_dev = NULL; /* Failed to init the dev. */
Michael Buesche4d6b792007-09-18 15:39:42 -04004972 mutex_unlock(&wl->mutex);
Felix Fietkau2a190322011-08-10 13:50:30 -06004973
4974 if (err) {
Michael Buesche4d6b792007-09-18 15:39:42 -04004975 b43err(wl, "Controller restart FAILED\n");
Felix Fietkau2a190322011-08-10 13:50:30 -06004976 return;
4977 }
4978
4979 /* reload configuration */
4980 b43_op_config(wl->hw, ~0);
4981 if (wl->vif)
4982 b43_op_bss_info_changed(wl->hw, wl->vif, &wl->vif->bss_conf, ~0);
4983
4984 b43info(wl, "Controller restarted\n");
Michael Buesche4d6b792007-09-18 15:39:42 -04004985}
4986
Michael Bueschbb1eeff2008-02-09 12:08:58 +01004987static int b43_setup_bands(struct b43_wldev *dev,
Michael Buesch96c755a2008-01-06 00:09:46 +01004988 bool have_2ghz_phy, bool have_5ghz_phy)
Michael Buesche4d6b792007-09-18 15:39:42 -04004989{
4990 struct ieee80211_hw *hw = dev->wl->hw;
Michael Buesche4d6b792007-09-18 15:39:42 -04004991
Michael Bueschbb1eeff2008-02-09 12:08:58 +01004992 if (have_2ghz_phy)
4993 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &b43_band_2GHz;
4994 if (dev->phy.type == B43_PHYTYPE_N) {
4995 if (have_5ghz_phy)
4996 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &b43_band_5GHz_nphy;
4997 } else {
4998 if (have_5ghz_phy)
4999 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &b43_band_5GHz_aphy;
5000 }
Michael Buesche4d6b792007-09-18 15:39:42 -04005001
Michael Bueschbb1eeff2008-02-09 12:08:58 +01005002 dev->phy.supports_2ghz = have_2ghz_phy;
5003 dev->phy.supports_5ghz = have_5ghz_phy;
Michael Buesche4d6b792007-09-18 15:39:42 -04005004
5005 return 0;
5006}
5007
5008static void b43_wireless_core_detach(struct b43_wldev *dev)
5009{
5010 /* We release firmware that late to not be required to re-request
5011 * is all the time when we reinit the core. */
5012 b43_release_firmware(dev);
Michael Bueschfb111372008-09-02 13:00:34 +02005013 b43_phy_free(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005014}
5015
5016static int b43_wireless_core_attach(struct b43_wldev *dev)
5017{
5018 struct b43_wl *wl = dev->wl;
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02005019 struct pci_dev *pdev = NULL;
Michael Buesche4d6b792007-09-18 15:39:42 -04005020 int err;
Rafał Miłecki40c62262011-07-18 02:01:30 +02005021 u32 tmp;
Michael Buesch96c755a2008-01-06 00:09:46 +01005022 bool have_2ghz_phy = 0, have_5ghz_phy = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04005023
5024 /* Do NOT do any device initialization here.
5025 * Do it in wireless_core_init() instead.
5026 * This function is for gathering basic information about the HW, only.
5027 * Also some structs may be set up here. But most likely you want to have
5028 * that in core_init(), too.
5029 */
5030
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02005031#ifdef CONFIG_B43_SSB
5032 if (dev->dev->bus_type == B43_BUS_SSB &&
5033 dev->dev->sdev->bus->bustype == SSB_BUSTYPE_PCI)
5034 pdev = dev->dev->sdev->bus->host_pci;
5035#endif
5036
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02005037 err = b43_bus_powerup(dev, 0);
Michael Buesche4d6b792007-09-18 15:39:42 -04005038 if (err) {
5039 b43err(wl, "Bus powerup failed\n");
5040 goto out;
5041 }
Michael Buesche4d6b792007-09-18 15:39:42 -04005042
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02005043 /* Get the PHY type. */
5044 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02005045#ifdef CONFIG_B43_BCMA
5046 case B43_BUS_BCMA:
Rafał Miłecki40c62262011-07-18 02:01:30 +02005047 tmp = bcma_aread32(dev->dev->bdev, BCMA_IOST);
5048 have_2ghz_phy = !!(tmp & B43_BCMA_IOST_2G_PHY);
5049 have_5ghz_phy = !!(tmp & B43_BCMA_IOST_5G_PHY);
Rafał Miłecki42c9a452011-07-06 15:45:27 +02005050 break;
5051#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02005052#ifdef CONFIG_B43_SSB
5053 case B43_BUS_SSB:
5054 if (dev->dev->core_rev >= 5) {
Rafał Miłecki40c62262011-07-18 02:01:30 +02005055 tmp = ssb_read32(dev->dev->sdev, SSB_TMSHIGH);
5056 have_2ghz_phy = !!(tmp & B43_TMSHIGH_HAVE_2GHZ_PHY);
5057 have_5ghz_phy = !!(tmp & B43_TMSHIGH_HAVE_5GHZ_PHY);
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02005058 } else
5059 B43_WARN_ON(1);
5060 break;
5061#endif
5062 }
Michael Buesche4d6b792007-09-18 15:39:42 -04005063
Michael Buesch96c755a2008-01-06 00:09:46 +01005064 dev->phy.gmode = have_2ghz_phy;
Larry Fingerfd4973c2009-06-20 12:58:11 -05005065 dev->phy.radio_on = 1;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02005066 b43_wireless_core_reset(dev, dev->phy.gmode);
Michael Buesche4d6b792007-09-18 15:39:42 -04005067
5068 err = b43_phy_versioning(dev);
5069 if (err)
Michael Buesch21954c32007-09-27 15:31:40 +02005070 goto err_powerdown;
Michael Buesche4d6b792007-09-18 15:39:42 -04005071 /* Check if this device supports multiband. */
5072 if (!pdev ||
5073 (pdev->device != 0x4312 &&
5074 pdev->device != 0x4319 && pdev->device != 0x4324)) {
5075 /* No multiband support. */
Michael Buesch96c755a2008-01-06 00:09:46 +01005076 have_2ghz_phy = 0;
5077 have_5ghz_phy = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04005078 switch (dev->phy.type) {
5079 case B43_PHYTYPE_A:
Michael Buesch96c755a2008-01-06 00:09:46 +01005080 have_5ghz_phy = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04005081 break;
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02005082 case B43_PHYTYPE_LP: //FIXME not always!
Gábor Stefanik86b28922009-08-16 20:22:41 +02005083#if 0 //FIXME enabling 5GHz causes a NULL pointer dereference
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02005084 have_5ghz_phy = 1;
Gábor Stefanik86b28922009-08-16 20:22:41 +02005085#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04005086 case B43_PHYTYPE_G:
Michael Buesch96c755a2008-01-06 00:09:46 +01005087 case B43_PHYTYPE_N:
Rafał Miłecki8b9bda72011-07-07 18:58:24 +02005088 case B43_PHYTYPE_HT:
5089 case B43_PHYTYPE_LCN:
Michael Buesch96c755a2008-01-06 00:09:46 +01005090 have_2ghz_phy = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04005091 break;
5092 default:
5093 B43_WARN_ON(1);
5094 }
5095 }
Michael Buesch96c755a2008-01-06 00:09:46 +01005096 if (dev->phy.type == B43_PHYTYPE_A) {
5097 /* FIXME */
5098 b43err(wl, "IEEE 802.11a devices are unsupported\n");
5099 err = -EOPNOTSUPP;
5100 goto err_powerdown;
5101 }
Michael Buesch2e35af12008-04-27 19:06:18 +02005102 if (1 /* disable A-PHY */) {
5103 /* FIXME: For now we disable the A-PHY on multi-PHY devices. */
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02005104 if (dev->phy.type != B43_PHYTYPE_N &&
5105 dev->phy.type != B43_PHYTYPE_LP) {
Michael Buesch2e35af12008-04-27 19:06:18 +02005106 have_2ghz_phy = 1;
5107 have_5ghz_phy = 0;
5108 }
5109 }
5110
Michael Bueschfb111372008-09-02 13:00:34 +02005111 err = b43_phy_allocate(dev);
5112 if (err)
5113 goto err_powerdown;
5114
Michael Buesch96c755a2008-01-06 00:09:46 +01005115 dev->phy.gmode = have_2ghz_phy;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02005116 b43_wireless_core_reset(dev, dev->phy.gmode);
Michael Buesche4d6b792007-09-18 15:39:42 -04005117
5118 err = b43_validate_chipaccess(dev);
5119 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02005120 goto err_phy_free;
Michael Bueschbb1eeff2008-02-09 12:08:58 +01005121 err = b43_setup_bands(dev, have_2ghz_phy, have_5ghz_phy);
Michael Buesche4d6b792007-09-18 15:39:42 -04005122 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02005123 goto err_phy_free;
Michael Buesche4d6b792007-09-18 15:39:42 -04005124
5125 /* Now set some default "current_dev" */
5126 if (!wl->current_dev)
5127 wl->current_dev = dev;
5128 INIT_WORK(&dev->restart_work, b43_chip_reset);
5129
Michael Bueschcb24f572008-09-03 12:12:20 +02005130 dev->phy.ops->switch_analog(dev, 0);
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02005131 b43_device_disable(dev, 0);
5132 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005133
5134out:
5135 return err;
5136
Michael Bueschfb111372008-09-02 13:00:34 +02005137err_phy_free:
5138 b43_phy_free(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005139err_powerdown:
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02005140 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005141 return err;
5142}
5143
Rafał Miłecki482f0532011-05-18 02:06:36 +02005144static void b43_one_core_detach(struct b43_bus_dev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04005145{
5146 struct b43_wldev *wldev;
5147 struct b43_wl *wl;
5148
Michael Buesch3bf0a322008-05-22 16:32:16 +02005149 /* Do not cancel ieee80211-workqueue based work here.
5150 * See comment in b43_remove(). */
5151
Rafał Miłecki74abacb2011-07-06 15:45:28 +02005152 wldev = b43_bus_get_wldev(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005153 wl = wldev->wl;
Michael Buesche4d6b792007-09-18 15:39:42 -04005154 b43_debugfs_remove_device(wldev);
5155 b43_wireless_core_detach(wldev);
5156 list_del(&wldev->list);
5157 wl->nr_devs--;
Rafał Miłecki74abacb2011-07-06 15:45:28 +02005158 b43_bus_set_wldev(dev, NULL);
Michael Buesche4d6b792007-09-18 15:39:42 -04005159 kfree(wldev);
5160}
5161
Rafał Miłecki482f0532011-05-18 02:06:36 +02005162static int b43_one_core_attach(struct b43_bus_dev *dev, struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04005163{
5164 struct b43_wldev *wldev;
Michael Buesche4d6b792007-09-18 15:39:42 -04005165 int err = -ENOMEM;
5166
Michael Buesche4d6b792007-09-18 15:39:42 -04005167 wldev = kzalloc(sizeof(*wldev), GFP_KERNEL);
5168 if (!wldev)
5169 goto out;
5170
Linus Torvalds9e3bd912010-02-26 10:34:27 -08005171 wldev->use_pio = b43_modparam_pio;
Rafał Miłecki482f0532011-05-18 02:06:36 +02005172 wldev->dev = dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04005173 wldev->wl = wl;
5174 b43_set_status(wldev, B43_STAT_UNINIT);
5175 wldev->bad_frames_preempt = modparam_bad_frames_preempt;
Michael Buesche4d6b792007-09-18 15:39:42 -04005176 INIT_LIST_HEAD(&wldev->list);
5177
5178 err = b43_wireless_core_attach(wldev);
5179 if (err)
5180 goto err_kfree_wldev;
5181
5182 list_add(&wldev->list, &wl->devlist);
5183 wl->nr_devs++;
Rafał Miłecki74abacb2011-07-06 15:45:28 +02005184 b43_bus_set_wldev(dev, wldev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005185 b43_debugfs_add_device(wldev);
5186
5187 out:
5188 return err;
5189
5190 err_kfree_wldev:
5191 kfree(wldev);
5192 return err;
5193}
5194
Michael Buesch9fc38452008-04-19 16:53:00 +02005195#define IS_PDEV(pdev, _vendor, _device, _subvendor, _subdevice) ( \
5196 (pdev->vendor == PCI_VENDOR_ID_##_vendor) && \
5197 (pdev->device == _device) && \
5198 (pdev->subsystem_vendor == PCI_VENDOR_ID_##_subvendor) && \
5199 (pdev->subsystem_device == _subdevice) )
5200
Michael Buesche4d6b792007-09-18 15:39:42 -04005201static void b43_sprom_fixup(struct ssb_bus *bus)
5202{
Michael Buesch1855ba72008-04-18 20:51:41 +02005203 struct pci_dev *pdev;
5204
Michael Buesche4d6b792007-09-18 15:39:42 -04005205 /* boardflags workarounds */
5206 if (bus->boardinfo.vendor == SSB_BOARDVENDOR_DELL &&
5207 bus->chip_id == 0x4301 && bus->boardinfo.rev == 0x74)
Larry Finger95de2842007-11-09 16:57:18 -06005208 bus->sprom.boardflags_lo |= B43_BFL_BTCOEXIST;
Michael Buesche4d6b792007-09-18 15:39:42 -04005209 if (bus->boardinfo.vendor == PCI_VENDOR_ID_APPLE &&
5210 bus->boardinfo.type == 0x4E && bus->boardinfo.rev > 0x40)
Larry Finger95de2842007-11-09 16:57:18 -06005211 bus->sprom.boardflags_lo |= B43_BFL_PACTRL;
Michael Buesch1855ba72008-04-18 20:51:41 +02005212 if (bus->bustype == SSB_BUSTYPE_PCI) {
5213 pdev = bus->host_pci;
Michael Buesch9fc38452008-04-19 16:53:00 +02005214 if (IS_PDEV(pdev, BROADCOM, 0x4318, ASUSTEK, 0x100F) ||
Larry Finger430cd472008-08-14 18:57:11 -05005215 IS_PDEV(pdev, BROADCOM, 0x4320, DELL, 0x0003) ||
Larry Finger570bdfb2008-09-26 08:23:00 -05005216 IS_PDEV(pdev, BROADCOM, 0x4320, HP, 0x12f8) ||
Michael Buesch9fc38452008-04-19 16:53:00 +02005217 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0015) ||
Larry Fingera58d4522008-08-10 10:19:33 -05005218 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0014) ||
Larry Finger3bb91bf2008-09-19 14:47:38 -05005219 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0013) ||
5220 IS_PDEV(pdev, BROADCOM, 0x4320, MOTOROLA, 0x7010))
Michael Buesch1855ba72008-04-18 20:51:41 +02005221 bus->sprom.boardflags_lo &= ~B43_BFL_BTCOEXIST;
5222 }
Michael Buesche4d6b792007-09-18 15:39:42 -04005223}
5224
Rafał Miłecki482f0532011-05-18 02:06:36 +02005225static void b43_wireless_exit(struct b43_bus_dev *dev, struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04005226{
5227 struct ieee80211_hw *hw = wl->hw;
5228
Rafał Miłecki482f0532011-05-18 02:06:36 +02005229 ssb_set_devtypedata(dev->sdev, NULL);
Michael Buesche4d6b792007-09-18 15:39:42 -04005230 ieee80211_free_hw(hw);
5231}
5232
Rafał Miłeckid1507052011-07-05 23:54:07 +02005233static struct b43_wl *b43_wireless_init(struct b43_bus_dev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04005234{
Rafał Miłeckid1507052011-07-05 23:54:07 +02005235 struct ssb_sprom *sprom = dev->bus_sprom;
Michael Buesche4d6b792007-09-18 15:39:42 -04005236 struct ieee80211_hw *hw;
5237 struct b43_wl *wl;
Rafał Miłecki2729df22011-07-18 22:45:58 +02005238 char chip_name[6];
Michael Buesche4d6b792007-09-18 15:39:42 -04005239
5240 hw = ieee80211_alloc_hw(sizeof(*wl), &b43_hw_ops);
5241 if (!hw) {
5242 b43err(NULL, "Could not allocate ieee80211 device\n");
Rafał Miłecki0355a342011-05-17 14:00:01 +02005243 return ERR_PTR(-ENOMEM);
Michael Buesche4d6b792007-09-18 15:39:42 -04005244 }
Michael Buesch403a3a12009-06-08 21:04:57 +02005245 wl = hw_to_b43_wl(hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04005246
5247 /* fill hw info */
Johannes Berg605a0bd2008-07-15 10:10:01 +02005248 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
John W. Linvillef5c044e2010-04-30 15:37:00 -04005249 IEEE80211_HW_SIGNAL_DBM;
Bruno Randolf566bfe52008-05-08 19:15:40 +02005250
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07005251 hw->wiphy->interface_modes =
5252 BIT(NL80211_IFTYPE_AP) |
5253 BIT(NL80211_IFTYPE_MESH_POINT) |
5254 BIT(NL80211_IFTYPE_STATION) |
5255 BIT(NL80211_IFTYPE_WDS) |
5256 BIT(NL80211_IFTYPE_ADHOC);
5257
Michael Buesch403a3a12009-06-08 21:04:57 +02005258 hw->queues = modparam_qos ? 4 : 1;
5259 wl->mac80211_initially_registered_queues = hw->queues;
Johannes Berge6a98542008-10-21 12:40:02 +02005260 hw->max_rates = 2;
Michael Buesche4d6b792007-09-18 15:39:42 -04005261 SET_IEEE80211_DEV(hw, dev->dev);
Larry Finger95de2842007-11-09 16:57:18 -06005262 if (is_valid_ether_addr(sprom->et1mac))
5263 SET_IEEE80211_PERM_ADDR(hw, sprom->et1mac);
Michael Buesche4d6b792007-09-18 15:39:42 -04005264 else
Larry Finger95de2842007-11-09 16:57:18 -06005265 SET_IEEE80211_PERM_ADDR(hw, sprom->il0mac);
Michael Buesche4d6b792007-09-18 15:39:42 -04005266
Michael Buesch403a3a12009-06-08 21:04:57 +02005267 /* Initialize struct b43_wl */
Michael Buesche4d6b792007-09-18 15:39:42 -04005268 wl->hw = hw;
Michael Buesche4d6b792007-09-18 15:39:42 -04005269 mutex_init(&wl->mutex);
Michael Buesch36dbd952009-09-04 22:51:29 +02005270 spin_lock_init(&wl->hardirq_lock);
Michael Buesche4d6b792007-09-18 15:39:42 -04005271 INIT_LIST_HEAD(&wl->devlist);
Michael Buescha82d9922008-04-04 21:40:06 +02005272 INIT_WORK(&wl->beacon_update_trigger, b43_beacon_update_trigger_work);
Michael Buesch18c8ade2008-08-28 19:33:40 +02005273 INIT_WORK(&wl->txpower_adjust_work, b43_phy_txpower_adjust_work);
Michael Bueschf5d40ee2009-09-04 22:53:18 +02005274 INIT_WORK(&wl->tx_work, b43_tx_work);
5275 skb_queue_head_init(&wl->tx_queue);
Michael Buesche4d6b792007-09-18 15:39:42 -04005276
Rafał Miłecki2729df22011-07-18 22:45:58 +02005277 snprintf(chip_name, ARRAY_SIZE(chip_name),
5278 (dev->chip_id > 0x9999) ? "%d" : "%04X", dev->chip_id);
5279 b43info(wl, "Broadcom %s WLAN found (core revision %u)\n", chip_name,
5280 dev->core_rev);
Rafał Miłecki0355a342011-05-17 14:00:01 +02005281 return wl;
Michael Buesche4d6b792007-09-18 15:39:42 -04005282}
5283
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005284#ifdef CONFIG_B43_BCMA
5285static int b43_bcma_probe(struct bcma_device *core)
Michael Buesche4d6b792007-09-18 15:39:42 -04005286{
Rafał Miłecki397915c2011-07-06 19:03:46 +02005287 struct b43_bus_dev *dev;
Rafał Miłecki24aad3f2011-07-20 20:02:39 +02005288 struct b43_wl *wl;
5289 int err;
Rafał Miłecki397915c2011-07-06 19:03:46 +02005290
5291 dev = b43_bus_dev_bcma_init(core);
5292 if (!dev)
5293 return -ENODEV;
5294
Rafał Miłecki24aad3f2011-07-20 20:02:39 +02005295 wl = b43_wireless_init(dev);
5296 if (IS_ERR(wl)) {
5297 err = PTR_ERR(wl);
5298 goto bcma_out;
5299 }
5300
5301 err = b43_one_core_attach(dev, wl);
5302 if (err)
5303 goto bcma_err_wireless_exit;
5304
5305 err = ieee80211_register_hw(wl->hw);
5306 if (err)
5307 goto bcma_err_one_core_detach;
5308 b43_leds_register(wl->current_dev);
5309
5310bcma_out:
5311 return err;
5312
5313bcma_err_one_core_detach:
5314 b43_one_core_detach(dev);
5315bcma_err_wireless_exit:
5316 ieee80211_free_hw(wl->hw);
5317 return err;
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005318}
5319
5320static void b43_bcma_remove(struct bcma_device *core)
5321{
Rafał Miłecki24aad3f2011-07-20 20:02:39 +02005322 struct b43_wldev *wldev = bcma_get_drvdata(core);
5323 struct b43_wl *wl = wldev->wl;
5324
5325 /* We must cancel any work here before unregistering from ieee80211,
5326 * as the ieee80211 unreg will destroy the workqueue. */
5327 cancel_work_sync(&wldev->restart_work);
5328
5329 /* Restore the queues count before unregistering, because firmware detect
5330 * might have modified it. Restoring is important, so the networking
5331 * stack can properly free resources. */
5332 wl->hw->queues = wl->mac80211_initially_registered_queues;
5333 b43_leds_stop(wldev);
5334 ieee80211_unregister_hw(wl->hw);
5335
5336 b43_one_core_detach(wldev->dev);
5337
5338 b43_leds_unregister(wl);
5339
5340 ieee80211_free_hw(wl->hw);
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005341}
5342
5343static struct bcma_driver b43_bcma_driver = {
5344 .name = KBUILD_MODNAME,
5345 .id_table = b43_bcma_tbl,
5346 .probe = b43_bcma_probe,
5347 .remove = b43_bcma_remove,
5348};
5349#endif
5350
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005351#ifdef CONFIG_B43_SSB
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005352static
5353int b43_ssb_probe(struct ssb_device *sdev, const struct ssb_device_id *id)
Michael Buesche4d6b792007-09-18 15:39:42 -04005354{
Rafał Miłecki482f0532011-05-18 02:06:36 +02005355 struct b43_bus_dev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04005356 struct b43_wl *wl;
5357 int err;
5358 int first = 0;
5359
Rafał Miłecki482f0532011-05-18 02:06:36 +02005360 dev = b43_bus_dev_ssb_init(sdev);
Dan Carpenter5b49b352011-06-09 10:09:34 +03005361 if (!dev)
5362 return -ENOMEM;
Rafał Miłecki482f0532011-05-18 02:06:36 +02005363
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005364 wl = ssb_get_devtypedata(sdev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005365 if (!wl) {
5366 /* Probing the first core. Must setup common struct b43_wl */
5367 first = 1;
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005368 b43_sprom_fixup(sdev->bus);
Rafał Miłeckid1507052011-07-05 23:54:07 +02005369 wl = b43_wireless_init(dev);
Rafał Miłecki0355a342011-05-17 14:00:01 +02005370 if (IS_ERR(wl)) {
5371 err = PTR_ERR(wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005372 goto out;
Rafał Miłecki0355a342011-05-17 14:00:01 +02005373 }
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005374 ssb_set_devtypedata(sdev, wl);
5375 B43_WARN_ON(ssb_get_devtypedata(sdev) != wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005376 }
5377 err = b43_one_core_attach(dev, wl);
5378 if (err)
5379 goto err_wireless_exit;
5380
5381 if (first) {
5382 err = ieee80211_register_hw(wl->hw);
5383 if (err)
5384 goto err_one_core_detach;
Michael Buescha78b3bb2009-09-11 21:44:05 +02005385 b43_leds_register(wl->current_dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005386 }
5387
5388 out:
5389 return err;
5390
5391 err_one_core_detach:
5392 b43_one_core_detach(dev);
5393 err_wireless_exit:
5394 if (first)
5395 b43_wireless_exit(dev, wl);
5396 return err;
5397}
5398
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005399static void b43_ssb_remove(struct ssb_device *sdev)
Michael Buesche4d6b792007-09-18 15:39:42 -04005400{
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005401 struct b43_wl *wl = ssb_get_devtypedata(sdev);
5402 struct b43_wldev *wldev = ssb_get_drvdata(sdev);
Pavel Roskine61b52d2011-07-22 18:07:13 -04005403 struct b43_bus_dev *dev = wldev->dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04005404
Michael Buesch3bf0a322008-05-22 16:32:16 +02005405 /* We must cancel any work here before unregistering from ieee80211,
5406 * as the ieee80211 unreg will destroy the workqueue. */
5407 cancel_work_sync(&wldev->restart_work);
5408
Michael Buesche4d6b792007-09-18 15:39:42 -04005409 B43_WARN_ON(!wl);
Michael Buesch403a3a12009-06-08 21:04:57 +02005410 if (wl->current_dev == wldev) {
5411 /* Restore the queues count before unregistering, because firmware detect
5412 * might have modified it. Restoring is important, so the networking
5413 * stack can properly free resources. */
5414 wl->hw->queues = wl->mac80211_initially_registered_queues;
Albert Herranz82905ac2009-09-16 00:26:19 +02005415 b43_leds_stop(wldev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005416 ieee80211_unregister_hw(wl->hw);
Michael Buesch403a3a12009-06-08 21:04:57 +02005417 }
Michael Buesche4d6b792007-09-18 15:39:42 -04005418
Pavel Roskine61b52d2011-07-22 18:07:13 -04005419 b43_one_core_detach(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005420
5421 if (list_empty(&wl->devlist)) {
Michael Buesch727c9882009-10-01 15:54:32 +02005422 b43_leds_unregister(wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005423 /* Last core on the chip unregistered.
5424 * We can destroy common struct b43_wl.
5425 */
Pavel Roskine61b52d2011-07-22 18:07:13 -04005426 b43_wireless_exit(dev, wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005427 }
5428}
5429
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005430static struct ssb_driver b43_ssb_driver = {
5431 .name = KBUILD_MODNAME,
5432 .id_table = b43_ssb_tbl,
5433 .probe = b43_ssb_probe,
5434 .remove = b43_ssb_remove,
5435};
5436#endif /* CONFIG_B43_SSB */
5437
Michael Buesche4d6b792007-09-18 15:39:42 -04005438/* Perform a hardware reset. This can be called from any context. */
5439void b43_controller_restart(struct b43_wldev *dev, const char *reason)
5440{
5441 /* Must avoid requeueing, if we are in shutdown. */
5442 if (b43_status(dev) < B43_STAT_INITIALIZED)
5443 return;
5444 b43info(dev->wl, "Controller RESET (%s) ...\n", reason);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04005445 ieee80211_queue_work(dev->wl->hw, &dev->restart_work);
Michael Buesche4d6b792007-09-18 15:39:42 -04005446}
5447
Michael Buesch26bc7832008-02-09 00:18:35 +01005448static void b43_print_driverinfo(void)
5449{
5450 const char *feat_pci = "", *feat_pcmcia = "", *feat_nphy = "",
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005451 *feat_leds = "", *feat_sdio = "";
Michael Buesch26bc7832008-02-09 00:18:35 +01005452
5453#ifdef CONFIG_B43_PCI_AUTOSELECT
5454 feat_pci = "P";
5455#endif
5456#ifdef CONFIG_B43_PCMCIA
5457 feat_pcmcia = "M";
5458#endif
Rafał Miłecki692d2c02010-12-07 21:56:00 +01005459#ifdef CONFIG_B43_PHY_N
Michael Buesch26bc7832008-02-09 00:18:35 +01005460 feat_nphy = "N";
5461#endif
5462#ifdef CONFIG_B43_LEDS
5463 feat_leds = "L";
5464#endif
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005465#ifdef CONFIG_B43_SDIO
5466 feat_sdio = "S";
5467#endif
Michael Buesch26bc7832008-02-09 00:18:35 +01005468 printk(KERN_INFO "Broadcom 43xx driver loaded "
Michael Büsch8b0be902011-08-21 17:24:47 +02005469 "[ Features: %s%s%s%s%s ]\n",
Michael Buesch26bc7832008-02-09 00:18:35 +01005470 feat_pci, feat_pcmcia, feat_nphy,
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005471 feat_leds, feat_sdio);
Michael Buesch26bc7832008-02-09 00:18:35 +01005472}
5473
Michael Buesche4d6b792007-09-18 15:39:42 -04005474static int __init b43_init(void)
5475{
5476 int err;
5477
5478 b43_debugfs_init();
5479 err = b43_pcmcia_init();
5480 if (err)
5481 goto err_dfs_exit;
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005482 err = b43_sdio_init();
Michael Buesche4d6b792007-09-18 15:39:42 -04005483 if (err)
5484 goto err_pcmcia_exit;
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005485#ifdef CONFIG_B43_BCMA
5486 err = bcma_driver_register(&b43_bcma_driver);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005487 if (err)
5488 goto err_sdio_exit;
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005489#endif
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005490#ifdef CONFIG_B43_SSB
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005491 err = ssb_driver_register(&b43_ssb_driver);
5492 if (err)
5493 goto err_bcma_driver_exit;
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005494#endif
Michael Buesch26bc7832008-02-09 00:18:35 +01005495 b43_print_driverinfo();
Michael Buesche4d6b792007-09-18 15:39:42 -04005496
5497 return err;
5498
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005499#ifdef CONFIG_B43_SSB
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005500err_bcma_driver_exit:
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005501#endif
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005502#ifdef CONFIG_B43_BCMA
5503 bcma_driver_unregister(&b43_bcma_driver);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005504err_sdio_exit:
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005505#endif
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005506 b43_sdio_exit();
Michael Buesche4d6b792007-09-18 15:39:42 -04005507err_pcmcia_exit:
5508 b43_pcmcia_exit();
5509err_dfs_exit:
5510 b43_debugfs_exit();
5511 return err;
5512}
5513
5514static void __exit b43_exit(void)
5515{
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005516#ifdef CONFIG_B43_SSB
Michael Buesche4d6b792007-09-18 15:39:42 -04005517 ssb_driver_unregister(&b43_ssb_driver);
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005518#endif
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005519#ifdef CONFIG_B43_BCMA
5520 bcma_driver_unregister(&b43_bcma_driver);
5521#endif
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005522 b43_sdio_exit();
Michael Buesche4d6b792007-09-18 15:39:42 -04005523 b43_pcmcia_exit();
5524 b43_debugfs_exit();
5525}
5526
5527module_init(b43_init)
5528module_exit(b43_exit)