blob: d2661aaff50f91ac9d4e6a787b1fbb1a1e2ae601 [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>
10
Albert Herranz3dbba8e2009-09-10 19:34:49 +020011 SDIO support
12 Copyright (c) 2009 Albert Herranz <albert_herranz@yahoo.es>
13
Michael Buesche4d6b792007-09-18 15:39:42 -040014 Some parts of the code in this file are derived from the ipw2200
15 driver Copyright(c) 2003 - 2004 Intel Corporation.
16
17 This program is free software; you can redistribute it and/or modify
18 it under the terms of the GNU General Public License as published by
19 the Free Software Foundation; either version 2 of the License, or
20 (at your option) any later version.
21
22 This program is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
26
27 You should have received a copy of the GNU General Public License
28 along with this program; see the file COPYING. If not, write to
29 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
30 Boston, MA 02110-1301, USA.
31
32*/
33
34#include <linux/delay.h>
35#include <linux/init.h>
36#include <linux/moduleparam.h>
37#include <linux/if_arp.h>
38#include <linux/etherdevice.h>
Michael Buesche4d6b792007-09-18 15:39:42 -040039#include <linux/firmware.h>
Michael Buesche4d6b792007-09-18 15:39:42 -040040#include <linux/workqueue.h>
41#include <linux/skbuff.h>
Andrew Morton96cf49a2008-02-04 22:27:19 -080042#include <linux/io.h>
Michael Buesche4d6b792007-09-18 15:39:42 -040043#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Michael Buesche4d6b792007-09-18 15:39:42 -040045#include <asm/unaligned.h>
46
47#include "b43.h"
48#include "main.h"
49#include "debugfs.h"
Michael Bueschef1a6282008-08-27 18:53:02 +020050#include "phy_common.h"
51#include "phy_g.h"
Michael Buesch3d0da752008-08-30 02:27:19 +020052#include "phy_n.h"
Michael Buesche4d6b792007-09-18 15:39:42 -040053#include "dma.h"
Michael Buesch5100d5a2008-03-29 21:01:16 +010054#include "pio.h"
Michael Buesche4d6b792007-09-18 15:39:42 -040055#include "sysfs.h"
56#include "xmit.h"
Michael Buesche4d6b792007-09-18 15:39:42 -040057#include "lo.h"
58#include "pcmcia.h"
Albert Herranz3dbba8e2009-09-10 19:34:49 +020059#include "sdio.h"
60#include <linux/mmc/sdio_func.h>
Michael Buesche4d6b792007-09-18 15:39:42 -040061
62MODULE_DESCRIPTION("Broadcom B43 wireless driver");
63MODULE_AUTHOR("Martin Langer");
64MODULE_AUTHOR("Stefano Brivio");
65MODULE_AUTHOR("Michael Buesch");
Gábor Stefanik0136e512009-08-28 22:32:17 +020066MODULE_AUTHOR("Gábor Stefanik");
Michael Buesche4d6b792007-09-18 15:39:42 -040067MODULE_LICENSE("GPL");
68
Michael Buesch9c7d99d2008-02-09 10:23:49 +010069MODULE_FIRMWARE(B43_SUPPORTED_FIRMWARE_ID);
Tim Gardner6021e082010-01-07 11:10:38 -070070MODULE_FIRMWARE("b43/ucode11.fw");
71MODULE_FIRMWARE("b43/ucode13.fw");
72MODULE_FIRMWARE("b43/ucode14.fw");
73MODULE_FIRMWARE("b43/ucode15.fw");
Rafał Miłeckif6158392011-04-19 22:49:29 +020074MODULE_FIRMWARE("b43/ucode16_mimo.fw");
Tim Gardner6021e082010-01-07 11:10:38 -070075MODULE_FIRMWARE("b43/ucode5.fw");
76MODULE_FIRMWARE("b43/ucode9.fw");
Michael Buesche4d6b792007-09-18 15:39:42 -040077
78static int modparam_bad_frames_preempt;
79module_param_named(bad_frames_preempt, modparam_bad_frames_preempt, int, 0444);
80MODULE_PARM_DESC(bad_frames_preempt,
81 "enable(1) / disable(0) Bad Frames Preemption");
82
Michael Buesche4d6b792007-09-18 15:39:42 -040083static char modparam_fwpostfix[16];
84module_param_string(fwpostfix, modparam_fwpostfix, 16, 0444);
85MODULE_PARM_DESC(fwpostfix, "Postfix for the .fw files to load.");
86
Michael Buesche4d6b792007-09-18 15:39:42 -040087static int modparam_hwpctl;
88module_param_named(hwpctl, modparam_hwpctl, int, 0444);
89MODULE_PARM_DESC(hwpctl, "Enable hardware-side power control (default off)");
90
91static int modparam_nohwcrypt;
92module_param_named(nohwcrypt, modparam_nohwcrypt, int, 0444);
93MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
94
gregor kowski035d0242009-08-19 22:35:45 +020095static int modparam_hwtkip;
96module_param_named(hwtkip, modparam_hwtkip, int, 0444);
97MODULE_PARM_DESC(hwtkip, "Enable hardware tkip.");
98
Michael Buesch403a3a12009-06-08 21:04:57 +020099static int modparam_qos = 1;
100module_param_named(qos, modparam_qos, int, 0444);
Michael Buesche6f5b932008-03-05 21:18:49 +0100101MODULE_PARM_DESC(qos, "Enable QOS support (default on)");
102
Michael Buesch1855ba72008-04-18 20:51:41 +0200103static int modparam_btcoex = 1;
104module_param_named(btcoex, modparam_btcoex, int, 0444);
Gábor Stefanikc71dbd32009-08-28 22:34:21 +0200105MODULE_PARM_DESC(btcoex, "Enable Bluetooth coexistence (default on)");
Michael Buesch1855ba72008-04-18 20:51:41 +0200106
Michael Buesch060210f2009-01-25 15:49:59 +0100107int b43_modparam_verbose = B43_VERBOSITY_DEFAULT;
108module_param_named(verbose, b43_modparam_verbose, int, 0644);
109MODULE_PARM_DESC(verbose, "Log message verbosity: 0=error, 1=warn, 2=info(default), 3=debug");
110
John W. Linville41950bd2010-07-21 11:37:19 -0400111static int b43_modparam_pio = B43_PIO_DEFAULT;
Linus Torvalds9e3bd912010-02-26 10:34:27 -0800112module_param_named(pio, b43_modparam_pio, int, 0644);
113MODULE_PARM_DESC(pio, "Use PIO accesses by default: 0=DMA, 1=PIO");
Michael Buesche6f5b932008-03-05 21:18:49 +0100114
Rafał Miłecki3c65ab62011-06-02 09:56:04 +0200115#ifdef CONFIG_B43_BCMA
116static const struct bcma_device_id b43_bcma_tbl[] = {
Hauke Mehrtensc027ed42011-07-23 13:57:34 +0200117 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x11, BCMA_ANY_CLASS),
Rafał Miłecki3c65ab62011-06-02 09:56:04 +0200118 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x17, BCMA_ANY_CLASS),
119 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x18, BCMA_ANY_CLASS),
120 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x1D, BCMA_ANY_CLASS),
121 BCMA_CORETABLE_END
122};
123MODULE_DEVICE_TABLE(bcma, b43_bcma_tbl);
124#endif
125
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +0200126#ifdef CONFIG_B43_SSB
Michael Buesche4d6b792007-09-18 15:39:42 -0400127static const struct ssb_device_id b43_ssb_tbl[] = {
128 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 5),
129 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 6),
130 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 7),
131 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 9),
132 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 10),
Michael Bueschd5c71e42008-01-04 17:06:29 +0100133 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 11),
Rafał Miłecki003d6d22010-01-15 12:10:53 +0100134 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 12),
Larry Finger013978b2007-11-26 10:29:47 -0600135 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 13),
Michael Buesch6b1c7c62008-12-25 00:39:28 +0100136 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 15),
Johannes Berg92d61282008-12-24 12:44:09 +0100137 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 16),
Michael Buesche4d6b792007-09-18 15:39:42 -0400138 SSB_DEVTABLE_END
139};
Michael Buesche4d6b792007-09-18 15:39:42 -0400140MODULE_DEVICE_TABLE(ssb, b43_ssb_tbl);
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +0200141#endif
Michael Buesche4d6b792007-09-18 15:39:42 -0400142
143/* Channel and ratetables are shared for all devices.
144 * They can't be const, because ieee80211 puts some precalculated
145 * data in there. This data is the same for all devices, so we don't
146 * get concurrency issues */
147#define RATETAB_ENT(_rateid, _flags) \
Johannes Berg8318d782008-01-24 19:38:38 +0100148 { \
149 .bitrate = B43_RATE_TO_BASE100KBPS(_rateid), \
150 .hw_value = (_rateid), \
151 .flags = (_flags), \
Michael Buesche4d6b792007-09-18 15:39:42 -0400152 }
Johannes Berg8318d782008-01-24 19:38:38 +0100153
154/*
155 * NOTE: When changing this, sync with xmit.c's
156 * b43_plcp_get_bitrate_idx_* functions!
157 */
Michael Buesche4d6b792007-09-18 15:39:42 -0400158static struct ieee80211_rate __b43_ratetable[] = {
Johannes Berg8318d782008-01-24 19:38:38 +0100159 RATETAB_ENT(B43_CCK_RATE_1MB, 0),
160 RATETAB_ENT(B43_CCK_RATE_2MB, IEEE80211_RATE_SHORT_PREAMBLE),
161 RATETAB_ENT(B43_CCK_RATE_5MB, IEEE80211_RATE_SHORT_PREAMBLE),
162 RATETAB_ENT(B43_CCK_RATE_11MB, IEEE80211_RATE_SHORT_PREAMBLE),
163 RATETAB_ENT(B43_OFDM_RATE_6MB, 0),
164 RATETAB_ENT(B43_OFDM_RATE_9MB, 0),
165 RATETAB_ENT(B43_OFDM_RATE_12MB, 0),
166 RATETAB_ENT(B43_OFDM_RATE_18MB, 0),
167 RATETAB_ENT(B43_OFDM_RATE_24MB, 0),
168 RATETAB_ENT(B43_OFDM_RATE_36MB, 0),
169 RATETAB_ENT(B43_OFDM_RATE_48MB, 0),
170 RATETAB_ENT(B43_OFDM_RATE_54MB, 0),
Michael Buesche4d6b792007-09-18 15:39:42 -0400171};
172
173#define b43_a_ratetable (__b43_ratetable + 4)
174#define b43_a_ratetable_size 8
175#define b43_b_ratetable (__b43_ratetable + 0)
176#define b43_b_ratetable_size 4
177#define b43_g_ratetable (__b43_ratetable + 0)
178#define b43_g_ratetable_size 12
179
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100180#define CHAN4G(_channel, _freq, _flags) { \
181 .band = IEEE80211_BAND_2GHZ, \
182 .center_freq = (_freq), \
183 .hw_value = (_channel), \
184 .flags = (_flags), \
185 .max_antenna_gain = 0, \
186 .max_power = 30, \
187}
Michael Buesch96c755a2008-01-06 00:09:46 +0100188static struct ieee80211_channel b43_2ghz_chantable[] = {
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100189 CHAN4G(1, 2412, 0),
190 CHAN4G(2, 2417, 0),
191 CHAN4G(3, 2422, 0),
192 CHAN4G(4, 2427, 0),
193 CHAN4G(5, 2432, 0),
194 CHAN4G(6, 2437, 0),
195 CHAN4G(7, 2442, 0),
196 CHAN4G(8, 2447, 0),
197 CHAN4G(9, 2452, 0),
198 CHAN4G(10, 2457, 0),
199 CHAN4G(11, 2462, 0),
200 CHAN4G(12, 2467, 0),
201 CHAN4G(13, 2472, 0),
202 CHAN4G(14, 2484, 0),
203};
204#undef CHAN4G
205
206#define CHAN5G(_channel, _flags) { \
207 .band = IEEE80211_BAND_5GHZ, \
208 .center_freq = 5000 + (5 * (_channel)), \
209 .hw_value = (_channel), \
210 .flags = (_flags), \
211 .max_antenna_gain = 0, \
212 .max_power = 30, \
213}
214static struct ieee80211_channel b43_5ghz_nphy_chantable[] = {
215 CHAN5G(32, 0), CHAN5G(34, 0),
216 CHAN5G(36, 0), CHAN5G(38, 0),
217 CHAN5G(40, 0), CHAN5G(42, 0),
218 CHAN5G(44, 0), CHAN5G(46, 0),
219 CHAN5G(48, 0), CHAN5G(50, 0),
220 CHAN5G(52, 0), CHAN5G(54, 0),
221 CHAN5G(56, 0), CHAN5G(58, 0),
222 CHAN5G(60, 0), CHAN5G(62, 0),
223 CHAN5G(64, 0), CHAN5G(66, 0),
224 CHAN5G(68, 0), CHAN5G(70, 0),
225 CHAN5G(72, 0), CHAN5G(74, 0),
226 CHAN5G(76, 0), CHAN5G(78, 0),
227 CHAN5G(80, 0), CHAN5G(82, 0),
228 CHAN5G(84, 0), CHAN5G(86, 0),
229 CHAN5G(88, 0), CHAN5G(90, 0),
230 CHAN5G(92, 0), CHAN5G(94, 0),
231 CHAN5G(96, 0), CHAN5G(98, 0),
232 CHAN5G(100, 0), CHAN5G(102, 0),
233 CHAN5G(104, 0), CHAN5G(106, 0),
234 CHAN5G(108, 0), CHAN5G(110, 0),
235 CHAN5G(112, 0), CHAN5G(114, 0),
236 CHAN5G(116, 0), CHAN5G(118, 0),
237 CHAN5G(120, 0), CHAN5G(122, 0),
238 CHAN5G(124, 0), CHAN5G(126, 0),
239 CHAN5G(128, 0), CHAN5G(130, 0),
240 CHAN5G(132, 0), CHAN5G(134, 0),
241 CHAN5G(136, 0), CHAN5G(138, 0),
242 CHAN5G(140, 0), CHAN5G(142, 0),
243 CHAN5G(144, 0), CHAN5G(145, 0),
244 CHAN5G(146, 0), CHAN5G(147, 0),
245 CHAN5G(148, 0), CHAN5G(149, 0),
246 CHAN5G(150, 0), CHAN5G(151, 0),
247 CHAN5G(152, 0), CHAN5G(153, 0),
248 CHAN5G(154, 0), CHAN5G(155, 0),
249 CHAN5G(156, 0), CHAN5G(157, 0),
250 CHAN5G(158, 0), CHAN5G(159, 0),
251 CHAN5G(160, 0), CHAN5G(161, 0),
252 CHAN5G(162, 0), CHAN5G(163, 0),
253 CHAN5G(164, 0), CHAN5G(165, 0),
254 CHAN5G(166, 0), CHAN5G(168, 0),
255 CHAN5G(170, 0), CHAN5G(172, 0),
256 CHAN5G(174, 0), CHAN5G(176, 0),
257 CHAN5G(178, 0), CHAN5G(180, 0),
258 CHAN5G(182, 0), CHAN5G(184, 0),
259 CHAN5G(186, 0), CHAN5G(188, 0),
260 CHAN5G(190, 0), CHAN5G(192, 0),
261 CHAN5G(194, 0), CHAN5G(196, 0),
262 CHAN5G(198, 0), CHAN5G(200, 0),
263 CHAN5G(202, 0), CHAN5G(204, 0),
264 CHAN5G(206, 0), CHAN5G(208, 0),
265 CHAN5G(210, 0), CHAN5G(212, 0),
266 CHAN5G(214, 0), CHAN5G(216, 0),
267 CHAN5G(218, 0), CHAN5G(220, 0),
268 CHAN5G(222, 0), CHAN5G(224, 0),
269 CHAN5G(226, 0), CHAN5G(228, 0),
Michael Buesche4d6b792007-09-18 15:39:42 -0400270};
271
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100272static struct ieee80211_channel b43_5ghz_aphy_chantable[] = {
273 CHAN5G(34, 0), CHAN5G(36, 0),
274 CHAN5G(38, 0), CHAN5G(40, 0),
275 CHAN5G(42, 0), CHAN5G(44, 0),
276 CHAN5G(46, 0), CHAN5G(48, 0),
277 CHAN5G(52, 0), CHAN5G(56, 0),
278 CHAN5G(60, 0), CHAN5G(64, 0),
279 CHAN5G(100, 0), CHAN5G(104, 0),
280 CHAN5G(108, 0), CHAN5G(112, 0),
281 CHAN5G(116, 0), CHAN5G(120, 0),
282 CHAN5G(124, 0), CHAN5G(128, 0),
283 CHAN5G(132, 0), CHAN5G(136, 0),
284 CHAN5G(140, 0), CHAN5G(149, 0),
285 CHAN5G(153, 0), CHAN5G(157, 0),
286 CHAN5G(161, 0), CHAN5G(165, 0),
287 CHAN5G(184, 0), CHAN5G(188, 0),
288 CHAN5G(192, 0), CHAN5G(196, 0),
289 CHAN5G(200, 0), CHAN5G(204, 0),
290 CHAN5G(208, 0), CHAN5G(212, 0),
291 CHAN5G(216, 0),
292};
293#undef CHAN5G
294
295static struct ieee80211_supported_band b43_band_5GHz_nphy = {
296 .band = IEEE80211_BAND_5GHZ,
297 .channels = b43_5ghz_nphy_chantable,
298 .n_channels = ARRAY_SIZE(b43_5ghz_nphy_chantable),
299 .bitrates = b43_a_ratetable,
300 .n_bitrates = b43_a_ratetable_size,
Michael Buesche4d6b792007-09-18 15:39:42 -0400301};
Johannes Berg8318d782008-01-24 19:38:38 +0100302
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100303static struct ieee80211_supported_band b43_band_5GHz_aphy = {
304 .band = IEEE80211_BAND_5GHZ,
305 .channels = b43_5ghz_aphy_chantable,
306 .n_channels = ARRAY_SIZE(b43_5ghz_aphy_chantable),
307 .bitrates = b43_a_ratetable,
308 .n_bitrates = b43_a_ratetable_size,
Johannes Berg8318d782008-01-24 19:38:38 +0100309};
Michael Buesche4d6b792007-09-18 15:39:42 -0400310
Johannes Berg8318d782008-01-24 19:38:38 +0100311static struct ieee80211_supported_band b43_band_2GHz = {
Michael Bueschbb1eeff2008-02-09 12:08:58 +0100312 .band = IEEE80211_BAND_2GHZ,
313 .channels = b43_2ghz_chantable,
314 .n_channels = ARRAY_SIZE(b43_2ghz_chantable),
315 .bitrates = b43_g_ratetable,
316 .n_bitrates = b43_g_ratetable_size,
Johannes Berg8318d782008-01-24 19:38:38 +0100317};
318
Michael Buesche4d6b792007-09-18 15:39:42 -0400319static void b43_wireless_core_exit(struct b43_wldev *dev);
320static int b43_wireless_core_init(struct b43_wldev *dev);
Michael Buesch36dbd952009-09-04 22:51:29 +0200321static struct b43_wldev * b43_wireless_core_stop(struct b43_wldev *dev);
Michael Buesche4d6b792007-09-18 15:39:42 -0400322static int b43_wireless_core_start(struct b43_wldev *dev);
323
324static int b43_ratelimit(struct b43_wl *wl)
325{
326 if (!wl || !wl->current_dev)
327 return 1;
328 if (b43_status(wl->current_dev) < B43_STAT_STARTED)
329 return 1;
330 /* We are up and running.
331 * Ratelimit the messages to avoid DoS over the net. */
332 return net_ratelimit();
333}
334
335void b43info(struct b43_wl *wl, const char *fmt, ...)
336{
Joe Perches5b736d42010-11-09 16:35:18 -0800337 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400338 va_list args;
339
Michael Buesch060210f2009-01-25 15:49:59 +0100340 if (b43_modparam_verbose < B43_VERBOSITY_INFO)
341 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400342 if (!b43_ratelimit(wl))
343 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800344
Michael Buesche4d6b792007-09-18 15:39:42 -0400345 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800346
347 vaf.fmt = fmt;
348 vaf.va = &args;
349
350 printk(KERN_INFO "b43-%s: %pV",
351 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
352
Michael Buesche4d6b792007-09-18 15:39:42 -0400353 va_end(args);
354}
355
356void b43err(struct b43_wl *wl, const char *fmt, ...)
357{
Joe Perches5b736d42010-11-09 16:35:18 -0800358 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400359 va_list args;
360
Michael Buesch060210f2009-01-25 15:49:59 +0100361 if (b43_modparam_verbose < B43_VERBOSITY_ERROR)
362 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400363 if (!b43_ratelimit(wl))
364 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800365
Michael Buesche4d6b792007-09-18 15:39:42 -0400366 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800367
368 vaf.fmt = fmt;
369 vaf.va = &args;
370
371 printk(KERN_ERR "b43-%s ERROR: %pV",
372 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
373
Michael Buesche4d6b792007-09-18 15:39:42 -0400374 va_end(args);
375}
376
377void b43warn(struct b43_wl *wl, const char *fmt, ...)
378{
Joe Perches5b736d42010-11-09 16:35:18 -0800379 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400380 va_list args;
381
Michael Buesch060210f2009-01-25 15:49:59 +0100382 if (b43_modparam_verbose < B43_VERBOSITY_WARN)
383 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400384 if (!b43_ratelimit(wl))
385 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800386
Michael Buesche4d6b792007-09-18 15:39:42 -0400387 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800388
389 vaf.fmt = fmt;
390 vaf.va = &args;
391
392 printk(KERN_WARNING "b43-%s warning: %pV",
393 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
394
Michael Buesche4d6b792007-09-18 15:39:42 -0400395 va_end(args);
396}
397
Michael Buesche4d6b792007-09-18 15:39:42 -0400398void b43dbg(struct b43_wl *wl, const char *fmt, ...)
399{
Joe Perches5b736d42010-11-09 16:35:18 -0800400 struct va_format vaf;
Michael Buesche4d6b792007-09-18 15:39:42 -0400401 va_list args;
402
Michael Buesch060210f2009-01-25 15:49:59 +0100403 if (b43_modparam_verbose < B43_VERBOSITY_DEBUG)
404 return;
Joe Perches5b736d42010-11-09 16:35:18 -0800405
Michael Buesche4d6b792007-09-18 15:39:42 -0400406 va_start(args, fmt);
Joe Perches5b736d42010-11-09 16:35:18 -0800407
408 vaf.fmt = fmt;
409 vaf.va = &args;
410
411 printk(KERN_DEBUG "b43-%s debug: %pV",
412 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
413
Michael Buesche4d6b792007-09-18 15:39:42 -0400414 va_end(args);
415}
Michael Buesche4d6b792007-09-18 15:39:42 -0400416
417static void b43_ram_write(struct b43_wldev *dev, u16 offset, u32 val)
418{
419 u32 macctl;
420
421 B43_WARN_ON(offset % 4 != 0);
422
423 macctl = b43_read32(dev, B43_MMIO_MACCTL);
424 if (macctl & B43_MACCTL_BE)
425 val = swab32(val);
426
427 b43_write32(dev, B43_MMIO_RAM_CONTROL, offset);
428 mmiowb();
429 b43_write32(dev, B43_MMIO_RAM_DATA, val);
430}
431
Michael Buesch280d0e12007-12-26 18:26:17 +0100432static inline void b43_shm_control_word(struct b43_wldev *dev,
433 u16 routing, u16 offset)
Michael Buesche4d6b792007-09-18 15:39:42 -0400434{
435 u32 control;
436
437 /* "offset" is the WORD offset. */
Michael Buesche4d6b792007-09-18 15:39:42 -0400438 control = routing;
439 control <<= 16;
440 control |= offset;
441 b43_write32(dev, B43_MMIO_SHM_CONTROL, control);
442}
443
Michael Buesch69eddc82009-09-04 22:57:26 +0200444u32 b43_shm_read32(struct b43_wldev *dev, u16 routing, u16 offset)
Michael Buesche4d6b792007-09-18 15:39:42 -0400445{
446 u32 ret;
447
448 if (routing == B43_SHM_SHARED) {
449 B43_WARN_ON(offset & 0x0001);
450 if (offset & 0x0003) {
451 /* Unaligned access */
452 b43_shm_control_word(dev, routing, offset >> 2);
453 ret = b43_read16(dev, B43_MMIO_SHM_DATA_UNALIGNED);
Michael Buesche4d6b792007-09-18 15:39:42 -0400454 b43_shm_control_word(dev, routing, (offset >> 2) + 1);
Michael Bueschf62ae6c2009-07-31 20:51:41 +0200455 ret |= ((u32)b43_read16(dev, B43_MMIO_SHM_DATA)) << 16;
Michael Buesche4d6b792007-09-18 15:39:42 -0400456
Michael Buesch280d0e12007-12-26 18:26:17 +0100457 goto out;
Michael Buesche4d6b792007-09-18 15:39:42 -0400458 }
459 offset >>= 2;
460 }
461 b43_shm_control_word(dev, routing, offset);
462 ret = b43_read32(dev, B43_MMIO_SHM_DATA);
Michael Buesch280d0e12007-12-26 18:26:17 +0100463out:
Michael Buesch6bbc3212008-06-19 19:33:51 +0200464 return ret;
465}
466
Michael Buesch69eddc82009-09-04 22:57:26 +0200467u16 b43_shm_read16(struct b43_wldev *dev, u16 routing, u16 offset)
Michael Buesche4d6b792007-09-18 15:39:42 -0400468{
469 u16 ret;
470
471 if (routing == B43_SHM_SHARED) {
472 B43_WARN_ON(offset & 0x0001);
473 if (offset & 0x0003) {
474 /* Unaligned access */
475 b43_shm_control_word(dev, routing, offset >> 2);
476 ret = b43_read16(dev, B43_MMIO_SHM_DATA_UNALIGNED);
477
Michael Buesch280d0e12007-12-26 18:26:17 +0100478 goto out;
Michael Buesche4d6b792007-09-18 15:39:42 -0400479 }
480 offset >>= 2;
481 }
482 b43_shm_control_word(dev, routing, offset);
483 ret = b43_read16(dev, B43_MMIO_SHM_DATA);
Michael Buesch280d0e12007-12-26 18:26:17 +0100484out:
Michael Buesch6bbc3212008-06-19 19:33:51 +0200485 return ret;
486}
487
Michael Buesch69eddc82009-09-04 22:57:26 +0200488void b43_shm_write32(struct b43_wldev *dev, u16 routing, u16 offset, u32 value)
Michael Buesche4d6b792007-09-18 15:39:42 -0400489{
490 if (routing == B43_SHM_SHARED) {
491 B43_WARN_ON(offset & 0x0001);
492 if (offset & 0x0003) {
493 /* Unaligned access */
494 b43_shm_control_word(dev, routing, offset >> 2);
Michael Buesche4d6b792007-09-18 15:39:42 -0400495 b43_write16(dev, B43_MMIO_SHM_DATA_UNALIGNED,
Michael Bueschf62ae6c2009-07-31 20:51:41 +0200496 value & 0xFFFF);
Michael Buesche4d6b792007-09-18 15:39:42 -0400497 b43_shm_control_word(dev, routing, (offset >> 2) + 1);
Michael Bueschf62ae6c2009-07-31 20:51:41 +0200498 b43_write16(dev, B43_MMIO_SHM_DATA,
499 (value >> 16) & 0xFFFF);
Michael Buesch6bbc3212008-06-19 19:33:51 +0200500 return;
Michael Buesche4d6b792007-09-18 15:39:42 -0400501 }
502 offset >>= 2;
503 }
504 b43_shm_control_word(dev, routing, offset);
Michael Buesche4d6b792007-09-18 15:39:42 -0400505 b43_write32(dev, B43_MMIO_SHM_DATA, value);
Michael Buesch6bbc3212008-06-19 19:33:51 +0200506}
507
Michael Buesch69eddc82009-09-04 22:57:26 +0200508void b43_shm_write16(struct b43_wldev *dev, u16 routing, u16 offset, u16 value)
Michael Buesch6bbc3212008-06-19 19:33:51 +0200509{
510 if (routing == B43_SHM_SHARED) {
511 B43_WARN_ON(offset & 0x0001);
512 if (offset & 0x0003) {
513 /* Unaligned access */
514 b43_shm_control_word(dev, routing, offset >> 2);
515 b43_write16(dev, B43_MMIO_SHM_DATA_UNALIGNED, value);
516 return;
517 }
518 offset >>= 2;
519 }
520 b43_shm_control_word(dev, routing, offset);
521 b43_write16(dev, B43_MMIO_SHM_DATA, value);
522}
523
Michael Buesche4d6b792007-09-18 15:39:42 -0400524/* Read HostFlags */
John Daiker99da1852009-02-24 02:16:42 -0800525u64 b43_hf_read(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -0400526{
Michael Buesch35f0d352008-02-13 14:31:08 +0100527 u64 ret;
Michael Buesche4d6b792007-09-18 15:39:42 -0400528
529 ret = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFHI);
530 ret <<= 16;
Michael Buesch35f0d352008-02-13 14:31:08 +0100531 ret |= b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFMI);
532 ret <<= 16;
Michael Buesche4d6b792007-09-18 15:39:42 -0400533 ret |= b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFLO);
534
535 return ret;
536}
537
538/* Write HostFlags */
Michael Buesch35f0d352008-02-13 14:31:08 +0100539void b43_hf_write(struct b43_wldev *dev, u64 value)
Michael Buesche4d6b792007-09-18 15:39:42 -0400540{
Michael Buesch35f0d352008-02-13 14:31:08 +0100541 u16 lo, mi, hi;
542
543 lo = (value & 0x00000000FFFFULL);
544 mi = (value & 0x0000FFFF0000ULL) >> 16;
545 hi = (value & 0xFFFF00000000ULL) >> 32;
546 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFLO, lo);
547 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFMI, mi);
548 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFHI, hi);
Michael Buesche4d6b792007-09-18 15:39:42 -0400549}
550
Michael Buesch403a3a12009-06-08 21:04:57 +0200551/* Read the firmware capabilities bitmask (Opensource firmware only) */
552static u16 b43_fwcapa_read(struct b43_wldev *dev)
553{
554 B43_WARN_ON(!dev->fw.opensource);
555 return b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_FWCAPA);
556}
557
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100558void b43_tsf_read(struct b43_wldev *dev, u64 *tsf)
Michael Buesche4d6b792007-09-18 15:39:42 -0400559{
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100560 u32 low, high;
Michael Buesche4d6b792007-09-18 15:39:42 -0400561
Rafał Miłecki21d889d2011-05-18 02:06:38 +0200562 B43_WARN_ON(dev->dev->core_rev < 3);
Michael Buesche4d6b792007-09-18 15:39:42 -0400563
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100564 /* The hardware guarantees us an atomic read, if we
565 * read the low register first. */
566 low = b43_read32(dev, B43_MMIO_REV3PLUS_TSF_LOW);
567 high = b43_read32(dev, B43_MMIO_REV3PLUS_TSF_HIGH);
Michael Buesche4d6b792007-09-18 15:39:42 -0400568
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100569 *tsf = high;
570 *tsf <<= 32;
571 *tsf |= low;
Michael Buesche4d6b792007-09-18 15:39:42 -0400572}
573
574static void b43_time_lock(struct b43_wldev *dev)
575{
576 u32 macctl;
577
578 macctl = b43_read32(dev, B43_MMIO_MACCTL);
579 macctl |= B43_MACCTL_TBTTHOLD;
580 b43_write32(dev, B43_MMIO_MACCTL, macctl);
581 /* Commit the write */
582 b43_read32(dev, B43_MMIO_MACCTL);
583}
584
585static void b43_time_unlock(struct b43_wldev *dev)
586{
587 u32 macctl;
588
589 macctl = b43_read32(dev, B43_MMIO_MACCTL);
590 macctl &= ~B43_MACCTL_TBTTHOLD;
591 b43_write32(dev, B43_MMIO_MACCTL, macctl);
592 /* Commit the write */
593 b43_read32(dev, B43_MMIO_MACCTL);
594}
595
596static void b43_tsf_write_locked(struct b43_wldev *dev, u64 tsf)
597{
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100598 u32 low, high;
Michael Buesche4d6b792007-09-18 15:39:42 -0400599
Rafał Miłecki21d889d2011-05-18 02:06:38 +0200600 B43_WARN_ON(dev->dev->core_rev < 3);
Michael Buesche4d6b792007-09-18 15:39:42 -0400601
Michael Buesch3ebbbb52008-12-19 22:51:57 +0100602 low = tsf;
603 high = (tsf >> 32);
604 /* The hardware guarantees us an atomic write, if we
605 * write the low register first. */
606 b43_write32(dev, B43_MMIO_REV3PLUS_TSF_LOW, low);
607 mmiowb();
608 b43_write32(dev, B43_MMIO_REV3PLUS_TSF_HIGH, high);
609 mmiowb();
Michael Buesche4d6b792007-09-18 15:39:42 -0400610}
611
612void b43_tsf_write(struct b43_wldev *dev, u64 tsf)
613{
614 b43_time_lock(dev);
615 b43_tsf_write_locked(dev, tsf);
616 b43_time_unlock(dev);
617}
618
619static
John Daiker99da1852009-02-24 02:16:42 -0800620void b43_macfilter_set(struct b43_wldev *dev, u16 offset, const u8 *mac)
Michael Buesche4d6b792007-09-18 15:39:42 -0400621{
622 static const u8 zero_addr[ETH_ALEN] = { 0 };
623 u16 data;
624
625 if (!mac)
626 mac = zero_addr;
627
628 offset |= 0x0020;
629 b43_write16(dev, B43_MMIO_MACFILTER_CONTROL, offset);
630
631 data = mac[0];
632 data |= mac[1] << 8;
633 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
634 data = mac[2];
635 data |= mac[3] << 8;
636 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
637 data = mac[4];
638 data |= mac[5] << 8;
639 b43_write16(dev, B43_MMIO_MACFILTER_DATA, data);
640}
641
642static void b43_write_mac_bssid_templates(struct b43_wldev *dev)
643{
644 const u8 *mac;
645 const u8 *bssid;
646 u8 mac_bssid[ETH_ALEN * 2];
647 int i;
648 u32 tmp;
649
650 bssid = dev->wl->bssid;
651 mac = dev->wl->mac_addr;
652
653 b43_macfilter_set(dev, B43_MACFILTER_BSSID, bssid);
654
655 memcpy(mac_bssid, mac, ETH_ALEN);
656 memcpy(mac_bssid + ETH_ALEN, bssid, ETH_ALEN);
657
658 /* Write our MAC address and BSSID to template ram */
659 for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32)) {
660 tmp = (u32) (mac_bssid[i + 0]);
661 tmp |= (u32) (mac_bssid[i + 1]) << 8;
662 tmp |= (u32) (mac_bssid[i + 2]) << 16;
663 tmp |= (u32) (mac_bssid[i + 3]) << 24;
664 b43_ram_write(dev, 0x20 + i, tmp);
665 }
666}
667
Johannes Berg4150c572007-09-17 01:29:23 -0400668static void b43_upload_card_macaddress(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -0400669{
Michael Buesche4d6b792007-09-18 15:39:42 -0400670 b43_write_mac_bssid_templates(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400671 b43_macfilter_set(dev, B43_MACFILTER_SELF, dev->wl->mac_addr);
Michael Buesche4d6b792007-09-18 15:39:42 -0400672}
673
674static void b43_set_slot_time(struct b43_wldev *dev, u16 slot_time)
675{
676 /* slot_time is in usec. */
Larry Fingerb6c3f5b2010-02-02 10:08:19 -0600677 /* This test used to exit for all but a G PHY. */
678 if (b43_current_band(dev->wl) == IEEE80211_BAND_5GHZ)
Michael Buesche4d6b792007-09-18 15:39:42 -0400679 return;
Larry Fingerb6c3f5b2010-02-02 10:08:19 -0600680 b43_write16(dev, B43_MMIO_IFSSLOT, 510 + slot_time);
681 /* Shared memory location 0x0010 is the slot time and should be
682 * set to slot_time; however, this register is initially 0 and changing
683 * the value adversely affects the transmit rate for BCM4311
684 * devices. Until this behavior is unterstood, delete this step
685 *
686 * b43_shm_write16(dev, B43_SHM_SHARED, 0x0010, slot_time);
687 */
Michael Buesche4d6b792007-09-18 15:39:42 -0400688}
689
690static void b43_short_slot_timing_enable(struct b43_wldev *dev)
691{
692 b43_set_slot_time(dev, 9);
Michael Buesche4d6b792007-09-18 15:39:42 -0400693}
694
695static void b43_short_slot_timing_disable(struct b43_wldev *dev)
696{
697 b43_set_slot_time(dev, 20);
Michael Buesche4d6b792007-09-18 15:39:42 -0400698}
699
Michael Buesche4d6b792007-09-18 15:39:42 -0400700/* DummyTransmission function, as documented on
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200701 * http://bcm-v4.sipsolutions.net/802.11/DummyTransmission
Michael Buesche4d6b792007-09-18 15:39:42 -0400702 */
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200703void b43_dummy_transmission(struct b43_wldev *dev, bool ofdm, bool pa_on)
Michael Buesche4d6b792007-09-18 15:39:42 -0400704{
705 struct b43_phy *phy = &dev->phy;
706 unsigned int i, max_loop;
707 u16 value;
708 u32 buffer[5] = {
709 0x00000000,
710 0x00D40000,
711 0x00000000,
712 0x01000000,
713 0x00000000,
714 };
715
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200716 if (ofdm) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400717 max_loop = 0x1E;
718 buffer[0] = 0x000201CC;
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200719 } else {
Michael Buesche4d6b792007-09-18 15:39:42 -0400720 max_loop = 0xFA;
721 buffer[0] = 0x000B846E;
Michael Buesche4d6b792007-09-18 15:39:42 -0400722 }
723
724 for (i = 0; i < 5; i++)
725 b43_ram_write(dev, i * 4, buffer[i]);
726
Michael Buesche4d6b792007-09-18 15:39:42 -0400727 b43_write16(dev, 0x0568, 0x0000);
Rafał Miłecki21d889d2011-05-18 02:06:38 +0200728 if (dev->dev->core_rev < 11)
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200729 b43_write16(dev, 0x07C0, 0x0000);
730 else
731 b43_write16(dev, 0x07C0, 0x0100);
732 value = (ofdm ? 0x41 : 0x40);
Michael Buesche4d6b792007-09-18 15:39:42 -0400733 b43_write16(dev, 0x050C, value);
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200734 if ((phy->type == B43_PHYTYPE_N) || (phy->type == B43_PHYTYPE_LP))
735 b43_write16(dev, 0x0514, 0x1A02);
Michael Buesche4d6b792007-09-18 15:39:42 -0400736 b43_write16(dev, 0x0508, 0x0000);
737 b43_write16(dev, 0x050A, 0x0000);
738 b43_write16(dev, 0x054C, 0x0000);
739 b43_write16(dev, 0x056A, 0x0014);
740 b43_write16(dev, 0x0568, 0x0826);
741 b43_write16(dev, 0x0500, 0x0000);
Gábor Stefanik2f19c282009-08-13 16:51:51 +0200742 if (!pa_on && (phy->type == B43_PHYTYPE_N)) {
743 //SPEC TODO
744 }
745
746 switch (phy->type) {
747 case B43_PHYTYPE_N:
748 b43_write16(dev, 0x0502, 0x00D0);
749 break;
750 case B43_PHYTYPE_LP:
751 b43_write16(dev, 0x0502, 0x0050);
752 break;
753 default:
754 b43_write16(dev, 0x0502, 0x0030);
755 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400756
757 if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
758 b43_radio_write16(dev, 0x0051, 0x0017);
759 for (i = 0x00; i < max_loop; i++) {
760 value = b43_read16(dev, 0x050E);
761 if (value & 0x0080)
762 break;
763 udelay(10);
764 }
765 for (i = 0x00; i < 0x0A; i++) {
766 value = b43_read16(dev, 0x050E);
767 if (value & 0x0400)
768 break;
769 udelay(10);
770 }
Larry Finger1d280dd2008-09-29 14:19:29 -0500771 for (i = 0x00; i < 0x19; i++) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400772 value = b43_read16(dev, 0x0690);
773 if (!(value & 0x0100))
774 break;
775 udelay(10);
776 }
777 if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
778 b43_radio_write16(dev, 0x0051, 0x0037);
779}
780
781static void key_write(struct b43_wldev *dev,
John Daiker99da1852009-02-24 02:16:42 -0800782 u8 index, u8 algorithm, const u8 *key)
Michael Buesche4d6b792007-09-18 15:39:42 -0400783{
784 unsigned int i;
785 u32 offset;
786 u16 value;
787 u16 kidx;
788
789 /* Key index/algo block */
790 kidx = b43_kidx_to_fw(dev, index);
791 value = ((kidx << 4) | algorithm);
792 b43_shm_write16(dev, B43_SHM_SHARED,
793 B43_SHM_SH_KEYIDXBLOCK + (kidx * 2), value);
794
795 /* Write the key to the Key Table Pointer offset */
796 offset = dev->ktp + (index * B43_SEC_KEYSIZE);
797 for (i = 0; i < B43_SEC_KEYSIZE; i += 2) {
798 value = key[i];
799 value |= (u16) (key[i + 1]) << 8;
800 b43_shm_write16(dev, B43_SHM_SHARED, offset + i, value);
801 }
802}
803
John Daiker99da1852009-02-24 02:16:42 -0800804static void keymac_write(struct b43_wldev *dev, u8 index, const u8 *addr)
Michael Buesche4d6b792007-09-18 15:39:42 -0400805{
806 u32 addrtmp[2] = { 0, 0, };
Michael Buesch66d2d082009-08-06 10:36:50 +0200807 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
Michael Buesche4d6b792007-09-18 15:39:42 -0400808
809 if (b43_new_kidx_api(dev))
Michael Buesch66d2d082009-08-06 10:36:50 +0200810 pairwise_keys_start = B43_NR_GROUP_KEYS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400811
Michael Buesch66d2d082009-08-06 10:36:50 +0200812 B43_WARN_ON(index < pairwise_keys_start);
813 /* We have four default TX keys and possibly four default RX keys.
Michael Buesche4d6b792007-09-18 15:39:42 -0400814 * Physical mac 0 is mapped to physical key 4 or 8, depending
815 * on the firmware version.
816 * So we must adjust the index here.
817 */
Michael Buesch66d2d082009-08-06 10:36:50 +0200818 index -= pairwise_keys_start;
819 B43_WARN_ON(index >= B43_NR_PAIRWISE_KEYS);
Michael Buesche4d6b792007-09-18 15:39:42 -0400820
821 if (addr) {
822 addrtmp[0] = addr[0];
823 addrtmp[0] |= ((u32) (addr[1]) << 8);
824 addrtmp[0] |= ((u32) (addr[2]) << 16);
825 addrtmp[0] |= ((u32) (addr[3]) << 24);
826 addrtmp[1] = addr[4];
827 addrtmp[1] |= ((u32) (addr[5]) << 8);
828 }
829
Michael Buesch66d2d082009-08-06 10:36:50 +0200830 /* Receive match transmitter address (RCMTA) mechanism */
831 b43_shm_write32(dev, B43_SHM_RCMTA,
832 (index * 2) + 0, addrtmp[0]);
833 b43_shm_write16(dev, B43_SHM_RCMTA,
834 (index * 2) + 1, addrtmp[1]);
Michael Buesche4d6b792007-09-18 15:39:42 -0400835}
836
gregor kowski035d0242009-08-19 22:35:45 +0200837/* The ucode will use phase1 key with TEK key to decrypt rx packets.
838 * When a packet is received, the iv32 is checked.
839 * - if it doesn't the packet is returned without modification (and software
840 * decryption can be done). That's what happen when iv16 wrap.
841 * - if it does, the rc4 key is computed, and decryption is tried.
842 * Either it will success and B43_RX_MAC_DEC is returned,
843 * either it fails and B43_RX_MAC_DEC|B43_RX_MAC_DECERR is returned
844 * and the packet is not usable (it got modified by the ucode).
845 * So in order to never have B43_RX_MAC_DECERR, we should provide
846 * a iv32 and phase1key that match. Because we drop packets in case of
847 * B43_RX_MAC_DECERR, if we have a correct iv32 but a wrong phase1key, all
848 * packets will be lost without higher layer knowing (ie no resync possible
849 * until next wrap).
850 *
851 * NOTE : this should support 50 key like RCMTA because
852 * (B43_SHM_SH_KEYIDXBLOCK - B43_SHM_SH_TKIPTSCTTAK)/14 = 50
853 */
854static void rx_tkip_phase1_write(struct b43_wldev *dev, u8 index, u32 iv32,
855 u16 *phase1key)
856{
857 unsigned int i;
858 u32 offset;
859 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
860
861 if (!modparam_hwtkip)
862 return;
863
864 if (b43_new_kidx_api(dev))
865 pairwise_keys_start = B43_NR_GROUP_KEYS;
866
867 B43_WARN_ON(index < pairwise_keys_start);
868 /* We have four default TX keys and possibly four default RX keys.
869 * Physical mac 0 is mapped to physical key 4 or 8, depending
870 * on the firmware version.
871 * So we must adjust the index here.
872 */
873 index -= pairwise_keys_start;
874 B43_WARN_ON(index >= B43_NR_PAIRWISE_KEYS);
875
876 if (b43_debug(dev, B43_DBG_KEYS)) {
877 b43dbg(dev->wl, "rx_tkip_phase1_write : idx 0x%x, iv32 0x%x\n",
878 index, iv32);
879 }
880 /* Write the key to the RX tkip shared mem */
881 offset = B43_SHM_SH_TKIPTSCTTAK + index * (10 + 4);
882 for (i = 0; i < 10; i += 2) {
883 b43_shm_write16(dev, B43_SHM_SHARED, offset + i,
884 phase1key ? phase1key[i / 2] : 0);
885 }
886 b43_shm_write16(dev, B43_SHM_SHARED, offset + i, iv32);
887 b43_shm_write16(dev, B43_SHM_SHARED, offset + i + 2, iv32 >> 16);
888}
889
890static void b43_op_update_tkip_key(struct ieee80211_hw *hw,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100891 struct ieee80211_vif *vif,
892 struct ieee80211_key_conf *keyconf,
893 struct ieee80211_sta *sta,
894 u32 iv32, u16 *phase1key)
gregor kowski035d0242009-08-19 22:35:45 +0200895{
896 struct b43_wl *wl = hw_to_b43_wl(hw);
897 struct b43_wldev *dev;
898 int index = keyconf->hw_key_idx;
899
900 if (B43_WARN_ON(!modparam_hwtkip))
901 return;
902
Michael Buesch96869a32010-01-24 13:13:32 +0100903 /* This is only called from the RX path through mac80211, where
904 * our mutex is already locked. */
905 B43_WARN_ON(!mutex_is_locked(&wl->mutex));
gregor kowski035d0242009-08-19 22:35:45 +0200906 dev = wl->current_dev;
Michael Buesch96869a32010-01-24 13:13:32 +0100907 B43_WARN_ON(!dev || b43_status(dev) < B43_STAT_INITIALIZED);
gregor kowski035d0242009-08-19 22:35:45 +0200908
909 keymac_write(dev, index, NULL); /* First zero out mac to avoid race */
910
911 rx_tkip_phase1_write(dev, index, iv32, phase1key);
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100912 /* only pairwise TKIP keys are supported right now */
913 if (WARN_ON(!sta))
Michael Buesch96869a32010-01-24 13:13:32 +0100914 return;
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100915 keymac_write(dev, index, sta->addr);
gregor kowski035d0242009-08-19 22:35:45 +0200916}
917
Michael Buesche4d6b792007-09-18 15:39:42 -0400918static void do_key_write(struct b43_wldev *dev,
919 u8 index, u8 algorithm,
John Daiker99da1852009-02-24 02:16:42 -0800920 const u8 *key, size_t key_len, const u8 *mac_addr)
Michael Buesche4d6b792007-09-18 15:39:42 -0400921{
922 u8 buf[B43_SEC_KEYSIZE] = { 0, };
Michael Buesch66d2d082009-08-06 10:36:50 +0200923 u8 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
Michael Buesche4d6b792007-09-18 15:39:42 -0400924
925 if (b43_new_kidx_api(dev))
Michael Buesch66d2d082009-08-06 10:36:50 +0200926 pairwise_keys_start = B43_NR_GROUP_KEYS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400927
Michael Buesch66d2d082009-08-06 10:36:50 +0200928 B43_WARN_ON(index >= ARRAY_SIZE(dev->key));
Michael Buesche4d6b792007-09-18 15:39:42 -0400929 B43_WARN_ON(key_len > B43_SEC_KEYSIZE);
930
Michael Buesch66d2d082009-08-06 10:36:50 +0200931 if (index >= pairwise_keys_start)
Michael Buesche4d6b792007-09-18 15:39:42 -0400932 keymac_write(dev, index, NULL); /* First zero out mac. */
gregor kowski035d0242009-08-19 22:35:45 +0200933 if (algorithm == B43_SEC_ALGO_TKIP) {
934 /*
935 * We should provide an initial iv32, phase1key pair.
936 * We could start with iv32=0 and compute the corresponding
937 * phase1key, but this means calling ieee80211_get_tkip_key
938 * with a fake skb (or export other tkip function).
939 * Because we are lazy we hope iv32 won't start with
940 * 0xffffffff and let's b43_op_update_tkip_key provide a
941 * correct pair.
942 */
943 rx_tkip_phase1_write(dev, index, 0xffffffff, (u16*)buf);
944 } else if (index >= pairwise_keys_start) /* clear it */
945 rx_tkip_phase1_write(dev, index, 0, NULL);
Michael Buesche4d6b792007-09-18 15:39:42 -0400946 if (key)
947 memcpy(buf, key, key_len);
948 key_write(dev, index, algorithm, buf);
Michael Buesch66d2d082009-08-06 10:36:50 +0200949 if (index >= pairwise_keys_start)
Michael Buesche4d6b792007-09-18 15:39:42 -0400950 keymac_write(dev, index, mac_addr);
951
952 dev->key[index].algorithm = algorithm;
953}
954
955static int b43_key_write(struct b43_wldev *dev,
956 int index, u8 algorithm,
John Daiker99da1852009-02-24 02:16:42 -0800957 const u8 *key, size_t key_len,
958 const u8 *mac_addr,
Michael Buesche4d6b792007-09-18 15:39:42 -0400959 struct ieee80211_key_conf *keyconf)
960{
961 int i;
Michael Buesch66d2d082009-08-06 10:36:50 +0200962 int pairwise_keys_start;
Michael Buesche4d6b792007-09-18 15:39:42 -0400963
gregor kowski035d0242009-08-19 22:35:45 +0200964 /* For ALG_TKIP the key is encoded as a 256-bit (32 byte) data block:
965 * - Temporal Encryption Key (128 bits)
966 * - Temporal Authenticator Tx MIC Key (64 bits)
967 * - Temporal Authenticator Rx MIC Key (64 bits)
968 *
969 * Hardware only store TEK
970 */
971 if (algorithm == B43_SEC_ALGO_TKIP && key_len == 32)
972 key_len = 16;
Michael Buesche4d6b792007-09-18 15:39:42 -0400973 if (key_len > B43_SEC_KEYSIZE)
974 return -EINVAL;
Michael Buesch66d2d082009-08-06 10:36:50 +0200975 for (i = 0; i < ARRAY_SIZE(dev->key); i++) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400976 /* Check that we don't already have this key. */
977 B43_WARN_ON(dev->key[i].keyconf == keyconf);
978 }
979 if (index < 0) {
Michael Buesche808e582008-12-19 21:30:52 +0100980 /* Pairwise key. Get an empty slot for the key. */
Michael Buesche4d6b792007-09-18 15:39:42 -0400981 if (b43_new_kidx_api(dev))
Michael Buesch66d2d082009-08-06 10:36:50 +0200982 pairwise_keys_start = B43_NR_GROUP_KEYS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400983 else
Michael Buesch66d2d082009-08-06 10:36:50 +0200984 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
985 for (i = pairwise_keys_start;
986 i < pairwise_keys_start + B43_NR_PAIRWISE_KEYS;
987 i++) {
988 B43_WARN_ON(i >= ARRAY_SIZE(dev->key));
Michael Buesche4d6b792007-09-18 15:39:42 -0400989 if (!dev->key[i].keyconf) {
990 /* found empty */
991 index = i;
992 break;
993 }
994 }
995 if (index < 0) {
Michael Buesche808e582008-12-19 21:30:52 +0100996 b43warn(dev->wl, "Out of hardware key memory\n");
Michael Buesche4d6b792007-09-18 15:39:42 -0400997 return -ENOSPC;
998 }
999 } else
1000 B43_WARN_ON(index > 3);
1001
1002 do_key_write(dev, index, algorithm, key, key_len, mac_addr);
1003 if ((index <= 3) && !b43_new_kidx_api(dev)) {
1004 /* Default RX key */
1005 B43_WARN_ON(mac_addr);
1006 do_key_write(dev, index + 4, algorithm, key, key_len, NULL);
1007 }
1008 keyconf->hw_key_idx = index;
1009 dev->key[index].keyconf = keyconf;
1010
1011 return 0;
1012}
1013
1014static int b43_key_clear(struct b43_wldev *dev, int index)
1015{
Michael Buesch66d2d082009-08-06 10:36:50 +02001016 if (B43_WARN_ON((index < 0) || (index >= ARRAY_SIZE(dev->key))))
Michael Buesche4d6b792007-09-18 15:39:42 -04001017 return -EINVAL;
1018 do_key_write(dev, index, B43_SEC_ALGO_NONE,
1019 NULL, B43_SEC_KEYSIZE, NULL);
1020 if ((index <= 3) && !b43_new_kidx_api(dev)) {
1021 do_key_write(dev, index + 4, B43_SEC_ALGO_NONE,
1022 NULL, B43_SEC_KEYSIZE, NULL);
1023 }
1024 dev->key[index].keyconf = NULL;
1025
1026 return 0;
1027}
1028
1029static void b43_clear_keys(struct b43_wldev *dev)
1030{
Michael Buesch66d2d082009-08-06 10:36:50 +02001031 int i, count;
Michael Buesche4d6b792007-09-18 15:39:42 -04001032
Michael Buesch66d2d082009-08-06 10:36:50 +02001033 if (b43_new_kidx_api(dev))
1034 count = B43_NR_GROUP_KEYS + B43_NR_PAIRWISE_KEYS;
1035 else
1036 count = B43_NR_GROUP_KEYS * 2 + B43_NR_PAIRWISE_KEYS;
1037 for (i = 0; i < count; i++)
Michael Buesche4d6b792007-09-18 15:39:42 -04001038 b43_key_clear(dev, i);
1039}
1040
Michael Buesch9cf7f242008-12-19 20:24:30 +01001041static void b43_dump_keymemory(struct b43_wldev *dev)
1042{
Michael Buesch66d2d082009-08-06 10:36:50 +02001043 unsigned int i, index, count, offset, pairwise_keys_start;
Michael Buesch9cf7f242008-12-19 20:24:30 +01001044 u8 mac[ETH_ALEN];
1045 u16 algo;
1046 u32 rcmta0;
1047 u16 rcmta1;
1048 u64 hf;
1049 struct b43_key *key;
1050
1051 if (!b43_debug(dev, B43_DBG_KEYS))
1052 return;
1053
1054 hf = b43_hf_read(dev);
1055 b43dbg(dev->wl, "Hardware key memory dump: USEDEFKEYS=%u\n",
1056 !!(hf & B43_HF_USEDEFKEYS));
Michael Buesch66d2d082009-08-06 10:36:50 +02001057 if (b43_new_kidx_api(dev)) {
1058 pairwise_keys_start = B43_NR_GROUP_KEYS;
1059 count = B43_NR_GROUP_KEYS + B43_NR_PAIRWISE_KEYS;
1060 } else {
1061 pairwise_keys_start = B43_NR_GROUP_KEYS * 2;
1062 count = B43_NR_GROUP_KEYS * 2 + B43_NR_PAIRWISE_KEYS;
1063 }
1064 for (index = 0; index < count; index++) {
Michael Buesch9cf7f242008-12-19 20:24:30 +01001065 key = &(dev->key[index]);
1066 printk(KERN_DEBUG "Key slot %02u: %s",
1067 index, (key->keyconf == NULL) ? " " : "*");
1068 offset = dev->ktp + (index * B43_SEC_KEYSIZE);
1069 for (i = 0; i < B43_SEC_KEYSIZE; i += 2) {
1070 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, offset + i);
1071 printk("%02X%02X", (tmp & 0xFF), ((tmp >> 8) & 0xFF));
1072 }
1073
1074 algo = b43_shm_read16(dev, B43_SHM_SHARED,
1075 B43_SHM_SH_KEYIDXBLOCK + (index * 2));
1076 printk(" Algo: %04X/%02X", algo, key->algorithm);
1077
Michael Buesch66d2d082009-08-06 10:36:50 +02001078 if (index >= pairwise_keys_start) {
gregor kowski035d0242009-08-19 22:35:45 +02001079 if (key->algorithm == B43_SEC_ALGO_TKIP) {
1080 printk(" TKIP: ");
1081 offset = B43_SHM_SH_TKIPTSCTTAK + (index - 4) * (10 + 4);
1082 for (i = 0; i < 14; i += 2) {
1083 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, offset + i);
1084 printk("%02X%02X", (tmp & 0xFF), ((tmp >> 8) & 0xFF));
1085 }
1086 }
Michael Buesch9cf7f242008-12-19 20:24:30 +01001087 rcmta0 = b43_shm_read32(dev, B43_SHM_RCMTA,
Michael Buesch66d2d082009-08-06 10:36:50 +02001088 ((index - pairwise_keys_start) * 2) + 0);
Michael Buesch9cf7f242008-12-19 20:24:30 +01001089 rcmta1 = b43_shm_read16(dev, B43_SHM_RCMTA,
Michael Buesch66d2d082009-08-06 10:36:50 +02001090 ((index - pairwise_keys_start) * 2) + 1);
Michael Buesch9cf7f242008-12-19 20:24:30 +01001091 *((__le32 *)(&mac[0])) = cpu_to_le32(rcmta0);
1092 *((__le16 *)(&mac[4])) = cpu_to_le16(rcmta1);
Johannes Berge91d8332009-07-15 17:21:41 +02001093 printk(" MAC: %pM", mac);
Michael Buesch9cf7f242008-12-19 20:24:30 +01001094 } else
1095 printk(" DEFAULT KEY");
1096 printk("\n");
1097 }
1098}
1099
Michael Buesche4d6b792007-09-18 15:39:42 -04001100void b43_power_saving_ctl_bits(struct b43_wldev *dev, unsigned int ps_flags)
1101{
1102 u32 macctl;
1103 u16 ucstat;
1104 bool hwps;
1105 bool awake;
1106 int i;
1107
1108 B43_WARN_ON((ps_flags & B43_PS_ENABLED) &&
1109 (ps_flags & B43_PS_DISABLED));
1110 B43_WARN_ON((ps_flags & B43_PS_AWAKE) && (ps_flags & B43_PS_ASLEEP));
1111
1112 if (ps_flags & B43_PS_ENABLED) {
1113 hwps = 1;
1114 } else if (ps_flags & B43_PS_DISABLED) {
1115 hwps = 0;
1116 } else {
1117 //TODO: If powersave is not off and FIXME is not set and we are not in adhoc
1118 // and thus is not an AP and we are associated, set bit 25
1119 }
1120 if (ps_flags & B43_PS_AWAKE) {
1121 awake = 1;
1122 } else if (ps_flags & B43_PS_ASLEEP) {
1123 awake = 0;
1124 } else {
1125 //TODO: If the device is awake or this is an AP, or we are scanning, or FIXME,
1126 // or we are associated, or FIXME, or the latest PS-Poll packet sent was
1127 // successful, set bit26
1128 }
1129
1130/* FIXME: For now we force awake-on and hwps-off */
1131 hwps = 0;
1132 awake = 1;
1133
1134 macctl = b43_read32(dev, B43_MMIO_MACCTL);
1135 if (hwps)
1136 macctl |= B43_MACCTL_HWPS;
1137 else
1138 macctl &= ~B43_MACCTL_HWPS;
1139 if (awake)
1140 macctl |= B43_MACCTL_AWAKE;
1141 else
1142 macctl &= ~B43_MACCTL_AWAKE;
1143 b43_write32(dev, B43_MMIO_MACCTL, macctl);
1144 /* Commit write */
1145 b43_read32(dev, B43_MMIO_MACCTL);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02001146 if (awake && dev->dev->core_rev >= 5) {
Michael Buesche4d6b792007-09-18 15:39:42 -04001147 /* Wait for the microcode to wake up. */
1148 for (i = 0; i < 100; i++) {
1149 ucstat = b43_shm_read16(dev, B43_SHM_SHARED,
1150 B43_SHM_SH_UCODESTAT);
1151 if (ucstat != B43_SHM_SH_UCODESTAT_SLEEP)
1152 break;
1153 udelay(10);
1154 }
1155 }
1156}
1157
Rafał Miłecki42c9a452011-07-06 15:45:27 +02001158#ifdef CONFIG_B43_BCMA
Rafał Miłecki49173592011-07-17 01:06:06 +02001159static void b43_bcma_phy_reset(struct b43_wldev *dev)
1160{
1161 u32 flags;
1162
1163 /* Put PHY into reset */
1164 flags = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
1165 flags |= B43_BCMA_IOCTL_PHY_RESET;
1166 flags |= B43_BCMA_IOCTL_PHY_BW_20MHZ; /* Make 20 MHz def */
1167 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, flags);
1168 udelay(2);
1169
1170 /* Take PHY out of reset */
1171 flags = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
1172 flags &= ~B43_BCMA_IOCTL_PHY_RESET;
1173 flags |= BCMA_IOCTL_FGC;
1174 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, flags);
1175 udelay(1);
1176
1177 /* Do not force clock anymore */
1178 flags = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
1179 flags &= ~BCMA_IOCTL_FGC;
1180 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, flags);
1181 udelay(1);
1182}
1183
Rafał Miłecki42c9a452011-07-06 15:45:27 +02001184static void b43_bcma_wireless_core_reset(struct b43_wldev *dev, bool gmode)
1185{
Rafał Miłecki49173592011-07-17 01:06:06 +02001186 b43_device_enable(dev, B43_BCMA_IOCTL_PHY_CLKEN);
1187 bcma_core_set_clockmode(dev->dev->bdev, BCMA_CLKMODE_FAST);
1188 b43_bcma_phy_reset(dev);
1189 bcma_core_pll_ctl(dev->dev->bdev, 0x300, 0x3000000, true);
Rafał Miłecki42c9a452011-07-06 15:45:27 +02001190}
1191#endif
1192
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001193static void b43_ssb_wireless_core_reset(struct b43_wldev *dev, bool gmode)
Michael Buesche4d6b792007-09-18 15:39:42 -04001194{
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001195 struct ssb_device *sdev = dev->dev->sdev;
Michael Buesche4d6b792007-09-18 15:39:42 -04001196 u32 tmslow;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001197 u32 flags = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04001198
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001199 if (gmode)
1200 flags |= B43_TMSLOW_GMODE;
Michael Buesche4d6b792007-09-18 15:39:42 -04001201 flags |= B43_TMSLOW_PHYCLKEN;
1202 flags |= B43_TMSLOW_PHYRESET;
Rafał Miłecki42ab1352010-12-09 20:56:01 +01001203 if (dev->phy.type == B43_PHYTYPE_N)
1204 flags |= B43_TMSLOW_PHY_BANDWIDTH_20MHZ; /* Make 20 MHz def */
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02001205 b43_device_enable(dev, flags);
Michael Buesche4d6b792007-09-18 15:39:42 -04001206 msleep(2); /* Wait for the PLL to turn on. */
1207
1208 /* Now take the PHY out of Reset again */
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001209 tmslow = ssb_read32(sdev, SSB_TMSLOW);
Michael Buesche4d6b792007-09-18 15:39:42 -04001210 tmslow |= SSB_TMSLOW_FGC;
1211 tmslow &= ~B43_TMSLOW_PHYRESET;
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001212 ssb_write32(sdev, SSB_TMSLOW, tmslow);
1213 ssb_read32(sdev, SSB_TMSLOW); /* flush */
Michael Buesche4d6b792007-09-18 15:39:42 -04001214 msleep(1);
1215 tmslow &= ~SSB_TMSLOW_FGC;
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02001216 ssb_write32(sdev, SSB_TMSLOW, tmslow);
1217 ssb_read32(sdev, SSB_TMSLOW); /* flush */
Michael Buesche4d6b792007-09-18 15:39:42 -04001218 msleep(1);
Rafał Miłecki14952982011-05-17 18:57:28 +02001219}
1220
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001221void b43_wireless_core_reset(struct b43_wldev *dev, bool gmode)
Rafał Miłecki14952982011-05-17 18:57:28 +02001222{
1223 u32 macctl;
1224
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02001225 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02001226#ifdef CONFIG_B43_BCMA
1227 case B43_BUS_BCMA:
1228 b43_bcma_wireless_core_reset(dev, gmode);
1229 break;
1230#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02001231#ifdef CONFIG_B43_SSB
1232 case B43_BUS_SSB:
1233 b43_ssb_wireless_core_reset(dev, gmode);
1234 break;
1235#endif
1236 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001237
Michael Bueschfb111372008-09-02 13:00:34 +02001238 /* Turn Analog ON, but only if we already know the PHY-type.
1239 * This protects against very early setup where we don't know the
1240 * PHY-type, yet. wireless_core_reset will be called once again later,
1241 * when we know the PHY-type. */
1242 if (dev->phy.ops)
Michael Bueschcb24f572008-09-03 12:12:20 +02001243 dev->phy.ops->switch_analog(dev, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04001244
1245 macctl = b43_read32(dev, B43_MMIO_MACCTL);
1246 macctl &= ~B43_MACCTL_GMODE;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02001247 if (gmode)
Michael Buesche4d6b792007-09-18 15:39:42 -04001248 macctl |= B43_MACCTL_GMODE;
1249 macctl |= B43_MACCTL_IHR_ENABLED;
1250 b43_write32(dev, B43_MMIO_MACCTL, macctl);
1251}
1252
1253static void handle_irq_transmit_status(struct b43_wldev *dev)
1254{
1255 u32 v0, v1;
1256 u16 tmp;
1257 struct b43_txstatus stat;
1258
1259 while (1) {
1260 v0 = b43_read32(dev, B43_MMIO_XMITSTAT_0);
1261 if (!(v0 & 0x00000001))
1262 break;
1263 v1 = b43_read32(dev, B43_MMIO_XMITSTAT_1);
1264
1265 stat.cookie = (v0 >> 16);
1266 stat.seq = (v1 & 0x0000FFFF);
1267 stat.phy_stat = ((v1 & 0x00FF0000) >> 16);
1268 tmp = (v0 & 0x0000FFFF);
1269 stat.frame_count = ((tmp & 0xF000) >> 12);
1270 stat.rts_count = ((tmp & 0x0F00) >> 8);
1271 stat.supp_reason = ((tmp & 0x001C) >> 2);
1272 stat.pm_indicated = !!(tmp & 0x0080);
1273 stat.intermediate = !!(tmp & 0x0040);
1274 stat.for_ampdu = !!(tmp & 0x0020);
1275 stat.acked = !!(tmp & 0x0002);
1276
1277 b43_handle_txstatus(dev, &stat);
1278 }
1279}
1280
1281static void drain_txstatus_queue(struct b43_wldev *dev)
1282{
1283 u32 dummy;
1284
Rafał Miłecki21d889d2011-05-18 02:06:38 +02001285 if (dev->dev->core_rev < 5)
Michael Buesche4d6b792007-09-18 15:39:42 -04001286 return;
1287 /* Read all entries from the microcode TXstatus FIFO
1288 * and throw them away.
1289 */
1290 while (1) {
1291 dummy = b43_read32(dev, B43_MMIO_XMITSTAT_0);
1292 if (!(dummy & 0x00000001))
1293 break;
1294 dummy = b43_read32(dev, B43_MMIO_XMITSTAT_1);
1295 }
1296}
1297
1298static u32 b43_jssi_read(struct b43_wldev *dev)
1299{
1300 u32 val = 0;
1301
1302 val = b43_shm_read16(dev, B43_SHM_SHARED, 0x08A);
1303 val <<= 16;
1304 val |= b43_shm_read16(dev, B43_SHM_SHARED, 0x088);
1305
1306 return val;
1307}
1308
1309static void b43_jssi_write(struct b43_wldev *dev, u32 jssi)
1310{
1311 b43_shm_write16(dev, B43_SHM_SHARED, 0x088, (jssi & 0x0000FFFF));
1312 b43_shm_write16(dev, B43_SHM_SHARED, 0x08A, (jssi & 0xFFFF0000) >> 16);
1313}
1314
1315static void b43_generate_noise_sample(struct b43_wldev *dev)
1316{
1317 b43_jssi_write(dev, 0x7F7F7F7F);
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01001318 b43_write32(dev, B43_MMIO_MACCMD,
1319 b43_read32(dev, B43_MMIO_MACCMD) | B43_MACCMD_BGNOISE);
Michael Buesche4d6b792007-09-18 15:39:42 -04001320}
1321
1322static void b43_calculate_link_quality(struct b43_wldev *dev)
1323{
1324 /* Top half of Link Quality calculation. */
1325
Michael Bueschef1a6282008-08-27 18:53:02 +02001326 if (dev->phy.type != B43_PHYTYPE_G)
1327 return;
Michael Buesche4d6b792007-09-18 15:39:42 -04001328 if (dev->noisecalc.calculation_running)
1329 return;
Michael Buesche4d6b792007-09-18 15:39:42 -04001330 dev->noisecalc.calculation_running = 1;
1331 dev->noisecalc.nr_samples = 0;
1332
1333 b43_generate_noise_sample(dev);
1334}
1335
1336static void handle_irq_noise(struct b43_wldev *dev)
1337{
Michael Bueschef1a6282008-08-27 18:53:02 +02001338 struct b43_phy_g *phy = dev->phy.g;
Michael Buesche4d6b792007-09-18 15:39:42 -04001339 u16 tmp;
1340 u8 noise[4];
1341 u8 i, j;
1342 s32 average;
1343
1344 /* Bottom half of Link Quality calculation. */
1345
Michael Bueschef1a6282008-08-27 18:53:02 +02001346 if (dev->phy.type != B43_PHYTYPE_G)
1347 return;
1348
Michael Buesch98a3b2f2008-06-12 12:36:29 +02001349 /* Possible race condition: It might be possible that the user
1350 * changed to a different channel in the meantime since we
1351 * started the calculation. We ignore that fact, since it's
1352 * not really that much of a problem. The background noise is
1353 * an estimation only anyway. Slightly wrong results will get damped
1354 * by the averaging of the 8 sample rounds. Additionally the
1355 * value is shortlived. So it will be replaced by the next noise
1356 * calculation round soon. */
1357
Michael Buesche4d6b792007-09-18 15:39:42 -04001358 B43_WARN_ON(!dev->noisecalc.calculation_running);
Michael Buesch1a094042007-09-20 11:13:40 -07001359 *((__le32 *)noise) = cpu_to_le32(b43_jssi_read(dev));
Michael Buesche4d6b792007-09-18 15:39:42 -04001360 if (noise[0] == 0x7F || noise[1] == 0x7F ||
1361 noise[2] == 0x7F || noise[3] == 0x7F)
1362 goto generate_new;
1363
1364 /* Get the noise samples. */
1365 B43_WARN_ON(dev->noisecalc.nr_samples >= 8);
1366 i = dev->noisecalc.nr_samples;
Harvey Harrisoncdbf0842008-05-02 13:47:48 -07001367 noise[0] = clamp_val(noise[0], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1368 noise[1] = clamp_val(noise[1], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1369 noise[2] = clamp_val(noise[2], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
1370 noise[3] = clamp_val(noise[3], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04001371 dev->noisecalc.samples[i][0] = phy->nrssi_lt[noise[0]];
1372 dev->noisecalc.samples[i][1] = phy->nrssi_lt[noise[1]];
1373 dev->noisecalc.samples[i][2] = phy->nrssi_lt[noise[2]];
1374 dev->noisecalc.samples[i][3] = phy->nrssi_lt[noise[3]];
1375 dev->noisecalc.nr_samples++;
1376 if (dev->noisecalc.nr_samples == 8) {
1377 /* Calculate the Link Quality by the noise samples. */
1378 average = 0;
1379 for (i = 0; i < 8; i++) {
1380 for (j = 0; j < 4; j++)
1381 average += dev->noisecalc.samples[i][j];
1382 }
1383 average /= (8 * 4);
1384 average *= 125;
1385 average += 64;
1386 average /= 128;
1387 tmp = b43_shm_read16(dev, B43_SHM_SHARED, 0x40C);
1388 tmp = (tmp / 128) & 0x1F;
1389 if (tmp >= 8)
1390 average += 2;
1391 else
1392 average -= 25;
1393 if (tmp == 8)
1394 average -= 72;
1395 else
1396 average -= 48;
1397
1398 dev->stats.link_noise = average;
Michael Buesche4d6b792007-09-18 15:39:42 -04001399 dev->noisecalc.calculation_running = 0;
1400 return;
1401 }
Michael Buesch98a3b2f2008-06-12 12:36:29 +02001402generate_new:
Michael Buesche4d6b792007-09-18 15:39:42 -04001403 b43_generate_noise_sample(dev);
1404}
1405
1406static void handle_irq_tbtt_indication(struct b43_wldev *dev)
1407{
Johannes Berg05c914f2008-09-11 00:01:58 +02001408 if (b43_is_mode(dev->wl, NL80211_IFTYPE_AP)) {
Michael Buesche4d6b792007-09-18 15:39:42 -04001409 ///TODO: PS TBTT
1410 } else {
1411 if (1 /*FIXME: the last PSpoll frame was sent successfully */ )
1412 b43_power_saving_ctl_bits(dev, 0);
1413 }
Johannes Berg05c914f2008-09-11 00:01:58 +02001414 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC))
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01001415 dev->dfq_valid = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04001416}
1417
1418static void handle_irq_atim_end(struct b43_wldev *dev)
1419{
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01001420 if (dev->dfq_valid) {
1421 b43_write32(dev, B43_MMIO_MACCMD,
1422 b43_read32(dev, B43_MMIO_MACCMD)
1423 | B43_MACCMD_DFQ_VALID);
1424 dev->dfq_valid = 0;
1425 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001426}
1427
1428static void handle_irq_pmq(struct b43_wldev *dev)
1429{
1430 u32 tmp;
1431
1432 //TODO: AP mode.
1433
1434 while (1) {
1435 tmp = b43_read32(dev, B43_MMIO_PS_STATUS);
1436 if (!(tmp & 0x00000008))
1437 break;
1438 }
1439 /* 16bit write is odd, but correct. */
1440 b43_write16(dev, B43_MMIO_PS_STATUS, 0x0002);
1441}
1442
1443static void b43_write_template_common(struct b43_wldev *dev,
John Daiker99da1852009-02-24 02:16:42 -08001444 const u8 *data, u16 size,
Michael Buesche4d6b792007-09-18 15:39:42 -04001445 u16 ram_offset,
1446 u16 shm_size_offset, u8 rate)
1447{
1448 u32 i, tmp;
1449 struct b43_plcp_hdr4 plcp;
1450
1451 plcp.data = 0;
1452 b43_generate_plcp_hdr(&plcp, size + FCS_LEN, rate);
1453 b43_ram_write(dev, ram_offset, le32_to_cpu(plcp.data));
1454 ram_offset += sizeof(u32);
1455 /* The PLCP is 6 bytes long, but we only wrote 4 bytes, yet.
1456 * So leave the first two bytes of the next write blank.
1457 */
1458 tmp = (u32) (data[0]) << 16;
1459 tmp |= (u32) (data[1]) << 24;
1460 b43_ram_write(dev, ram_offset, tmp);
1461 ram_offset += sizeof(u32);
1462 for (i = 2; i < size; i += sizeof(u32)) {
1463 tmp = (u32) (data[i + 0]);
1464 if (i + 1 < size)
1465 tmp |= (u32) (data[i + 1]) << 8;
1466 if (i + 2 < size)
1467 tmp |= (u32) (data[i + 2]) << 16;
1468 if (i + 3 < size)
1469 tmp |= (u32) (data[i + 3]) << 24;
1470 b43_ram_write(dev, ram_offset + i - 2, tmp);
1471 }
1472 b43_shm_write16(dev, B43_SHM_SHARED, shm_size_offset,
1473 size + sizeof(struct b43_plcp_hdr6));
1474}
1475
Michael Buesch5042c502008-04-05 15:05:00 +02001476/* Check if the use of the antenna that ieee80211 told us to
1477 * use is possible. This will fall back to DEFAULT.
1478 * "antenna_nr" is the antenna identifier we got from ieee80211. */
1479u8 b43_ieee80211_antenna_sanitize(struct b43_wldev *dev,
1480 u8 antenna_nr)
1481{
1482 u8 antenna_mask;
1483
1484 if (antenna_nr == 0) {
1485 /* Zero means "use default antenna". That's always OK. */
1486 return 0;
1487 }
1488
1489 /* Get the mask of available antennas. */
1490 if (dev->phy.gmode)
Rafał Miłecki05814832011-05-18 02:06:39 +02001491 antenna_mask = dev->dev->bus_sprom->ant_available_bg;
Michael Buesch5042c502008-04-05 15:05:00 +02001492 else
Rafał Miłecki05814832011-05-18 02:06:39 +02001493 antenna_mask = dev->dev->bus_sprom->ant_available_a;
Michael Buesch5042c502008-04-05 15:05:00 +02001494
1495 if (!(antenna_mask & (1 << (antenna_nr - 1)))) {
1496 /* This antenna is not available. Fall back to default. */
1497 return 0;
1498 }
1499
1500 return antenna_nr;
1501}
1502
Michael Buesch5042c502008-04-05 15:05:00 +02001503/* Convert a b43 antenna number value to the PHY TX control value. */
1504static u16 b43_antenna_to_phyctl(int antenna)
1505{
1506 switch (antenna) {
1507 case B43_ANTENNA0:
1508 return B43_TXH_PHY_ANT0;
1509 case B43_ANTENNA1:
1510 return B43_TXH_PHY_ANT1;
1511 case B43_ANTENNA2:
1512 return B43_TXH_PHY_ANT2;
1513 case B43_ANTENNA3:
1514 return B43_TXH_PHY_ANT3;
Gábor Stefanik64e368b2009-08-27 22:49:49 +02001515 case B43_ANTENNA_AUTO0:
1516 case B43_ANTENNA_AUTO1:
Michael Buesch5042c502008-04-05 15:05:00 +02001517 return B43_TXH_PHY_ANT01AUTO;
1518 }
1519 B43_WARN_ON(1);
1520 return 0;
1521}
1522
Michael Buesche4d6b792007-09-18 15:39:42 -04001523static void b43_write_beacon_template(struct b43_wldev *dev,
1524 u16 ram_offset,
Michael Buesch5042c502008-04-05 15:05:00 +02001525 u16 shm_size_offset)
Michael Buesche4d6b792007-09-18 15:39:42 -04001526{
Michael Buesch47f76ca2007-12-27 22:15:11 +01001527 unsigned int i, len, variable_len;
Michael Buesche66fee62007-12-26 17:47:10 +01001528 const struct ieee80211_mgmt *bcn;
1529 const u8 *ie;
1530 bool tim_found = 0;
Michael Buesch5042c502008-04-05 15:05:00 +02001531 unsigned int rate;
1532 u16 ctl;
1533 int antenna;
Johannes Berge039fa42008-05-15 12:55:29 +02001534 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(dev->wl->current_beacon);
Michael Buesche4d6b792007-09-18 15:39:42 -04001535
Michael Buesche66fee62007-12-26 17:47:10 +01001536 bcn = (const struct ieee80211_mgmt *)(dev->wl->current_beacon->data);
1537 len = min((size_t) dev->wl->current_beacon->len,
Michael Buesche4d6b792007-09-18 15:39:42 -04001538 0x200 - sizeof(struct b43_plcp_hdr6));
Johannes Berge039fa42008-05-15 12:55:29 +02001539 rate = ieee80211_get_tx_rate(dev->wl->hw, info)->hw_value;
Michael Buesche66fee62007-12-26 17:47:10 +01001540
1541 b43_write_template_common(dev, (const u8 *)bcn,
Michael Buesche4d6b792007-09-18 15:39:42 -04001542 len, ram_offset, shm_size_offset, rate);
Michael Buesche66fee62007-12-26 17:47:10 +01001543
Michael Buesch5042c502008-04-05 15:05:00 +02001544 /* Write the PHY TX control parameters. */
Johannes Berg0f4ac382008-10-09 12:18:04 +02001545 antenna = B43_ANTENNA_DEFAULT;
Michael Buesch5042c502008-04-05 15:05:00 +02001546 antenna = b43_antenna_to_phyctl(antenna);
1547 ctl = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL);
1548 /* We can't send beacons with short preamble. Would get PHY errors. */
1549 ctl &= ~B43_TXH_PHY_SHORTPRMBL;
1550 ctl &= ~B43_TXH_PHY_ANT;
1551 ctl &= ~B43_TXH_PHY_ENC;
1552 ctl |= antenna;
1553 if (b43_is_cck_rate(rate))
1554 ctl |= B43_TXH_PHY_ENC_CCK;
1555 else
1556 ctl |= B43_TXH_PHY_ENC_OFDM;
1557 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL, ctl);
1558
Michael Buesche66fee62007-12-26 17:47:10 +01001559 /* Find the position of the TIM and the DTIM_period value
1560 * and write them to SHM. */
1561 ie = bcn->u.beacon.variable;
Michael Buesch47f76ca2007-12-27 22:15:11 +01001562 variable_len = len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
1563 for (i = 0; i < variable_len - 2; ) {
Michael Buesche66fee62007-12-26 17:47:10 +01001564 uint8_t ie_id, ie_len;
1565
1566 ie_id = ie[i];
1567 ie_len = ie[i + 1];
1568 if (ie_id == 5) {
1569 u16 tim_position;
1570 u16 dtim_period;
1571 /* This is the TIM Information Element */
1572
1573 /* Check whether the ie_len is in the beacon data range. */
Michael Buesch47f76ca2007-12-27 22:15:11 +01001574 if (variable_len < ie_len + 2 + i)
Michael Buesche66fee62007-12-26 17:47:10 +01001575 break;
1576 /* A valid TIM is at least 4 bytes long. */
1577 if (ie_len < 4)
1578 break;
1579 tim_found = 1;
1580
1581 tim_position = sizeof(struct b43_plcp_hdr6);
1582 tim_position += offsetof(struct ieee80211_mgmt, u.beacon.variable);
1583 tim_position += i;
1584
1585 dtim_period = ie[i + 3];
1586
1587 b43_shm_write16(dev, B43_SHM_SHARED,
1588 B43_SHM_SH_TIMBPOS, tim_position);
1589 b43_shm_write16(dev, B43_SHM_SHARED,
1590 B43_SHM_SH_DTIMPER, dtim_period);
1591 break;
1592 }
1593 i += ie_len + 2;
1594 }
1595 if (!tim_found) {
Johannes Berg04dea132008-05-20 12:10:49 +02001596 /*
1597 * If ucode wants to modify TIM do it behind the beacon, this
1598 * will happen, for example, when doing mesh networking.
1599 */
1600 b43_shm_write16(dev, B43_SHM_SHARED,
1601 B43_SHM_SH_TIMBPOS,
1602 len + sizeof(struct b43_plcp_hdr6));
1603 b43_shm_write16(dev, B43_SHM_SHARED,
1604 B43_SHM_SH_DTIMPER, 0);
1605 }
1606 b43dbg(dev->wl, "Updated beacon template at 0x%x\n", ram_offset);
Michael Buesche4d6b792007-09-18 15:39:42 -04001607}
1608
Michael Buesch6b4bec012008-05-20 12:16:28 +02001609static void b43_upload_beacon0(struct b43_wldev *dev)
1610{
1611 struct b43_wl *wl = dev->wl;
1612
1613 if (wl->beacon0_uploaded)
1614 return;
1615 b43_write_beacon_template(dev, 0x68, 0x18);
Michael Buesch6b4bec012008-05-20 12:16:28 +02001616 wl->beacon0_uploaded = 1;
1617}
1618
1619static void b43_upload_beacon1(struct b43_wldev *dev)
1620{
1621 struct b43_wl *wl = dev->wl;
1622
1623 if (wl->beacon1_uploaded)
1624 return;
1625 b43_write_beacon_template(dev, 0x468, 0x1A);
1626 wl->beacon1_uploaded = 1;
1627}
1628
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001629static void handle_irq_beacon(struct b43_wldev *dev)
1630{
1631 struct b43_wl *wl = dev->wl;
1632 u32 cmd, beacon0_valid, beacon1_valid;
1633
Johannes Berg05c914f2008-09-11 00:01:58 +02001634 if (!b43_is_mode(wl, NL80211_IFTYPE_AP) &&
1635 !b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT))
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001636 return;
1637
1638 /* This is the bottom half of the asynchronous beacon update. */
1639
1640 /* Ignore interrupt in the future. */
Michael Buesch13790722009-04-08 21:26:27 +02001641 dev->irq_mask &= ~B43_IRQ_BEACON;
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001642
1643 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1644 beacon0_valid = (cmd & B43_MACCMD_BEACON0_VALID);
1645 beacon1_valid = (cmd & B43_MACCMD_BEACON1_VALID);
1646
1647 /* Schedule interrupt manually, if busy. */
1648 if (beacon0_valid && beacon1_valid) {
1649 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, B43_IRQ_BEACON);
Michael Buesch13790722009-04-08 21:26:27 +02001650 dev->irq_mask |= B43_IRQ_BEACON;
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001651 return;
1652 }
1653
Michael Buesch6b4bec012008-05-20 12:16:28 +02001654 if (unlikely(wl->beacon_templates_virgin)) {
1655 /* We never uploaded a beacon before.
1656 * Upload both templates now, but only mark one valid. */
1657 wl->beacon_templates_virgin = 0;
1658 b43_upload_beacon0(dev);
1659 b43_upload_beacon1(dev);
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001660 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1661 cmd |= B43_MACCMD_BEACON0_VALID;
1662 b43_write32(dev, B43_MMIO_MACCMD, cmd);
Michael Buesch6b4bec012008-05-20 12:16:28 +02001663 } else {
1664 if (!beacon0_valid) {
1665 b43_upload_beacon0(dev);
1666 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1667 cmd |= B43_MACCMD_BEACON0_VALID;
1668 b43_write32(dev, B43_MMIO_MACCMD, cmd);
1669 } else if (!beacon1_valid) {
1670 b43_upload_beacon1(dev);
1671 cmd = b43_read32(dev, B43_MMIO_MACCMD);
1672 cmd |= B43_MACCMD_BEACON1_VALID;
1673 b43_write32(dev, B43_MMIO_MACCMD, cmd);
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001674 }
Michael Bueschc97a4cc2008-04-05 15:02:09 +02001675 }
1676}
1677
Michael Buesch36dbd952009-09-04 22:51:29 +02001678static void b43_do_beacon_update_trigger_work(struct b43_wldev *dev)
1679{
1680 u32 old_irq_mask = dev->irq_mask;
1681
1682 /* update beacon right away or defer to irq */
1683 handle_irq_beacon(dev);
1684 if (old_irq_mask != dev->irq_mask) {
1685 /* The handler updated the IRQ mask. */
1686 B43_WARN_ON(!dev->irq_mask);
1687 if (b43_read32(dev, B43_MMIO_GEN_IRQ_MASK)) {
1688 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
1689 } else {
1690 /* Device interrupts are currently disabled. That means
1691 * we just ran the hardirq handler and scheduled the
1692 * IRQ thread. The thread will write the IRQ mask when
1693 * it finished, so there's nothing to do here. Writing
1694 * the mask _here_ would incorrectly re-enable IRQs. */
1695 }
1696 }
1697}
1698
Michael Buescha82d9922008-04-04 21:40:06 +02001699static void b43_beacon_update_trigger_work(struct work_struct *work)
1700{
1701 struct b43_wl *wl = container_of(work, struct b43_wl,
1702 beacon_update_trigger);
1703 struct b43_wldev *dev;
1704
1705 mutex_lock(&wl->mutex);
1706 dev = wl->current_dev;
1707 if (likely(dev && (b43_status(dev) >= B43_STAT_INITIALIZED))) {
Rafał Miłecki505fb012011-05-19 15:11:27 +02001708 if (b43_bus_host_is_sdio(dev->dev)) {
Michael Buesch36dbd952009-09-04 22:51:29 +02001709 /* wl->mutex is enough. */
1710 b43_do_beacon_update_trigger_work(dev);
1711 mmiowb();
1712 } else {
1713 spin_lock_irq(&wl->hardirq_lock);
1714 b43_do_beacon_update_trigger_work(dev);
1715 mmiowb();
1716 spin_unlock_irq(&wl->hardirq_lock);
1717 }
Michael Buescha82d9922008-04-04 21:40:06 +02001718 }
1719 mutex_unlock(&wl->mutex);
1720}
1721
Michael Bueschd4df6f12007-12-26 18:04:14 +01001722/* Asynchronously update the packet templates in template RAM.
Michael Buesch36dbd952009-09-04 22:51:29 +02001723 * Locking: Requires wl->mutex to be locked. */
Johannes Berg9d139c82008-07-09 14:40:37 +02001724static void b43_update_templates(struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04001725{
Johannes Berg9d139c82008-07-09 14:40:37 +02001726 struct sk_buff *beacon;
1727
Michael Buesche66fee62007-12-26 17:47:10 +01001728 /* This is the top half of the ansynchronous beacon update.
1729 * The bottom half is the beacon IRQ.
1730 * Beacon update must be asynchronous to avoid sending an
1731 * invalid beacon. This can happen for example, if the firmware
1732 * transmits a beacon while we are updating it. */
Michael Buesche4d6b792007-09-18 15:39:42 -04001733
Johannes Berg9d139c82008-07-09 14:40:37 +02001734 /* We could modify the existing beacon and set the aid bit in
1735 * the TIM field, but that would probably require resizing and
1736 * moving of data within the beacon template.
1737 * Simply request a new beacon and let mac80211 do the hard work. */
1738 beacon = ieee80211_beacon_get(wl->hw, wl->vif);
1739 if (unlikely(!beacon))
1740 return;
1741
Michael Buesche66fee62007-12-26 17:47:10 +01001742 if (wl->current_beacon)
1743 dev_kfree_skb_any(wl->current_beacon);
1744 wl->current_beacon = beacon;
1745 wl->beacon0_uploaded = 0;
1746 wl->beacon1_uploaded = 0;
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001747 ieee80211_queue_work(wl->hw, &wl->beacon_update_trigger);
Michael Buesche4d6b792007-09-18 15:39:42 -04001748}
1749
Michael Buesche4d6b792007-09-18 15:39:42 -04001750static void b43_set_beacon_int(struct b43_wldev *dev, u16 beacon_int)
1751{
1752 b43_time_lock(dev);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02001753 if (dev->dev->core_rev >= 3) {
Michael Buescha82d9922008-04-04 21:40:06 +02001754 b43_write32(dev, B43_MMIO_TSF_CFP_REP, (beacon_int << 16));
1755 b43_write32(dev, B43_MMIO_TSF_CFP_START, (beacon_int << 10));
Michael Buesche4d6b792007-09-18 15:39:42 -04001756 } else {
1757 b43_write16(dev, 0x606, (beacon_int >> 6));
1758 b43_write16(dev, 0x610, beacon_int);
1759 }
1760 b43_time_unlock(dev);
Michael Buescha82d9922008-04-04 21:40:06 +02001761 b43dbg(dev->wl, "Set beacon interval to %u\n", beacon_int);
Michael Buesche4d6b792007-09-18 15:39:42 -04001762}
1763
Michael Bueschafa83e22008-05-19 23:51:37 +02001764static void b43_handle_firmware_panic(struct b43_wldev *dev)
1765{
1766 u16 reason;
1767
1768 /* Read the register that contains the reason code for the panic. */
1769 reason = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_FWPANIC_REASON_REG);
1770 b43err(dev->wl, "Whoopsy, firmware panic! Reason: %u\n", reason);
1771
1772 switch (reason) {
1773 default:
1774 b43dbg(dev->wl, "The panic reason is unknown.\n");
1775 /* fallthrough */
1776 case B43_FWPANIC_DIE:
1777 /* Do not restart the controller or firmware.
1778 * The device is nonfunctional from now on.
1779 * Restarting would result in this panic to trigger again,
1780 * so we avoid that recursion. */
1781 break;
1782 case B43_FWPANIC_RESTART:
1783 b43_controller_restart(dev, "Microcode panic");
1784 break;
1785 }
1786}
1787
Michael Buesche4d6b792007-09-18 15:39:42 -04001788static void handle_irq_ucode_debug(struct b43_wldev *dev)
1789{
Michael Buesche48b0ee2008-05-17 22:44:35 +02001790 unsigned int i, cnt;
Michael Buesch53c06852008-05-20 00:24:36 +02001791 u16 reason, marker_id, marker_line;
Michael Buesche48b0ee2008-05-17 22:44:35 +02001792 __le16 *buf;
1793
1794 /* The proprietary firmware doesn't have this IRQ. */
1795 if (!dev->fw.opensource)
1796 return;
1797
Michael Bueschafa83e22008-05-19 23:51:37 +02001798 /* Read the register that contains the reason code for this IRQ. */
1799 reason = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_DEBUGIRQ_REASON_REG);
1800
Michael Buesche48b0ee2008-05-17 22:44:35 +02001801 switch (reason) {
1802 case B43_DEBUGIRQ_PANIC:
Michael Bueschafa83e22008-05-19 23:51:37 +02001803 b43_handle_firmware_panic(dev);
Michael Buesche48b0ee2008-05-17 22:44:35 +02001804 break;
1805 case B43_DEBUGIRQ_DUMP_SHM:
1806 if (!B43_DEBUG)
1807 break; /* Only with driver debugging enabled. */
1808 buf = kmalloc(4096, GFP_ATOMIC);
1809 if (!buf) {
1810 b43dbg(dev->wl, "SHM-dump: Failed to allocate memory\n");
1811 goto out;
1812 }
1813 for (i = 0; i < 4096; i += 2) {
1814 u16 tmp = b43_shm_read16(dev, B43_SHM_SHARED, i);
1815 buf[i / 2] = cpu_to_le16(tmp);
1816 }
1817 b43info(dev->wl, "Shared memory dump:\n");
1818 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET,
1819 16, 2, buf, 4096, 1);
1820 kfree(buf);
1821 break;
1822 case B43_DEBUGIRQ_DUMP_REGS:
1823 if (!B43_DEBUG)
1824 break; /* Only with driver debugging enabled. */
1825 b43info(dev->wl, "Microcode register dump:\n");
1826 for (i = 0, cnt = 0; i < 64; i++) {
1827 u16 tmp = b43_shm_read16(dev, B43_SHM_SCRATCH, i);
1828 if (cnt == 0)
1829 printk(KERN_INFO);
1830 printk("r%02u: 0x%04X ", i, tmp);
1831 cnt++;
1832 if (cnt == 6) {
1833 printk("\n");
1834 cnt = 0;
1835 }
1836 }
1837 printk("\n");
1838 break;
Michael Buesch53c06852008-05-20 00:24:36 +02001839 case B43_DEBUGIRQ_MARKER:
1840 if (!B43_DEBUG)
1841 break; /* Only with driver debugging enabled. */
1842 marker_id = b43_shm_read16(dev, B43_SHM_SCRATCH,
1843 B43_MARKER_ID_REG);
1844 marker_line = b43_shm_read16(dev, B43_SHM_SCRATCH,
1845 B43_MARKER_LINE_REG);
1846 b43info(dev->wl, "The firmware just executed the MARKER(%u) "
1847 "at line number %u\n",
1848 marker_id, marker_line);
1849 break;
Michael Buesche48b0ee2008-05-17 22:44:35 +02001850 default:
1851 b43dbg(dev->wl, "Debug-IRQ triggered for unknown reason: %u\n",
1852 reason);
1853 }
1854out:
Michael Bueschafa83e22008-05-19 23:51:37 +02001855 /* Acknowledge the debug-IRQ, so the firmware can continue. */
1856 b43_shm_write16(dev, B43_SHM_SCRATCH,
1857 B43_DEBUGIRQ_REASON_REG, B43_DEBUGIRQ_ACK);
Michael Buesche4d6b792007-09-18 15:39:42 -04001858}
1859
Michael Buesch36dbd952009-09-04 22:51:29 +02001860static void b43_do_interrupt_thread(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04001861{
1862 u32 reason;
1863 u32 dma_reason[ARRAY_SIZE(dev->dma_reason)];
1864 u32 merged_dma_reason = 0;
Michael Buesch21954c32007-09-27 15:31:40 +02001865 int i;
Michael Buesche4d6b792007-09-18 15:39:42 -04001866
Michael Buesch36dbd952009-09-04 22:51:29 +02001867 if (unlikely(b43_status(dev) != B43_STAT_STARTED))
1868 return;
Michael Buesche4d6b792007-09-18 15:39:42 -04001869
1870 reason = dev->irq_reason;
1871 for (i = 0; i < ARRAY_SIZE(dma_reason); i++) {
1872 dma_reason[i] = dev->dma_reason[i];
1873 merged_dma_reason |= dma_reason[i];
1874 }
1875
1876 if (unlikely(reason & B43_IRQ_MAC_TXERR))
1877 b43err(dev->wl, "MAC transmission error\n");
1878
Stefano Brivio00e0b8c2007-11-25 11:10:33 +01001879 if (unlikely(reason & B43_IRQ_PHY_TXERR)) {
Michael Buesche4d6b792007-09-18 15:39:42 -04001880 b43err(dev->wl, "PHY transmission error\n");
Stefano Brivio00e0b8c2007-11-25 11:10:33 +01001881 rmb();
1882 if (unlikely(atomic_dec_and_test(&dev->phy.txerr_cnt))) {
1883 atomic_set(&dev->phy.txerr_cnt,
1884 B43_PHY_TX_BADNESS_LIMIT);
1885 b43err(dev->wl, "Too many PHY TX errors, "
1886 "restarting the controller\n");
1887 b43_controller_restart(dev, "PHY TX errors");
1888 }
1889 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001890
1891 if (unlikely(merged_dma_reason & (B43_DMAIRQ_FATALMASK |
1892 B43_DMAIRQ_NONFATALMASK))) {
1893 if (merged_dma_reason & B43_DMAIRQ_FATALMASK) {
1894 b43err(dev->wl, "Fatal DMA error: "
1895 "0x%08X, 0x%08X, 0x%08X, "
1896 "0x%08X, 0x%08X, 0x%08X\n",
1897 dma_reason[0], dma_reason[1],
1898 dma_reason[2], dma_reason[3],
1899 dma_reason[4], dma_reason[5]);
Larry Finger214ac9a2009-12-09 13:25:56 -06001900 b43err(dev->wl, "This device does not support DMA "
Larry Fingerbb64d952010-06-19 08:29:08 -05001901 "on your system. It will now be switched to PIO.\n");
Linus Torvalds9e3bd912010-02-26 10:34:27 -08001902 /* Fall back to PIO transfers if we get fatal DMA errors! */
1903 dev->use_pio = 1;
1904 b43_controller_restart(dev, "DMA error");
Michael Buesche4d6b792007-09-18 15:39:42 -04001905 return;
1906 }
1907 if (merged_dma_reason & B43_DMAIRQ_NONFATALMASK) {
1908 b43err(dev->wl, "DMA error: "
1909 "0x%08X, 0x%08X, 0x%08X, "
1910 "0x%08X, 0x%08X, 0x%08X\n",
1911 dma_reason[0], dma_reason[1],
1912 dma_reason[2], dma_reason[3],
1913 dma_reason[4], dma_reason[5]);
1914 }
1915 }
1916
1917 if (unlikely(reason & B43_IRQ_UCODE_DEBUG))
1918 handle_irq_ucode_debug(dev);
1919 if (reason & B43_IRQ_TBTT_INDI)
1920 handle_irq_tbtt_indication(dev);
1921 if (reason & B43_IRQ_ATIM_END)
1922 handle_irq_atim_end(dev);
1923 if (reason & B43_IRQ_BEACON)
1924 handle_irq_beacon(dev);
1925 if (reason & B43_IRQ_PMQ)
1926 handle_irq_pmq(dev);
Michael Buesch21954c32007-09-27 15:31:40 +02001927 if (reason & B43_IRQ_TXFIFO_FLUSH_OK)
1928 ;/* TODO */
1929 if (reason & B43_IRQ_NOISESAMPLE_OK)
Michael Buesche4d6b792007-09-18 15:39:42 -04001930 handle_irq_noise(dev);
1931
1932 /* Check the DMA reason registers for received data. */
Michael Buesch5100d5a2008-03-29 21:01:16 +01001933 if (dma_reason[0] & B43_DMAIRQ_RX_DONE) {
1934 if (b43_using_pio_transfers(dev))
1935 b43_pio_rx(dev->pio.rx_queue);
1936 else
1937 b43_dma_rx(dev->dma.rx_ring);
1938 }
Michael Buesche4d6b792007-09-18 15:39:42 -04001939 B43_WARN_ON(dma_reason[1] & B43_DMAIRQ_RX_DONE);
1940 B43_WARN_ON(dma_reason[2] & B43_DMAIRQ_RX_DONE);
Michael Bueschb27faf82008-03-06 16:32:46 +01001941 B43_WARN_ON(dma_reason[3] & B43_DMAIRQ_RX_DONE);
Michael Buesche4d6b792007-09-18 15:39:42 -04001942 B43_WARN_ON(dma_reason[4] & B43_DMAIRQ_RX_DONE);
1943 B43_WARN_ON(dma_reason[5] & B43_DMAIRQ_RX_DONE);
1944
Michael Buesch21954c32007-09-27 15:31:40 +02001945 if (reason & B43_IRQ_TX_OK)
Michael Buesche4d6b792007-09-18 15:39:42 -04001946 handle_irq_transmit_status(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04001947
Michael Buesch36dbd952009-09-04 22:51:29 +02001948 /* Re-enable interrupts on the device by restoring the current interrupt mask. */
Michael Buesch13790722009-04-08 21:26:27 +02001949 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
Michael Buesch990b86f2009-09-12 00:48:03 +02001950
1951#if B43_DEBUG
1952 if (b43_debug(dev, B43_DBG_VERBOSESTATS)) {
1953 dev->irq_count++;
1954 for (i = 0; i < ARRAY_SIZE(dev->irq_bit_count); i++) {
1955 if (reason & (1 << i))
1956 dev->irq_bit_count[i]++;
1957 }
1958 }
1959#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04001960}
1961
Michael Buesch36dbd952009-09-04 22:51:29 +02001962/* Interrupt thread handler. Handles device interrupts in thread context. */
1963static irqreturn_t b43_interrupt_thread_handler(int irq, void *dev_id)
Michael Buesche4d6b792007-09-18 15:39:42 -04001964{
Michael Buesche4d6b792007-09-18 15:39:42 -04001965 struct b43_wldev *dev = dev_id;
Michael Buesch36dbd952009-09-04 22:51:29 +02001966
1967 mutex_lock(&dev->wl->mutex);
1968 b43_do_interrupt_thread(dev);
1969 mmiowb();
1970 mutex_unlock(&dev->wl->mutex);
1971
1972 return IRQ_HANDLED;
1973}
1974
1975static irqreturn_t b43_do_interrupt(struct b43_wldev *dev)
1976{
Michael Buesche4d6b792007-09-18 15:39:42 -04001977 u32 reason;
1978
Michael Buesch36dbd952009-09-04 22:51:29 +02001979 /* This code runs under wl->hardirq_lock, but _only_ on non-SDIO busses.
1980 * On SDIO, this runs under wl->mutex. */
Michael Buesche4d6b792007-09-18 15:39:42 -04001981
Michael Buesche4d6b792007-09-18 15:39:42 -04001982 reason = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
1983 if (reason == 0xffffffff) /* shared IRQ */
Michael Buesch36dbd952009-09-04 22:51:29 +02001984 return IRQ_NONE;
Michael Buesch13790722009-04-08 21:26:27 +02001985 reason &= dev->irq_mask;
Michael Buesche4d6b792007-09-18 15:39:42 -04001986 if (!reason)
Sebastian Andrzej Siewiorcae56142011-07-07 21:58:10 +02001987 return IRQ_NONE;
Michael Buesche4d6b792007-09-18 15:39:42 -04001988
1989 dev->dma_reason[0] = b43_read32(dev, B43_MMIO_DMA0_REASON)
1990 & 0x0001DC00;
1991 dev->dma_reason[1] = b43_read32(dev, B43_MMIO_DMA1_REASON)
1992 & 0x0000DC00;
1993 dev->dma_reason[2] = b43_read32(dev, B43_MMIO_DMA2_REASON)
1994 & 0x0000DC00;
1995 dev->dma_reason[3] = b43_read32(dev, B43_MMIO_DMA3_REASON)
1996 & 0x0001DC00;
1997 dev->dma_reason[4] = b43_read32(dev, B43_MMIO_DMA4_REASON)
1998 & 0x0000DC00;
Michael Buesch13790722009-04-08 21:26:27 +02001999/* Unused ring
Michael Buesche4d6b792007-09-18 15:39:42 -04002000 dev->dma_reason[5] = b43_read32(dev, B43_MMIO_DMA5_REASON)
2001 & 0x0000DC00;
Michael Buesch13790722009-04-08 21:26:27 +02002002*/
Michael Buesche4d6b792007-09-18 15:39:42 -04002003
Michael Buesch36dbd952009-09-04 22:51:29 +02002004 /* ACK the interrupt. */
2005 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, reason);
2006 b43_write32(dev, B43_MMIO_DMA0_REASON, dev->dma_reason[0]);
2007 b43_write32(dev, B43_MMIO_DMA1_REASON, dev->dma_reason[1]);
2008 b43_write32(dev, B43_MMIO_DMA2_REASON, dev->dma_reason[2]);
2009 b43_write32(dev, B43_MMIO_DMA3_REASON, dev->dma_reason[3]);
2010 b43_write32(dev, B43_MMIO_DMA4_REASON, dev->dma_reason[4]);
2011/* Unused ring
2012 b43_write32(dev, B43_MMIO_DMA5_REASON, dev->dma_reason[5]);
2013*/
2014
2015 /* Disable IRQs on the device. The IRQ thread handler will re-enable them. */
Michael Buesch13790722009-04-08 21:26:27 +02002016 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
Michael Buesch36dbd952009-09-04 22:51:29 +02002017 /* Save the reason bitmasks for the IRQ thread handler. */
Michael Buesche4d6b792007-09-18 15:39:42 -04002018 dev->irq_reason = reason;
Michael Buesch36dbd952009-09-04 22:51:29 +02002019
2020 return IRQ_WAKE_THREAD;
2021}
2022
2023/* Interrupt handler top-half. This runs with interrupts disabled. */
2024static irqreturn_t b43_interrupt_handler(int irq, void *dev_id)
2025{
2026 struct b43_wldev *dev = dev_id;
2027 irqreturn_t ret;
2028
2029 if (unlikely(b43_status(dev) < B43_STAT_STARTED))
2030 return IRQ_NONE;
2031
2032 spin_lock(&dev->wl->hardirq_lock);
2033 ret = b43_do_interrupt(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04002034 mmiowb();
Michael Buesch36dbd952009-09-04 22:51:29 +02002035 spin_unlock(&dev->wl->hardirq_lock);
Michael Buesche4d6b792007-09-18 15:39:42 -04002036
2037 return ret;
2038}
2039
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002040/* SDIO interrupt handler. This runs in process context. */
2041static void b43_sdio_interrupt_handler(struct b43_wldev *dev)
2042{
2043 struct b43_wl *wl = dev->wl;
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002044 irqreturn_t ret;
2045
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002046 mutex_lock(&wl->mutex);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002047
2048 ret = b43_do_interrupt(dev);
2049 if (ret == IRQ_WAKE_THREAD)
2050 b43_do_interrupt_thread(dev);
2051
Albert Herranz3dbba8e2009-09-10 19:34:49 +02002052 mutex_unlock(&wl->mutex);
2053}
2054
Michael Buesch1a9f5092009-01-23 21:21:51 +01002055void b43_do_release_fw(struct b43_firmware_file *fw)
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002056{
2057 release_firmware(fw->data);
2058 fw->data = NULL;
2059 fw->filename = NULL;
2060}
2061
Michael Buesche4d6b792007-09-18 15:39:42 -04002062static void b43_release_firmware(struct b43_wldev *dev)
2063{
Michael Buesch1a9f5092009-01-23 21:21:51 +01002064 b43_do_release_fw(&dev->fw.ucode);
2065 b43_do_release_fw(&dev->fw.pcm);
2066 b43_do_release_fw(&dev->fw.initvals);
2067 b43_do_release_fw(&dev->fw.initvals_band);
Michael Buesche4d6b792007-09-18 15:39:42 -04002068}
2069
Michael Buescheb189d8b2008-01-28 14:47:41 -08002070static void b43_print_fw_helptext(struct b43_wl *wl, bool error)
Michael Buesche4d6b792007-09-18 15:39:42 -04002071{
Hannes Ederfc68ed42009-02-14 11:50:06 +00002072 const char text[] =
2073 "You must go to " \
2074 "http://wireless.kernel.org/en/users/Drivers/b43#devicefirmware " \
2075 "and download the correct firmware for this driver version. " \
2076 "Please carefully read all instructions on this website.\n";
Michael Buescheb189d8b2008-01-28 14:47:41 -08002077
Michael Buescheb189d8b2008-01-28 14:47:41 -08002078 if (error)
2079 b43err(wl, text);
2080 else
2081 b43warn(wl, text);
Michael Buesche4d6b792007-09-18 15:39:42 -04002082}
2083
Michael Buesch1a9f5092009-01-23 21:21:51 +01002084int b43_do_request_fw(struct b43_request_fw_context *ctx,
2085 const char *name,
2086 struct b43_firmware_file *fw)
Michael Buesche4d6b792007-09-18 15:39:42 -04002087{
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002088 const struct firmware *blob;
Michael Buesche4d6b792007-09-18 15:39:42 -04002089 struct b43_fw_header *hdr;
2090 u32 size;
2091 int err;
2092
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002093 if (!name) {
2094 /* Don't fetch anything. Free possibly cached firmware. */
Michael Buesch1a9f5092009-01-23 21:21:51 +01002095 /* FIXME: We should probably keep it anyway, to save some headache
2096 * on suspend/resume with multiband devices. */
2097 b43_do_release_fw(fw);
Michael Buesche4d6b792007-09-18 15:39:42 -04002098 return 0;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002099 }
2100 if (fw->filename) {
Michael Buesch1a9f5092009-01-23 21:21:51 +01002101 if ((fw->type == ctx->req_type) &&
2102 (strcmp(fw->filename, name) == 0))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002103 return 0; /* Already have this fw. */
2104 /* Free the cached firmware first. */
Michael Buesch1a9f5092009-01-23 21:21:51 +01002105 /* FIXME: We should probably do this later after we successfully
2106 * got the new fw. This could reduce headache with multiband devices.
2107 * We could also redesign this to cache the firmware for all possible
2108 * bands all the time. */
2109 b43_do_release_fw(fw);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002110 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002111
Michael Buesch1a9f5092009-01-23 21:21:51 +01002112 switch (ctx->req_type) {
2113 case B43_FWTYPE_PROPRIETARY:
2114 snprintf(ctx->fwname, sizeof(ctx->fwname),
2115 "b43%s/%s.fw",
2116 modparam_fwpostfix, name);
2117 break;
2118 case B43_FWTYPE_OPENSOURCE:
2119 snprintf(ctx->fwname, sizeof(ctx->fwname),
2120 "b43-open%s/%s.fw",
2121 modparam_fwpostfix, name);
2122 break;
2123 default:
2124 B43_WARN_ON(1);
2125 return -ENOSYS;
2126 }
Rafał Miłeckia18c7152011-05-18 02:06:40 +02002127 err = request_firmware(&blob, ctx->fwname, ctx->dev->dev->dev);
Michael Buesch68217832008-05-17 23:43:57 +02002128 if (err == -ENOENT) {
Michael Buesch1a9f5092009-01-23 21:21:51 +01002129 snprintf(ctx->errors[ctx->req_type],
2130 sizeof(ctx->errors[ctx->req_type]),
2131 "Firmware file \"%s\" not found\n", ctx->fwname);
Michael Buesch68217832008-05-17 23:43:57 +02002132 return err;
2133 } else if (err) {
Michael Buesch1a9f5092009-01-23 21:21:51 +01002134 snprintf(ctx->errors[ctx->req_type],
2135 sizeof(ctx->errors[ctx->req_type]),
2136 "Firmware file \"%s\" request failed (err=%d)\n",
2137 ctx->fwname, err);
Michael Buesche4d6b792007-09-18 15:39:42 -04002138 return err;
2139 }
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002140 if (blob->size < sizeof(struct b43_fw_header))
Michael Buesche4d6b792007-09-18 15:39:42 -04002141 goto err_format;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002142 hdr = (struct b43_fw_header *)(blob->data);
Michael Buesche4d6b792007-09-18 15:39:42 -04002143 switch (hdr->type) {
2144 case B43_FW_TYPE_UCODE:
2145 case B43_FW_TYPE_PCM:
2146 size = be32_to_cpu(hdr->size);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002147 if (size != blob->size - sizeof(struct b43_fw_header))
Michael Buesche4d6b792007-09-18 15:39:42 -04002148 goto err_format;
2149 /* fallthrough */
2150 case B43_FW_TYPE_IV:
2151 if (hdr->ver != 1)
2152 goto err_format;
2153 break;
2154 default:
2155 goto err_format;
2156 }
2157
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002158 fw->data = blob;
2159 fw->filename = name;
Michael Buesch1a9f5092009-01-23 21:21:51 +01002160 fw->type = ctx->req_type;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002161
2162 return 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04002163
2164err_format:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002165 snprintf(ctx->errors[ctx->req_type],
2166 sizeof(ctx->errors[ctx->req_type]),
2167 "Firmware file \"%s\" format error.\n", ctx->fwname);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002168 release_firmware(blob);
2169
Michael Buesche4d6b792007-09-18 15:39:42 -04002170 return -EPROTO;
2171}
2172
Michael Buesch1a9f5092009-01-23 21:21:51 +01002173static int b43_try_request_fw(struct b43_request_fw_context *ctx)
Michael Buesche4d6b792007-09-18 15:39:42 -04002174{
Michael Buesch1a9f5092009-01-23 21:21:51 +01002175 struct b43_wldev *dev = ctx->dev;
2176 struct b43_firmware *fw = &ctx->dev->fw;
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002177 const u8 rev = ctx->dev->dev->core_rev;
Michael Buesche4d6b792007-09-18 15:39:42 -04002178 const char *filename;
2179 u32 tmshigh;
2180 int err;
2181
Rafał Miłecki8b9bda72011-07-07 18:58:24 +02002182 /* Files for HT and LCN were found by trying one by one */
2183
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002184 /* Get microcode */
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002185 if ((rev >= 5) && (rev <= 10)) {
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002186 filename = "ucode5";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002187 } else if ((rev >= 11) && (rev <= 12)) {
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002188 filename = "ucode11";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002189 } else if (rev == 13) {
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002190 filename = "ucode13";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002191 } else if (rev == 14) {
Gábor Stefanik759b9732009-08-14 14:39:53 +02002192 filename = "ucode14";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002193 } else if (rev == 15) {
Gábor Stefanik759b9732009-08-14 14:39:53 +02002194 filename = "ucode15";
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002195 } else {
2196 switch (dev->phy.type) {
2197 case B43_PHYTYPE_N:
2198 if (rev >= 16)
2199 filename = "ucode16_mimo";
2200 else
2201 goto err_no_ucode;
2202 break;
Rafał Miłecki8b9bda72011-07-07 18:58:24 +02002203 case B43_PHYTYPE_HT:
2204 if (rev == 29)
2205 filename = "ucode29_mimo";
2206 else
2207 goto err_no_ucode;
2208 break;
2209 case B43_PHYTYPE_LCN:
2210 if (rev == 24)
2211 filename = "ucode24_mimo";
2212 else
2213 goto err_no_ucode;
2214 break;
Rafał Miłecki6ff1e5c2011-07-06 17:41:55 +02002215 default:
2216 goto err_no_ucode;
2217 }
2218 }
Michael Buesch1a9f5092009-01-23 21:21:51 +01002219 err = b43_do_request_fw(ctx, filename, &fw->ucode);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002220 if (err)
2221 goto err_load;
2222
2223 /* Get PCM code */
2224 if ((rev >= 5) && (rev <= 10))
2225 filename = "pcm5";
2226 else if (rev >= 11)
2227 filename = NULL;
2228 else
2229 goto err_no_pcm;
Michael Buesch68217832008-05-17 23:43:57 +02002230 fw->pcm_request_failed = 0;
Michael Buesch1a9f5092009-01-23 21:21:51 +01002231 err = b43_do_request_fw(ctx, filename, &fw->pcm);
Michael Buesch68217832008-05-17 23:43:57 +02002232 if (err == -ENOENT) {
2233 /* We did not find a PCM file? Not fatal, but
2234 * core rev <= 10 must do without hwcrypto then. */
2235 fw->pcm_request_failed = 1;
2236 } else if (err)
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002237 goto err_load;
2238
2239 /* Get initvals */
2240 switch (dev->phy.type) {
2241 case B43_PHYTYPE_A:
2242 if ((rev >= 5) && (rev <= 10)) {
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02002243 tmshigh = ssb_read32(dev->dev->sdev, SSB_TMSHIGH);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002244 if (tmshigh & B43_TMSHIGH_HAVE_2GHZ_PHY)
2245 filename = "a0g1initvals5";
2246 else
2247 filename = "a0g0initvals5";
2248 } else
2249 goto err_no_initvals;
2250 break;
2251 case B43_PHYTYPE_G:
Michael Buesche4d6b792007-09-18 15:39:42 -04002252 if ((rev >= 5) && (rev <= 10))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002253 filename = "b0g0initvals5";
Michael Buesche4d6b792007-09-18 15:39:42 -04002254 else if (rev >= 13)
Larry.Finger@lwfinger.nete9304882008-05-15 14:07:36 -05002255 filename = "b0g0initvals13";
Michael Buesche4d6b792007-09-18 15:39:42 -04002256 else
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002257 goto err_no_initvals;
2258 break;
2259 case B43_PHYTYPE_N:
Rafał Miłeckie41596a2010-12-21 11:50:19 +01002260 if (rev >= 16)
2261 filename = "n0initvals16";
2262 else if ((rev >= 11) && (rev <= 12))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002263 filename = "n0initvals11";
2264 else
2265 goto err_no_initvals;
2266 break;
Gábor Stefanik759b9732009-08-14 14:39:53 +02002267 case B43_PHYTYPE_LP:
2268 if (rev == 13)
2269 filename = "lp0initvals13";
2270 else if (rev == 14)
2271 filename = "lp0initvals14";
2272 else if (rev >= 15)
2273 filename = "lp0initvals15";
2274 else
2275 goto err_no_initvals;
2276 break;
Rafał Miłecki8b9bda72011-07-07 18:58:24 +02002277 case B43_PHYTYPE_HT:
2278 if (rev == 29)
2279 filename = "ht0initvals29";
2280 else
2281 goto err_no_initvals;
2282 break;
2283 case B43_PHYTYPE_LCN:
2284 if (rev == 24)
2285 filename = "lcn0initvals24";
2286 else
2287 goto err_no_initvals;
2288 break;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002289 default:
2290 goto err_no_initvals;
Michael Buesche4d6b792007-09-18 15:39:42 -04002291 }
Michael Buesch1a9f5092009-01-23 21:21:51 +01002292 err = b43_do_request_fw(ctx, filename, &fw->initvals);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002293 if (err)
2294 goto err_load;
2295
2296 /* Get bandswitch initvals */
2297 switch (dev->phy.type) {
2298 case B43_PHYTYPE_A:
2299 if ((rev >= 5) && (rev <= 10)) {
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02002300 tmshigh = ssb_read32(dev->dev->sdev, SSB_TMSHIGH);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002301 if (tmshigh & B43_TMSHIGH_HAVE_2GHZ_PHY)
2302 filename = "a0g1bsinitvals5";
2303 else
2304 filename = "a0g0bsinitvals5";
2305 } else if (rev >= 11)
2306 filename = NULL;
2307 else
2308 goto err_no_initvals;
2309 break;
2310 case B43_PHYTYPE_G:
Michael Buesche4d6b792007-09-18 15:39:42 -04002311 if ((rev >= 5) && (rev <= 10))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002312 filename = "b0g0bsinitvals5";
Michael Buesche4d6b792007-09-18 15:39:42 -04002313 else if (rev >= 11)
2314 filename = NULL;
2315 else
Michael Buesche4d6b792007-09-18 15:39:42 -04002316 goto err_no_initvals;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002317 break;
2318 case B43_PHYTYPE_N:
Rafał Miłeckie41596a2010-12-21 11:50:19 +01002319 if (rev >= 16)
2320 filename = "n0bsinitvals16";
2321 else if ((rev >= 11) && (rev <= 12))
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002322 filename = "n0bsinitvals11";
2323 else
Michael Buesche4d6b792007-09-18 15:39:42 -04002324 goto err_no_initvals;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002325 break;
Gábor Stefanik759b9732009-08-14 14:39:53 +02002326 case B43_PHYTYPE_LP:
2327 if (rev == 13)
2328 filename = "lp0bsinitvals13";
2329 else if (rev == 14)
2330 filename = "lp0bsinitvals14";
2331 else if (rev >= 15)
2332 filename = "lp0bsinitvals15";
2333 else
2334 goto err_no_initvals;
2335 break;
Rafał Miłecki8b9bda72011-07-07 18:58:24 +02002336 case B43_PHYTYPE_HT:
2337 if (rev == 29)
2338 filename = "ht0bsinitvals29";
2339 else
2340 goto err_no_initvals;
2341 break;
2342 case B43_PHYTYPE_LCN:
2343 if (rev == 24)
2344 filename = "lcn0bsinitvals24";
2345 else
2346 goto err_no_initvals;
2347 break;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002348 default:
2349 goto err_no_initvals;
Michael Buesche4d6b792007-09-18 15:39:42 -04002350 }
Michael Buesch1a9f5092009-01-23 21:21:51 +01002351 err = b43_do_request_fw(ctx, filename, &fw->initvals_band);
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002352 if (err)
2353 goto err_load;
Michael Buesche4d6b792007-09-18 15:39:42 -04002354
2355 return 0;
2356
Michael Buesche4d6b792007-09-18 15:39:42 -04002357err_no_ucode:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002358 err = ctx->fatal_failure = -EOPNOTSUPP;
2359 b43err(dev->wl, "The driver does not know which firmware (ucode) "
2360 "is required for your device (wl-core rev %u)\n", rev);
Michael Buesche4d6b792007-09-18 15:39:42 -04002361 goto error;
2362
2363err_no_pcm:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002364 err = ctx->fatal_failure = -EOPNOTSUPP;
2365 b43err(dev->wl, "The driver does not know which firmware (PCM) "
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_initvals:
Michael Buesch1a9f5092009-01-23 21:21:51 +01002370 err = ctx->fatal_failure = -EOPNOTSUPP;
2371 b43err(dev->wl, "The driver does not know which firmware (initvals) "
2372 "is required for your device (wl-core rev %u)\n", rev);
2373 goto error;
2374
2375err_load:
2376 /* We failed to load this firmware image. The error message
2377 * already is in ctx->errors. Return and let our caller decide
2378 * what to do. */
Michael Buesche4d6b792007-09-18 15:39:42 -04002379 goto error;
2380
2381error:
2382 b43_release_firmware(dev);
2383 return err;
2384}
2385
Michael Buesch1a9f5092009-01-23 21:21:51 +01002386static int b43_request_firmware(struct b43_wldev *dev)
2387{
2388 struct b43_request_fw_context *ctx;
2389 unsigned int i;
2390 int err;
2391 const char *errmsg;
2392
2393 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
2394 if (!ctx)
2395 return -ENOMEM;
2396 ctx->dev = dev;
2397
2398 ctx->req_type = B43_FWTYPE_PROPRIETARY;
2399 err = b43_try_request_fw(ctx);
2400 if (!err)
2401 goto out; /* Successfully loaded it. */
2402 err = ctx->fatal_failure;
2403 if (err)
2404 goto out;
2405
2406 ctx->req_type = B43_FWTYPE_OPENSOURCE;
2407 err = b43_try_request_fw(ctx);
2408 if (!err)
2409 goto out; /* Successfully loaded it. */
2410 err = ctx->fatal_failure;
2411 if (err)
2412 goto out;
2413
2414 /* Could not find a usable firmware. Print the errors. */
2415 for (i = 0; i < B43_NR_FWTYPES; i++) {
2416 errmsg = ctx->errors[i];
2417 if (strlen(errmsg))
2418 b43err(dev->wl, errmsg);
2419 }
2420 b43_print_fw_helptext(dev->wl, 1);
2421 err = -ENOENT;
2422
2423out:
2424 kfree(ctx);
2425 return err;
2426}
2427
Michael Buesche4d6b792007-09-18 15:39:42 -04002428static int b43_upload_microcode(struct b43_wldev *dev)
2429{
John W. Linville652caa52010-07-29 13:27:28 -04002430 struct wiphy *wiphy = dev->wl->hw->wiphy;
Michael Buesche4d6b792007-09-18 15:39:42 -04002431 const size_t hdr_len = sizeof(struct b43_fw_header);
2432 const __be32 *data;
2433 unsigned int i, len;
2434 u16 fwrev, fwpatch, fwdate, fwtime;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002435 u32 tmp, macctl;
Michael Buesche4d6b792007-09-18 15:39:42 -04002436 int err = 0;
2437
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002438 /* Jump the microcode PSM to offset 0 */
2439 macctl = b43_read32(dev, B43_MMIO_MACCTL);
2440 B43_WARN_ON(macctl & B43_MACCTL_PSM_RUN);
2441 macctl |= B43_MACCTL_PSM_JMP0;
2442 b43_write32(dev, B43_MMIO_MACCTL, macctl);
2443 /* Zero out all microcode PSM registers and shared memory. */
2444 for (i = 0; i < 64; i++)
2445 b43_shm_write16(dev, B43_SHM_SCRATCH, i, 0);
2446 for (i = 0; i < 4096; i += 2)
2447 b43_shm_write16(dev, B43_SHM_SHARED, i, 0);
2448
Michael Buesche4d6b792007-09-18 15:39:42 -04002449 /* Upload Microcode. */
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002450 data = (__be32 *) (dev->fw.ucode.data->data + hdr_len);
2451 len = (dev->fw.ucode.data->size - hdr_len) / sizeof(__be32);
Michael Buesche4d6b792007-09-18 15:39:42 -04002452 b43_shm_control_word(dev, B43_SHM_UCODE | B43_SHM_AUTOINC_W, 0x0000);
2453 for (i = 0; i < len; i++) {
2454 b43_write32(dev, B43_MMIO_SHM_DATA, be32_to_cpu(data[i]));
2455 udelay(10);
2456 }
2457
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002458 if (dev->fw.pcm.data) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002459 /* Upload PCM data. */
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002460 data = (__be32 *) (dev->fw.pcm.data->data + hdr_len);
2461 len = (dev->fw.pcm.data->size - hdr_len) / sizeof(__be32);
Michael Buesche4d6b792007-09-18 15:39:42 -04002462 b43_shm_control_word(dev, B43_SHM_HW, 0x01EA);
2463 b43_write32(dev, B43_MMIO_SHM_DATA, 0x00004000);
2464 /* No need for autoinc bit in SHM_HW */
2465 b43_shm_control_word(dev, B43_SHM_HW, 0x01EB);
2466 for (i = 0; i < len; i++) {
2467 b43_write32(dev, B43_MMIO_SHM_DATA, be32_to_cpu(data[i]));
2468 udelay(10);
2469 }
2470 }
2471
2472 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, B43_IRQ_ALL);
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002473
2474 /* Start the microcode PSM */
2475 macctl = b43_read32(dev, B43_MMIO_MACCTL);
2476 macctl &= ~B43_MACCTL_PSM_JMP0;
2477 macctl |= B43_MACCTL_PSM_RUN;
2478 b43_write32(dev, B43_MMIO_MACCTL, macctl);
Michael Buesche4d6b792007-09-18 15:39:42 -04002479
2480 /* Wait for the microcode to load and respond */
2481 i = 0;
2482 while (1) {
2483 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2484 if (tmp == B43_IRQ_MAC_SUSPENDED)
2485 break;
2486 i++;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002487 if (i >= 20) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002488 b43err(dev->wl, "Microcode not responding\n");
Michael Buescheb189d8b2008-01-28 14:47:41 -08002489 b43_print_fw_helptext(dev->wl, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002490 err = -ENODEV;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002491 goto error;
Michael Buesche4d6b792007-09-18 15:39:42 -04002492 }
Michael Buesche175e992009-09-11 18:31:32 +02002493 msleep(50);
Michael Buesche4d6b792007-09-18 15:39:42 -04002494 }
2495 b43_read32(dev, B43_MMIO_GEN_IRQ_REASON); /* dummy read */
2496
2497 /* Get and check the revisions. */
2498 fwrev = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEREV);
2499 fwpatch = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEPATCH);
2500 fwdate = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODEDATE);
2501 fwtime = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_UCODETIME);
2502
2503 if (fwrev <= 0x128) {
2504 b43err(dev->wl, "YOUR FIRMWARE IS TOO OLD. Firmware from "
2505 "binary drivers older than version 4.x is unsupported. "
2506 "You must upgrade your firmware files.\n");
Michael Buescheb189d8b2008-01-28 14:47:41 -08002507 b43_print_fw_helptext(dev->wl, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002508 err = -EOPNOTSUPP;
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002509 goto error;
Michael Buesche4d6b792007-09-18 15:39:42 -04002510 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002511 dev->fw.rev = fwrev;
2512 dev->fw.patch = fwpatch;
Michael Buesche48b0ee2008-05-17 22:44:35 +02002513 dev->fw.opensource = (fwdate == 0xFFFF);
2514
Michael Buesch403a3a12009-06-08 21:04:57 +02002515 /* Default to use-all-queues. */
2516 dev->wl->hw->queues = dev->wl->mac80211_initially_registered_queues;
2517 dev->qos_enabled = !!modparam_qos;
2518 /* Default to firmware/hardware crypto acceleration. */
2519 dev->hwcrypto_enabled = 1;
2520
Michael Buesche48b0ee2008-05-17 22:44:35 +02002521 if (dev->fw.opensource) {
Michael Buesch403a3a12009-06-08 21:04:57 +02002522 u16 fwcapa;
2523
Michael Buesche48b0ee2008-05-17 22:44:35 +02002524 /* Patchlevel info is encoded in the "time" field. */
2525 dev->fw.patch = fwtime;
Michael Buesch403a3a12009-06-08 21:04:57 +02002526 b43info(dev->wl, "Loading OpenSource firmware version %u.%u\n",
2527 dev->fw.rev, dev->fw.patch);
2528
2529 fwcapa = b43_fwcapa_read(dev);
2530 if (!(fwcapa & B43_FWCAPA_HWCRYPTO) || dev->fw.pcm_request_failed) {
2531 b43info(dev->wl, "Hardware crypto acceleration not supported by firmware\n");
2532 /* Disable hardware crypto and fall back to software crypto. */
2533 dev->hwcrypto_enabled = 0;
2534 }
2535 if (!(fwcapa & B43_FWCAPA_QOS)) {
2536 b43info(dev->wl, "QoS not supported by firmware\n");
2537 /* Disable QoS. Tweak hw->queues to 1. It will be restored before
2538 * ieee80211_unregister to make sure the networking core can
2539 * properly free possible resources. */
2540 dev->wl->hw->queues = 1;
2541 dev->qos_enabled = 0;
2542 }
Michael Buesche48b0ee2008-05-17 22:44:35 +02002543 } else {
2544 b43info(dev->wl, "Loading firmware version %u.%u "
2545 "(20%.2i-%.2i-%.2i %.2i:%.2i:%.2i)\n",
2546 fwrev, fwpatch,
2547 (fwdate >> 12) & 0xF, (fwdate >> 8) & 0xF, fwdate & 0xFF,
2548 (fwtime >> 11) & 0x1F, (fwtime >> 5) & 0x3F, fwtime & 0x1F);
Michael Buesch68217832008-05-17 23:43:57 +02002549 if (dev->fw.pcm_request_failed) {
2550 b43warn(dev->wl, "No \"pcm5.fw\" firmware file found. "
2551 "Hardware accelerated cryptography is disabled.\n");
2552 b43_print_fw_helptext(dev->wl, 0);
2553 }
Michael Buesche48b0ee2008-05-17 22:44:35 +02002554 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002555
John W. Linville652caa52010-07-29 13:27:28 -04002556 snprintf(wiphy->fw_version, sizeof(wiphy->fw_version), "%u.%u",
2557 dev->fw.rev, dev->fw.patch);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002558 wiphy->hw_version = dev->dev->core_id;
John W. Linville652caa52010-07-29 13:27:28 -04002559
Michael Buescheb189d8b2008-01-28 14:47:41 -08002560 if (b43_is_old_txhdr_format(dev)) {
Michael Bueschc5572892008-12-27 18:26:39 +01002561 /* We're over the deadline, but we keep support for old fw
2562 * until it turns out to be in major conflict with something new. */
Michael Buescheb189d8b2008-01-28 14:47:41 -08002563 b43warn(dev->wl, "You are using an old firmware image. "
Michael Bueschc5572892008-12-27 18:26:39 +01002564 "Support for old firmware will be removed soon "
2565 "(official deadline was July 2008).\n");
Michael Buescheb189d8b2008-01-28 14:47:41 -08002566 b43_print_fw_helptext(dev->wl, 0);
2567 }
2568
Michael Buesch1f7d87b2008-01-22 20:23:34 +01002569 return 0;
2570
2571error:
2572 macctl = b43_read32(dev, B43_MMIO_MACCTL);
2573 macctl &= ~B43_MACCTL_PSM_RUN;
2574 macctl |= B43_MACCTL_PSM_JMP0;
2575 b43_write32(dev, B43_MMIO_MACCTL, macctl);
2576
Michael Buesche4d6b792007-09-18 15:39:42 -04002577 return err;
2578}
2579
2580static int b43_write_initvals(struct b43_wldev *dev,
2581 const struct b43_iv *ivals,
2582 size_t count,
2583 size_t array_size)
2584{
2585 const struct b43_iv *iv;
2586 u16 offset;
2587 size_t i;
2588 bool bit32;
2589
2590 BUILD_BUG_ON(sizeof(struct b43_iv) != 6);
2591 iv = ivals;
2592 for (i = 0; i < count; i++) {
2593 if (array_size < sizeof(iv->offset_size))
2594 goto err_format;
2595 array_size -= sizeof(iv->offset_size);
2596 offset = be16_to_cpu(iv->offset_size);
2597 bit32 = !!(offset & B43_IV_32BIT);
2598 offset &= B43_IV_OFFSET_MASK;
2599 if (offset >= 0x1000)
2600 goto err_format;
2601 if (bit32) {
2602 u32 value;
2603
2604 if (array_size < sizeof(iv->data.d32))
2605 goto err_format;
2606 array_size -= sizeof(iv->data.d32);
2607
Harvey Harrison533dd1b2008-04-29 01:03:36 -07002608 value = get_unaligned_be32(&iv->data.d32);
Michael Buesche4d6b792007-09-18 15:39:42 -04002609 b43_write32(dev, offset, value);
2610
2611 iv = (const struct b43_iv *)((const uint8_t *)iv +
2612 sizeof(__be16) +
2613 sizeof(__be32));
2614 } else {
2615 u16 value;
2616
2617 if (array_size < sizeof(iv->data.d16))
2618 goto err_format;
2619 array_size -= sizeof(iv->data.d16);
2620
2621 value = be16_to_cpu(iv->data.d16);
2622 b43_write16(dev, offset, value);
2623
2624 iv = (const struct b43_iv *)((const uint8_t *)iv +
2625 sizeof(__be16) +
2626 sizeof(__be16));
2627 }
2628 }
2629 if (array_size)
2630 goto err_format;
2631
2632 return 0;
2633
2634err_format:
2635 b43err(dev->wl, "Initial Values Firmware file-format error.\n");
Michael Buescheb189d8b2008-01-28 14:47:41 -08002636 b43_print_fw_helptext(dev->wl, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002637
2638 return -EPROTO;
2639}
2640
2641static int b43_upload_initvals(struct b43_wldev *dev)
2642{
2643 const size_t hdr_len = sizeof(struct b43_fw_header);
2644 const struct b43_fw_header *hdr;
2645 struct b43_firmware *fw = &dev->fw;
2646 const struct b43_iv *ivals;
2647 size_t count;
2648 int err;
2649
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002650 hdr = (const struct b43_fw_header *)(fw->initvals.data->data);
2651 ivals = (const struct b43_iv *)(fw->initvals.data->data + hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002652 count = be32_to_cpu(hdr->size);
2653 err = b43_write_initvals(dev, ivals, count,
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002654 fw->initvals.data->size - hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002655 if (err)
2656 goto out;
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002657 if (fw->initvals_band.data) {
2658 hdr = (const struct b43_fw_header *)(fw->initvals_band.data->data);
2659 ivals = (const struct b43_iv *)(fw->initvals_band.data->data + hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002660 count = be32_to_cpu(hdr->size);
2661 err = b43_write_initvals(dev, ivals, count,
Michael Buesch61cb5dd2008-01-21 19:55:09 +01002662 fw->initvals_band.data->size - hdr_len);
Michael Buesche4d6b792007-09-18 15:39:42 -04002663 if (err)
2664 goto out;
2665 }
2666out:
2667
2668 return err;
2669}
2670
2671/* Initialize the GPIOs
2672 * http://bcm-specs.sipsolutions.net/GPIO
2673 */
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002674static struct ssb_device *b43_ssb_gpio_dev(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04002675{
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02002676 struct ssb_bus *bus = dev->dev->sdev->bus;
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002677
2678#ifdef CONFIG_SSB_DRIVER_PCICORE
2679 return (bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev);
2680#else
2681 return bus->chipco.dev;
2682#endif
2683}
2684
Michael Buesche4d6b792007-09-18 15:39:42 -04002685static int b43_gpio_init(struct b43_wldev *dev)
2686{
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002687 struct ssb_device *gpiodev;
Michael Buesche4d6b792007-09-18 15:39:42 -04002688 u32 mask, set;
2689
2690 b43_write32(dev, B43_MMIO_MACCTL, b43_read32(dev, B43_MMIO_MACCTL)
2691 & ~B43_MACCTL_GPOUTSMSK);
2692
Michael Buesche4d6b792007-09-18 15:39:42 -04002693 b43_write16(dev, B43_MMIO_GPIO_MASK, b43_read16(dev, B43_MMIO_GPIO_MASK)
2694 | 0x000F);
2695
2696 mask = 0x0000001F;
2697 set = 0x0000000F;
Rafał Miłeckic244e082011-05-18 02:06:41 +02002698 if (dev->dev->chip_id == 0x4301) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002699 mask |= 0x0060;
2700 set |= 0x0060;
2701 }
2702 if (0 /* FIXME: conditional unknown */ ) {
2703 b43_write16(dev, B43_MMIO_GPIO_MASK,
2704 b43_read16(dev, B43_MMIO_GPIO_MASK)
2705 | 0x0100);
2706 mask |= 0x0180;
2707 set |= 0x0180;
2708 }
Rafał Miłecki05814832011-05-18 02:06:39 +02002709 if (dev->dev->bus_sprom->boardflags_lo & B43_BFL_PACTRL) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002710 b43_write16(dev, B43_MMIO_GPIO_MASK,
2711 b43_read16(dev, B43_MMIO_GPIO_MASK)
2712 | 0x0200);
2713 mask |= 0x0200;
2714 set |= 0x0200;
2715 }
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002716 if (dev->dev->core_rev >= 2)
Michael Buesche4d6b792007-09-18 15:39:42 -04002717 mask |= 0x0010; /* FIXME: This is redundant. */
2718
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002719 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002720#ifdef CONFIG_B43_BCMA
2721 case B43_BUS_BCMA:
2722 bcma_cc_write32(&dev->dev->bdev->bus->drv_cc, BCMA_CC_GPIOCTL,
2723 (bcma_cc_read32(&dev->dev->bdev->bus->drv_cc,
2724 BCMA_CC_GPIOCTL) & mask) | set);
2725 break;
2726#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002727#ifdef CONFIG_B43_SSB
2728 case B43_BUS_SSB:
2729 gpiodev = b43_ssb_gpio_dev(dev);
2730 if (gpiodev)
2731 ssb_write32(gpiodev, B43_GPIO_CONTROL,
2732 (ssb_read32(gpiodev, B43_GPIO_CONTROL)
2733 & mask) | set);
2734 break;
2735#endif
2736 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002737
2738 return 0;
2739}
2740
2741/* Turn off all GPIO stuff. Call this on module unload, for example. */
2742static void b43_gpio_cleanup(struct b43_wldev *dev)
2743{
Rafał Miłeckic4a2a082011-05-17 18:57:27 +02002744 struct ssb_device *gpiodev;
Michael Buesche4d6b792007-09-18 15:39:42 -04002745
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002746 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002747#ifdef CONFIG_B43_BCMA
2748 case B43_BUS_BCMA:
2749 bcma_cc_write32(&dev->dev->bdev->bus->drv_cc, BCMA_CC_GPIOCTL,
2750 0);
2751 break;
2752#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002753#ifdef CONFIG_B43_SSB
2754 case B43_BUS_SSB:
2755 gpiodev = b43_ssb_gpio_dev(dev);
2756 if (gpiodev)
2757 ssb_write32(gpiodev, B43_GPIO_CONTROL, 0);
2758 break;
2759#endif
2760 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002761}
2762
2763/* http://bcm-specs.sipsolutions.net/EnableMac */
Michael Bueschf5eda472008-04-20 16:03:32 +02002764void b43_mac_enable(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04002765{
Michael Buesch923fd702008-06-20 18:02:08 +02002766 if (b43_debug(dev, B43_DBG_FIRMWARE)) {
2767 u16 fwstate;
2768
2769 fwstate = b43_shm_read16(dev, B43_SHM_SHARED,
2770 B43_SHM_SH_UCODESTAT);
2771 if ((fwstate != B43_SHM_SH_UCODESTAT_SUSP) &&
2772 (fwstate != B43_SHM_SH_UCODESTAT_SLEEP)) {
2773 b43err(dev->wl, "b43_mac_enable(): The firmware "
2774 "should be suspended, but current state is %u\n",
2775 fwstate);
2776 }
2777 }
2778
Michael Buesche4d6b792007-09-18 15:39:42 -04002779 dev->mac_suspended--;
2780 B43_WARN_ON(dev->mac_suspended < 0);
2781 if (dev->mac_suspended == 0) {
2782 b43_write32(dev, B43_MMIO_MACCTL,
2783 b43_read32(dev, B43_MMIO_MACCTL)
2784 | B43_MACCTL_ENABLED);
2785 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON,
2786 B43_IRQ_MAC_SUSPENDED);
2787 /* Commit writes */
2788 b43_read32(dev, B43_MMIO_MACCTL);
2789 b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2790 b43_power_saving_ctl_bits(dev, 0);
2791 }
2792}
2793
2794/* http://bcm-specs.sipsolutions.net/SuspendMAC */
Michael Bueschf5eda472008-04-20 16:03:32 +02002795void b43_mac_suspend(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04002796{
2797 int i;
2798 u32 tmp;
2799
Michael Buesch05b64b32007-09-28 16:19:03 +02002800 might_sleep();
Michael Buesche4d6b792007-09-18 15:39:42 -04002801 B43_WARN_ON(dev->mac_suspended < 0);
Michael Buesch05b64b32007-09-28 16:19:03 +02002802
Michael Buesche4d6b792007-09-18 15:39:42 -04002803 if (dev->mac_suspended == 0) {
2804 b43_power_saving_ctl_bits(dev, B43_PS_AWAKE);
2805 b43_write32(dev, B43_MMIO_MACCTL,
2806 b43_read32(dev, B43_MMIO_MACCTL)
2807 & ~B43_MACCTL_ENABLED);
2808 /* force pci to flush the write */
2809 b43_read32(dev, B43_MMIO_MACCTL);
Michael Bueschba380012008-04-15 21:13:36 +02002810 for (i = 35; i; i--) {
2811 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2812 if (tmp & B43_IRQ_MAC_SUSPENDED)
2813 goto out;
2814 udelay(10);
2815 }
2816 /* Hm, it seems this will take some time. Use msleep(). */
Michael Buesch05b64b32007-09-28 16:19:03 +02002817 for (i = 40; i; i--) {
Michael Buesche4d6b792007-09-18 15:39:42 -04002818 tmp = b43_read32(dev, B43_MMIO_GEN_IRQ_REASON);
2819 if (tmp & B43_IRQ_MAC_SUSPENDED)
2820 goto out;
Michael Buesch05b64b32007-09-28 16:19:03 +02002821 msleep(1);
Michael Buesche4d6b792007-09-18 15:39:42 -04002822 }
2823 b43err(dev->wl, "MAC suspend failed\n");
2824 }
Michael Buesch05b64b32007-09-28 16:19:03 +02002825out:
Michael Buesche4d6b792007-09-18 15:39:42 -04002826 dev->mac_suspended++;
2827}
2828
Rafał Miłecki858a1652011-05-10 16:05:33 +02002829/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/MacPhyClkSet */
2830void b43_mac_phy_clock_set(struct b43_wldev *dev, bool on)
2831{
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002832 u32 tmp;
2833
2834 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002835#ifdef CONFIG_B43_BCMA
2836 case B43_BUS_BCMA:
Rafał Miłecki36677872011-07-16 18:27:55 +02002837 tmp = bcma_aread32(dev->dev->bdev, BCMA_IOCTL);
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002838 if (on)
2839 tmp |= B43_BCMA_IOCTL_MACPHYCLKEN;
2840 else
2841 tmp &= ~B43_BCMA_IOCTL_MACPHYCLKEN;
Rafał Miłecki36677872011-07-16 18:27:55 +02002842 bcma_awrite32(dev->dev->bdev, BCMA_IOCTL, tmp);
Rafał Miłecki42c9a452011-07-06 15:45:27 +02002843 break;
2844#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02002845#ifdef CONFIG_B43_SSB
2846 case B43_BUS_SSB:
2847 tmp = ssb_read32(dev->dev->sdev, SSB_TMSLOW);
2848 if (on)
2849 tmp |= B43_TMSLOW_MACPHYCLKEN;
2850 else
2851 tmp &= ~B43_TMSLOW_MACPHYCLKEN;
2852 ssb_write32(dev->dev->sdev, SSB_TMSLOW, tmp);
2853 break;
2854#endif
2855 }
Rafał Miłecki858a1652011-05-10 16:05:33 +02002856}
2857
Michael Buesche4d6b792007-09-18 15:39:42 -04002858static void b43_adjust_opmode(struct b43_wldev *dev)
2859{
2860 struct b43_wl *wl = dev->wl;
2861 u32 ctl;
2862 u16 cfp_pretbtt;
2863
2864 ctl = b43_read32(dev, B43_MMIO_MACCTL);
2865 /* Reset status to STA infrastructure mode. */
2866 ctl &= ~B43_MACCTL_AP;
2867 ctl &= ~B43_MACCTL_KEEP_CTL;
2868 ctl &= ~B43_MACCTL_KEEP_BADPLCP;
2869 ctl &= ~B43_MACCTL_KEEP_BAD;
2870 ctl &= ~B43_MACCTL_PROMISC;
Johannes Berg4150c572007-09-17 01:29:23 -04002871 ctl &= ~B43_MACCTL_BEACPROMISC;
Michael Buesche4d6b792007-09-18 15:39:42 -04002872 ctl |= B43_MACCTL_INFRA;
2873
Johannes Berg05c914f2008-09-11 00:01:58 +02002874 if (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
2875 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT))
Johannes Berg4150c572007-09-17 01:29:23 -04002876 ctl |= B43_MACCTL_AP;
Johannes Berg05c914f2008-09-11 00:01:58 +02002877 else if (b43_is_mode(wl, NL80211_IFTYPE_ADHOC))
Johannes Berg4150c572007-09-17 01:29:23 -04002878 ctl &= ~B43_MACCTL_INFRA;
2879
2880 if (wl->filter_flags & FIF_CONTROL)
Michael Buesche4d6b792007-09-18 15:39:42 -04002881 ctl |= B43_MACCTL_KEEP_CTL;
Johannes Berg4150c572007-09-17 01:29:23 -04002882 if (wl->filter_flags & FIF_FCSFAIL)
2883 ctl |= B43_MACCTL_KEEP_BAD;
2884 if (wl->filter_flags & FIF_PLCPFAIL)
2885 ctl |= B43_MACCTL_KEEP_BADPLCP;
2886 if (wl->filter_flags & FIF_PROMISC_IN_BSS)
Michael Buesche4d6b792007-09-18 15:39:42 -04002887 ctl |= B43_MACCTL_PROMISC;
Johannes Berg4150c572007-09-17 01:29:23 -04002888 if (wl->filter_flags & FIF_BCN_PRBRESP_PROMISC)
2889 ctl |= B43_MACCTL_BEACPROMISC;
2890
Michael Buesche4d6b792007-09-18 15:39:42 -04002891 /* Workaround: On old hardware the HW-MAC-address-filter
2892 * doesn't work properly, so always run promisc in filter
2893 * it in software. */
Rafał Miłecki21d889d2011-05-18 02:06:38 +02002894 if (dev->dev->core_rev <= 4)
Michael Buesche4d6b792007-09-18 15:39:42 -04002895 ctl |= B43_MACCTL_PROMISC;
2896
2897 b43_write32(dev, B43_MMIO_MACCTL, ctl);
2898
2899 cfp_pretbtt = 2;
2900 if ((ctl & B43_MACCTL_INFRA) && !(ctl & B43_MACCTL_AP)) {
Rafał Miłeckic244e082011-05-18 02:06:41 +02002901 if (dev->dev->chip_id == 0x4306 &&
2902 dev->dev->chip_rev == 3)
Michael Buesche4d6b792007-09-18 15:39:42 -04002903 cfp_pretbtt = 100;
2904 else
2905 cfp_pretbtt = 50;
2906 }
2907 b43_write16(dev, 0x612, cfp_pretbtt);
Michael Buesch09ebe2f2009-09-12 00:52:48 +02002908
2909 /* FIXME: We don't currently implement the PMQ mechanism,
2910 * so always disable it. If we want to implement PMQ,
2911 * we need to enable it here (clear DISCPMQ) in AP mode.
2912 */
2913 if (0 /* ctl & B43_MACCTL_AP */) {
2914 b43_write32(dev, B43_MMIO_MACCTL,
2915 b43_read32(dev, B43_MMIO_MACCTL)
2916 & ~B43_MACCTL_DISCPMQ);
2917 } else {
2918 b43_write32(dev, B43_MMIO_MACCTL,
2919 b43_read32(dev, B43_MMIO_MACCTL)
2920 | B43_MACCTL_DISCPMQ);
2921 }
Michael Buesche4d6b792007-09-18 15:39:42 -04002922}
2923
2924static void b43_rate_memory_write(struct b43_wldev *dev, u16 rate, int is_ofdm)
2925{
2926 u16 offset;
2927
2928 if (is_ofdm) {
2929 offset = 0x480;
2930 offset += (b43_plcp_get_ratecode_ofdm(rate) & 0x000F) * 2;
2931 } else {
2932 offset = 0x4C0;
2933 offset += (b43_plcp_get_ratecode_cck(rate) & 0x000F) * 2;
2934 }
2935 b43_shm_write16(dev, B43_SHM_SHARED, offset + 0x20,
2936 b43_shm_read16(dev, B43_SHM_SHARED, offset));
2937}
2938
2939static void b43_rate_memory_init(struct b43_wldev *dev)
2940{
2941 switch (dev->phy.type) {
2942 case B43_PHYTYPE_A:
2943 case B43_PHYTYPE_G:
Michael Buesch53a6e232008-01-13 21:23:44 +01002944 case B43_PHYTYPE_N:
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02002945 case B43_PHYTYPE_LP:
Michael Buesche4d6b792007-09-18 15:39:42 -04002946 b43_rate_memory_write(dev, B43_OFDM_RATE_6MB, 1);
2947 b43_rate_memory_write(dev, B43_OFDM_RATE_12MB, 1);
2948 b43_rate_memory_write(dev, B43_OFDM_RATE_18MB, 1);
2949 b43_rate_memory_write(dev, B43_OFDM_RATE_24MB, 1);
2950 b43_rate_memory_write(dev, B43_OFDM_RATE_36MB, 1);
2951 b43_rate_memory_write(dev, B43_OFDM_RATE_48MB, 1);
2952 b43_rate_memory_write(dev, B43_OFDM_RATE_54MB, 1);
2953 if (dev->phy.type == B43_PHYTYPE_A)
2954 break;
2955 /* fallthrough */
2956 case B43_PHYTYPE_B:
2957 b43_rate_memory_write(dev, B43_CCK_RATE_1MB, 0);
2958 b43_rate_memory_write(dev, B43_CCK_RATE_2MB, 0);
2959 b43_rate_memory_write(dev, B43_CCK_RATE_5MB, 0);
2960 b43_rate_memory_write(dev, B43_CCK_RATE_11MB, 0);
2961 break;
2962 default:
2963 B43_WARN_ON(1);
2964 }
2965}
2966
Michael Buesch5042c502008-04-05 15:05:00 +02002967/* Set the default values for the PHY TX Control Words. */
2968static void b43_set_phytxctl_defaults(struct b43_wldev *dev)
2969{
2970 u16 ctl = 0;
2971
2972 ctl |= B43_TXH_PHY_ENC_CCK;
2973 ctl |= B43_TXH_PHY_ANT01AUTO;
2974 ctl |= B43_TXH_PHY_TXPWR;
2975
2976 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_BEACPHYCTL, ctl);
2977 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL, ctl);
2978 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL, ctl);
2979}
2980
Michael Buesche4d6b792007-09-18 15:39:42 -04002981/* Set the TX-Antenna for management frames sent by firmware. */
2982static void b43_mgmtframe_txantenna(struct b43_wldev *dev, int antenna)
2983{
Michael Buesch5042c502008-04-05 15:05:00 +02002984 u16 ant;
Michael Buesche4d6b792007-09-18 15:39:42 -04002985 u16 tmp;
2986
Michael Buesch5042c502008-04-05 15:05:00 +02002987 ant = b43_antenna_to_phyctl(antenna);
Michael Buesche4d6b792007-09-18 15:39:42 -04002988
Michael Buesche4d6b792007-09-18 15:39:42 -04002989 /* For ACK/CTS */
2990 tmp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL);
Michael Buescheb189d8b2008-01-28 14:47:41 -08002991 tmp = (tmp & ~B43_TXH_PHY_ANT) | ant;
Michael Buesche4d6b792007-09-18 15:39:42 -04002992 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_ACKCTSPHYCTL, tmp);
2993 /* For Probe Resposes */
2994 tmp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL);
Michael Buescheb189d8b2008-01-28 14:47:41 -08002995 tmp = (tmp & ~B43_TXH_PHY_ANT) | ant;
Michael Buesche4d6b792007-09-18 15:39:42 -04002996 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRPHYCTL, tmp);
2997}
2998
2999/* This is the opposite of b43_chip_init() */
3000static void b43_chip_exit(struct b43_wldev *dev)
3001{
Michael Bueschfb111372008-09-02 13:00:34 +02003002 b43_phy_exit(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04003003 b43_gpio_cleanup(dev);
3004 /* firmware is released later */
3005}
3006
3007/* Initialize the chip
3008 * http://bcm-specs.sipsolutions.net/ChipInit
3009 */
3010static int b43_chip_init(struct b43_wldev *dev)
3011{
3012 struct b43_phy *phy = &dev->phy;
Michael Bueschef1a6282008-08-27 18:53:02 +02003013 int err;
Rafał Miłecki858a1652011-05-10 16:05:33 +02003014 u32 macctl;
Michael Buesche4d6b792007-09-18 15:39:42 -04003015 u16 value16;
3016
Michael Buesch1f7d87b2008-01-22 20:23:34 +01003017 /* Initialize the MAC control */
3018 macctl = B43_MACCTL_IHR_ENABLED | B43_MACCTL_SHM_ENABLED;
3019 if (dev->phy.gmode)
3020 macctl |= B43_MACCTL_GMODE;
3021 macctl |= B43_MACCTL_INFRA;
3022 b43_write32(dev, B43_MMIO_MACCTL, macctl);
Michael Buesche4d6b792007-09-18 15:39:42 -04003023
3024 err = b43_request_firmware(dev);
3025 if (err)
3026 goto out;
3027 err = b43_upload_microcode(dev);
3028 if (err)
3029 goto out; /* firmware is released later */
3030
3031 err = b43_gpio_init(dev);
3032 if (err)
3033 goto out; /* firmware is released later */
Michael Buesch21954c32007-09-27 15:31:40 +02003034
Michael Buesche4d6b792007-09-18 15:39:42 -04003035 err = b43_upload_initvals(dev);
3036 if (err)
Larry Finger1a8d1222007-12-14 13:59:11 +01003037 goto err_gpio_clean;
Michael Buesche4d6b792007-09-18 15:39:42 -04003038
Michael Buesch0b7dcd92008-09-03 12:31:54 +02003039 /* Turn the Analog on and initialize the PHY. */
3040 phy->ops->switch_analog(dev, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04003041 err = b43_phy_init(dev);
3042 if (err)
Michael Bueschef1a6282008-08-27 18:53:02 +02003043 goto err_gpio_clean;
Michael Buesche4d6b792007-09-18 15:39:42 -04003044
Michael Bueschef1a6282008-08-27 18:53:02 +02003045 /* Disable Interference Mitigation. */
3046 if (phy->ops->interf_mitigation)
3047 phy->ops->interf_mitigation(dev, B43_INTERFMODE_NONE);
Michael Buesche4d6b792007-09-18 15:39:42 -04003048
Michael Bueschef1a6282008-08-27 18:53:02 +02003049 /* Select the antennae */
3050 if (phy->ops->set_rx_antenna)
3051 phy->ops->set_rx_antenna(dev, B43_ANTENNA_DEFAULT);
Michael Buesche4d6b792007-09-18 15:39:42 -04003052 b43_mgmtframe_txantenna(dev, B43_ANTENNA_DEFAULT);
3053
3054 if (phy->type == B43_PHYTYPE_B) {
3055 value16 = b43_read16(dev, 0x005E);
3056 value16 |= 0x0004;
3057 b43_write16(dev, 0x005E, value16);
3058 }
3059 b43_write32(dev, 0x0100, 0x01000000);
Rafał Miłecki21d889d2011-05-18 02:06:38 +02003060 if (dev->dev->core_rev < 5)
Michael Buesche4d6b792007-09-18 15:39:42 -04003061 b43_write32(dev, 0x010C, 0x01000000);
3062
3063 b43_write32(dev, B43_MMIO_MACCTL, b43_read32(dev, B43_MMIO_MACCTL)
3064 & ~B43_MACCTL_INFRA);
3065 b43_write32(dev, B43_MMIO_MACCTL, b43_read32(dev, B43_MMIO_MACCTL)
3066 | B43_MACCTL_INFRA);
Michael Buesche4d6b792007-09-18 15:39:42 -04003067
Michael Buesche4d6b792007-09-18 15:39:42 -04003068 /* Probe Response Timeout value */
3069 /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
3070 b43_shm_write16(dev, B43_SHM_SHARED, 0x0074, 0x0000);
3071
3072 /* Initially set the wireless operation mode. */
3073 b43_adjust_opmode(dev);
3074
Rafał Miłecki21d889d2011-05-18 02:06:38 +02003075 if (dev->dev->core_rev < 3) {
Michael Buesche4d6b792007-09-18 15:39:42 -04003076 b43_write16(dev, 0x060E, 0x0000);
3077 b43_write16(dev, 0x0610, 0x8000);
3078 b43_write16(dev, 0x0604, 0x0000);
3079 b43_write16(dev, 0x0606, 0x0200);
3080 } else {
3081 b43_write32(dev, 0x0188, 0x80000000);
3082 b43_write32(dev, 0x018C, 0x02000000);
3083 }
3084 b43_write32(dev, B43_MMIO_GEN_IRQ_REASON, 0x00004000);
3085 b43_write32(dev, B43_MMIO_DMA0_IRQ_MASK, 0x0001DC00);
3086 b43_write32(dev, B43_MMIO_DMA1_IRQ_MASK, 0x0000DC00);
3087 b43_write32(dev, B43_MMIO_DMA2_IRQ_MASK, 0x0000DC00);
3088 b43_write32(dev, B43_MMIO_DMA3_IRQ_MASK, 0x0001DC00);
3089 b43_write32(dev, B43_MMIO_DMA4_IRQ_MASK, 0x0000DC00);
3090 b43_write32(dev, B43_MMIO_DMA5_IRQ_MASK, 0x0000DC00);
3091
Rafał Miłecki858a1652011-05-10 16:05:33 +02003092 b43_mac_phy_clock_set(dev, true);
Michael Buesche4d6b792007-09-18 15:39:42 -04003093
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003094 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02003095#ifdef CONFIG_B43_BCMA
3096 case B43_BUS_BCMA:
3097 /* FIXME: 0xE74 is quite common, but should be read from CC */
3098 b43_write16(dev, B43_MMIO_POWERUP_DELAY, 0xE74);
3099 break;
3100#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003101#ifdef CONFIG_B43_SSB
3102 case B43_BUS_SSB:
3103 b43_write16(dev, B43_MMIO_POWERUP_DELAY,
3104 dev->dev->sdev->bus->chipco.fast_pwrup_delay);
3105 break;
3106#endif
3107 }
Michael Buesche4d6b792007-09-18 15:39:42 -04003108
3109 err = 0;
3110 b43dbg(dev->wl, "Chip initialized\n");
Michael Buesch21954c32007-09-27 15:31:40 +02003111out:
Michael Buesche4d6b792007-09-18 15:39:42 -04003112 return err;
3113
Larry Finger1a8d1222007-12-14 13:59:11 +01003114err_gpio_clean:
Michael Buesche4d6b792007-09-18 15:39:42 -04003115 b43_gpio_cleanup(dev);
Michael Buesch21954c32007-09-27 15:31:40 +02003116 return err;
Michael Buesche4d6b792007-09-18 15:39:42 -04003117}
3118
Michael Buesche4d6b792007-09-18 15:39:42 -04003119static void b43_periodic_every60sec(struct b43_wldev *dev)
3120{
Michael Bueschef1a6282008-08-27 18:53:02 +02003121 const struct b43_phy_operations *ops = dev->phy.ops;
Michael Buesche4d6b792007-09-18 15:39:42 -04003122
Michael Bueschef1a6282008-08-27 18:53:02 +02003123 if (ops->pwork_60sec)
3124 ops->pwork_60sec(dev);
Michael Buesch18c8ade2008-08-28 19:33:40 +02003125
3126 /* Force check the TX power emission now. */
3127 b43_phy_txpower_check(dev, B43_TXPWR_IGNORE_TIME);
Michael Buesche4d6b792007-09-18 15:39:42 -04003128}
3129
3130static void b43_periodic_every30sec(struct b43_wldev *dev)
3131{
3132 /* Update device statistics. */
3133 b43_calculate_link_quality(dev);
3134}
3135
3136static void b43_periodic_every15sec(struct b43_wldev *dev)
3137{
3138 struct b43_phy *phy = &dev->phy;
Michael Buesch9b839a72008-06-20 17:44:02 +02003139 u16 wdr;
3140
3141 if (dev->fw.opensource) {
3142 /* Check if the firmware is still alive.
3143 * It will reset the watchdog counter to 0 in its idle loop. */
3144 wdr = b43_shm_read16(dev, B43_SHM_SCRATCH, B43_WATCHDOG_REG);
3145 if (unlikely(wdr)) {
3146 b43err(dev->wl, "Firmware watchdog: The firmware died!\n");
3147 b43_controller_restart(dev, "Firmware watchdog");
3148 return;
3149 } else {
3150 b43_shm_write16(dev, B43_SHM_SCRATCH,
3151 B43_WATCHDOG_REG, 1);
3152 }
3153 }
Michael Buesche4d6b792007-09-18 15:39:42 -04003154
Michael Bueschef1a6282008-08-27 18:53:02 +02003155 if (phy->ops->pwork_15sec)
3156 phy->ops->pwork_15sec(dev);
3157
Stefano Brivio00e0b8c2007-11-25 11:10:33 +01003158 atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT);
3159 wmb();
Michael Buesch990b86f2009-09-12 00:48:03 +02003160
3161#if B43_DEBUG
3162 if (b43_debug(dev, B43_DBG_VERBOSESTATS)) {
3163 unsigned int i;
3164
3165 b43dbg(dev->wl, "Stats: %7u IRQs/sec, %7u TX/sec, %7u RX/sec\n",
3166 dev->irq_count / 15,
3167 dev->tx_count / 15,
3168 dev->rx_count / 15);
3169 dev->irq_count = 0;
3170 dev->tx_count = 0;
3171 dev->rx_count = 0;
3172 for (i = 0; i < ARRAY_SIZE(dev->irq_bit_count); i++) {
3173 if (dev->irq_bit_count[i]) {
3174 b43dbg(dev->wl, "Stats: %7u IRQ-%02u/sec (0x%08X)\n",
3175 dev->irq_bit_count[i] / 15, i, (1 << i));
3176 dev->irq_bit_count[i] = 0;
3177 }
3178 }
3179 }
3180#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04003181}
3182
Michael Buesche4d6b792007-09-18 15:39:42 -04003183static void do_periodic_work(struct b43_wldev *dev)
3184{
3185 unsigned int state;
3186
3187 state = dev->periodic_state;
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003188 if (state % 4 == 0)
Michael Buesche4d6b792007-09-18 15:39:42 -04003189 b43_periodic_every60sec(dev);
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003190 if (state % 2 == 0)
Michael Buesche4d6b792007-09-18 15:39:42 -04003191 b43_periodic_every30sec(dev);
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003192 b43_periodic_every15sec(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04003193}
3194
Michael Buesch05b64b32007-09-28 16:19:03 +02003195/* Periodic work locking policy:
3196 * The whole periodic work handler is protected by
3197 * wl->mutex. If another lock is needed somewhere in the
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003198 * pwork callchain, it's acquired in-place, where it's needed.
Michael Buesche4d6b792007-09-18 15:39:42 -04003199 */
Michael Buesche4d6b792007-09-18 15:39:42 -04003200static void b43_periodic_work_handler(struct work_struct *work)
3201{
Michael Buesch05b64b32007-09-28 16:19:03 +02003202 struct b43_wldev *dev = container_of(work, struct b43_wldev,
3203 periodic_work.work);
3204 struct b43_wl *wl = dev->wl;
3205 unsigned long delay;
Michael Buesche4d6b792007-09-18 15:39:42 -04003206
Michael Buesch05b64b32007-09-28 16:19:03 +02003207 mutex_lock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003208
3209 if (unlikely(b43_status(dev) != B43_STAT_STARTED))
3210 goto out;
3211 if (b43_debug(dev, B43_DBG_PWORK_STOP))
3212 goto out_requeue;
3213
Michael Buesch05b64b32007-09-28 16:19:03 +02003214 do_periodic_work(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04003215
Michael Buesche4d6b792007-09-18 15:39:42 -04003216 dev->periodic_state++;
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003217out_requeue:
Michael Buesche4d6b792007-09-18 15:39:42 -04003218 if (b43_debug(dev, B43_DBG_PWORK_FAST))
3219 delay = msecs_to_jiffies(50);
3220 else
Anton Blanchard82cd6822007-10-15 00:42:23 -05003221 delay = round_jiffies_relative(HZ * 15);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003222 ieee80211_queue_delayed_work(wl->hw, &dev->periodic_work, delay);
Michael Buesch42bb4cd2007-09-28 14:22:33 +02003223out:
Michael Buesch05b64b32007-09-28 16:19:03 +02003224 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003225}
3226
3227static void b43_periodic_tasks_setup(struct b43_wldev *dev)
3228{
3229 struct delayed_work *work = &dev->periodic_work;
3230
3231 dev->periodic_state = 0;
3232 INIT_DELAYED_WORK(work, b43_periodic_work_handler);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003233 ieee80211_queue_delayed_work(dev->wl->hw, work, 0);
Michael Buesche4d6b792007-09-18 15:39:42 -04003234}
3235
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003236/* Check if communication with the device works correctly. */
Michael Buesche4d6b792007-09-18 15:39:42 -04003237static int b43_validate_chipaccess(struct b43_wldev *dev)
3238{
Michael Bueschf62ae6c2009-07-31 20:51:41 +02003239 u32 v, backup0, backup4;
Michael Buesche4d6b792007-09-18 15:39:42 -04003240
Michael Bueschf62ae6c2009-07-31 20:51:41 +02003241 backup0 = b43_shm_read32(dev, B43_SHM_SHARED, 0);
3242 backup4 = b43_shm_read32(dev, B43_SHM_SHARED, 4);
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003243
3244 /* Check for read/write and endianness problems. */
Michael Buesche4d6b792007-09-18 15:39:42 -04003245 b43_shm_write32(dev, B43_SHM_SHARED, 0, 0x55AAAA55);
3246 if (b43_shm_read32(dev, B43_SHM_SHARED, 0) != 0x55AAAA55)
3247 goto error;
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003248 b43_shm_write32(dev, B43_SHM_SHARED, 0, 0xAA5555AA);
3249 if (b43_shm_read32(dev, B43_SHM_SHARED, 0) != 0xAA5555AA)
Michael Buesche4d6b792007-09-18 15:39:42 -04003250 goto error;
3251
Michael Bueschf62ae6c2009-07-31 20:51:41 +02003252 /* Check if unaligned 32bit SHM_SHARED access works properly.
3253 * However, don't bail out on failure, because it's noncritical. */
3254 b43_shm_write16(dev, B43_SHM_SHARED, 0, 0x1122);
3255 b43_shm_write16(dev, B43_SHM_SHARED, 2, 0x3344);
3256 b43_shm_write16(dev, B43_SHM_SHARED, 4, 0x5566);
3257 b43_shm_write16(dev, B43_SHM_SHARED, 6, 0x7788);
3258 if (b43_shm_read32(dev, B43_SHM_SHARED, 2) != 0x55663344)
3259 b43warn(dev->wl, "Unaligned 32bit SHM read access is broken\n");
3260 b43_shm_write32(dev, B43_SHM_SHARED, 2, 0xAABBCCDD);
3261 if (b43_shm_read16(dev, B43_SHM_SHARED, 0) != 0x1122 ||
3262 b43_shm_read16(dev, B43_SHM_SHARED, 2) != 0xCCDD ||
3263 b43_shm_read16(dev, B43_SHM_SHARED, 4) != 0xAABB ||
3264 b43_shm_read16(dev, B43_SHM_SHARED, 6) != 0x7788)
3265 b43warn(dev->wl, "Unaligned 32bit SHM write access is broken\n");
3266
3267 b43_shm_write32(dev, B43_SHM_SHARED, 0, backup0);
3268 b43_shm_write32(dev, B43_SHM_SHARED, 4, backup4);
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003269
Rafał Miłecki21d889d2011-05-18 02:06:38 +02003270 if ((dev->dev->core_rev >= 3) && (dev->dev->core_rev <= 10)) {
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003271 /* The 32bit register shadows the two 16bit registers
3272 * with update sideeffects. Validate this. */
3273 b43_write16(dev, B43_MMIO_TSF_CFP_START, 0xAAAA);
3274 b43_write32(dev, B43_MMIO_TSF_CFP_START, 0xCCCCBBBB);
3275 if (b43_read16(dev, B43_MMIO_TSF_CFP_START_LOW) != 0xBBBB)
3276 goto error;
3277 if (b43_read16(dev, B43_MMIO_TSF_CFP_START_HIGH) != 0xCCCC)
3278 goto error;
3279 }
3280 b43_write32(dev, B43_MMIO_TSF_CFP_START, 0);
3281
3282 v = b43_read32(dev, B43_MMIO_MACCTL);
3283 v |= B43_MACCTL_GMODE;
3284 if (v != (B43_MACCTL_GMODE | B43_MACCTL_IHR_ENABLED))
Michael Buesche4d6b792007-09-18 15:39:42 -04003285 goto error;
3286
3287 return 0;
Michael Bueschf3dd3fc2007-12-22 21:56:30 +01003288error:
Michael Buesche4d6b792007-09-18 15:39:42 -04003289 b43err(dev->wl, "Failed to validate the chipaccess\n");
3290 return -ENODEV;
3291}
3292
3293static void b43_security_init(struct b43_wldev *dev)
3294{
Michael Buesche4d6b792007-09-18 15:39:42 -04003295 dev->ktp = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_KTP);
3296 /* KTP is a word address, but we address SHM bytewise.
3297 * So multiply by two.
3298 */
3299 dev->ktp *= 2;
Michael Buesch66d2d082009-08-06 10:36:50 +02003300 /* Number of RCMTA address slots */
3301 b43_write16(dev, B43_MMIO_RCMTA_COUNT, B43_NR_PAIRWISE_KEYS);
3302 /* Clear the key memory. */
Michael Buesche4d6b792007-09-18 15:39:42 -04003303 b43_clear_keys(dev);
3304}
3305
Michael Buesch616de352009-03-29 13:19:31 +02003306#ifdef CONFIG_B43_HWRNG
John Daiker99da1852009-02-24 02:16:42 -08003307static int b43_rng_read(struct hwrng *rng, u32 *data)
Michael Buesche4d6b792007-09-18 15:39:42 -04003308{
3309 struct b43_wl *wl = (struct b43_wl *)rng->priv;
Michael Buescha78b3bb2009-09-11 21:44:05 +02003310 struct b43_wldev *dev;
3311 int count = -ENODEV;
Michael Buesche4d6b792007-09-18 15:39:42 -04003312
Michael Buescha78b3bb2009-09-11 21:44:05 +02003313 mutex_lock(&wl->mutex);
3314 dev = wl->current_dev;
3315 if (likely(dev && b43_status(dev) >= B43_STAT_INITIALIZED)) {
3316 *data = b43_read16(dev, B43_MMIO_RNG);
3317 count = sizeof(u16);
3318 }
3319 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003320
Michael Buescha78b3bb2009-09-11 21:44:05 +02003321 return count;
Michael Buesche4d6b792007-09-18 15:39:42 -04003322}
Michael Buesch616de352009-03-29 13:19:31 +02003323#endif /* CONFIG_B43_HWRNG */
Michael Buesche4d6b792007-09-18 15:39:42 -04003324
Rafael J. Wysockib844eba2008-03-23 20:28:24 +01003325static void b43_rng_exit(struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04003326{
Michael Buesch616de352009-03-29 13:19:31 +02003327#ifdef CONFIG_B43_HWRNG
Michael Buesche4d6b792007-09-18 15:39:42 -04003328 if (wl->rng_initialized)
Rafael J. Wysockib844eba2008-03-23 20:28:24 +01003329 hwrng_unregister(&wl->rng);
Michael Buesch616de352009-03-29 13:19:31 +02003330#endif /* CONFIG_B43_HWRNG */
Michael Buesche4d6b792007-09-18 15:39:42 -04003331}
3332
3333static int b43_rng_init(struct b43_wl *wl)
3334{
Michael Buesch616de352009-03-29 13:19:31 +02003335 int err = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04003336
Michael Buesch616de352009-03-29 13:19:31 +02003337#ifdef CONFIG_B43_HWRNG
Michael Buesche4d6b792007-09-18 15:39:42 -04003338 snprintf(wl->rng_name, ARRAY_SIZE(wl->rng_name),
3339 "%s_%s", KBUILD_MODNAME, wiphy_name(wl->hw->wiphy));
3340 wl->rng.name = wl->rng_name;
3341 wl->rng.data_read = b43_rng_read;
3342 wl->rng.priv = (unsigned long)wl;
3343 wl->rng_initialized = 1;
3344 err = hwrng_register(&wl->rng);
3345 if (err) {
3346 wl->rng_initialized = 0;
3347 b43err(wl, "Failed to register the random "
3348 "number generator (%d)\n", err);
3349 }
Michael Buesch616de352009-03-29 13:19:31 +02003350#endif /* CONFIG_B43_HWRNG */
Michael Buesche4d6b792007-09-18 15:39:42 -04003351
3352 return err;
3353}
3354
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003355static void b43_tx_work(struct work_struct *work)
Michael Buesche4d6b792007-09-18 15:39:42 -04003356{
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003357 struct b43_wl *wl = container_of(work, struct b43_wl, tx_work);
3358 struct b43_wldev *dev;
3359 struct sk_buff *skb;
3360 int err = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04003361
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003362 mutex_lock(&wl->mutex);
3363 dev = wl->current_dev;
3364 if (unlikely(!dev || b43_status(dev) < B43_STAT_STARTED)) {
3365 mutex_unlock(&wl->mutex);
3366 return;
Michael Buesch5100d5a2008-03-29 21:01:16 +01003367 }
Michael Buesch21a75d72008-04-25 19:29:08 +02003368
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003369 while (skb_queue_len(&wl->tx_queue)) {
3370 skb = skb_dequeue(&wl->tx_queue);
Michael Buesch21a75d72008-04-25 19:29:08 +02003371
Michael Buesch21a75d72008-04-25 19:29:08 +02003372 if (b43_using_pio_transfers(dev))
Johannes Berge039fa42008-05-15 12:55:29 +02003373 err = b43_pio_tx(dev, skb);
Michael Buesch21a75d72008-04-25 19:29:08 +02003374 else
Johannes Berge039fa42008-05-15 12:55:29 +02003375 err = b43_dma_tx(dev, skb);
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003376 if (unlikely(err))
3377 dev_kfree_skb(skb); /* Drop it */
Michael Buesch21a75d72008-04-25 19:29:08 +02003378 }
3379
Michael Buesch990b86f2009-09-12 00:48:03 +02003380#if B43_DEBUG
3381 dev->tx_count++;
3382#endif
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003383 mutex_unlock(&wl->mutex);
3384}
Michael Buesch21a75d72008-04-25 19:29:08 +02003385
Johannes Berg7bb45682011-02-24 14:42:06 +01003386static void b43_op_tx(struct ieee80211_hw *hw,
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003387 struct sk_buff *skb)
3388{
3389 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Bueschc9e8eae2008-06-15 15:17:29 +02003390
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003391 if (unlikely(skb->len < 2 + 2 + 6)) {
3392 /* Too short, this can't be a valid frame. */
3393 dev_kfree_skb_any(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01003394 return;
Michael Bueschf5d40ee2009-09-04 22:53:18 +02003395 }
3396 B43_WARN_ON(skb_shinfo(skb)->nr_frags);
3397
3398 skb_queue_tail(&wl->tx_queue, skb);
3399 ieee80211_queue_work(wl->hw, &wl->tx_work);
Michael Buesche4d6b792007-09-18 15:39:42 -04003400}
3401
Michael Buesche6f5b932008-03-05 21:18:49 +01003402static void b43_qos_params_upload(struct b43_wldev *dev,
3403 const struct ieee80211_tx_queue_params *p,
3404 u16 shm_offset)
3405{
3406 u16 params[B43_NR_QOSPARAMS];
Johannes Berg0b576642008-07-15 02:08:24 -07003407 int bslots, tmp;
Michael Buesche6f5b932008-03-05 21:18:49 +01003408 unsigned int i;
3409
Michael Bueschb0544eb2009-09-06 15:42:45 +02003410 if (!dev->qos_enabled)
3411 return;
3412
Johannes Berg0b576642008-07-15 02:08:24 -07003413 bslots = b43_read16(dev, B43_MMIO_RNG) & p->cw_min;
Michael Buesche6f5b932008-03-05 21:18:49 +01003414
3415 memset(&params, 0, sizeof(params));
3416
3417 params[B43_QOSPARAM_TXOP] = p->txop * 32;
Johannes Berg0b576642008-07-15 02:08:24 -07003418 params[B43_QOSPARAM_CWMIN] = p->cw_min;
3419 params[B43_QOSPARAM_CWMAX] = p->cw_max;
3420 params[B43_QOSPARAM_CWCUR] = p->cw_min;
3421 params[B43_QOSPARAM_AIFS] = p->aifs;
Michael Buesche6f5b932008-03-05 21:18:49 +01003422 params[B43_QOSPARAM_BSLOTS] = bslots;
Johannes Berg0b576642008-07-15 02:08:24 -07003423 params[B43_QOSPARAM_REGGAP] = bslots + p->aifs;
Michael Buesche6f5b932008-03-05 21:18:49 +01003424
3425 for (i = 0; i < ARRAY_SIZE(params); i++) {
3426 if (i == B43_QOSPARAM_STATUS) {
3427 tmp = b43_shm_read16(dev, B43_SHM_SHARED,
3428 shm_offset + (i * 2));
3429 /* Mark the parameters as updated. */
3430 tmp |= 0x100;
3431 b43_shm_write16(dev, B43_SHM_SHARED,
3432 shm_offset + (i * 2),
3433 tmp);
3434 } else {
3435 b43_shm_write16(dev, B43_SHM_SHARED,
3436 shm_offset + (i * 2),
3437 params[i]);
3438 }
3439 }
3440}
3441
Michael Bueschc40c1122008-09-06 16:21:47 +02003442/* Mapping of mac80211 queue numbers to b43 QoS SHM offsets. */
3443static const u16 b43_qos_shm_offsets[] = {
3444 /* [mac80211-queue-nr] = SHM_OFFSET, */
3445 [0] = B43_QOS_VOICE,
3446 [1] = B43_QOS_VIDEO,
3447 [2] = B43_QOS_BESTEFFORT,
3448 [3] = B43_QOS_BACKGROUND,
3449};
3450
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003451/* Update all QOS parameters in hardware. */
3452static void b43_qos_upload_all(struct b43_wldev *dev)
Michael Buesche6f5b932008-03-05 21:18:49 +01003453{
3454 struct b43_wl *wl = dev->wl;
3455 struct b43_qos_params *params;
Michael Buesche6f5b932008-03-05 21:18:49 +01003456 unsigned int i;
3457
Michael Bueschb0544eb2009-09-06 15:42:45 +02003458 if (!dev->qos_enabled)
3459 return;
3460
Michael Bueschc40c1122008-09-06 16:21:47 +02003461 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3462 ARRAY_SIZE(wl->qos_params));
Michael Buesche6f5b932008-03-05 21:18:49 +01003463
3464 b43_mac_suspend(dev);
Michael Buesche6f5b932008-03-05 21:18:49 +01003465 for (i = 0; i < ARRAY_SIZE(wl->qos_params); i++) {
3466 params = &(wl->qos_params[i]);
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003467 b43_qos_params_upload(dev, &(params->p),
3468 b43_qos_shm_offsets[i]);
Michael Buesche6f5b932008-03-05 21:18:49 +01003469 }
Michael Buesche6f5b932008-03-05 21:18:49 +01003470 b43_mac_enable(dev);
3471}
3472
3473static void b43_qos_clear(struct b43_wl *wl)
3474{
3475 struct b43_qos_params *params;
3476 unsigned int i;
3477
Michael Bueschc40c1122008-09-06 16:21:47 +02003478 /* Initialize QoS parameters to sane defaults. */
3479
3480 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3481 ARRAY_SIZE(wl->qos_params));
3482
Michael Buesche6f5b932008-03-05 21:18:49 +01003483 for (i = 0; i < ARRAY_SIZE(wl->qos_params); i++) {
3484 params = &(wl->qos_params[i]);
3485
Michael Bueschc40c1122008-09-06 16:21:47 +02003486 switch (b43_qos_shm_offsets[i]) {
3487 case B43_QOS_VOICE:
3488 params->p.txop = 0;
3489 params->p.aifs = 2;
3490 params->p.cw_min = 0x0001;
3491 params->p.cw_max = 0x0001;
3492 break;
3493 case B43_QOS_VIDEO:
3494 params->p.txop = 0;
3495 params->p.aifs = 2;
3496 params->p.cw_min = 0x0001;
3497 params->p.cw_max = 0x0001;
3498 break;
3499 case B43_QOS_BESTEFFORT:
3500 params->p.txop = 0;
3501 params->p.aifs = 3;
3502 params->p.cw_min = 0x0001;
3503 params->p.cw_max = 0x03FF;
3504 break;
3505 case B43_QOS_BACKGROUND:
3506 params->p.txop = 0;
3507 params->p.aifs = 7;
3508 params->p.cw_min = 0x0001;
3509 params->p.cw_max = 0x03FF;
3510 break;
3511 default:
3512 B43_WARN_ON(1);
3513 }
Michael Buesche6f5b932008-03-05 21:18:49 +01003514 }
3515}
3516
3517/* Initialize the core's QOS capabilities */
3518static void b43_qos_init(struct b43_wldev *dev)
3519{
Michael Bueschb0544eb2009-09-06 15:42:45 +02003520 if (!dev->qos_enabled) {
3521 /* Disable QOS support. */
3522 b43_hf_write(dev, b43_hf_read(dev) & ~B43_HF_EDCF);
3523 b43_write16(dev, B43_MMIO_IFSCTL,
3524 b43_read16(dev, B43_MMIO_IFSCTL)
3525 & ~B43_MMIO_IFSCTL_USE_EDCF);
3526 b43dbg(dev->wl, "QoS disabled\n");
3527 return;
3528 }
3529
Michael Buesche6f5b932008-03-05 21:18:49 +01003530 /* Upload the current QOS parameters. */
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003531 b43_qos_upload_all(dev);
Michael Buesche6f5b932008-03-05 21:18:49 +01003532
3533 /* Enable QOS support. */
3534 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_EDCF);
3535 b43_write16(dev, B43_MMIO_IFSCTL,
3536 b43_read16(dev, B43_MMIO_IFSCTL)
3537 | B43_MMIO_IFSCTL_USE_EDCF);
Michael Bueschb0544eb2009-09-06 15:42:45 +02003538 b43dbg(dev->wl, "QoS enabled\n");
Michael Buesche6f5b932008-03-05 21:18:49 +01003539}
3540
Johannes Berge100bb62008-04-30 18:51:21 +02003541static int b43_op_conf_tx(struct ieee80211_hw *hw, u16 _queue,
Michael Buesch40faacc2007-10-28 16:29:32 +01003542 const struct ieee80211_tx_queue_params *params)
Michael Buesche4d6b792007-09-18 15:39:42 -04003543{
Michael Buesche6f5b932008-03-05 21:18:49 +01003544 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003545 struct b43_wldev *dev;
Michael Buesche6f5b932008-03-05 21:18:49 +01003546 unsigned int queue = (unsigned int)_queue;
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003547 int err = -ENODEV;
Michael Buesche6f5b932008-03-05 21:18:49 +01003548
3549 if (queue >= ARRAY_SIZE(wl->qos_params)) {
3550 /* Queue not available or don't support setting
3551 * params on this queue. Return success to not
3552 * confuse mac80211. */
3553 return 0;
3554 }
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003555 BUILD_BUG_ON(ARRAY_SIZE(b43_qos_shm_offsets) !=
3556 ARRAY_SIZE(wl->qos_params));
Michael Buesche6f5b932008-03-05 21:18:49 +01003557
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003558 mutex_lock(&wl->mutex);
3559 dev = wl->current_dev;
3560 if (unlikely(!dev || (b43_status(dev) < B43_STAT_INITIALIZED)))
3561 goto out_unlock;
Michael Buesche6f5b932008-03-05 21:18:49 +01003562
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003563 memcpy(&(wl->qos_params[queue].p), params, sizeof(*params));
3564 b43_mac_suspend(dev);
3565 b43_qos_params_upload(dev, &(wl->qos_params[queue].p),
3566 b43_qos_shm_offsets[queue]);
3567 b43_mac_enable(dev);
3568 err = 0;
Michael Buesche6f5b932008-03-05 21:18:49 +01003569
Michael Buesch5a5f3b42008-09-06 20:07:31 +02003570out_unlock:
3571 mutex_unlock(&wl->mutex);
3572
3573 return err;
Michael Buesche4d6b792007-09-18 15:39:42 -04003574}
3575
Michael Buesch40faacc2007-10-28 16:29:32 +01003576static int b43_op_get_stats(struct ieee80211_hw *hw,
3577 struct ieee80211_low_level_stats *stats)
Michael Buesche4d6b792007-09-18 15:39:42 -04003578{
3579 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04003580
Michael Buesch36dbd952009-09-04 22:51:29 +02003581 mutex_lock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003582 memcpy(stats, &wl->ieee_stats, sizeof(*stats));
Michael Buesch36dbd952009-09-04 22:51:29 +02003583 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04003584
3585 return 0;
3586}
3587
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003588static u64 b43_op_get_tsf(struct ieee80211_hw *hw)
3589{
3590 struct b43_wl *wl = hw_to_b43_wl(hw);
3591 struct b43_wldev *dev;
3592 u64 tsf;
3593
3594 mutex_lock(&wl->mutex);
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003595 dev = wl->current_dev;
3596
3597 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED))
3598 b43_tsf_read(dev, &tsf);
3599 else
3600 tsf = 0;
3601
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003602 mutex_unlock(&wl->mutex);
3603
3604 return tsf;
3605}
3606
3607static void b43_op_set_tsf(struct ieee80211_hw *hw, u64 tsf)
3608{
3609 struct b43_wl *wl = hw_to_b43_wl(hw);
3610 struct b43_wldev *dev;
3611
3612 mutex_lock(&wl->mutex);
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003613 dev = wl->current_dev;
3614
3615 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED))
3616 b43_tsf_write(dev, tsf);
3617
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01003618 mutex_unlock(&wl->mutex);
3619}
3620
Michael Buesche4d6b792007-09-18 15:39:42 -04003621static void b43_put_phy_into_reset(struct b43_wldev *dev)
3622{
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003623 u32 tmp;
Michael Buesche4d6b792007-09-18 15:39:42 -04003624
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003625 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02003626#ifdef CONFIG_B43_BCMA
3627 case B43_BUS_BCMA:
3628 b43err(dev->wl,
3629 "Putting PHY into reset not supported on BCMA\n");
3630 break;
3631#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003632#ifdef CONFIG_B43_SSB
3633 case B43_BUS_SSB:
3634 tmp = ssb_read32(dev->dev->sdev, SSB_TMSLOW);
3635 tmp &= ~B43_TMSLOW_GMODE;
3636 tmp |= B43_TMSLOW_PHYRESET;
3637 tmp |= SSB_TMSLOW_FGC;
3638 ssb_write32(dev->dev->sdev, SSB_TMSLOW, tmp);
3639 msleep(1);
Michael Buesche4d6b792007-09-18 15:39:42 -04003640
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02003641 tmp = ssb_read32(dev->dev->sdev, SSB_TMSLOW);
3642 tmp &= ~SSB_TMSLOW_FGC;
3643 tmp |= B43_TMSLOW_PHYRESET;
3644 ssb_write32(dev->dev->sdev, SSB_TMSLOW, tmp);
3645 msleep(1);
3646
3647 break;
3648#endif
3649 }
Michael Buesche4d6b792007-09-18 15:39:42 -04003650}
3651
John Daiker99da1852009-02-24 02:16:42 -08003652static const char *band_to_string(enum ieee80211_band band)
Michael Buesche4d6b792007-09-18 15:39:42 -04003653{
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003654 switch (band) {
3655 case IEEE80211_BAND_5GHZ:
3656 return "5";
3657 case IEEE80211_BAND_2GHZ:
3658 return "2.4";
3659 default:
3660 break;
3661 }
3662 B43_WARN_ON(1);
3663 return "";
3664}
3665
3666/* Expects wl->mutex locked */
3667static int b43_switch_band(struct b43_wl *wl, struct ieee80211_channel *chan)
3668{
3669 struct b43_wldev *up_dev = NULL;
Michael Buesche4d6b792007-09-18 15:39:42 -04003670 struct b43_wldev *down_dev;
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003671 struct b43_wldev *d;
Michael Buesche4d6b792007-09-18 15:39:42 -04003672 int err;
John W. Linville922d8a02009-01-12 14:40:20 -05003673 bool uninitialized_var(gmode);
Michael Buesche4d6b792007-09-18 15:39:42 -04003674 int prev_status;
3675
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003676 /* Find a device and PHY which supports the band. */
3677 list_for_each_entry(d, &wl->devlist, list) {
3678 switch (chan->band) {
3679 case IEEE80211_BAND_5GHZ:
3680 if (d->phy.supports_5ghz) {
3681 up_dev = d;
3682 gmode = 0;
3683 }
3684 break;
3685 case IEEE80211_BAND_2GHZ:
3686 if (d->phy.supports_2ghz) {
3687 up_dev = d;
3688 gmode = 1;
3689 }
3690 break;
3691 default:
3692 B43_WARN_ON(1);
3693 return -EINVAL;
3694 }
3695 if (up_dev)
3696 break;
3697 }
3698 if (!up_dev) {
3699 b43err(wl, "Could not find a device for %s-GHz band operation\n",
3700 band_to_string(chan->band));
3701 return -ENODEV;
Michael Buesche4d6b792007-09-18 15:39:42 -04003702 }
3703 if ((up_dev == wl->current_dev) &&
3704 (!!wl->current_dev->phy.gmode == !!gmode)) {
3705 /* This device is already running. */
3706 return 0;
3707 }
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003708 b43dbg(wl, "Switching to %s-GHz band\n",
3709 band_to_string(chan->band));
Michael Buesche4d6b792007-09-18 15:39:42 -04003710 down_dev = wl->current_dev;
3711
3712 prev_status = b43_status(down_dev);
3713 /* Shutdown the currently running core. */
3714 if (prev_status >= B43_STAT_STARTED)
Michael Buesch36dbd952009-09-04 22:51:29 +02003715 down_dev = b43_wireless_core_stop(down_dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04003716 if (prev_status >= B43_STAT_INITIALIZED)
3717 b43_wireless_core_exit(down_dev);
3718
3719 if (down_dev != up_dev) {
3720 /* We switch to a different core, so we put PHY into
3721 * RESET on the old core. */
3722 b43_put_phy_into_reset(down_dev);
3723 }
3724
3725 /* Now start the new core. */
3726 up_dev->phy.gmode = gmode;
3727 if (prev_status >= B43_STAT_INITIALIZED) {
3728 err = b43_wireless_core_init(up_dev);
3729 if (err) {
3730 b43err(wl, "Fatal: Could not initialize device for "
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003731 "selected %s-GHz band\n",
3732 band_to_string(chan->band));
Michael Buesche4d6b792007-09-18 15:39:42 -04003733 goto init_failure;
3734 }
3735 }
3736 if (prev_status >= B43_STAT_STARTED) {
3737 err = b43_wireless_core_start(up_dev);
3738 if (err) {
3739 b43err(wl, "Fatal: Coult not start device for "
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003740 "selected %s-GHz band\n",
3741 band_to_string(chan->band));
Michael Buesche4d6b792007-09-18 15:39:42 -04003742 b43_wireless_core_exit(up_dev);
3743 goto init_failure;
3744 }
3745 }
3746 B43_WARN_ON(b43_status(up_dev) != prev_status);
3747
3748 wl->current_dev = up_dev;
3749
3750 return 0;
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003751init_failure:
Michael Buesche4d6b792007-09-18 15:39:42 -04003752 /* Whoops, failed to init the new core. No core is operating now. */
3753 wl->current_dev = NULL;
3754 return err;
3755}
3756
Johannes Berg9124b072008-10-14 19:17:54 +02003757/* Write the short and long frame retry limit values. */
3758static void b43_set_retry_limits(struct b43_wldev *dev,
3759 unsigned int short_retry,
3760 unsigned int long_retry)
3761{
3762 /* The retry limit is a 4-bit counter. Enforce this to avoid overflowing
3763 * the chip-internal counter. */
3764 short_retry = min(short_retry, (unsigned int)0xF);
3765 long_retry = min(long_retry, (unsigned int)0xF);
3766
3767 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_SRLIMIT,
3768 short_retry);
3769 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_LRLIMIT,
3770 long_retry);
3771}
3772
Johannes Berge8975582008-10-09 12:18:51 +02003773static int b43_op_config(struct ieee80211_hw *hw, u32 changed)
Michael Buesche4d6b792007-09-18 15:39:42 -04003774{
3775 struct b43_wl *wl = hw_to_b43_wl(hw);
3776 struct b43_wldev *dev;
3777 struct b43_phy *phy;
Johannes Berge8975582008-10-09 12:18:51 +02003778 struct ieee80211_conf *conf = &hw->conf;
Michael Buesch9db1f6d2007-12-22 21:54:20 +01003779 int antenna;
Michael Buesche4d6b792007-09-18 15:39:42 -04003780 int err = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04003781
Michael Buesche4d6b792007-09-18 15:39:42 -04003782 mutex_lock(&wl->mutex);
3783
Michael Bueschbb1eeff2008-02-09 12:08:58 +01003784 /* Switch the band (if necessary). This might change the active core. */
3785 err = b43_switch_band(wl, conf->channel);
Michael Buesche4d6b792007-09-18 15:39:42 -04003786 if (err)
3787 goto out_unlock_mutex;
3788 dev = wl->current_dev;
3789 phy = &dev->phy;
3790
Rafał Miłeckiaa4c7b22010-01-22 01:53:12 +01003791 if (conf_is_ht(conf))
3792 phy->is_40mhz =
3793 (conf_is_ht40_minus(conf) || conf_is_ht40_plus(conf));
3794 else
3795 phy->is_40mhz = false;
3796
Michael Bueschd10d0e52008-12-18 22:13:39 +01003797 b43_mac_suspend(dev);
3798
Johannes Berg9124b072008-10-14 19:17:54 +02003799 if (changed & IEEE80211_CONF_CHANGE_RETRY_LIMITS)
3800 b43_set_retry_limits(dev, conf->short_frame_max_tx_count,
3801 conf->long_frame_max_tx_count);
3802 changed &= ~IEEE80211_CONF_CHANGE_RETRY_LIMITS;
3803 if (!changed)
Michael Bueschd10d0e52008-12-18 22:13:39 +01003804 goto out_mac_enable;
Michael Buesche4d6b792007-09-18 15:39:42 -04003805
3806 /* Switch to the requested channel.
3807 * The firmware takes care of races with the TX handler. */
Johannes Berg8318d782008-01-24 19:38:38 +01003808 if (conf->channel->hw_value != phy->channel)
Michael Bueschef1a6282008-08-27 18:53:02 +02003809 b43_switch_channel(dev, conf->channel->hw_value);
Michael Buesche4d6b792007-09-18 15:39:42 -04003810
Johannes Berg0869aea2009-10-28 10:03:35 +01003811 dev->wl->radiotap_enabled = !!(conf->flags & IEEE80211_CONF_MONITOR);
Johannes Bergd42ce842007-11-23 14:50:51 +01003812
Michael Buesche4d6b792007-09-18 15:39:42 -04003813 /* Adjust the desired TX power level. */
3814 if (conf->power_level != 0) {
Michael Buesch18c8ade2008-08-28 19:33:40 +02003815 if (conf->power_level != phy->desired_txpower) {
3816 phy->desired_txpower = conf->power_level;
3817 b43_phy_txpower_check(dev, B43_TXPWR_IGNORE_TIME |
3818 B43_TXPWR_IGNORE_TSSI);
Michael Buesche4d6b792007-09-18 15:39:42 -04003819 }
3820 }
3821
3822 /* Antennas for RX and management frame TX. */
Johannes Berg0f4ac382008-10-09 12:18:04 +02003823 antenna = B43_ANTENNA_DEFAULT;
Michael Buesch9db1f6d2007-12-22 21:54:20 +01003824 b43_mgmtframe_txantenna(dev, antenna);
Johannes Berg0f4ac382008-10-09 12:18:04 +02003825 antenna = B43_ANTENNA_DEFAULT;
Michael Bueschef1a6282008-08-27 18:53:02 +02003826 if (phy->ops->set_rx_antenna)
3827 phy->ops->set_rx_antenna(dev, antenna);
Michael Buesche4d6b792007-09-18 15:39:42 -04003828
Larry Fingerfd4973c2009-06-20 12:58:11 -05003829 if (wl->radio_enabled != phy->radio_on) {
3830 if (wl->radio_enabled) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003831 b43_software_rfkill(dev, false);
Michael Bueschfda9abc2007-09-20 22:14:18 +02003832 b43info(dev->wl, "Radio turned on by software\n");
3833 if (!dev->radio_hw_enable) {
3834 b43info(dev->wl, "The hardware RF-kill button "
3835 "still turns the radio physically off. "
3836 "Press the button to turn it on.\n");
3837 }
3838 } else {
Johannes Berg19d337d2009-06-02 13:01:37 +02003839 b43_software_rfkill(dev, true);
Michael Bueschfda9abc2007-09-20 22:14:18 +02003840 b43info(dev->wl, "Radio turned off by software\n");
3841 }
3842 }
3843
Michael Bueschd10d0e52008-12-18 22:13:39 +01003844out_mac_enable:
3845 b43_mac_enable(dev);
3846out_unlock_mutex:
Michael Buesche4d6b792007-09-18 15:39:42 -04003847 mutex_unlock(&wl->mutex);
3848
3849 return err;
3850}
3851
Johannes Berg881d9482009-01-21 15:13:48 +01003852static void b43_update_basic_rates(struct b43_wldev *dev, u32 brates)
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003853{
3854 struct ieee80211_supported_band *sband =
3855 dev->wl->hw->wiphy->bands[b43_current_band(dev->wl)];
3856 struct ieee80211_rate *rate;
3857 int i;
3858 u16 basic, direct, offset, basic_offset, rateptr;
3859
3860 for (i = 0; i < sband->n_bitrates; i++) {
3861 rate = &sband->bitrates[i];
3862
3863 if (b43_is_cck_rate(rate->hw_value)) {
3864 direct = B43_SHM_SH_CCKDIRECT;
3865 basic = B43_SHM_SH_CCKBASIC;
3866 offset = b43_plcp_get_ratecode_cck(rate->hw_value);
3867 offset &= 0xF;
3868 } else {
3869 direct = B43_SHM_SH_OFDMDIRECT;
3870 basic = B43_SHM_SH_OFDMBASIC;
3871 offset = b43_plcp_get_ratecode_ofdm(rate->hw_value);
3872 offset &= 0xF;
3873 }
3874
3875 rate = ieee80211_get_response_rate(sband, brates, rate->bitrate);
3876
3877 if (b43_is_cck_rate(rate->hw_value)) {
3878 basic_offset = b43_plcp_get_ratecode_cck(rate->hw_value);
3879 basic_offset &= 0xF;
3880 } else {
3881 basic_offset = b43_plcp_get_ratecode_ofdm(rate->hw_value);
3882 basic_offset &= 0xF;
3883 }
3884
3885 /*
3886 * Get the pointer that we need to point to
3887 * from the direct map
3888 */
3889 rateptr = b43_shm_read16(dev, B43_SHM_SHARED,
3890 direct + 2 * basic_offset);
3891 /* and write it to the basic map */
3892 b43_shm_write16(dev, B43_SHM_SHARED, basic + 2 * offset,
3893 rateptr);
3894 }
3895}
3896
3897static void b43_op_bss_info_changed(struct ieee80211_hw *hw,
3898 struct ieee80211_vif *vif,
3899 struct ieee80211_bss_conf *conf,
3900 u32 changed)
3901{
3902 struct b43_wl *wl = hw_to_b43_wl(hw);
3903 struct b43_wldev *dev;
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003904
3905 mutex_lock(&wl->mutex);
3906
3907 dev = wl->current_dev;
Michael Bueschd10d0e52008-12-18 22:13:39 +01003908 if (!dev || b43_status(dev) < B43_STAT_STARTED)
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003909 goto out_unlock_mutex;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003910
3911 B43_WARN_ON(wl->vif != vif);
3912
3913 if (changed & BSS_CHANGED_BSSID) {
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003914 if (conf->bssid)
3915 memcpy(wl->bssid, conf->bssid, ETH_ALEN);
3916 else
3917 memset(wl->bssid, 0, ETH_ALEN);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003918 }
3919
Johannes Berg3f0d8432009-05-18 10:53:18 +02003920 if (b43_status(dev) >= B43_STAT_INITIALIZED) {
3921 if (changed & BSS_CHANGED_BEACON &&
3922 (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
3923 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT) ||
3924 b43_is_mode(wl, NL80211_IFTYPE_ADHOC)))
3925 b43_update_templates(wl);
3926
3927 if (changed & BSS_CHANGED_BSSID)
3928 b43_write_mac_bssid_templates(dev);
3929 }
Johannes Berg3f0d8432009-05-18 10:53:18 +02003930
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003931 b43_mac_suspend(dev);
3932
Johannes Berg57c4d7b2009-04-23 16:10:04 +02003933 /* Update templates for AP/mesh mode. */
3934 if (changed & BSS_CHANGED_BEACON_INT &&
3935 (b43_is_mode(wl, NL80211_IFTYPE_AP) ||
3936 b43_is_mode(wl, NL80211_IFTYPE_MESH_POINT) ||
3937 b43_is_mode(wl, NL80211_IFTYPE_ADHOC)))
3938 b43_set_beacon_int(dev, conf->beacon_int);
3939
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003940 if (changed & BSS_CHANGED_BASIC_RATES)
3941 b43_update_basic_rates(dev, conf->basic_rates);
3942
3943 if (changed & BSS_CHANGED_ERP_SLOT) {
3944 if (conf->use_short_slot)
3945 b43_short_slot_timing_enable(dev);
3946 else
3947 b43_short_slot_timing_disable(dev);
3948 }
3949
3950 b43_mac_enable(dev);
Michael Bueschd10d0e52008-12-18 22:13:39 +01003951out_unlock_mutex:
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003952 mutex_unlock(&wl->mutex);
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01003953}
3954
Michael Buesch40faacc2007-10-28 16:29:32 +01003955static int b43_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003956 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
3957 struct ieee80211_key_conf *key)
Michael Buesche4d6b792007-09-18 15:39:42 -04003958{
3959 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003960 struct b43_wldev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04003961 u8 algorithm;
3962 u8 index;
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003963 int err;
Michael Buesch060210f2009-01-25 15:49:59 +01003964 static const u8 bcast_addr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Michael Buesche4d6b792007-09-18 15:39:42 -04003965
3966 if (modparam_nohwcrypt)
3967 return -ENOSPC; /* User disabled HW-crypto */
3968
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003969 mutex_lock(&wl->mutex);
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003970
3971 dev = wl->current_dev;
3972 err = -ENODEV;
3973 if (!dev || b43_status(dev) < B43_STAT_INITIALIZED)
3974 goto out_unlock;
3975
Michael Buesch403a3a12009-06-08 21:04:57 +02003976 if (dev->fw.pcm_request_failed || !dev->hwcrypto_enabled) {
Michael Buesch68217832008-05-17 23:43:57 +02003977 /* We don't have firmware for the crypto engine.
3978 * Must use software-crypto. */
3979 err = -EOPNOTSUPP;
3980 goto out_unlock;
3981 }
3982
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01003983 err = -EINVAL;
Johannes Berg97359d12010-08-10 09:46:38 +02003984 switch (key->cipher) {
3985 case WLAN_CIPHER_SUITE_WEP40:
3986 algorithm = B43_SEC_ALGO_WEP40;
Michael Buesche4d6b792007-09-18 15:39:42 -04003987 break;
Johannes Berg97359d12010-08-10 09:46:38 +02003988 case WLAN_CIPHER_SUITE_WEP104:
3989 algorithm = B43_SEC_ALGO_WEP104;
3990 break;
3991 case WLAN_CIPHER_SUITE_TKIP:
Michael Buesche4d6b792007-09-18 15:39:42 -04003992 algorithm = B43_SEC_ALGO_TKIP;
3993 break;
Johannes Berg97359d12010-08-10 09:46:38 +02003994 case WLAN_CIPHER_SUITE_CCMP:
Michael Buesche4d6b792007-09-18 15:39:42 -04003995 algorithm = B43_SEC_ALGO_AES;
3996 break;
3997 default:
3998 B43_WARN_ON(1);
Michael Buesche4d6b792007-09-18 15:39:42 -04003999 goto out_unlock;
4000 }
Michael Bueschc6dfc9a2007-10-28 15:59:58 +01004001 index = (u8) (key->keyidx);
4002 if (index > 3)
4003 goto out_unlock;
Michael Buesche4d6b792007-09-18 15:39:42 -04004004
4005 switch (cmd) {
4006 case SET_KEY:
gregor kowski035d0242009-08-19 22:35:45 +02004007 if (algorithm == B43_SEC_ALGO_TKIP &&
4008 (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE) ||
4009 !modparam_hwtkip)) {
4010 /* We support only pairwise key */
Michael Buesche4d6b792007-09-18 15:39:42 -04004011 err = -EOPNOTSUPP;
4012 goto out_unlock;
4013 }
4014
Michael Buesche808e582008-12-19 21:30:52 +01004015 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) {
Johannes Bergdc822b52008-12-29 12:55:09 +01004016 if (WARN_ON(!sta)) {
4017 err = -EOPNOTSUPP;
4018 goto out_unlock;
4019 }
Michael Buesche808e582008-12-19 21:30:52 +01004020 /* Pairwise key with an assigned MAC address. */
Michael Buesche4d6b792007-09-18 15:39:42 -04004021 err = b43_key_write(dev, -1, algorithm,
Johannes Bergdc822b52008-12-29 12:55:09 +01004022 key->key, key->keylen,
4023 sta->addr, key);
Michael Buesche808e582008-12-19 21:30:52 +01004024 } else {
4025 /* Group key */
4026 err = b43_key_write(dev, index, algorithm,
4027 key->key, key->keylen, NULL, key);
Michael Buesche4d6b792007-09-18 15:39:42 -04004028 }
4029 if (err)
4030 goto out_unlock;
4031
4032 if (algorithm == B43_SEC_ALGO_WEP40 ||
4033 algorithm == B43_SEC_ALGO_WEP104) {
4034 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_USEDEFKEYS);
4035 } else {
4036 b43_hf_write(dev,
4037 b43_hf_read(dev) & ~B43_HF_USEDEFKEYS);
4038 }
4039 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
gregor kowski035d0242009-08-19 22:35:45 +02004040 if (algorithm == B43_SEC_ALGO_TKIP)
4041 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Michael Buesche4d6b792007-09-18 15:39:42 -04004042 break;
4043 case DISABLE_KEY: {
4044 err = b43_key_clear(dev, key->hw_key_idx);
4045 if (err)
4046 goto out_unlock;
4047 break;
4048 }
4049 default:
4050 B43_WARN_ON(1);
4051 }
Michael Buesch9cf7f242008-12-19 20:24:30 +01004052
Michael Buesche4d6b792007-09-18 15:39:42 -04004053out_unlock:
Michael Buesche4d6b792007-09-18 15:39:42 -04004054 if (!err) {
4055 b43dbg(wl, "%s hardware based encryption for keyidx: %d, "
Johannes Berge1749612008-10-27 15:59:26 -07004056 "mac: %pM\n",
Michael Buesche4d6b792007-09-18 15:39:42 -04004057 cmd == SET_KEY ? "Using" : "Disabling", key->keyidx,
Larry Fingera1d882102009-01-14 11:15:25 -06004058 sta ? sta->addr : bcast_addr);
Michael Buesch9cf7f242008-12-19 20:24:30 +01004059 b43_dump_keymemory(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004060 }
Michael Buesch9cf7f242008-12-19 20:24:30 +01004061 mutex_unlock(&wl->mutex);
4062
Michael Buesche4d6b792007-09-18 15:39:42 -04004063 return err;
4064}
4065
Michael Buesch40faacc2007-10-28 16:29:32 +01004066static void b43_op_configure_filter(struct ieee80211_hw *hw,
4067 unsigned int changed, unsigned int *fflags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02004068 u64 multicast)
Michael Buesche4d6b792007-09-18 15:39:42 -04004069{
4070 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesch36dbd952009-09-04 22:51:29 +02004071 struct b43_wldev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004072
Michael Buesch36dbd952009-09-04 22:51:29 +02004073 mutex_lock(&wl->mutex);
4074 dev = wl->current_dev;
Johannes Berg4150c572007-09-17 01:29:23 -04004075 if (!dev) {
4076 *fflags = 0;
Michael Buesch36dbd952009-09-04 22:51:29 +02004077 goto out_unlock;
Michael Buesche4d6b792007-09-18 15:39:42 -04004078 }
Johannes Berg4150c572007-09-17 01:29:23 -04004079
Johannes Berg4150c572007-09-17 01:29:23 -04004080 *fflags &= FIF_PROMISC_IN_BSS |
4081 FIF_ALLMULTI |
4082 FIF_FCSFAIL |
4083 FIF_PLCPFAIL |
4084 FIF_CONTROL |
4085 FIF_OTHER_BSS |
4086 FIF_BCN_PRBRESP_PROMISC;
4087
4088 changed &= FIF_PROMISC_IN_BSS |
4089 FIF_ALLMULTI |
4090 FIF_FCSFAIL |
4091 FIF_PLCPFAIL |
4092 FIF_CONTROL |
4093 FIF_OTHER_BSS |
4094 FIF_BCN_PRBRESP_PROMISC;
4095
4096 wl->filter_flags = *fflags;
4097
4098 if (changed && b43_status(dev) >= B43_STAT_INITIALIZED)
4099 b43_adjust_opmode(dev);
Michael Buesch36dbd952009-09-04 22:51:29 +02004100
4101out_unlock:
4102 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04004103}
4104
Michael Buesch36dbd952009-09-04 22:51:29 +02004105/* Locking: wl->mutex
4106 * Returns the current dev. This might be different from the passed in dev,
4107 * because the core might be gone away while we unlocked the mutex. */
4108static struct b43_wldev * b43_wireless_core_stop(struct b43_wldev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04004109{
4110 struct b43_wl *wl = dev->wl;
Michael Buesch36dbd952009-09-04 22:51:29 +02004111 struct b43_wldev *orig_dev;
Michael Buesch49d965c2009-10-03 00:57:58 +02004112 u32 mask;
Michael Buesche4d6b792007-09-18 15:39:42 -04004113
Michael Buesch36dbd952009-09-04 22:51:29 +02004114redo:
4115 if (!dev || b43_status(dev) < B43_STAT_STARTED)
4116 return dev;
Stefano Brivioa19d12d2007-11-07 18:16:11 +01004117
Michael Bueschf5d40ee2009-09-04 22:53:18 +02004118 /* Cancel work. Unlock to avoid deadlocks. */
Michael Buesche4d6b792007-09-18 15:39:42 -04004119 mutex_unlock(&wl->mutex);
Michael Buesche4d6b792007-09-18 15:39:42 -04004120 cancel_delayed_work_sync(&dev->periodic_work);
Michael Bueschf5d40ee2009-09-04 22:53:18 +02004121 cancel_work_sync(&wl->tx_work);
Michael Buesche4d6b792007-09-18 15:39:42 -04004122 mutex_lock(&wl->mutex);
Michael Buesch36dbd952009-09-04 22:51:29 +02004123 dev = wl->current_dev;
4124 if (!dev || b43_status(dev) < B43_STAT_STARTED) {
4125 /* Whoops, aliens ate up the device while we were unlocked. */
4126 return dev;
4127 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004128
Michael Buesch36dbd952009-09-04 22:51:29 +02004129 /* Disable interrupts on the device. */
4130 b43_set_status(dev, B43_STAT_INITIALIZED);
Rafał Miłecki505fb012011-05-19 15:11:27 +02004131 if (b43_bus_host_is_sdio(dev->dev)) {
Michael Buesch36dbd952009-09-04 22:51:29 +02004132 /* wl->mutex is locked. That is enough. */
4133 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
4134 b43_read32(dev, B43_MMIO_GEN_IRQ_MASK); /* Flush */
4135 } else {
4136 spin_lock_irq(&wl->hardirq_lock);
4137 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, 0);
4138 b43_read32(dev, B43_MMIO_GEN_IRQ_MASK); /* Flush */
4139 spin_unlock_irq(&wl->hardirq_lock);
4140 }
Michael Buesch176e9f62009-09-11 23:04:04 +02004141 /* Synchronize and free the interrupt handlers. Unlock to avoid deadlocks. */
Michael Buesch36dbd952009-09-04 22:51:29 +02004142 orig_dev = dev;
4143 mutex_unlock(&wl->mutex);
Rafał Miłecki505fb012011-05-19 15:11:27 +02004144 if (b43_bus_host_is_sdio(dev->dev)) {
Michael Buesch176e9f62009-09-11 23:04:04 +02004145 b43_sdio_free_irq(dev);
4146 } else {
Rafał Miłeckia18c7152011-05-18 02:06:40 +02004147 synchronize_irq(dev->dev->irq);
4148 free_irq(dev->dev->irq, dev);
Michael Buesch176e9f62009-09-11 23:04:04 +02004149 }
Michael Buesch36dbd952009-09-04 22:51:29 +02004150 mutex_lock(&wl->mutex);
4151 dev = wl->current_dev;
4152 if (!dev)
4153 return dev;
4154 if (dev != orig_dev) {
4155 if (b43_status(dev) >= B43_STAT_STARTED)
4156 goto redo;
4157 return dev;
4158 }
Michael Buesch49d965c2009-10-03 00:57:58 +02004159 mask = b43_read32(dev, B43_MMIO_GEN_IRQ_MASK);
4160 B43_WARN_ON(mask != 0xFFFFFFFF && mask);
Michael Buesch36dbd952009-09-04 22:51:29 +02004161
Michael Bueschf5d40ee2009-09-04 22:53:18 +02004162 /* Drain the TX queue */
4163 while (skb_queue_len(&wl->tx_queue))
4164 dev_kfree_skb(skb_dequeue(&wl->tx_queue));
4165
Michael Buesche4d6b792007-09-18 15:39:42 -04004166 b43_mac_suspend(dev);
Michael Buescha78b3bb2009-09-11 21:44:05 +02004167 b43_leds_exit(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004168 b43dbg(wl, "Wireless interface stopped\n");
Michael Buesch36dbd952009-09-04 22:51:29 +02004169
4170 return dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004171}
4172
4173/* Locking: wl->mutex */
4174static int b43_wireless_core_start(struct b43_wldev *dev)
4175{
4176 int err;
4177
4178 B43_WARN_ON(b43_status(dev) != B43_STAT_INITIALIZED);
4179
4180 drain_txstatus_queue(dev);
Rafał Miłecki505fb012011-05-19 15:11:27 +02004181 if (b43_bus_host_is_sdio(dev->dev)) {
Albert Herranz3dbba8e2009-09-10 19:34:49 +02004182 err = b43_sdio_request_irq(dev, b43_sdio_interrupt_handler);
4183 if (err) {
4184 b43err(dev->wl, "Cannot request SDIO IRQ\n");
4185 goto out;
4186 }
4187 } else {
Rafał Miłeckia18c7152011-05-18 02:06:40 +02004188 err = request_threaded_irq(dev->dev->irq, b43_interrupt_handler,
Albert Herranz3dbba8e2009-09-10 19:34:49 +02004189 b43_interrupt_thread_handler,
4190 IRQF_SHARED, KBUILD_MODNAME, dev);
4191 if (err) {
Rafał Miłeckidedb1eb2011-05-14 00:04:38 +02004192 b43err(dev->wl, "Cannot request IRQ-%d\n",
Rafał Miłeckia18c7152011-05-18 02:06:40 +02004193 dev->dev->irq);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02004194 goto out;
4195 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004196 }
4197
4198 /* We are ready to run. */
Larry Finger0866b032010-02-03 13:33:44 -06004199 ieee80211_wake_queues(dev->wl->hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04004200 b43_set_status(dev, B43_STAT_STARTED);
4201
4202 /* Start data flow (TX/RX). */
4203 b43_mac_enable(dev);
Michael Buesch13790722009-04-08 21:26:27 +02004204 b43_write32(dev, B43_MMIO_GEN_IRQ_MASK, dev->irq_mask);
Michael Buesche4d6b792007-09-18 15:39:42 -04004205
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004206 /* Start maintenance work */
Michael Buesche4d6b792007-09-18 15:39:42 -04004207 b43_periodic_tasks_setup(dev);
4208
Michael Buescha78b3bb2009-09-11 21:44:05 +02004209 b43_leds_init(dev);
4210
Michael Buesche4d6b792007-09-18 15:39:42 -04004211 b43dbg(dev->wl, "Wireless interface started\n");
Michael Buescha78b3bb2009-09-11 21:44:05 +02004212out:
Michael Buesche4d6b792007-09-18 15:39:42 -04004213 return err;
4214}
4215
4216/* Get PHY and RADIO versioning numbers */
4217static int b43_phy_versioning(struct b43_wldev *dev)
4218{
4219 struct b43_phy *phy = &dev->phy;
4220 u32 tmp;
4221 u8 analog_type;
4222 u8 phy_type;
4223 u8 phy_rev;
4224 u16 radio_manuf;
4225 u16 radio_ver;
4226 u16 radio_rev;
4227 int unsupported = 0;
4228
4229 /* Get PHY versioning */
4230 tmp = b43_read16(dev, B43_MMIO_PHY_VER);
4231 analog_type = (tmp & B43_PHYVER_ANALOG) >> B43_PHYVER_ANALOG_SHIFT;
4232 phy_type = (tmp & B43_PHYVER_TYPE) >> B43_PHYVER_TYPE_SHIFT;
4233 phy_rev = (tmp & B43_PHYVER_VERSION);
4234 switch (phy_type) {
4235 case B43_PHYTYPE_A:
4236 if (phy_rev >= 4)
4237 unsupported = 1;
4238 break;
4239 case B43_PHYTYPE_B:
4240 if (phy_rev != 2 && phy_rev != 4 && phy_rev != 6
4241 && phy_rev != 7)
4242 unsupported = 1;
4243 break;
4244 case B43_PHYTYPE_G:
Larry Finger013978b2007-11-26 10:29:47 -06004245 if (phy_rev > 9)
Michael Buesche4d6b792007-09-18 15:39:42 -04004246 unsupported = 1;
4247 break;
Rafał Miłecki692d2c02010-12-07 21:56:00 +01004248#ifdef CONFIG_B43_PHY_N
Michael Bueschd5c71e42008-01-04 17:06:29 +01004249 case B43_PHYTYPE_N:
Rafał Miłeckiab72efd2010-12-21 21:29:44 +01004250 if (phy_rev > 9)
Michael Bueschd5c71e42008-01-04 17:06:29 +01004251 unsupported = 1;
4252 break;
4253#endif
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004254#ifdef CONFIG_B43_PHY_LP
4255 case B43_PHYTYPE_LP:
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02004256 if (phy_rev > 2)
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004257 unsupported = 1;
4258 break;
4259#endif
Rafał Miłeckid7520b12011-06-13 16:20:06 +02004260#ifdef CONFIG_B43_PHY_HT
4261 case B43_PHYTYPE_HT:
4262 if (phy_rev > 1)
4263 unsupported = 1;
4264 break;
4265#endif
Rafał Miłecki1d738e62011-07-07 15:25:27 +02004266#ifdef CONFIG_B43_PHY_LCN
4267 case B43_PHYTYPE_LCN:
4268 if (phy_rev > 1)
4269 unsupported = 1;
4270 break;
4271#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04004272 default:
4273 unsupported = 1;
Joe Perches6403eab2011-06-03 11:51:20 +00004274 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004275 if (unsupported) {
4276 b43err(dev->wl, "FOUND UNSUPPORTED PHY "
4277 "(Analog %u, Type %u, Revision %u)\n",
4278 analog_type, phy_type, phy_rev);
4279 return -EOPNOTSUPP;
4280 }
4281 b43dbg(dev->wl, "Found PHY: Analog %u, Type %u, Revision %u\n",
4282 analog_type, phy_type, phy_rev);
4283
4284 /* Get RADIO versioning */
Rafał Miłecki3fd48502011-07-06 20:27:24 +02004285 if (dev->dev->core_rev >= 24) {
Rafał Miłecki544e5d82011-07-06 20:27:25 +02004286 u16 radio24[3];
4287
4288 for (tmp = 0; tmp < 3; tmp++) {
4289 b43_write16(dev, B43_MMIO_RADIO24_CONTROL, tmp);
4290 radio24[tmp] = b43_read16(dev, B43_MMIO_RADIO24_DATA);
4291 }
4292
4293 /* Broadcom uses "id" for our "ver" and has separated "ver" */
4294 /* radio_ver = (radio24[0] & 0xF0) >> 4; */
4295
4296 radio_manuf = 0x17F;
4297 radio_ver = (radio24[2] << 8) | radio24[1];
4298 radio_rev = (radio24[0] & 0xF);
Michael Buesche4d6b792007-09-18 15:39:42 -04004299 } else {
Rafał Miłecki3fd48502011-07-06 20:27:24 +02004300 if (dev->dev->chip_id == 0x4317) {
4301 if (dev->dev->chip_rev == 0)
4302 tmp = 0x3205017F;
4303 else if (dev->dev->chip_rev == 1)
4304 tmp = 0x4205017F;
4305 else
4306 tmp = 0x5205017F;
4307 } else {
4308 b43_write16(dev, B43_MMIO_RADIO_CONTROL,
4309 B43_RADIOCTL_ID);
4310 tmp = b43_read16(dev, B43_MMIO_RADIO_DATA_LOW);
4311 b43_write16(dev, B43_MMIO_RADIO_CONTROL,
4312 B43_RADIOCTL_ID);
4313 tmp |= (u32)b43_read16(dev, B43_MMIO_RADIO_DATA_HIGH)
4314 << 16;
4315 }
4316 radio_manuf = (tmp & 0x00000FFF);
4317 radio_ver = (tmp & 0x0FFFF000) >> 12;
4318 radio_rev = (tmp & 0xF0000000) >> 28;
Michael Buesche4d6b792007-09-18 15:39:42 -04004319 }
Rafał Miłecki3fd48502011-07-06 20:27:24 +02004320
Michael Buesch96c755a2008-01-06 00:09:46 +01004321 if (radio_manuf != 0x17F /* Broadcom */)
4322 unsupported = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04004323 switch (phy_type) {
4324 case B43_PHYTYPE_A:
4325 if (radio_ver != 0x2060)
4326 unsupported = 1;
4327 if (radio_rev != 1)
4328 unsupported = 1;
4329 if (radio_manuf != 0x17F)
4330 unsupported = 1;
4331 break;
4332 case B43_PHYTYPE_B:
4333 if ((radio_ver & 0xFFF0) != 0x2050)
4334 unsupported = 1;
4335 break;
4336 case B43_PHYTYPE_G:
4337 if (radio_ver != 0x2050)
4338 unsupported = 1;
4339 break;
Michael Buesch96c755a2008-01-06 00:09:46 +01004340 case B43_PHYTYPE_N:
Johannes Bergbb519be2008-12-24 15:26:40 +01004341 if (radio_ver != 0x2055 && radio_ver != 0x2056)
Michael Buesch96c755a2008-01-06 00:09:46 +01004342 unsupported = 1;
4343 break;
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004344 case B43_PHYTYPE_LP:
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02004345 if (radio_ver != 0x2062 && radio_ver != 0x2063)
Michael Buesch6b1c7c62008-12-25 00:39:28 +01004346 unsupported = 1;
4347 break;
Rafał Miłeckid7520b12011-06-13 16:20:06 +02004348 case B43_PHYTYPE_HT:
4349 if (radio_ver != 0x2059)
4350 unsupported = 1;
4351 break;
Rafał Miłecki1d738e62011-07-07 15:25:27 +02004352 case B43_PHYTYPE_LCN:
4353 if (radio_ver != 0x2064)
4354 unsupported = 1;
4355 break;
Michael Buesche4d6b792007-09-18 15:39:42 -04004356 default:
4357 B43_WARN_ON(1);
4358 }
4359 if (unsupported) {
4360 b43err(dev->wl, "FOUND UNSUPPORTED RADIO "
4361 "(Manuf 0x%X, Version 0x%X, Revision %u)\n",
4362 radio_manuf, radio_ver, radio_rev);
4363 return -EOPNOTSUPP;
4364 }
4365 b43dbg(dev->wl, "Found Radio: Manuf 0x%X, Version 0x%X, Revision %u\n",
4366 radio_manuf, radio_ver, radio_rev);
4367
4368 phy->radio_manuf = radio_manuf;
4369 phy->radio_ver = radio_ver;
4370 phy->radio_rev = radio_rev;
4371
4372 phy->analog = analog_type;
4373 phy->type = phy_type;
4374 phy->rev = phy_rev;
4375
4376 return 0;
4377}
4378
4379static void setup_struct_phy_for_init(struct b43_wldev *dev,
4380 struct b43_phy *phy)
4381{
Michael Buesche4d6b792007-09-18 15:39:42 -04004382 phy->hardware_power_control = !!modparam_hwpctl;
Michael Buesch18c8ade2008-08-28 19:33:40 +02004383 phy->next_txpwr_check_time = jiffies;
Michael Buesch8ed7fc42007-12-09 22:34:59 +01004384 /* PHY TX errors counter. */
4385 atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT);
Michael Buesch591f3dc2009-03-31 12:27:32 +02004386
4387#if B43_DEBUG
4388 phy->phy_locked = 0;
4389 phy->radio_locked = 0;
4390#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04004391}
4392
4393static void setup_struct_wldev_for_init(struct b43_wldev *dev)
4394{
Michael Bueschaa6c7ae2007-12-26 16:26:36 +01004395 dev->dfq_valid = 0;
4396
Michael Buesch6a724d62007-09-20 22:12:58 +02004397 /* Assume the radio is enabled. If it's not enabled, the state will
4398 * immediately get fixed on the first periodic work run. */
4399 dev->radio_hw_enable = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04004400
4401 /* Stats */
4402 memset(&dev->stats, 0, sizeof(dev->stats));
4403
4404 setup_struct_phy_for_init(dev, &dev->phy);
4405
4406 /* IRQ related flags */
4407 dev->irq_reason = 0;
4408 memset(dev->dma_reason, 0, sizeof(dev->dma_reason));
Michael Buesch13790722009-04-08 21:26:27 +02004409 dev->irq_mask = B43_IRQ_MASKTEMPLATE;
Michael Buesch3e3ccb32009-03-19 19:27:21 +01004410 if (b43_modparam_verbose < B43_VERBOSITY_DEBUG)
Michael Buesch13790722009-04-08 21:26:27 +02004411 dev->irq_mask &= ~B43_IRQ_PHY_TXERR;
Michael Buesche4d6b792007-09-18 15:39:42 -04004412
4413 dev->mac_suspended = 1;
4414
4415 /* Noise calculation context */
4416 memset(&dev->noisecalc, 0, sizeof(dev->noisecalc));
4417}
4418
4419static void b43_bluetooth_coext_enable(struct b43_wldev *dev)
4420{
Rafał Miłecki05814832011-05-18 02:06:39 +02004421 struct ssb_sprom *sprom = dev->dev->bus_sprom;
Michael Buescha259d6a2008-04-18 21:06:37 +02004422 u64 hf;
Michael Buesche4d6b792007-09-18 15:39:42 -04004423
Michael Buesch1855ba72008-04-18 20:51:41 +02004424 if (!modparam_btcoex)
4425 return;
Larry Finger95de2842007-11-09 16:57:18 -06004426 if (!(sprom->boardflags_lo & B43_BFL_BTCOEXIST))
Michael Buesche4d6b792007-09-18 15:39:42 -04004427 return;
4428 if (dev->phy.type != B43_PHYTYPE_B && !dev->phy.gmode)
4429 return;
4430
4431 hf = b43_hf_read(dev);
Larry Finger95de2842007-11-09 16:57:18 -06004432 if (sprom->boardflags_lo & B43_BFL_BTCMOD)
Michael Buesche4d6b792007-09-18 15:39:42 -04004433 hf |= B43_HF_BTCOEXALT;
4434 else
4435 hf |= B43_HF_BTCOEX;
4436 b43_hf_write(dev, hf);
Michael Buesche4d6b792007-09-18 15:39:42 -04004437}
4438
4439static void b43_bluetooth_coext_disable(struct b43_wldev *dev)
Michael Buesch1855ba72008-04-18 20:51:41 +02004440{
4441 if (!modparam_btcoex)
4442 return;
4443 //TODO
Michael Buesche4d6b792007-09-18 15:39:42 -04004444}
4445
4446static void b43_imcfglo_timeouts_workaround(struct b43_wldev *dev)
4447{
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004448 struct ssb_bus *bus;
Michael Buesche4d6b792007-09-18 15:39:42 -04004449 u32 tmp;
4450
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004451 if (dev->dev->bus_type != B43_BUS_SSB)
4452 return;
4453
4454 bus = dev->dev->sdev->bus;
4455
Rafał Miłecki0fd82ea2011-05-11 02:10:59 +02004456 if ((bus->chip_id == 0x4311 && bus->chip_rev == 2) ||
4457 (bus->chip_id == 0x4312)) {
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004458 tmp = ssb_read32(dev->dev->sdev, SSB_IMCFGLO);
Rafał Miłecki0fd82ea2011-05-11 02:10:59 +02004459 tmp &= ~SSB_IMCFGLO_REQTO;
4460 tmp &= ~SSB_IMCFGLO_SERTO;
4461 tmp |= 0x3;
Rafał Miłeckid48ae5c2011-05-19 15:11:26 +02004462 ssb_write32(dev->dev->sdev, SSB_IMCFGLO, tmp);
Rafał Miłecki0fd82ea2011-05-11 02:10:59 +02004463 ssb_commit_settings(bus);
Michael Buesche4d6b792007-09-18 15:39:42 -04004464 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004465}
4466
Michael Bueschd59f7202008-04-03 18:56:19 +02004467static void b43_set_synth_pu_delay(struct b43_wldev *dev, bool idle)
4468{
4469 u16 pu_delay;
4470
4471 /* The time value is in microseconds. */
4472 if (dev->phy.type == B43_PHYTYPE_A)
4473 pu_delay = 3700;
4474 else
4475 pu_delay = 1050;
Johannes Berg05c914f2008-09-11 00:01:58 +02004476 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC) || idle)
Michael Bueschd59f7202008-04-03 18:56:19 +02004477 pu_delay = 500;
4478 if ((dev->phy.radio_ver == 0x2050) && (dev->phy.radio_rev == 8))
4479 pu_delay = max(pu_delay, (u16)2400);
4480
4481 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_SPUWKUP, pu_delay);
4482}
4483
4484/* Set the TSF CFP pre-TargetBeaconTransmissionTime. */
4485static void b43_set_pretbtt(struct b43_wldev *dev)
4486{
4487 u16 pretbtt;
4488
4489 /* The time value is in microseconds. */
Johannes Berg05c914f2008-09-11 00:01:58 +02004490 if (b43_is_mode(dev->wl, NL80211_IFTYPE_ADHOC)) {
Michael Bueschd59f7202008-04-03 18:56:19 +02004491 pretbtt = 2;
4492 } else {
4493 if (dev->phy.type == B43_PHYTYPE_A)
4494 pretbtt = 120;
4495 else
4496 pretbtt = 250;
4497 }
4498 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRETBTT, pretbtt);
4499 b43_write16(dev, B43_MMIO_TSF_CFP_PRETBTT, pretbtt);
4500}
4501
Michael Buesche4d6b792007-09-18 15:39:42 -04004502/* Shutdown a wireless core */
4503/* Locking: wl->mutex */
4504static void b43_wireless_core_exit(struct b43_wldev *dev)
4505{
Michael Buesch1f7d87b2008-01-22 20:23:34 +01004506 u32 macctl;
Michael Buesche4d6b792007-09-18 15:39:42 -04004507
Michael Buesch36dbd952009-09-04 22:51:29 +02004508 B43_WARN_ON(dev && b43_status(dev) > B43_STAT_INITIALIZED);
4509 if (!dev || b43_status(dev) != B43_STAT_INITIALIZED)
Michael Buesche4d6b792007-09-18 15:39:42 -04004510 return;
John W. Linville84c164a2010-08-06 15:31:45 -04004511
4512 /* Unregister HW RNG driver */
4513 b43_rng_exit(dev->wl);
4514
Michael Buesche4d6b792007-09-18 15:39:42 -04004515 b43_set_status(dev, B43_STAT_UNINIT);
4516
Michael Buesch1f7d87b2008-01-22 20:23:34 +01004517 /* Stop the microcode PSM. */
4518 macctl = b43_read32(dev, B43_MMIO_MACCTL);
4519 macctl &= ~B43_MACCTL_PSM_RUN;
4520 macctl |= B43_MACCTL_PSM_JMP0;
4521 b43_write32(dev, B43_MMIO_MACCTL, macctl);
4522
Michael Buesche4d6b792007-09-18 15:39:42 -04004523 b43_dma_free(dev);
Michael Buesch5100d5a2008-03-29 21:01:16 +01004524 b43_pio_free(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004525 b43_chip_exit(dev);
Michael Bueschcb24f572008-09-03 12:12:20 +02004526 dev->phy.ops->switch_analog(dev, 0);
Michael Buesche66fee62007-12-26 17:47:10 +01004527 if (dev->wl->current_beacon) {
4528 dev_kfree_skb_any(dev->wl->current_beacon);
4529 dev->wl->current_beacon = NULL;
4530 }
4531
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004532 b43_device_disable(dev, 0);
4533 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004534}
4535
4536/* Initialize a wireless core */
4537static int b43_wireless_core_init(struct b43_wldev *dev)
4538{
Rafał Miłecki05814832011-05-18 02:06:39 +02004539 struct ssb_sprom *sprom = dev->dev->bus_sprom;
Michael Buesche4d6b792007-09-18 15:39:42 -04004540 struct b43_phy *phy = &dev->phy;
4541 int err;
Michael Buescha259d6a2008-04-18 21:06:37 +02004542 u64 hf;
Michael Buesche4d6b792007-09-18 15:39:42 -04004543
4544 B43_WARN_ON(b43_status(dev) != B43_STAT_UNINIT);
4545
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004546 err = b43_bus_powerup(dev, 0);
Michael Buesche4d6b792007-09-18 15:39:42 -04004547 if (err)
4548 goto out;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02004549 if (!b43_device_is_enabled(dev))
4550 b43_wireless_core_reset(dev, phy->gmode);
Michael Buesche4d6b792007-09-18 15:39:42 -04004551
Michael Bueschfb111372008-09-02 13:00:34 +02004552 /* Reset all data structures. */
Michael Buesche4d6b792007-09-18 15:39:42 -04004553 setup_struct_wldev_for_init(dev);
Michael Bueschfb111372008-09-02 13:00:34 +02004554 phy->ops->prepare_structs(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004555
4556 /* Enable IRQ routing to this device. */
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004557 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02004558#ifdef CONFIG_B43_BCMA
4559 case B43_BUS_BCMA:
4560 bcma_core_pci_irq_ctl(&dev->dev->bdev->bus->drv_pci,
4561 dev->dev->bdev, true);
4562 break;
4563#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004564#ifdef CONFIG_B43_SSB
4565 case B43_BUS_SSB:
4566 ssb_pcicore_dev_irqvecs_enable(&dev->dev->sdev->bus->pcicore,
4567 dev->dev->sdev);
4568 break;
4569#endif
4570 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004571
4572 b43_imcfglo_timeouts_workaround(dev);
4573 b43_bluetooth_coext_disable(dev);
Michael Bueschfb111372008-09-02 13:00:34 +02004574 if (phy->ops->prepare_hardware) {
4575 err = phy->ops->prepare_hardware(dev);
Michael Bueschef1a6282008-08-27 18:53:02 +02004576 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02004577 goto err_busdown;
Michael Bueschef1a6282008-08-27 18:53:02 +02004578 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004579 err = b43_chip_init(dev);
4580 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02004581 goto err_busdown;
Michael Buesche4d6b792007-09-18 15:39:42 -04004582 b43_shm_write16(dev, B43_SHM_SHARED,
Rafał Miłecki21d889d2011-05-18 02:06:38 +02004583 B43_SHM_SH_WLCOREREV, dev->dev->core_rev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004584 hf = b43_hf_read(dev);
4585 if (phy->type == B43_PHYTYPE_G) {
4586 hf |= B43_HF_SYMW;
4587 if (phy->rev == 1)
4588 hf |= B43_HF_GDCW;
Larry Finger95de2842007-11-09 16:57:18 -06004589 if (sprom->boardflags_lo & B43_BFL_PACTRL)
Michael Buesche4d6b792007-09-18 15:39:42 -04004590 hf |= B43_HF_OFDMPABOOST;
Michael Buesch969d15c2009-02-20 14:27:15 +01004591 }
4592 if (phy->radio_ver == 0x2050) {
4593 if (phy->radio_rev == 6)
4594 hf |= B43_HF_4318TSSI;
4595 if (phy->radio_rev < 6)
4596 hf |= B43_HF_VCORECALC;
Michael Buesche4d6b792007-09-18 15:39:42 -04004597 }
Michael Buesch1cc8f472009-02-20 14:47:56 +01004598 if (sprom->boardflags_lo & B43_BFL_XTAL_NOSLOW)
4599 hf |= B43_HF_DSCRQ; /* Disable slowclock requests from ucode. */
Michael Buesch1a777332009-03-04 16:41:10 +01004600#ifdef CONFIG_SSB_DRIVER_PCICORE
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004601 if (dev->dev->bus_type == B43_BUS_SSB &&
4602 dev->dev->sdev->bus->bustype == SSB_BUSTYPE_PCI &&
4603 dev->dev->sdev->bus->pcicore.dev->id.revision <= 10)
Michael Buesch88219052009-02-20 14:58:59 +01004604 hf |= B43_HF_PCISCW; /* PCI slow clock workaround. */
Michael Buesch1a777332009-03-04 16:41:10 +01004605#endif
Michael Buesch25d3ef52009-02-20 15:39:21 +01004606 hf &= ~B43_HF_SKCFPUP;
Michael Buesche4d6b792007-09-18 15:39:42 -04004607 b43_hf_write(dev, hf);
4608
Michael Buesch74cfdba2007-10-28 16:19:44 +01004609 b43_set_retry_limits(dev, B43_DEFAULT_SHORT_RETRY_LIMIT,
4610 B43_DEFAULT_LONG_RETRY_LIMIT);
Michael Buesche4d6b792007-09-18 15:39:42 -04004611 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_SFFBLIM, 3);
4612 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_LFFBLIM, 2);
4613
4614 /* Disable sending probe responses from firmware.
4615 * Setting the MaxTime to one usec will always trigger
4616 * a timeout, so we never send any probe resp.
4617 * A timeout of zero is infinite. */
4618 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_PRMAXTIME, 1);
4619
4620 b43_rate_memory_init(dev);
Michael Buesch5042c502008-04-05 15:05:00 +02004621 b43_set_phytxctl_defaults(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004622
4623 /* Minimum Contention Window */
Daniel Nguc5a079f2010-03-23 00:52:44 +13004624 if (phy->type == B43_PHYTYPE_B)
Michael Buesche4d6b792007-09-18 15:39:42 -04004625 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MINCONT, 0x1F);
Daniel Nguc5a079f2010-03-23 00:52:44 +13004626 else
Michael Buesche4d6b792007-09-18 15:39:42 -04004627 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MINCONT, 0xF);
Michael Buesche4d6b792007-09-18 15:39:42 -04004628 /* Maximum Contention Window */
4629 b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MAXCONT, 0x3FF);
4630
Rafał Miłecki505fb012011-05-19 15:11:27 +02004631 if (b43_bus_host_is_pcmcia(dev->dev) ||
4632 b43_bus_host_is_sdio(dev->dev) ||
Linus Torvalds9e3bd912010-02-26 10:34:27 -08004633 dev->use_pio) {
Michael Buesch5100d5a2008-03-29 21:01:16 +01004634 dev->__using_pio_transfers = 1;
4635 err = b43_pio_init(dev);
4636 } else {
4637 dev->__using_pio_transfers = 0;
4638 err = b43_dma_init(dev);
4639 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004640 if (err)
4641 goto err_chip_exit;
Michael Buesch03b29772007-12-26 14:41:30 +01004642 b43_qos_init(dev);
Michael Bueschd59f7202008-04-03 18:56:19 +02004643 b43_set_synth_pu_delay(dev, 1);
Michael Buesche4d6b792007-09-18 15:39:42 -04004644 b43_bluetooth_coext_enable(dev);
4645
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004646 b43_bus_powerup(dev, !(sprom->boardflags_lo & B43_BFL_XTAL_NOSLOW));
Johannes Berg4150c572007-09-17 01:29:23 -04004647 b43_upload_card_macaddress(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004648 b43_security_init(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004649
Michael Buesch5ab95492009-09-10 20:31:46 +02004650 ieee80211_wake_queues(dev->wl->hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04004651
4652 b43_set_status(dev, B43_STAT_INITIALIZED);
4653
John W. Linville84c164a2010-08-06 15:31:45 -04004654 /* Register HW RNG driver */
4655 b43_rng_init(dev->wl);
4656
Larry Finger1a8d1222007-12-14 13:59:11 +01004657out:
Michael Buesche4d6b792007-09-18 15:39:42 -04004658 return err;
4659
Michael Bueschef1a6282008-08-27 18:53:02 +02004660err_chip_exit:
Michael Buesche4d6b792007-09-18 15:39:42 -04004661 b43_chip_exit(dev);
Michael Bueschef1a6282008-08-27 18:53:02 +02004662err_busdown:
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004663 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004664 B43_WARN_ON(b43_status(dev) != B43_STAT_UNINIT);
4665 return err;
4666}
4667
Michael Buesch40faacc2007-10-28 16:29:32 +01004668static int b43_op_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004669 struct ieee80211_vif *vif)
Michael Buesche4d6b792007-09-18 15:39:42 -04004670{
4671 struct b43_wl *wl = hw_to_b43_wl(hw);
4672 struct b43_wldev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004673 int err = -EOPNOTSUPP;
Johannes Berg4150c572007-09-17 01:29:23 -04004674
4675 /* TODO: allow WDS/AP devices to coexist */
4676
Johannes Berg1ed32e42009-12-23 13:15:45 +01004677 if (vif->type != NL80211_IFTYPE_AP &&
4678 vif->type != NL80211_IFTYPE_MESH_POINT &&
4679 vif->type != NL80211_IFTYPE_STATION &&
4680 vif->type != NL80211_IFTYPE_WDS &&
4681 vif->type != NL80211_IFTYPE_ADHOC)
Johannes Berg4150c572007-09-17 01:29:23 -04004682 return -EOPNOTSUPP;
Michael Buesche4d6b792007-09-18 15:39:42 -04004683
4684 mutex_lock(&wl->mutex);
Johannes Berg4150c572007-09-17 01:29:23 -04004685 if (wl->operating)
Michael Buesche4d6b792007-09-18 15:39:42 -04004686 goto out_mutex_unlock;
4687
Johannes Berg1ed32e42009-12-23 13:15:45 +01004688 b43dbg(wl, "Adding Interface type %d\n", vif->type);
Michael Buesche4d6b792007-09-18 15:39:42 -04004689
4690 dev = wl->current_dev;
Johannes Berg4150c572007-09-17 01:29:23 -04004691 wl->operating = 1;
Johannes Berg1ed32e42009-12-23 13:15:45 +01004692 wl->vif = vif;
4693 wl->if_type = vif->type;
4694 memcpy(wl->mac_addr, vif->addr, ETH_ALEN);
Michael Buesche4d6b792007-09-18 15:39:42 -04004695
Michael Buesche4d6b792007-09-18 15:39:42 -04004696 b43_adjust_opmode(dev);
Michael Bueschd59f7202008-04-03 18:56:19 +02004697 b43_set_pretbtt(dev);
4698 b43_set_synth_pu_delay(dev, 0);
Johannes Berg4150c572007-09-17 01:29:23 -04004699 b43_upload_card_macaddress(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004700
4701 err = 0;
Johannes Berg4150c572007-09-17 01:29:23 -04004702 out_mutex_unlock:
Michael Buesche4d6b792007-09-18 15:39:42 -04004703 mutex_unlock(&wl->mutex);
4704
4705 return err;
4706}
4707
Michael Buesch40faacc2007-10-28 16:29:32 +01004708static void b43_op_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004709 struct ieee80211_vif *vif)
Michael Buesche4d6b792007-09-18 15:39:42 -04004710{
4711 struct b43_wl *wl = hw_to_b43_wl(hw);
Johannes Berg4150c572007-09-17 01:29:23 -04004712 struct b43_wldev *dev = wl->current_dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04004713
Johannes Berg1ed32e42009-12-23 13:15:45 +01004714 b43dbg(wl, "Removing Interface type %d\n", vif->type);
Michael Buesche4d6b792007-09-18 15:39:42 -04004715
4716 mutex_lock(&wl->mutex);
Johannes Berg4150c572007-09-17 01:29:23 -04004717
4718 B43_WARN_ON(!wl->operating);
Johannes Berg1ed32e42009-12-23 13:15:45 +01004719 B43_WARN_ON(wl->vif != vif);
Johannes Berg32bfd352007-12-19 01:31:26 +01004720 wl->vif = NULL;
Johannes Berg4150c572007-09-17 01:29:23 -04004721
4722 wl->operating = 0;
4723
Johannes Berg4150c572007-09-17 01:29:23 -04004724 b43_adjust_opmode(dev);
4725 memset(wl->mac_addr, 0, ETH_ALEN);
4726 b43_upload_card_macaddress(dev);
Johannes Berg4150c572007-09-17 01:29:23 -04004727
4728 mutex_unlock(&wl->mutex);
4729}
4730
Michael Buesch40faacc2007-10-28 16:29:32 +01004731static int b43_op_start(struct ieee80211_hw *hw)
Johannes Berg4150c572007-09-17 01:29:23 -04004732{
4733 struct b43_wl *wl = hw_to_b43_wl(hw);
4734 struct b43_wldev *dev = wl->current_dev;
4735 int did_init = 0;
WANG Cong923403b2007-10-16 14:29:38 -07004736 int err = 0;
Johannes Berg4150c572007-09-17 01:29:23 -04004737
Michael Buesch7be1bb62008-01-23 21:10:56 +01004738 /* Kill all old instance specific information to make sure
4739 * the card won't use it in the short timeframe between start
4740 * and mac80211 reconfiguring it. */
4741 memset(wl->bssid, 0, ETH_ALEN);
4742 memset(wl->mac_addr, 0, ETH_ALEN);
4743 wl->filter_flags = 0;
4744 wl->radiotap_enabled = 0;
Michael Buesche6f5b932008-03-05 21:18:49 +01004745 b43_qos_clear(wl);
Michael Buesch6b4bec012008-05-20 12:16:28 +02004746 wl->beacon0_uploaded = 0;
4747 wl->beacon1_uploaded = 0;
4748 wl->beacon_templates_virgin = 1;
Larry Fingerfd4973c2009-06-20 12:58:11 -05004749 wl->radio_enabled = 1;
Michael Buesch7be1bb62008-01-23 21:10:56 +01004750
Johannes Berg4150c572007-09-17 01:29:23 -04004751 mutex_lock(&wl->mutex);
4752
4753 if (b43_status(dev) < B43_STAT_INITIALIZED) {
4754 err = b43_wireless_core_init(dev);
Johannes Bergf41f3f32009-06-07 12:30:34 -05004755 if (err)
Johannes Berg4150c572007-09-17 01:29:23 -04004756 goto out_mutex_unlock;
4757 did_init = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04004758 }
4759
Johannes Berg4150c572007-09-17 01:29:23 -04004760 if (b43_status(dev) < B43_STAT_STARTED) {
4761 err = b43_wireless_core_start(dev);
4762 if (err) {
4763 if (did_init)
4764 b43_wireless_core_exit(dev);
4765 goto out_mutex_unlock;
4766 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004767 }
Johannes Berg4150c572007-09-17 01:29:23 -04004768
Johannes Bergf41f3f32009-06-07 12:30:34 -05004769 /* XXX: only do if device doesn't support rfkill irq */
4770 wiphy_rfkill_start_polling(hw->wiphy);
4771
Johannes Berg4150c572007-09-17 01:29:23 -04004772 out_mutex_unlock:
4773 mutex_unlock(&wl->mutex);
4774
4775 return err;
4776}
4777
Michael Buesch40faacc2007-10-28 16:29:32 +01004778static void b43_op_stop(struct ieee80211_hw *hw)
Johannes Berg4150c572007-09-17 01:29:23 -04004779{
4780 struct b43_wl *wl = hw_to_b43_wl(hw);
4781 struct b43_wldev *dev = wl->current_dev;
4782
Michael Buescha82d9922008-04-04 21:40:06 +02004783 cancel_work_sync(&(wl->beacon_update_trigger));
Larry Finger1a8d1222007-12-14 13:59:11 +01004784
Johannes Berg4150c572007-09-17 01:29:23 -04004785 mutex_lock(&wl->mutex);
Michael Buesch36dbd952009-09-04 22:51:29 +02004786 if (b43_status(dev) >= B43_STAT_STARTED) {
4787 dev = b43_wireless_core_stop(dev);
4788 if (!dev)
4789 goto out_unlock;
4790 }
Johannes Berg4150c572007-09-17 01:29:23 -04004791 b43_wireless_core_exit(dev);
Larry Fingerfd4973c2009-06-20 12:58:11 -05004792 wl->radio_enabled = 0;
Michael Buesch36dbd952009-09-04 22:51:29 +02004793
4794out_unlock:
Michael Buesche4d6b792007-09-18 15:39:42 -04004795 mutex_unlock(&wl->mutex);
Michael Buesch18c8ade2008-08-28 19:33:40 +02004796
4797 cancel_work_sync(&(wl->txpower_adjust_work));
Michael Buesche4d6b792007-09-18 15:39:42 -04004798}
4799
Johannes Berg17741cd2008-09-11 00:02:02 +02004800static int b43_op_beacon_set_tim(struct ieee80211_hw *hw,
4801 struct ieee80211_sta *sta, bool set)
Michael Buesche66fee62007-12-26 17:47:10 +01004802{
4803 struct b43_wl *wl = hw_to_b43_wl(hw);
Michael Buesche66fee62007-12-26 17:47:10 +01004804
Felix Fietkau8f611282009-11-07 18:37:37 +01004805 /* FIXME: add locking */
Johannes Berg9d139c82008-07-09 14:40:37 +02004806 b43_update_templates(wl);
Michael Buesche66fee62007-12-26 17:47:10 +01004807
4808 return 0;
4809}
4810
Johannes Berg38968d02008-02-25 16:27:50 +01004811static void b43_op_sta_notify(struct ieee80211_hw *hw,
4812 struct ieee80211_vif *vif,
4813 enum sta_notify_cmd notify_cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02004814 struct ieee80211_sta *sta)
Johannes Berg38968d02008-02-25 16:27:50 +01004815{
4816 struct b43_wl *wl = hw_to_b43_wl(hw);
4817
4818 B43_WARN_ON(!vif || wl->vif != vif);
4819}
4820
Michael Buesch25d3ef52009-02-20 15:39:21 +01004821static void b43_op_sw_scan_start_notifier(struct ieee80211_hw *hw)
4822{
4823 struct b43_wl *wl = hw_to_b43_wl(hw);
4824 struct b43_wldev *dev;
4825
4826 mutex_lock(&wl->mutex);
4827 dev = wl->current_dev;
4828 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED)) {
4829 /* Disable CFP update during scan on other channels. */
4830 b43_hf_write(dev, b43_hf_read(dev) | B43_HF_SKCFPUP);
4831 }
4832 mutex_unlock(&wl->mutex);
4833}
4834
4835static void b43_op_sw_scan_complete_notifier(struct ieee80211_hw *hw)
4836{
4837 struct b43_wl *wl = hw_to_b43_wl(hw);
4838 struct b43_wldev *dev;
4839
4840 mutex_lock(&wl->mutex);
4841 dev = wl->current_dev;
4842 if (dev && (b43_status(dev) >= B43_STAT_INITIALIZED)) {
4843 /* Re-enable CFP update. */
4844 b43_hf_write(dev, b43_hf_read(dev) & ~B43_HF_SKCFPUP);
4845 }
4846 mutex_unlock(&wl->mutex);
4847}
4848
John W. Linville354b4f02010-04-29 15:56:06 -04004849static int b43_op_get_survey(struct ieee80211_hw *hw, int idx,
4850 struct survey_info *survey)
4851{
4852 struct b43_wl *wl = hw_to_b43_wl(hw);
4853 struct b43_wldev *dev = wl->current_dev;
4854 struct ieee80211_conf *conf = &hw->conf;
4855
4856 if (idx != 0)
4857 return -ENOENT;
4858
4859 survey->channel = conf->channel;
4860 survey->filled = SURVEY_INFO_NOISE_DBM;
4861 survey->noise = dev->stats.link_noise;
4862
4863 return 0;
4864}
4865
Michael Buesche4d6b792007-09-18 15:39:42 -04004866static const struct ieee80211_ops b43_hw_ops = {
Michael Buesch40faacc2007-10-28 16:29:32 +01004867 .tx = b43_op_tx,
4868 .conf_tx = b43_op_conf_tx,
4869 .add_interface = b43_op_add_interface,
4870 .remove_interface = b43_op_remove_interface,
4871 .config = b43_op_config,
Johannes Bergc7ab5ef2008-10-29 20:02:12 +01004872 .bss_info_changed = b43_op_bss_info_changed,
Michael Buesch40faacc2007-10-28 16:29:32 +01004873 .configure_filter = b43_op_configure_filter,
4874 .set_key = b43_op_set_key,
gregor kowski035d0242009-08-19 22:35:45 +02004875 .update_tkip_key = b43_op_update_tkip_key,
Michael Buesch40faacc2007-10-28 16:29:32 +01004876 .get_stats = b43_op_get_stats,
Alina Friedrichsen08e87a82009-01-25 15:28:28 +01004877 .get_tsf = b43_op_get_tsf,
4878 .set_tsf = b43_op_set_tsf,
Michael Buesch40faacc2007-10-28 16:29:32 +01004879 .start = b43_op_start,
4880 .stop = b43_op_stop,
Michael Buesche66fee62007-12-26 17:47:10 +01004881 .set_tim = b43_op_beacon_set_tim,
Johannes Berg38968d02008-02-25 16:27:50 +01004882 .sta_notify = b43_op_sta_notify,
Michael Buesch25d3ef52009-02-20 15:39:21 +01004883 .sw_scan_start = b43_op_sw_scan_start_notifier,
4884 .sw_scan_complete = b43_op_sw_scan_complete_notifier,
John W. Linville354b4f02010-04-29 15:56:06 -04004885 .get_survey = b43_op_get_survey,
Johannes Bergf41f3f32009-06-07 12:30:34 -05004886 .rfkill_poll = b43_rfkill_poll,
Michael Buesche4d6b792007-09-18 15:39:42 -04004887};
4888
4889/* Hard-reset the chip. Do not call this directly.
4890 * Use b43_controller_restart()
4891 */
4892static void b43_chip_reset(struct work_struct *work)
4893{
4894 struct b43_wldev *dev =
4895 container_of(work, struct b43_wldev, restart_work);
4896 struct b43_wl *wl = dev->wl;
4897 int err = 0;
4898 int prev_status;
4899
4900 mutex_lock(&wl->mutex);
4901
4902 prev_status = b43_status(dev);
4903 /* Bring the device down... */
Michael Buesch36dbd952009-09-04 22:51:29 +02004904 if (prev_status >= B43_STAT_STARTED) {
4905 dev = b43_wireless_core_stop(dev);
4906 if (!dev) {
4907 err = -ENODEV;
4908 goto out;
4909 }
4910 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004911 if (prev_status >= B43_STAT_INITIALIZED)
4912 b43_wireless_core_exit(dev);
4913
4914 /* ...and up again. */
4915 if (prev_status >= B43_STAT_INITIALIZED) {
4916 err = b43_wireless_core_init(dev);
4917 if (err)
4918 goto out;
4919 }
4920 if (prev_status >= B43_STAT_STARTED) {
4921 err = b43_wireless_core_start(dev);
4922 if (err) {
4923 b43_wireless_core_exit(dev);
4924 goto out;
4925 }
4926 }
Michael Buesch3bf0a322008-05-22 16:32:16 +02004927out:
4928 if (err)
4929 wl->current_dev = NULL; /* Failed to init the dev. */
Michael Buesche4d6b792007-09-18 15:39:42 -04004930 mutex_unlock(&wl->mutex);
4931 if (err)
4932 b43err(wl, "Controller restart FAILED\n");
4933 else
4934 b43info(wl, "Controller restarted\n");
4935}
4936
Michael Bueschbb1eeff2008-02-09 12:08:58 +01004937static int b43_setup_bands(struct b43_wldev *dev,
Michael Buesch96c755a2008-01-06 00:09:46 +01004938 bool have_2ghz_phy, bool have_5ghz_phy)
Michael Buesche4d6b792007-09-18 15:39:42 -04004939{
4940 struct ieee80211_hw *hw = dev->wl->hw;
Michael Buesche4d6b792007-09-18 15:39:42 -04004941
Michael Bueschbb1eeff2008-02-09 12:08:58 +01004942 if (have_2ghz_phy)
4943 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &b43_band_2GHz;
4944 if (dev->phy.type == B43_PHYTYPE_N) {
4945 if (have_5ghz_phy)
4946 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &b43_band_5GHz_nphy;
4947 } else {
4948 if (have_5ghz_phy)
4949 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &b43_band_5GHz_aphy;
4950 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004951
Michael Bueschbb1eeff2008-02-09 12:08:58 +01004952 dev->phy.supports_2ghz = have_2ghz_phy;
4953 dev->phy.supports_5ghz = have_5ghz_phy;
Michael Buesche4d6b792007-09-18 15:39:42 -04004954
4955 return 0;
4956}
4957
4958static void b43_wireless_core_detach(struct b43_wldev *dev)
4959{
4960 /* We release firmware that late to not be required to re-request
4961 * is all the time when we reinit the core. */
4962 b43_release_firmware(dev);
Michael Bueschfb111372008-09-02 13:00:34 +02004963 b43_phy_free(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04004964}
4965
4966static int b43_wireless_core_attach(struct b43_wldev *dev)
4967{
4968 struct b43_wl *wl = dev->wl;
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004969 struct pci_dev *pdev = NULL;
Michael Buesche4d6b792007-09-18 15:39:42 -04004970 int err;
Rafał Miłecki40c62262011-07-18 02:01:30 +02004971 u32 tmp;
Michael Buesch96c755a2008-01-06 00:09:46 +01004972 bool have_2ghz_phy = 0, have_5ghz_phy = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04004973
4974 /* Do NOT do any device initialization here.
4975 * Do it in wireless_core_init() instead.
4976 * This function is for gathering basic information about the HW, only.
4977 * Also some structs may be set up here. But most likely you want to have
4978 * that in core_init(), too.
4979 */
4980
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004981#ifdef CONFIG_B43_SSB
4982 if (dev->dev->bus_type == B43_BUS_SSB &&
4983 dev->dev->sdev->bus->bustype == SSB_BUSTYPE_PCI)
4984 pdev = dev->dev->sdev->bus->host_pci;
4985#endif
4986
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02004987 err = b43_bus_powerup(dev, 0);
Michael Buesche4d6b792007-09-18 15:39:42 -04004988 if (err) {
4989 b43err(wl, "Bus powerup failed\n");
4990 goto out;
4991 }
Michael Buesche4d6b792007-09-18 15:39:42 -04004992
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02004993 /* Get the PHY type. */
4994 switch (dev->dev->bus_type) {
Rafał Miłecki42c9a452011-07-06 15:45:27 +02004995#ifdef CONFIG_B43_BCMA
4996 case B43_BUS_BCMA:
Rafał Miłecki40c62262011-07-18 02:01:30 +02004997 tmp = bcma_aread32(dev->dev->bdev, BCMA_IOST);
4998 have_2ghz_phy = !!(tmp & B43_BCMA_IOST_2G_PHY);
4999 have_5ghz_phy = !!(tmp & B43_BCMA_IOST_5G_PHY);
Rafał Miłecki42c9a452011-07-06 15:45:27 +02005000 break;
5001#endif
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02005002#ifdef CONFIG_B43_SSB
5003 case B43_BUS_SSB:
5004 if (dev->dev->core_rev >= 5) {
Rafał Miłecki40c62262011-07-18 02:01:30 +02005005 tmp = ssb_read32(dev->dev->sdev, SSB_TMSHIGH);
5006 have_2ghz_phy = !!(tmp & B43_TMSHIGH_HAVE_2GHZ_PHY);
5007 have_5ghz_phy = !!(tmp & B43_TMSHIGH_HAVE_5GHZ_PHY);
Rafał Miłecki6cbab0d2011-07-06 15:45:26 +02005008 } else
5009 B43_WARN_ON(1);
5010 break;
5011#endif
5012 }
Michael Buesche4d6b792007-09-18 15:39:42 -04005013
Michael Buesch96c755a2008-01-06 00:09:46 +01005014 dev->phy.gmode = have_2ghz_phy;
Larry Fingerfd4973c2009-06-20 12:58:11 -05005015 dev->phy.radio_on = 1;
Rafał Miłecki4da909e2011-06-02 01:07:12 +02005016 b43_wireless_core_reset(dev, dev->phy.gmode);
Michael Buesche4d6b792007-09-18 15:39:42 -04005017
5018 err = b43_phy_versioning(dev);
5019 if (err)
Michael Buesch21954c32007-09-27 15:31:40 +02005020 goto err_powerdown;
Michael Buesche4d6b792007-09-18 15:39:42 -04005021 /* Check if this device supports multiband. */
5022 if (!pdev ||
5023 (pdev->device != 0x4312 &&
5024 pdev->device != 0x4319 && pdev->device != 0x4324)) {
5025 /* No multiband support. */
Michael Buesch96c755a2008-01-06 00:09:46 +01005026 have_2ghz_phy = 0;
5027 have_5ghz_phy = 0;
Michael Buesche4d6b792007-09-18 15:39:42 -04005028 switch (dev->phy.type) {
5029 case B43_PHYTYPE_A:
Michael Buesch96c755a2008-01-06 00:09:46 +01005030 have_5ghz_phy = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04005031 break;
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02005032 case B43_PHYTYPE_LP: //FIXME not always!
Gábor Stefanik86b28922009-08-16 20:22:41 +02005033#if 0 //FIXME enabling 5GHz causes a NULL pointer dereference
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02005034 have_5ghz_phy = 1;
Gábor Stefanik86b28922009-08-16 20:22:41 +02005035#endif
Michael Buesche4d6b792007-09-18 15:39:42 -04005036 case B43_PHYTYPE_G:
Michael Buesch96c755a2008-01-06 00:09:46 +01005037 case B43_PHYTYPE_N:
Rafał Miłecki8b9bda72011-07-07 18:58:24 +02005038 case B43_PHYTYPE_HT:
5039 case B43_PHYTYPE_LCN:
Michael Buesch96c755a2008-01-06 00:09:46 +01005040 have_2ghz_phy = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -04005041 break;
5042 default:
5043 B43_WARN_ON(1);
5044 }
5045 }
Michael Buesch96c755a2008-01-06 00:09:46 +01005046 if (dev->phy.type == B43_PHYTYPE_A) {
5047 /* FIXME */
5048 b43err(wl, "IEEE 802.11a devices are unsupported\n");
5049 err = -EOPNOTSUPP;
5050 goto err_powerdown;
5051 }
Michael Buesch2e35af12008-04-27 19:06:18 +02005052 if (1 /* disable A-PHY */) {
5053 /* FIXME: For now we disable the A-PHY on multi-PHY devices. */
Gábor Stefanik9d86a2d2009-08-14 14:54:46 +02005054 if (dev->phy.type != B43_PHYTYPE_N &&
5055 dev->phy.type != B43_PHYTYPE_LP) {
Michael Buesch2e35af12008-04-27 19:06:18 +02005056 have_2ghz_phy = 1;
5057 have_5ghz_phy = 0;
5058 }
5059 }
5060
Michael Bueschfb111372008-09-02 13:00:34 +02005061 err = b43_phy_allocate(dev);
5062 if (err)
5063 goto err_powerdown;
5064
Michael Buesch96c755a2008-01-06 00:09:46 +01005065 dev->phy.gmode = have_2ghz_phy;
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_validate_chipaccess(dev);
5069 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02005070 goto err_phy_free;
Michael Bueschbb1eeff2008-02-09 12:08:58 +01005071 err = b43_setup_bands(dev, have_2ghz_phy, have_5ghz_phy);
Michael Buesche4d6b792007-09-18 15:39:42 -04005072 if (err)
Michael Bueschfb111372008-09-02 13:00:34 +02005073 goto err_phy_free;
Michael Buesche4d6b792007-09-18 15:39:42 -04005074
5075 /* Now set some default "current_dev" */
5076 if (!wl->current_dev)
5077 wl->current_dev = dev;
5078 INIT_WORK(&dev->restart_work, b43_chip_reset);
5079
Michael Bueschcb24f572008-09-03 12:12:20 +02005080 dev->phy.ops->switch_analog(dev, 0);
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02005081 b43_device_disable(dev, 0);
5082 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005083
5084out:
5085 return err;
5086
Michael Bueschfb111372008-09-02 13:00:34 +02005087err_phy_free:
5088 b43_phy_free(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005089err_powerdown:
Rafał Miłecki24ca39d2011-05-18 02:06:43 +02005090 b43_bus_may_powerdown(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005091 return err;
5092}
5093
Rafał Miłecki482f0532011-05-18 02:06:36 +02005094static void b43_one_core_detach(struct b43_bus_dev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04005095{
5096 struct b43_wldev *wldev;
5097 struct b43_wl *wl;
5098
Michael Buesch3bf0a322008-05-22 16:32:16 +02005099 /* Do not cancel ieee80211-workqueue based work here.
5100 * See comment in b43_remove(). */
5101
Rafał Miłecki74abacb2011-07-06 15:45:28 +02005102 wldev = b43_bus_get_wldev(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005103 wl = wldev->wl;
Michael Buesche4d6b792007-09-18 15:39:42 -04005104 b43_debugfs_remove_device(wldev);
5105 b43_wireless_core_detach(wldev);
5106 list_del(&wldev->list);
5107 wl->nr_devs--;
Rafał Miłecki74abacb2011-07-06 15:45:28 +02005108 b43_bus_set_wldev(dev, NULL);
Michael Buesche4d6b792007-09-18 15:39:42 -04005109 kfree(wldev);
5110}
5111
Rafał Miłecki482f0532011-05-18 02:06:36 +02005112static int b43_one_core_attach(struct b43_bus_dev *dev, struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04005113{
5114 struct b43_wldev *wldev;
Michael Buesche4d6b792007-09-18 15:39:42 -04005115 int err = -ENOMEM;
5116
Michael Buesche4d6b792007-09-18 15:39:42 -04005117 wldev = kzalloc(sizeof(*wldev), GFP_KERNEL);
5118 if (!wldev)
5119 goto out;
5120
Linus Torvalds9e3bd912010-02-26 10:34:27 -08005121 wldev->use_pio = b43_modparam_pio;
Rafał Miłecki482f0532011-05-18 02:06:36 +02005122 wldev->dev = dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04005123 wldev->wl = wl;
5124 b43_set_status(wldev, B43_STAT_UNINIT);
5125 wldev->bad_frames_preempt = modparam_bad_frames_preempt;
Michael Buesche4d6b792007-09-18 15:39:42 -04005126 INIT_LIST_HEAD(&wldev->list);
5127
5128 err = b43_wireless_core_attach(wldev);
5129 if (err)
5130 goto err_kfree_wldev;
5131
5132 list_add(&wldev->list, &wl->devlist);
5133 wl->nr_devs++;
Rafał Miłecki74abacb2011-07-06 15:45:28 +02005134 b43_bus_set_wldev(dev, wldev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005135 b43_debugfs_add_device(wldev);
5136
5137 out:
5138 return err;
5139
5140 err_kfree_wldev:
5141 kfree(wldev);
5142 return err;
5143}
5144
Michael Buesch9fc38452008-04-19 16:53:00 +02005145#define IS_PDEV(pdev, _vendor, _device, _subvendor, _subdevice) ( \
5146 (pdev->vendor == PCI_VENDOR_ID_##_vendor) && \
5147 (pdev->device == _device) && \
5148 (pdev->subsystem_vendor == PCI_VENDOR_ID_##_subvendor) && \
5149 (pdev->subsystem_device == _subdevice) )
5150
Michael Buesche4d6b792007-09-18 15:39:42 -04005151static void b43_sprom_fixup(struct ssb_bus *bus)
5152{
Michael Buesch1855ba72008-04-18 20:51:41 +02005153 struct pci_dev *pdev;
5154
Michael Buesche4d6b792007-09-18 15:39:42 -04005155 /* boardflags workarounds */
5156 if (bus->boardinfo.vendor == SSB_BOARDVENDOR_DELL &&
5157 bus->chip_id == 0x4301 && bus->boardinfo.rev == 0x74)
Larry Finger95de2842007-11-09 16:57:18 -06005158 bus->sprom.boardflags_lo |= B43_BFL_BTCOEXIST;
Michael Buesche4d6b792007-09-18 15:39:42 -04005159 if (bus->boardinfo.vendor == PCI_VENDOR_ID_APPLE &&
5160 bus->boardinfo.type == 0x4E && bus->boardinfo.rev > 0x40)
Larry Finger95de2842007-11-09 16:57:18 -06005161 bus->sprom.boardflags_lo |= B43_BFL_PACTRL;
Michael Buesch1855ba72008-04-18 20:51:41 +02005162 if (bus->bustype == SSB_BUSTYPE_PCI) {
5163 pdev = bus->host_pci;
Michael Buesch9fc38452008-04-19 16:53:00 +02005164 if (IS_PDEV(pdev, BROADCOM, 0x4318, ASUSTEK, 0x100F) ||
Larry Finger430cd472008-08-14 18:57:11 -05005165 IS_PDEV(pdev, BROADCOM, 0x4320, DELL, 0x0003) ||
Larry Finger570bdfb2008-09-26 08:23:00 -05005166 IS_PDEV(pdev, BROADCOM, 0x4320, HP, 0x12f8) ||
Michael Buesch9fc38452008-04-19 16:53:00 +02005167 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0015) ||
Larry Fingera58d4522008-08-10 10:19:33 -05005168 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0014) ||
Larry Finger3bb91bf2008-09-19 14:47:38 -05005169 IS_PDEV(pdev, BROADCOM, 0x4320, LINKSYS, 0x0013) ||
5170 IS_PDEV(pdev, BROADCOM, 0x4320, MOTOROLA, 0x7010))
Michael Buesch1855ba72008-04-18 20:51:41 +02005171 bus->sprom.boardflags_lo &= ~B43_BFL_BTCOEXIST;
5172 }
Michael Buesche4d6b792007-09-18 15:39:42 -04005173}
5174
Rafał Miłecki482f0532011-05-18 02:06:36 +02005175static void b43_wireless_exit(struct b43_bus_dev *dev, struct b43_wl *wl)
Michael Buesche4d6b792007-09-18 15:39:42 -04005176{
5177 struct ieee80211_hw *hw = wl->hw;
5178
Rafał Miłecki482f0532011-05-18 02:06:36 +02005179 ssb_set_devtypedata(dev->sdev, NULL);
Michael Buesche4d6b792007-09-18 15:39:42 -04005180 ieee80211_free_hw(hw);
5181}
5182
Rafał Miłeckid1507052011-07-05 23:54:07 +02005183static struct b43_wl *b43_wireless_init(struct b43_bus_dev *dev)
Michael Buesche4d6b792007-09-18 15:39:42 -04005184{
Rafał Miłeckid1507052011-07-05 23:54:07 +02005185 struct ssb_sprom *sprom = dev->bus_sprom;
Michael Buesche4d6b792007-09-18 15:39:42 -04005186 struct ieee80211_hw *hw;
5187 struct b43_wl *wl;
Rafał Miłecki2729df22011-07-18 22:45:58 +02005188 char chip_name[6];
Michael Buesche4d6b792007-09-18 15:39:42 -04005189
5190 hw = ieee80211_alloc_hw(sizeof(*wl), &b43_hw_ops);
5191 if (!hw) {
5192 b43err(NULL, "Could not allocate ieee80211 device\n");
Rafał Miłecki0355a342011-05-17 14:00:01 +02005193 return ERR_PTR(-ENOMEM);
Michael Buesche4d6b792007-09-18 15:39:42 -04005194 }
Michael Buesch403a3a12009-06-08 21:04:57 +02005195 wl = hw_to_b43_wl(hw);
Michael Buesche4d6b792007-09-18 15:39:42 -04005196
5197 /* fill hw info */
Johannes Berg605a0bd2008-07-15 10:10:01 +02005198 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
John W. Linvillef5c044e2010-04-30 15:37:00 -04005199 IEEE80211_HW_SIGNAL_DBM;
Bruno Randolf566bfe52008-05-08 19:15:40 +02005200
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07005201 hw->wiphy->interface_modes =
5202 BIT(NL80211_IFTYPE_AP) |
5203 BIT(NL80211_IFTYPE_MESH_POINT) |
5204 BIT(NL80211_IFTYPE_STATION) |
5205 BIT(NL80211_IFTYPE_WDS) |
5206 BIT(NL80211_IFTYPE_ADHOC);
5207
Michael Buesch403a3a12009-06-08 21:04:57 +02005208 hw->queues = modparam_qos ? 4 : 1;
5209 wl->mac80211_initially_registered_queues = hw->queues;
Johannes Berge6a98542008-10-21 12:40:02 +02005210 hw->max_rates = 2;
Michael Buesche4d6b792007-09-18 15:39:42 -04005211 SET_IEEE80211_DEV(hw, dev->dev);
Larry Finger95de2842007-11-09 16:57:18 -06005212 if (is_valid_ether_addr(sprom->et1mac))
5213 SET_IEEE80211_PERM_ADDR(hw, sprom->et1mac);
Michael Buesche4d6b792007-09-18 15:39:42 -04005214 else
Larry Finger95de2842007-11-09 16:57:18 -06005215 SET_IEEE80211_PERM_ADDR(hw, sprom->il0mac);
Michael Buesche4d6b792007-09-18 15:39:42 -04005216
Michael Buesch403a3a12009-06-08 21:04:57 +02005217 /* Initialize struct b43_wl */
Michael Buesche4d6b792007-09-18 15:39:42 -04005218 wl->hw = hw;
Michael Buesche4d6b792007-09-18 15:39:42 -04005219 mutex_init(&wl->mutex);
Michael Buesch36dbd952009-09-04 22:51:29 +02005220 spin_lock_init(&wl->hardirq_lock);
Michael Buesche4d6b792007-09-18 15:39:42 -04005221 INIT_LIST_HEAD(&wl->devlist);
Michael Buescha82d9922008-04-04 21:40:06 +02005222 INIT_WORK(&wl->beacon_update_trigger, b43_beacon_update_trigger_work);
Michael Buesch18c8ade2008-08-28 19:33:40 +02005223 INIT_WORK(&wl->txpower_adjust_work, b43_phy_txpower_adjust_work);
Michael Bueschf5d40ee2009-09-04 22:53:18 +02005224 INIT_WORK(&wl->tx_work, b43_tx_work);
5225 skb_queue_head_init(&wl->tx_queue);
Michael Buesche4d6b792007-09-18 15:39:42 -04005226
Rafał Miłecki2729df22011-07-18 22:45:58 +02005227 snprintf(chip_name, ARRAY_SIZE(chip_name),
5228 (dev->chip_id > 0x9999) ? "%d" : "%04X", dev->chip_id);
5229 b43info(wl, "Broadcom %s WLAN found (core revision %u)\n", chip_name,
5230 dev->core_rev);
Rafał Miłecki0355a342011-05-17 14:00:01 +02005231 return wl;
Michael Buesche4d6b792007-09-18 15:39:42 -04005232}
5233
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005234#ifdef CONFIG_B43_BCMA
5235static int b43_bcma_probe(struct bcma_device *core)
Michael Buesche4d6b792007-09-18 15:39:42 -04005236{
Rafał Miłecki397915c2011-07-06 19:03:46 +02005237 struct b43_bus_dev *dev;
Rafał Miłecki24aad3f2011-07-20 20:02:39 +02005238 struct b43_wl *wl;
5239 int err;
Rafał Miłecki397915c2011-07-06 19:03:46 +02005240
5241 dev = b43_bus_dev_bcma_init(core);
5242 if (!dev)
5243 return -ENODEV;
5244
Rafał Miłecki24aad3f2011-07-20 20:02:39 +02005245 wl = b43_wireless_init(dev);
5246 if (IS_ERR(wl)) {
5247 err = PTR_ERR(wl);
5248 goto bcma_out;
5249 }
5250
5251 err = b43_one_core_attach(dev, wl);
5252 if (err)
5253 goto bcma_err_wireless_exit;
5254
5255 err = ieee80211_register_hw(wl->hw);
5256 if (err)
5257 goto bcma_err_one_core_detach;
5258 b43_leds_register(wl->current_dev);
5259
5260bcma_out:
5261 return err;
5262
5263bcma_err_one_core_detach:
5264 b43_one_core_detach(dev);
5265bcma_err_wireless_exit:
5266 ieee80211_free_hw(wl->hw);
5267 return err;
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005268}
5269
5270static void b43_bcma_remove(struct bcma_device *core)
5271{
Rafał Miłecki24aad3f2011-07-20 20:02:39 +02005272 struct b43_wldev *wldev = bcma_get_drvdata(core);
5273 struct b43_wl *wl = wldev->wl;
5274
5275 /* We must cancel any work here before unregistering from ieee80211,
5276 * as the ieee80211 unreg will destroy the workqueue. */
5277 cancel_work_sync(&wldev->restart_work);
5278
5279 /* Restore the queues count before unregistering, because firmware detect
5280 * might have modified it. Restoring is important, so the networking
5281 * stack can properly free resources. */
5282 wl->hw->queues = wl->mac80211_initially_registered_queues;
5283 b43_leds_stop(wldev);
5284 ieee80211_unregister_hw(wl->hw);
5285
5286 b43_one_core_detach(wldev->dev);
5287
5288 b43_leds_unregister(wl);
5289
5290 ieee80211_free_hw(wl->hw);
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005291}
5292
5293static struct bcma_driver b43_bcma_driver = {
5294 .name = KBUILD_MODNAME,
5295 .id_table = b43_bcma_tbl,
5296 .probe = b43_bcma_probe,
5297 .remove = b43_bcma_remove,
5298};
5299#endif
5300
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005301#ifdef CONFIG_B43_SSB
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005302static
5303int b43_ssb_probe(struct ssb_device *sdev, const struct ssb_device_id *id)
Michael Buesche4d6b792007-09-18 15:39:42 -04005304{
Rafał Miłecki482f0532011-05-18 02:06:36 +02005305 struct b43_bus_dev *dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04005306 struct b43_wl *wl;
5307 int err;
5308 int first = 0;
5309
Rafał Miłecki482f0532011-05-18 02:06:36 +02005310 dev = b43_bus_dev_ssb_init(sdev);
Dan Carpenter5b49b352011-06-09 10:09:34 +03005311 if (!dev)
5312 return -ENOMEM;
Rafał Miłecki482f0532011-05-18 02:06:36 +02005313
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005314 wl = ssb_get_devtypedata(sdev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005315 if (!wl) {
5316 /* Probing the first core. Must setup common struct b43_wl */
5317 first = 1;
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005318 b43_sprom_fixup(sdev->bus);
Rafał Miłeckid1507052011-07-05 23:54:07 +02005319 wl = b43_wireless_init(dev);
Rafał Miłecki0355a342011-05-17 14:00:01 +02005320 if (IS_ERR(wl)) {
5321 err = PTR_ERR(wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005322 goto out;
Rafał Miłecki0355a342011-05-17 14:00:01 +02005323 }
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005324 ssb_set_devtypedata(sdev, wl);
5325 B43_WARN_ON(ssb_get_devtypedata(sdev) != wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005326 }
5327 err = b43_one_core_attach(dev, wl);
5328 if (err)
5329 goto err_wireless_exit;
5330
5331 if (first) {
5332 err = ieee80211_register_hw(wl->hw);
5333 if (err)
5334 goto err_one_core_detach;
Michael Buescha78b3bb2009-09-11 21:44:05 +02005335 b43_leds_register(wl->current_dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005336 }
5337
5338 out:
5339 return err;
5340
5341 err_one_core_detach:
5342 b43_one_core_detach(dev);
5343 err_wireless_exit:
5344 if (first)
5345 b43_wireless_exit(dev, wl);
5346 return err;
5347}
5348
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005349static void b43_ssb_remove(struct ssb_device *sdev)
Michael Buesche4d6b792007-09-18 15:39:42 -04005350{
Rafał Miłeckiaa634182011-05-18 02:06:35 +02005351 struct b43_wl *wl = ssb_get_devtypedata(sdev);
5352 struct b43_wldev *wldev = ssb_get_drvdata(sdev);
Pavel Roskine61b52d2011-07-22 18:07:13 -04005353 struct b43_bus_dev *dev = wldev->dev;
Michael Buesche4d6b792007-09-18 15:39:42 -04005354
Michael Buesch3bf0a322008-05-22 16:32:16 +02005355 /* We must cancel any work here before unregistering from ieee80211,
5356 * as the ieee80211 unreg will destroy the workqueue. */
5357 cancel_work_sync(&wldev->restart_work);
5358
Michael Buesche4d6b792007-09-18 15:39:42 -04005359 B43_WARN_ON(!wl);
Michael Buesch403a3a12009-06-08 21:04:57 +02005360 if (wl->current_dev == wldev) {
5361 /* Restore the queues count before unregistering, because firmware detect
5362 * might have modified it. Restoring is important, so the networking
5363 * stack can properly free resources. */
5364 wl->hw->queues = wl->mac80211_initially_registered_queues;
Albert Herranz82905ac2009-09-16 00:26:19 +02005365 b43_leds_stop(wldev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005366 ieee80211_unregister_hw(wl->hw);
Michael Buesch403a3a12009-06-08 21:04:57 +02005367 }
Michael Buesche4d6b792007-09-18 15:39:42 -04005368
Pavel Roskine61b52d2011-07-22 18:07:13 -04005369 b43_one_core_detach(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -04005370
5371 if (list_empty(&wl->devlist)) {
Michael Buesch727c9882009-10-01 15:54:32 +02005372 b43_leds_unregister(wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005373 /* Last core on the chip unregistered.
5374 * We can destroy common struct b43_wl.
5375 */
Pavel Roskine61b52d2011-07-22 18:07:13 -04005376 b43_wireless_exit(dev, wl);
Michael Buesche4d6b792007-09-18 15:39:42 -04005377 }
5378}
5379
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005380static struct ssb_driver b43_ssb_driver = {
5381 .name = KBUILD_MODNAME,
5382 .id_table = b43_ssb_tbl,
5383 .probe = b43_ssb_probe,
5384 .remove = b43_ssb_remove,
5385};
5386#endif /* CONFIG_B43_SSB */
5387
Michael Buesche4d6b792007-09-18 15:39:42 -04005388/* Perform a hardware reset. This can be called from any context. */
5389void b43_controller_restart(struct b43_wldev *dev, const char *reason)
5390{
5391 /* Must avoid requeueing, if we are in shutdown. */
5392 if (b43_status(dev) < B43_STAT_INITIALIZED)
5393 return;
5394 b43info(dev->wl, "Controller RESET (%s) ...\n", reason);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04005395 ieee80211_queue_work(dev->wl->hw, &dev->restart_work);
Michael Buesche4d6b792007-09-18 15:39:42 -04005396}
5397
Michael Buesch26bc7832008-02-09 00:18:35 +01005398static void b43_print_driverinfo(void)
5399{
5400 const char *feat_pci = "", *feat_pcmcia = "", *feat_nphy = "",
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005401 *feat_leds = "", *feat_sdio = "";
Michael Buesch26bc7832008-02-09 00:18:35 +01005402
5403#ifdef CONFIG_B43_PCI_AUTOSELECT
5404 feat_pci = "P";
5405#endif
5406#ifdef CONFIG_B43_PCMCIA
5407 feat_pcmcia = "M";
5408#endif
Rafał Miłecki692d2c02010-12-07 21:56:00 +01005409#ifdef CONFIG_B43_PHY_N
Michael Buesch26bc7832008-02-09 00:18:35 +01005410 feat_nphy = "N";
5411#endif
5412#ifdef CONFIG_B43_LEDS
5413 feat_leds = "L";
5414#endif
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005415#ifdef CONFIG_B43_SDIO
5416 feat_sdio = "S";
5417#endif
Michael Buesch26bc7832008-02-09 00:18:35 +01005418 printk(KERN_INFO "Broadcom 43xx driver loaded "
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005419 "[ Features: %s%s%s%s%s, Firmware-ID: "
Michael Buesch26bc7832008-02-09 00:18:35 +01005420 B43_SUPPORTED_FIRMWARE_ID " ]\n",
5421 feat_pci, feat_pcmcia, feat_nphy,
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005422 feat_leds, feat_sdio);
Michael Buesch26bc7832008-02-09 00:18:35 +01005423}
5424
Michael Buesche4d6b792007-09-18 15:39:42 -04005425static int __init b43_init(void)
5426{
5427 int err;
5428
5429 b43_debugfs_init();
5430 err = b43_pcmcia_init();
5431 if (err)
5432 goto err_dfs_exit;
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005433 err = b43_sdio_init();
Michael Buesche4d6b792007-09-18 15:39:42 -04005434 if (err)
5435 goto err_pcmcia_exit;
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005436#ifdef CONFIG_B43_BCMA
5437 err = bcma_driver_register(&b43_bcma_driver);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005438 if (err)
5439 goto err_sdio_exit;
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005440#endif
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005441#ifdef CONFIG_B43_SSB
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005442 err = ssb_driver_register(&b43_ssb_driver);
5443 if (err)
5444 goto err_bcma_driver_exit;
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005445#endif
Michael Buesch26bc7832008-02-09 00:18:35 +01005446 b43_print_driverinfo();
Michael Buesche4d6b792007-09-18 15:39:42 -04005447
5448 return err;
5449
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005450#ifdef CONFIG_B43_SSB
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005451err_bcma_driver_exit:
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005452#endif
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005453#ifdef CONFIG_B43_BCMA
5454 bcma_driver_unregister(&b43_bcma_driver);
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005455err_sdio_exit:
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005456#endif
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005457 b43_sdio_exit();
Michael Buesche4d6b792007-09-18 15:39:42 -04005458err_pcmcia_exit:
5459 b43_pcmcia_exit();
5460err_dfs_exit:
5461 b43_debugfs_exit();
5462 return err;
5463}
5464
5465static void __exit b43_exit(void)
5466{
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005467#ifdef CONFIG_B43_SSB
Michael Buesche4d6b792007-09-18 15:39:42 -04005468 ssb_driver_unregister(&b43_ssb_driver);
Rafał Miłeckiaec7ffd2011-06-14 08:18:59 +02005469#endif
Rafał Miłecki3c65ab62011-06-02 09:56:04 +02005470#ifdef CONFIG_B43_BCMA
5471 bcma_driver_unregister(&b43_bcma_driver);
5472#endif
Albert Herranz3dbba8e2009-09-10 19:34:49 +02005473 b43_sdio_exit();
Michael Buesche4d6b792007-09-18 15:39:42 -04005474 b43_pcmcia_exit();
5475 b43_debugfs_exit();
5476}
5477
5478module_init(b43_init)
5479module_exit(b43_exit)