[NET]: Proper comment for loopback initialization order.
[GitHub/LineageOS/android_kernel_samsung_universal7580.git] / drivers / net / wireless / b43legacy / main.c
CommitLineData
75388acd
LF
1/*
2 *
3 * Broadcom B43legacy wireless driver
4 *
5 * Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>
6 * Copyright (c) 2005 Stefano Brivio <st3@riseup.net>
7 * Copyright (c) 2005, 2006 Michael Buesch <mb@bu3sch.de>
8 * Copyright (c) 2005 Danny van Dyk <kugelfang@gentoo.org>
9 * Copyright (c) 2005 Andreas Jaggi <andreas.jaggi@waterwave.ch>
10 * Copyright (c) 2007 Larry Finger <Larry.Finger@lwfinger.net>
11 *
12 * Some parts of the code in this file are derived from the ipw2200
13 * driver Copyright(c) 2003 - 2004 Intel Corporation.
14
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; see the file COPYING. If not, write to
27 * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
28 * Boston, MA 02110-1301, USA.
29 *
30 */
31
32#include <linux/delay.h>
33#include <linux/init.h>
34#include <linux/moduleparam.h>
35#include <linux/if_arp.h>
36#include <linux/etherdevice.h>
37#include <linux/version.h>
38#include <linux/firmware.h>
39#include <linux/wireless.h>
40#include <linux/workqueue.h>
41#include <linux/skbuff.h>
42#include <linux/dma-mapping.h>
43#include <net/dst.h>
44#include <asm/unaligned.h>
45
46#include "b43legacy.h"
47#include "main.h"
48#include "debugfs.h"
49#include "phy.h"
50#include "dma.h"
51#include "pio.h"
52#include "sysfs.h"
53#include "xmit.h"
54#include "radio.h"
55
56
57MODULE_DESCRIPTION("Broadcom B43legacy wireless driver");
58MODULE_AUTHOR("Martin Langer");
59MODULE_AUTHOR("Stefano Brivio");
60MODULE_AUTHOR("Michael Buesch");
61MODULE_LICENSE("GPL");
62
63#if defined(CONFIG_B43LEGACY_DMA) && defined(CONFIG_B43LEGACY_PIO)
64static int modparam_pio;
65module_param_named(pio, modparam_pio, int, 0444);
66MODULE_PARM_DESC(pio, "enable(1) / disable(0) PIO mode");
67#elif defined(CONFIG_B43LEGACY_DMA)
68# define modparam_pio 0
69#elif defined(CONFIG_B43LEGACY_PIO)
70# define modparam_pio 1
71#endif
72
73static int modparam_bad_frames_preempt;
74module_param_named(bad_frames_preempt, modparam_bad_frames_preempt, int, 0444);
75MODULE_PARM_DESC(bad_frames_preempt, "enable(1) / disable(0) Bad Frames"
76 " Preemption");
77
78static int modparam_short_retry = B43legacy_DEFAULT_SHORT_RETRY_LIMIT;
79module_param_named(short_retry, modparam_short_retry, int, 0444);
80MODULE_PARM_DESC(short_retry, "Short-Retry-Limit (0 - 15)");
81
82static int modparam_long_retry = B43legacy_DEFAULT_LONG_RETRY_LIMIT;
83module_param_named(long_retry, modparam_long_retry, int, 0444);
84MODULE_PARM_DESC(long_retry, "Long-Retry-Limit (0 - 15)");
85
86static int modparam_noleds;
87module_param_named(noleds, modparam_noleds, int, 0444);
88MODULE_PARM_DESC(noleds, "Turn off all LED activity");
89
90static char modparam_fwpostfix[16];
91module_param_string(fwpostfix, modparam_fwpostfix, 16, 0444);
92MODULE_PARM_DESC(fwpostfix, "Postfix for the firmware files to load.");
93
94static int modparam_mon_keep_bad;
95module_param_named(mon_keep_bad, modparam_mon_keep_bad, int, 0444);
96MODULE_PARM_DESC(mon_keep_bad, "Keep bad frames in monitor mode");
97
98static int modparam_mon_keep_badplcp;
99module_param_named(mon_keep_badplcp, modparam_mon_keep_bad, int, 0444);
100MODULE_PARM_DESC(mon_keep_badplcp, "Keep frames with bad PLCP in monitor mode");
101
102/* The following table supports BCM4301, BCM4303 and BCM4306/2 devices. */
103static const struct ssb_device_id b43legacy_ssb_tbl[] = {
104 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 2),
105 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 4),
106 SSB_DEVTABLE_END
107};
108MODULE_DEVICE_TABLE(ssb, b43legacy_ssb_tbl);
109
110
111/* Channel and ratetables are shared for all devices.
112 * They can't be const, because ieee80211 puts some precalculated
113 * data in there. This data is the same for all devices, so we don't
114 * get concurrency issues */
115#define RATETAB_ENT(_rateid, _flags) \
116 { \
117 .rate = B43legacy_RATE_TO_100KBPS(_rateid), \
118 .val = (_rateid), \
119 .val2 = (_rateid), \
120 .flags = (_flags), \
121 }
122static struct ieee80211_rate __b43legacy_ratetable[] = {
123 RATETAB_ENT(B43legacy_CCK_RATE_1MB, IEEE80211_RATE_CCK),
124 RATETAB_ENT(B43legacy_CCK_RATE_2MB, IEEE80211_RATE_CCK_2),
125 RATETAB_ENT(B43legacy_CCK_RATE_5MB, IEEE80211_RATE_CCK_2),
126 RATETAB_ENT(B43legacy_CCK_RATE_11MB, IEEE80211_RATE_CCK_2),
127 RATETAB_ENT(B43legacy_OFDM_RATE_6MB, IEEE80211_RATE_OFDM),
128 RATETAB_ENT(B43legacy_OFDM_RATE_9MB, IEEE80211_RATE_OFDM),
129 RATETAB_ENT(B43legacy_OFDM_RATE_12MB, IEEE80211_RATE_OFDM),
130 RATETAB_ENT(B43legacy_OFDM_RATE_18MB, IEEE80211_RATE_OFDM),
131 RATETAB_ENT(B43legacy_OFDM_RATE_24MB, IEEE80211_RATE_OFDM),
132 RATETAB_ENT(B43legacy_OFDM_RATE_36MB, IEEE80211_RATE_OFDM),
133 RATETAB_ENT(B43legacy_OFDM_RATE_48MB, IEEE80211_RATE_OFDM),
134 RATETAB_ENT(B43legacy_OFDM_RATE_54MB, IEEE80211_RATE_OFDM),
135};
136#define b43legacy_a_ratetable (__b43legacy_ratetable + 4)
137#define b43legacy_a_ratetable_size 8
138#define b43legacy_b_ratetable (__b43legacy_ratetable + 0)
139#define b43legacy_b_ratetable_size 4
140#define b43legacy_g_ratetable (__b43legacy_ratetable + 0)
141#define b43legacy_g_ratetable_size 12
142
143#define CHANTAB_ENT(_chanid, _freq) \
144 { \
145 .chan = (_chanid), \
146 .freq = (_freq), \
147 .val = (_chanid), \
148 .flag = IEEE80211_CHAN_W_SCAN | \
149 IEEE80211_CHAN_W_ACTIVE_SCAN | \
150 IEEE80211_CHAN_W_IBSS, \
151 .power_level = 0x0A, \
152 .antenna_max = 0xFF, \
153 }
154static struct ieee80211_channel b43legacy_bg_chantable[] = {
155 CHANTAB_ENT(1, 2412),
156 CHANTAB_ENT(2, 2417),
157 CHANTAB_ENT(3, 2422),
158 CHANTAB_ENT(4, 2427),
159 CHANTAB_ENT(5, 2432),
160 CHANTAB_ENT(6, 2437),
161 CHANTAB_ENT(7, 2442),
162 CHANTAB_ENT(8, 2447),
163 CHANTAB_ENT(9, 2452),
164 CHANTAB_ENT(10, 2457),
165 CHANTAB_ENT(11, 2462),
166 CHANTAB_ENT(12, 2467),
167 CHANTAB_ENT(13, 2472),
168 CHANTAB_ENT(14, 2484),
169};
170#define b43legacy_bg_chantable_size ARRAY_SIZE(b43legacy_bg_chantable)
171
172static void b43legacy_wireless_core_exit(struct b43legacy_wldev *dev);
173static int b43legacy_wireless_core_init(struct b43legacy_wldev *dev);
174static void b43legacy_wireless_core_stop(struct b43legacy_wldev *dev);
175static int b43legacy_wireless_core_start(struct b43legacy_wldev *dev);
176
177
178static int b43legacy_ratelimit(struct b43legacy_wl *wl)
179{
180 if (!wl || !wl->current_dev)
181 return 1;
182 if (b43legacy_status(wl->current_dev) < B43legacy_STAT_STARTED)
183 return 1;
184 /* We are up and running.
185 * Ratelimit the messages to avoid DoS over the net. */
186 return net_ratelimit();
187}
188
189void b43legacyinfo(struct b43legacy_wl *wl, const char *fmt, ...)
190{
191 va_list args;
192
193 if (!b43legacy_ratelimit(wl))
194 return;
195 va_start(args, fmt);
196 printk(KERN_INFO "b43legacy-%s: ",
197 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
198 vprintk(fmt, args);
199 va_end(args);
200}
201
202void b43legacyerr(struct b43legacy_wl *wl, const char *fmt, ...)
203{
204 va_list args;
205
206 if (!b43legacy_ratelimit(wl))
207 return;
208 va_start(args, fmt);
209 printk(KERN_ERR "b43legacy-%s ERROR: ",
210 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
211 vprintk(fmt, args);
212 va_end(args);
213}
214
215void b43legacywarn(struct b43legacy_wl *wl, const char *fmt, ...)
216{
217 va_list args;
218
219 if (!b43legacy_ratelimit(wl))
220 return;
221 va_start(args, fmt);
222 printk(KERN_WARNING "b43legacy-%s warning: ",
223 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
224 vprintk(fmt, args);
225 va_end(args);
226}
227
228#if B43legacy_DEBUG
229void b43legacydbg(struct b43legacy_wl *wl, const char *fmt, ...)
230{
231 va_list args;
232
233 va_start(args, fmt);
234 printk(KERN_DEBUG "b43legacy-%s debug: ",
235 (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
236 vprintk(fmt, args);
237 va_end(args);
238}
239#endif /* DEBUG */
240
241static void b43legacy_ram_write(struct b43legacy_wldev *dev, u16 offset,
242 u32 val)
243{
244 u32 status;
245
246 B43legacy_WARN_ON(offset % 4 != 0);
247
248 status = b43legacy_read32(dev, B43legacy_MMIO_STATUS_BITFIELD);
249 if (status & B43legacy_SBF_XFER_REG_BYTESWAP)
250 val = swab32(val);
251
252 b43legacy_write32(dev, B43legacy_MMIO_RAM_CONTROL, offset);
253 mmiowb();
254 b43legacy_write32(dev, B43legacy_MMIO_RAM_DATA, val);
255}
256
257static inline
258void b43legacy_shm_control_word(struct b43legacy_wldev *dev,
259 u16 routing, u16 offset)
260{
261 u32 control;
262
263 /* "offset" is the WORD offset. */
264
265 control = routing;
266 control <<= 16;
267 control |= offset;
268 b43legacy_write32(dev, B43legacy_MMIO_SHM_CONTROL, control);
269}
270
271u32 b43legacy_shm_read32(struct b43legacy_wldev *dev,
272 u16 routing, u16 offset)
273{
274 u32 ret;
275
276 if (routing == B43legacy_SHM_SHARED) {
277 B43legacy_WARN_ON((offset & 0x0001) != 0);
278 if (offset & 0x0003) {
279 /* Unaligned access */
280 b43legacy_shm_control_word(dev, routing, offset >> 2);
281 ret = b43legacy_read16(dev,
282 B43legacy_MMIO_SHM_DATA_UNALIGNED);
283 ret <<= 16;
284 b43legacy_shm_control_word(dev, routing,
285 (offset >> 2) + 1);
286 ret |= b43legacy_read16(dev, B43legacy_MMIO_SHM_DATA);
287
288 return ret;
289 }
290 offset >>= 2;
291 }
292 b43legacy_shm_control_word(dev, routing, offset);
293 ret = b43legacy_read32(dev, B43legacy_MMIO_SHM_DATA);
294
295 return ret;
296}
297
298u16 b43legacy_shm_read16(struct b43legacy_wldev *dev,
299 u16 routing, u16 offset)
300{
301 u16 ret;
302
303 if (routing == B43legacy_SHM_SHARED) {
304 B43legacy_WARN_ON((offset & 0x0001) != 0);
305 if (offset & 0x0003) {
306 /* Unaligned access */
307 b43legacy_shm_control_word(dev, routing, offset >> 2);
308 ret = b43legacy_read16(dev,
309 B43legacy_MMIO_SHM_DATA_UNALIGNED);
310
311 return ret;
312 }
313 offset >>= 2;
314 }
315 b43legacy_shm_control_word(dev, routing, offset);
316 ret = b43legacy_read16(dev, B43legacy_MMIO_SHM_DATA);
317
318 return ret;
319}
320
321void b43legacy_shm_write32(struct b43legacy_wldev *dev,
322 u16 routing, u16 offset,
323 u32 value)
324{
325 if (routing == B43legacy_SHM_SHARED) {
326 B43legacy_WARN_ON((offset & 0x0001) != 0);
327 if (offset & 0x0003) {
328 /* Unaligned access */
329 b43legacy_shm_control_word(dev, routing, offset >> 2);
330 mmiowb();
331 b43legacy_write16(dev,
332 B43legacy_MMIO_SHM_DATA_UNALIGNED,
333 (value >> 16) & 0xffff);
334 mmiowb();
335 b43legacy_shm_control_word(dev, routing,
336 (offset >> 2) + 1);
337 mmiowb();
338 b43legacy_write16(dev, B43legacy_MMIO_SHM_DATA,
339 value & 0xffff);
340 return;
341 }
342 offset >>= 2;
343 }
344 b43legacy_shm_control_word(dev, routing, offset);
345 mmiowb();
346 b43legacy_write32(dev, B43legacy_MMIO_SHM_DATA, value);
347}
348
349void b43legacy_shm_write16(struct b43legacy_wldev *dev, u16 routing, u16 offset,
350 u16 value)
351{
352 if (routing == B43legacy_SHM_SHARED) {
353 B43legacy_WARN_ON((offset & 0x0001) != 0);
354 if (offset & 0x0003) {
355 /* Unaligned access */
356 b43legacy_shm_control_word(dev, routing, offset >> 2);
357 mmiowb();
358 b43legacy_write16(dev,
359 B43legacy_MMIO_SHM_DATA_UNALIGNED,
360 value);
361 return;
362 }
363 offset >>= 2;
364 }
365 b43legacy_shm_control_word(dev, routing, offset);
366 mmiowb();
367 b43legacy_write16(dev, B43legacy_MMIO_SHM_DATA, value);
368}
369
370/* Read HostFlags */
371u32 b43legacy_hf_read(struct b43legacy_wldev *dev)
372{
373 u32 ret;
374
375 ret = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
376 B43legacy_SHM_SH_HOSTFHI);
377 ret <<= 16;
378 ret |= b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
379 B43legacy_SHM_SH_HOSTFLO);
380
381 return ret;
382}
383
384/* Write HostFlags */
385void b43legacy_hf_write(struct b43legacy_wldev *dev, u32 value)
386{
387 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
388 B43legacy_SHM_SH_HOSTFLO,
389 (value & 0x0000FFFF));
390 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
391 B43legacy_SHM_SH_HOSTFHI,
392 ((value & 0xFFFF0000) >> 16));
393}
394
395void b43legacy_tsf_read(struct b43legacy_wldev *dev, u64 *tsf)
396{
397 /* We need to be careful. As we read the TSF from multiple
398 * registers, we should take care of register overflows.
399 * In theory, the whole tsf read process should be atomic.
400 * We try to be atomic here, by restaring the read process,
401 * if any of the high registers changed (overflew).
402 */
403 if (dev->dev->id.revision >= 3) {
404 u32 low;
405 u32 high;
406 u32 high2;
407
408 do {
409 high = b43legacy_read32(dev,
410 B43legacy_MMIO_REV3PLUS_TSF_HIGH);
411 low = b43legacy_read32(dev,
412 B43legacy_MMIO_REV3PLUS_TSF_LOW);
413 high2 = b43legacy_read32(dev,
414 B43legacy_MMIO_REV3PLUS_TSF_HIGH);
415 } while (unlikely(high != high2));
416
417 *tsf = high;
418 *tsf <<= 32;
419 *tsf |= low;
420 } else {
421 u64 tmp;
422 u16 v0;
423 u16 v1;
424 u16 v2;
425 u16 v3;
426 u16 test1;
427 u16 test2;
428 u16 test3;
429
430 do {
431 v3 = b43legacy_read16(dev, B43legacy_MMIO_TSF_3);
432 v2 = b43legacy_read16(dev, B43legacy_MMIO_TSF_2);
433 v1 = b43legacy_read16(dev, B43legacy_MMIO_TSF_1);
434 v0 = b43legacy_read16(dev, B43legacy_MMIO_TSF_0);
435
436 test3 = b43legacy_read16(dev, B43legacy_MMIO_TSF_3);
437 test2 = b43legacy_read16(dev, B43legacy_MMIO_TSF_2);
438 test1 = b43legacy_read16(dev, B43legacy_MMIO_TSF_1);
439 } while (v3 != test3 || v2 != test2 || v1 != test1);
440
441 *tsf = v3;
442 *tsf <<= 48;
443 tmp = v2;
444 tmp <<= 32;
445 *tsf |= tmp;
446 tmp = v1;
447 tmp <<= 16;
448 *tsf |= tmp;
449 *tsf |= v0;
450 }
451}
452
453static void b43legacy_time_lock(struct b43legacy_wldev *dev)
454{
455 u32 status;
456
457 status = b43legacy_read32(dev, B43legacy_MMIO_STATUS_BITFIELD);
458 status |= B43legacy_SBF_TIME_UPDATE;
459 b43legacy_write32(dev, B43legacy_MMIO_STATUS_BITFIELD, status);
460 mmiowb();
461}
462
463static void b43legacy_time_unlock(struct b43legacy_wldev *dev)
464{
465 u32 status;
466
467 status = b43legacy_read32(dev, B43legacy_MMIO_STATUS_BITFIELD);
468 status &= ~B43legacy_SBF_TIME_UPDATE;
469 b43legacy_write32(dev, B43legacy_MMIO_STATUS_BITFIELD, status);
470}
471
472static void b43legacy_tsf_write_locked(struct b43legacy_wldev *dev, u64 tsf)
473{
474 /* Be careful with the in-progress timer.
475 * First zero out the low register, so we have a full
476 * register-overflow duration to complete the operation.
477 */
478 if (dev->dev->id.revision >= 3) {
479 u32 lo = (tsf & 0x00000000FFFFFFFFULL);
480 u32 hi = (tsf & 0xFFFFFFFF00000000ULL) >> 32;
481
482 b43legacy_write32(dev, B43legacy_MMIO_REV3PLUS_TSF_LOW, 0);
483 mmiowb();
484 b43legacy_write32(dev, B43legacy_MMIO_REV3PLUS_TSF_HIGH,
485 hi);
486 mmiowb();
487 b43legacy_write32(dev, B43legacy_MMIO_REV3PLUS_TSF_LOW,
488 lo);
489 } else {
490 u16 v0 = (tsf & 0x000000000000FFFFULL);
491 u16 v1 = (tsf & 0x00000000FFFF0000ULL) >> 16;
492 u16 v2 = (tsf & 0x0000FFFF00000000ULL) >> 32;
493 u16 v3 = (tsf & 0xFFFF000000000000ULL) >> 48;
494
495 b43legacy_write16(dev, B43legacy_MMIO_TSF_0, 0);
496 mmiowb();
497 b43legacy_write16(dev, B43legacy_MMIO_TSF_3, v3);
498 mmiowb();
499 b43legacy_write16(dev, B43legacy_MMIO_TSF_2, v2);
500 mmiowb();
501 b43legacy_write16(dev, B43legacy_MMIO_TSF_1, v1);
502 mmiowb();
503 b43legacy_write16(dev, B43legacy_MMIO_TSF_0, v0);
504 }
505}
506
507void b43legacy_tsf_write(struct b43legacy_wldev *dev, u64 tsf)
508{
509 b43legacy_time_lock(dev);
510 b43legacy_tsf_write_locked(dev, tsf);
511 b43legacy_time_unlock(dev);
512}
513
514static
515void b43legacy_macfilter_set(struct b43legacy_wldev *dev,
516 u16 offset, const u8 *mac)
517{
518 static const u8 zero_addr[ETH_ALEN] = { 0 };
519 u16 data;
520
521 if (!mac)
522 mac = zero_addr;
523
524 offset |= 0x0020;
525 b43legacy_write16(dev, B43legacy_MMIO_MACFILTER_CONTROL, offset);
526
527 data = mac[0];
528 data |= mac[1] << 8;
529 b43legacy_write16(dev, B43legacy_MMIO_MACFILTER_DATA, data);
530 data = mac[2];
531 data |= mac[3] << 8;
532 b43legacy_write16(dev, B43legacy_MMIO_MACFILTER_DATA, data);
533 data = mac[4];
534 data |= mac[5] << 8;
535 b43legacy_write16(dev, B43legacy_MMIO_MACFILTER_DATA, data);
536}
537
538static void b43legacy_write_mac_bssid_templates(struct b43legacy_wldev *dev)
539{
540 static const u8 zero_addr[ETH_ALEN] = { 0 };
541 const u8 *mac = dev->wl->mac_addr;
542 const u8 *bssid = dev->wl->bssid;
543 u8 mac_bssid[ETH_ALEN * 2];
544 int i;
545 u32 tmp;
546
547 if (!bssid)
548 bssid = zero_addr;
549 if (!mac)
550 mac = zero_addr;
551
552 b43legacy_macfilter_set(dev, B43legacy_MACFILTER_BSSID, bssid);
553
554 memcpy(mac_bssid, mac, ETH_ALEN);
555 memcpy(mac_bssid + ETH_ALEN, bssid, ETH_ALEN);
556
557 /* Write our MAC address and BSSID to template ram */
558 for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32)) {
559 tmp = (u32)(mac_bssid[i + 0]);
560 tmp |= (u32)(mac_bssid[i + 1]) << 8;
561 tmp |= (u32)(mac_bssid[i + 2]) << 16;
562 tmp |= (u32)(mac_bssid[i + 3]) << 24;
563 b43legacy_ram_write(dev, 0x20 + i, tmp);
564 b43legacy_ram_write(dev, 0x78 + i, tmp);
565 b43legacy_ram_write(dev, 0x478 + i, tmp);
566 }
567}
568
569static void b43legacy_upload_card_macaddress(struct b43legacy_wldev *dev,
570 const u8 *mac_addr)
571{
572 dev->wl->mac_addr = mac_addr;
573 b43legacy_write_mac_bssid_templates(dev);
574 b43legacy_macfilter_set(dev, B43legacy_MACFILTER_SELF, mac_addr);
575}
576
577static void b43legacy_set_slot_time(struct b43legacy_wldev *dev,
578 u16 slot_time)
579{
580 /* slot_time is in usec. */
581 if (dev->phy.type != B43legacy_PHYTYPE_G)
582 return;
583 b43legacy_write16(dev, 0x684, 510 + slot_time);
584 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x0010,
585 slot_time);
586}
587
588static void b43legacy_short_slot_timing_enable(struct b43legacy_wldev *dev)
589{
590 b43legacy_set_slot_time(dev, 9);
591 dev->short_slot = 1;
592}
593
594static void b43legacy_short_slot_timing_disable(struct b43legacy_wldev *dev)
595{
596 b43legacy_set_slot_time(dev, 20);
597 dev->short_slot = 0;
598}
599
600/* Enable a Generic IRQ. "mask" is the mask of which IRQs to enable.
601 * Returns the _previously_ enabled IRQ mask.
602 */
603static inline u32 b43legacy_interrupt_enable(struct b43legacy_wldev *dev,
604 u32 mask)
605{
606 u32 old_mask;
607
608 old_mask = b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_MASK);
609 b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK, old_mask |
610 mask);
611
612 return old_mask;
613}
614
615/* Disable a Generic IRQ. "mask" is the mask of which IRQs to disable.
616 * Returns the _previously_ enabled IRQ mask.
617 */
618static inline u32 b43legacy_interrupt_disable(struct b43legacy_wldev *dev,
619 u32 mask)
620{
621 u32 old_mask;
622
623 old_mask = b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_MASK);
624 b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK, old_mask & ~mask);
625
626 return old_mask;
627}
628
629/* Synchronize IRQ top- and bottom-half.
630 * IRQs must be masked before calling this.
631 * This must not be called with the irq_lock held.
632 */
633static void b43legacy_synchronize_irq(struct b43legacy_wldev *dev)
634{
635 synchronize_irq(dev->dev->irq);
636 tasklet_kill(&dev->isr_tasklet);
637}
638
639/* DummyTransmission function, as documented on
640 * http://bcm-specs.sipsolutions.net/DummyTransmission
641 */
642void b43legacy_dummy_transmission(struct b43legacy_wldev *dev)
643{
644 struct b43legacy_phy *phy = &dev->phy;
645 unsigned int i;
646 unsigned int max_loop;
647 u16 value;
648 u32 buffer[5] = {
649 0x00000000,
650 0x00D40000,
651 0x00000000,
652 0x01000000,
653 0x00000000,
654 };
655
656 switch (phy->type) {
657 case B43legacy_PHYTYPE_B:
658 case B43legacy_PHYTYPE_G:
659 max_loop = 0xFA;
660 buffer[0] = 0x000B846E;
661 break;
662 default:
663 B43legacy_BUG_ON(1);
664 return;
665 }
666
667 for (i = 0; i < 5; i++)
668 b43legacy_ram_write(dev, i * 4, buffer[i]);
669
670 /* dummy read follows */
671 b43legacy_read32(dev, B43legacy_MMIO_STATUS_BITFIELD);
672
673 b43legacy_write16(dev, 0x0568, 0x0000);
674 b43legacy_write16(dev, 0x07C0, 0x0000);
675 b43legacy_write16(dev, 0x050C, 0x0000);
676 b43legacy_write16(dev, 0x0508, 0x0000);
677 b43legacy_write16(dev, 0x050A, 0x0000);
678 b43legacy_write16(dev, 0x054C, 0x0000);
679 b43legacy_write16(dev, 0x056A, 0x0014);
680 b43legacy_write16(dev, 0x0568, 0x0826);
681 b43legacy_write16(dev, 0x0500, 0x0000);
682 b43legacy_write16(dev, 0x0502, 0x0030);
683
684 if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
685 b43legacy_radio_write16(dev, 0x0051, 0x0017);
686 for (i = 0x00; i < max_loop; i++) {
687 value = b43legacy_read16(dev, 0x050E);
688 if (value & 0x0080)
689 break;
690 udelay(10);
691 }
692 for (i = 0x00; i < 0x0A; i++) {
693 value = b43legacy_read16(dev, 0x050E);
694 if (value & 0x0400)
695 break;
696 udelay(10);
697 }
698 for (i = 0x00; i < 0x0A; i++) {
699 value = b43legacy_read16(dev, 0x0690);
700 if (!(value & 0x0100))
701 break;
702 udelay(10);
703 }
704 if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
705 b43legacy_radio_write16(dev, 0x0051, 0x0037);
706}
707
708/* Turn the Analog ON/OFF */
709static void b43legacy_switch_analog(struct b43legacy_wldev *dev, int on)
710{
711 b43legacy_write16(dev, B43legacy_MMIO_PHY0, on ? 0 : 0xF4);
712}
713
714void b43legacy_wireless_core_reset(struct b43legacy_wldev *dev, u32 flags)
715{
716 u32 tmslow;
717 u32 macctl;
718
719 flags |= B43legacy_TMSLOW_PHYCLKEN;
720 flags |= B43legacy_TMSLOW_PHYRESET;
721 ssb_device_enable(dev->dev, flags);
722 msleep(2); /* Wait for the PLL to turn on. */
723
724 /* Now take the PHY out of Reset again */
725 tmslow = ssb_read32(dev->dev, SSB_TMSLOW);
726 tmslow |= SSB_TMSLOW_FGC;
727 tmslow &= ~B43legacy_TMSLOW_PHYRESET;
728 ssb_write32(dev->dev, SSB_TMSLOW, tmslow);
729 ssb_read32(dev->dev, SSB_TMSLOW); /* flush */
730 msleep(1);
731 tmslow &= ~SSB_TMSLOW_FGC;
732 ssb_write32(dev->dev, SSB_TMSLOW, tmslow);
733 ssb_read32(dev->dev, SSB_TMSLOW); /* flush */
734 msleep(1);
735
736 /* Turn Analog ON */
737 b43legacy_switch_analog(dev, 1);
738
739 macctl = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
740 macctl &= ~B43legacy_MACCTL_GMODE;
741 if (flags & B43legacy_TMSLOW_GMODE) {
742 macctl |= B43legacy_MACCTL_GMODE;
743 dev->phy.gmode = 1;
744 } else
745 dev->phy.gmode = 0;
746 macctl |= B43legacy_MACCTL_IHR_ENABLED;
747 b43legacy_write32(dev, B43legacy_MMIO_MACCTL, macctl);
748}
749
750static void handle_irq_transmit_status(struct b43legacy_wldev *dev)
751{
752 u32 v0;
753 u32 v1;
754 u16 tmp;
755 struct b43legacy_txstatus stat;
756
757 while (1) {
758 v0 = b43legacy_read32(dev, B43legacy_MMIO_XMITSTAT_0);
759 if (!(v0 & 0x00000001))
760 break;
761 v1 = b43legacy_read32(dev, B43legacy_MMIO_XMITSTAT_1);
762
763 stat.cookie = (v0 >> 16);
764 stat.seq = (v1 & 0x0000FFFF);
765 stat.phy_stat = ((v1 & 0x00FF0000) >> 16);
766 tmp = (v0 & 0x0000FFFF);
767 stat.frame_count = ((tmp & 0xF000) >> 12);
768 stat.rts_count = ((tmp & 0x0F00) >> 8);
769 stat.supp_reason = ((tmp & 0x001C) >> 2);
770 stat.pm_indicated = !!(tmp & 0x0080);
771 stat.intermediate = !!(tmp & 0x0040);
772 stat.for_ampdu = !!(tmp & 0x0020);
773 stat.acked = !!(tmp & 0x0002);
774
775 b43legacy_handle_txstatus(dev, &stat);
776 }
777}
778
779static void drain_txstatus_queue(struct b43legacy_wldev *dev)
780{
781 u32 dummy;
782
783 if (dev->dev->id.revision < 5)
784 return;
785 /* Read all entries from the microcode TXstatus FIFO
786 * and throw them away.
787 */
788 while (1) {
789 dummy = b43legacy_read32(dev, B43legacy_MMIO_XMITSTAT_0);
790 if (!(dummy & 0x00000001))
791 break;
792 dummy = b43legacy_read32(dev, B43legacy_MMIO_XMITSTAT_1);
793 }
794}
795
796static u32 b43legacy_jssi_read(struct b43legacy_wldev *dev)
797{
798 u32 val = 0;
799
800 val = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED, 0x40A);
801 val <<= 16;
802 val |= b43legacy_shm_read16(dev, B43legacy_SHM_SHARED, 0x408);
803
804 return val;
805}
806
807static void b43legacy_jssi_write(struct b43legacy_wldev *dev, u32 jssi)
808{
809 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x408,
810 (jssi & 0x0000FFFF));
811 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x40A,
812 (jssi & 0xFFFF0000) >> 16);
813}
814
815static void b43legacy_generate_noise_sample(struct b43legacy_wldev *dev)
816{
817 b43legacy_jssi_write(dev, 0x7F7F7F7F);
818 b43legacy_write32(dev, B43legacy_MMIO_STATUS2_BITFIELD,
819 b43legacy_read32(dev,
820 B43legacy_MMIO_STATUS2_BITFIELD)
821 | (1 << 4));
822 B43legacy_WARN_ON(dev->noisecalc.channel_at_start !=
823 dev->phy.channel);
824}
825
826static void b43legacy_calculate_link_quality(struct b43legacy_wldev *dev)
827{
828 /* Top half of Link Quality calculation. */
829
830 if (dev->noisecalc.calculation_running)
831 return;
832 dev->noisecalc.channel_at_start = dev->phy.channel;
833 dev->noisecalc.calculation_running = 1;
834 dev->noisecalc.nr_samples = 0;
835
836 b43legacy_generate_noise_sample(dev);
837}
838
839static void handle_irq_noise(struct b43legacy_wldev *dev)
840{
841 struct b43legacy_phy *phy = &dev->phy;
842 u16 tmp;
843 u8 noise[4];
844 u8 i;
845 u8 j;
846 s32 average;
847
848 /* Bottom half of Link Quality calculation. */
849
850 B43legacy_WARN_ON(!dev->noisecalc.calculation_running);
851 if (dev->noisecalc.channel_at_start != phy->channel)
852 goto drop_calculation;
853 *((__le32 *)noise) = cpu_to_le32(b43legacy_jssi_read(dev));
854 if (noise[0] == 0x7F || noise[1] == 0x7F ||
855 noise[2] == 0x7F || noise[3] == 0x7F)
856 goto generate_new;
857
858 /* Get the noise samples. */
859 B43legacy_WARN_ON(dev->noisecalc.nr_samples >= 8);
860 i = dev->noisecalc.nr_samples;
861 noise[0] = limit_value(noise[0], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
862 noise[1] = limit_value(noise[1], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
863 noise[2] = limit_value(noise[2], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
864 noise[3] = limit_value(noise[3], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
865 dev->noisecalc.samples[i][0] = phy->nrssi_lt[noise[0]];
866 dev->noisecalc.samples[i][1] = phy->nrssi_lt[noise[1]];
867 dev->noisecalc.samples[i][2] = phy->nrssi_lt[noise[2]];
868 dev->noisecalc.samples[i][3] = phy->nrssi_lt[noise[3]];
869 dev->noisecalc.nr_samples++;
870 if (dev->noisecalc.nr_samples == 8) {
871 /* Calculate the Link Quality by the noise samples. */
872 average = 0;
873 for (i = 0; i < 8; i++) {
874 for (j = 0; j < 4; j++)
875 average += dev->noisecalc.samples[i][j];
876 }
877 average /= (8 * 4);
878 average *= 125;
879 average += 64;
880 average /= 128;
881 tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
882 0x40C);
883 tmp = (tmp / 128) & 0x1F;
884 if (tmp >= 8)
885 average += 2;
886 else
887 average -= 25;
888 if (tmp == 8)
889 average -= 72;
890 else
891 average -= 48;
892
893 dev->stats.link_noise = average;
894drop_calculation:
895 dev->noisecalc.calculation_running = 0;
896 return;
897 }
898generate_new:
899 b43legacy_generate_noise_sample(dev);
900}
901
902static void handle_irq_tbtt_indication(struct b43legacy_wldev *dev)
903{
904 if (b43legacy_is_mode(dev->wl, IEEE80211_IF_TYPE_AP)) {
905 /* TODO: PS TBTT */
906 } else {
907 if (1/*FIXME: the last PSpoll frame was sent successfully */)
908 b43legacy_power_saving_ctl_bits(dev, -1, -1);
909 }
910 dev->reg124_set_0x4 = 0;
911 if (b43legacy_is_mode(dev->wl, IEEE80211_IF_TYPE_IBSS))
912 dev->reg124_set_0x4 = 1;
913}
914
915static void handle_irq_atim_end(struct b43legacy_wldev *dev)
916{
917 if (!dev->reg124_set_0x4) /*FIXME rename this variable*/
918 return;
919 b43legacy_write32(dev, B43legacy_MMIO_STATUS2_BITFIELD,
920 b43legacy_read32(dev, B43legacy_MMIO_STATUS2_BITFIELD)
921 | 0x4);
922}
923
924static void handle_irq_pmq(struct b43legacy_wldev *dev)
925{
926 u32 tmp;
927
928 /* TODO: AP mode. */
929
930 while (1) {
931 tmp = b43legacy_read32(dev, B43legacy_MMIO_PS_STATUS);
932 if (!(tmp & 0x00000008))
933 break;
934 }
935 /* 16bit write is odd, but correct. */
936 b43legacy_write16(dev, B43legacy_MMIO_PS_STATUS, 0x0002);
937}
938
939static void b43legacy_write_template_common(struct b43legacy_wldev *dev,
940 const u8 *data, u16 size,
941 u16 ram_offset,
942 u16 shm_size_offset, u8 rate)
943{
944 u32 i;
945 u32 tmp;
946 struct b43legacy_plcp_hdr4 plcp;
947
948 plcp.data = 0;
949 b43legacy_generate_plcp_hdr(&plcp, size + FCS_LEN, rate);
950 b43legacy_ram_write(dev, ram_offset, le32_to_cpu(plcp.data));
951 ram_offset += sizeof(u32);
952 /* The PLCP is 6 bytes long, but we only wrote 4 bytes, yet.
953 * So leave the first two bytes of the next write blank.
954 */
955 tmp = (u32)(data[0]) << 16;
956 tmp |= (u32)(data[1]) << 24;
957 b43legacy_ram_write(dev, ram_offset, tmp);
958 ram_offset += sizeof(u32);
959 for (i = 2; i < size; i += sizeof(u32)) {
960 tmp = (u32)(data[i + 0]);
961 if (i + 1 < size)
962 tmp |= (u32)(data[i + 1]) << 8;
963 if (i + 2 < size)
964 tmp |= (u32)(data[i + 2]) << 16;
965 if (i + 3 < size)
966 tmp |= (u32)(data[i + 3]) << 24;
967 b43legacy_ram_write(dev, ram_offset + i - 2, tmp);
968 }
969 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, shm_size_offset,
970 size + sizeof(struct b43legacy_plcp_hdr6));
971}
972
973static void b43legacy_write_beacon_template(struct b43legacy_wldev *dev,
974 u16 ram_offset,
975 u16 shm_size_offset, u8 rate)
976{
977 int len;
978 const u8 *data;
979
980 B43legacy_WARN_ON(!dev->cached_beacon);
981 len = min((size_t)dev->cached_beacon->len,
982 0x200 - sizeof(struct b43legacy_plcp_hdr6));
983 data = (const u8 *)(dev->cached_beacon->data);
984 b43legacy_write_template_common(dev, data,
985 len, ram_offset,
986 shm_size_offset, rate);
987}
988
989static void b43legacy_write_probe_resp_plcp(struct b43legacy_wldev *dev,
990 u16 shm_offset, u16 size,
991 u8 rate)
992{
993 struct b43legacy_plcp_hdr4 plcp;
994 u32 tmp;
995 __le16 dur;
996
997 plcp.data = 0;
998 b43legacy_generate_plcp_hdr(&plcp, size + FCS_LEN, rate);
999 dur = ieee80211_generic_frame_duration(dev->wl->hw,
1000 dev->wl->if_id,
1001 size,
1002 B43legacy_RATE_TO_100KBPS(rate));
1003 /* Write PLCP in two parts and timing for packet transfer */
1004 tmp = le32_to_cpu(plcp.data);
1005 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, shm_offset,
1006 tmp & 0xFFFF);
1007 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, shm_offset + 2,
1008 tmp >> 16);
1009 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, shm_offset + 6,
1010 le16_to_cpu(dur));
1011}
1012
1013/* Instead of using custom probe response template, this function
1014 * just patches custom beacon template by:
1015 * 1) Changing packet type
1016 * 2) Patching duration field
1017 * 3) Stripping TIM
1018 */
1019static u8 *b43legacy_generate_probe_resp(struct b43legacy_wldev *dev,
1020 u16 *dest_size, u8 rate)
1021{
1022 const u8 *src_data;
1023 u8 *dest_data;
1024 u16 src_size;
1025 u16 elem_size;
1026 u16 src_pos;
1027 u16 dest_pos;
1028 __le16 dur;
1029 struct ieee80211_hdr *hdr;
1030
1031 B43legacy_WARN_ON(!dev->cached_beacon);
1032 src_size = dev->cached_beacon->len;
1033 src_data = (const u8 *)dev->cached_beacon->data;
1034
1035 if (unlikely(src_size < 0x24)) {
1036 b43legacydbg(dev->wl, "b43legacy_generate_probe_resp: "
1037 "invalid beacon\n");
1038 return NULL;
1039 }
1040
1041 dest_data = kmalloc(src_size, GFP_ATOMIC);
1042 if (unlikely(!dest_data))
1043 return NULL;
1044
1045 /* 0x24 is offset of first variable-len Information-Element
1046 * in beacon frame.
1047 */
1048 memcpy(dest_data, src_data, 0x24);
1049 src_pos = 0x24;
1050 dest_pos = 0x24;
1051 for (; src_pos < src_size - 2; src_pos += elem_size) {
1052 elem_size = src_data[src_pos + 1] + 2;
1053 if (src_data[src_pos] != 0x05) { /* TIM */
1054 memcpy(dest_data + dest_pos, src_data + src_pos,
1055 elem_size);
1056 dest_pos += elem_size;
1057 }
1058 }
1059 *dest_size = dest_pos;
1060 hdr = (struct ieee80211_hdr *)dest_data;
1061
1062 /* Set the frame control. */
1063 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1064 IEEE80211_STYPE_PROBE_RESP);
1065 dur = ieee80211_generic_frame_duration(dev->wl->hw,
1066 dev->wl->if_id,
1067 *dest_size,
1068 B43legacy_RATE_TO_100KBPS(rate));
1069 hdr->duration_id = dur;
1070
1071 return dest_data;
1072}
1073
1074static void b43legacy_write_probe_resp_template(struct b43legacy_wldev *dev,
1075 u16 ram_offset,
1076 u16 shm_size_offset, u8 rate)
1077{
1078 u8 *probe_resp_data;
1079 u16 size;
1080
1081 B43legacy_WARN_ON(!dev->cached_beacon);
1082 size = dev->cached_beacon->len;
1083 probe_resp_data = b43legacy_generate_probe_resp(dev, &size, rate);
1084 if (unlikely(!probe_resp_data))
1085 return;
1086
1087 /* Looks like PLCP headers plus packet timings are stored for
1088 * all possible basic rates
1089 */
1090 b43legacy_write_probe_resp_plcp(dev, 0x31A, size,
1091 B43legacy_CCK_RATE_1MB);
1092 b43legacy_write_probe_resp_plcp(dev, 0x32C, size,
1093 B43legacy_CCK_RATE_2MB);
1094 b43legacy_write_probe_resp_plcp(dev, 0x33E, size,
1095 B43legacy_CCK_RATE_5MB);
1096 b43legacy_write_probe_resp_plcp(dev, 0x350, size,
1097 B43legacy_CCK_RATE_11MB);
1098
1099 size = min((size_t)size,
1100 0x200 - sizeof(struct b43legacy_plcp_hdr6));
1101 b43legacy_write_template_common(dev, probe_resp_data,
1102 size, ram_offset,
1103 shm_size_offset, rate);
1104 kfree(probe_resp_data);
1105}
1106
1107static int b43legacy_refresh_cached_beacon(struct b43legacy_wldev *dev,
1108 struct sk_buff *beacon)
1109{
1110 if (dev->cached_beacon)
1111 kfree_skb(dev->cached_beacon);
1112 dev->cached_beacon = beacon;
1113
1114 return 0;
1115}
1116
1117static void b43legacy_update_templates(struct b43legacy_wldev *dev)
1118{
1119 u32 status;
1120
1121 B43legacy_WARN_ON(!dev->cached_beacon);
1122
1123 b43legacy_write_beacon_template(dev, 0x68, 0x18,
1124 B43legacy_CCK_RATE_1MB);
1125 b43legacy_write_beacon_template(dev, 0x468, 0x1A,
1126 B43legacy_CCK_RATE_1MB);
1127 b43legacy_write_probe_resp_template(dev, 0x268, 0x4A,
1128 B43legacy_CCK_RATE_11MB);
1129
1130 status = b43legacy_read32(dev, B43legacy_MMIO_STATUS2_BITFIELD);
1131 status |= 0x03;
1132 b43legacy_write32(dev, B43legacy_MMIO_STATUS2_BITFIELD, status);
1133}
1134
1135static void b43legacy_refresh_templates(struct b43legacy_wldev *dev,
1136 struct sk_buff *beacon)
1137{
1138 int err;
1139
1140 err = b43legacy_refresh_cached_beacon(dev, beacon);
1141 if (unlikely(err))
1142 return;
1143 b43legacy_update_templates(dev);
1144}
1145
1146static void b43legacy_set_ssid(struct b43legacy_wldev *dev,
1147 const u8 *ssid, u8 ssid_len)
1148{
1149 u32 tmp;
1150 u16 i;
1151 u16 len;
1152
1153 len = min((u16)ssid_len, (u16)0x100);
1154 for (i = 0; i < len; i += sizeof(u32)) {
1155 tmp = (u32)(ssid[i + 0]);
1156 if (i + 1 < len)
1157 tmp |= (u32)(ssid[i + 1]) << 8;
1158 if (i + 2 < len)
1159 tmp |= (u32)(ssid[i + 2]) << 16;
1160 if (i + 3 < len)
1161 tmp |= (u32)(ssid[i + 3]) << 24;
1162 b43legacy_shm_write32(dev, B43legacy_SHM_SHARED,
1163 0x380 + i, tmp);
1164 }
1165 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
1166 0x48, len);
1167}
1168
1169static void b43legacy_set_beacon_int(struct b43legacy_wldev *dev,
1170 u16 beacon_int)
1171{
1172 b43legacy_time_lock(dev);
1173 if (dev->dev->id.revision >= 3)
1174 b43legacy_write32(dev, 0x188, (beacon_int << 16));
1175 else {
1176 b43legacy_write16(dev, 0x606, (beacon_int >> 6));
1177 b43legacy_write16(dev, 0x610, beacon_int);
1178 }
1179 b43legacy_time_unlock(dev);
1180}
1181
1182static void handle_irq_beacon(struct b43legacy_wldev *dev)
1183{
1184 u32 status;
1185
1186 if (!b43legacy_is_mode(dev->wl, IEEE80211_IF_TYPE_AP))
1187 return;
1188
1189 dev->irq_savedstate &= ~B43legacy_IRQ_BEACON;
1190 status = b43legacy_read32(dev, B43legacy_MMIO_STATUS2_BITFIELD);
1191
1192 if (!dev->cached_beacon || ((status & 0x1) && (status & 0x2))) {
1193 /* ACK beacon IRQ. */
1194 b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_REASON,
1195 B43legacy_IRQ_BEACON);
1196 dev->irq_savedstate |= B43legacy_IRQ_BEACON;
1197 if (dev->cached_beacon)
1198 kfree_skb(dev->cached_beacon);
1199 dev->cached_beacon = NULL;
1200 return;
1201 }
1202 if (!(status & 0x1)) {
1203 b43legacy_write_beacon_template(dev, 0x68, 0x18,
1204 B43legacy_CCK_RATE_1MB);
1205 status |= 0x1;
1206 b43legacy_write32(dev, B43legacy_MMIO_STATUS2_BITFIELD,
1207 status);
1208 }
1209 if (!(status & 0x2)) {
1210 b43legacy_write_beacon_template(dev, 0x468, 0x1A,
1211 B43legacy_CCK_RATE_1MB);
1212 status |= 0x2;
1213 b43legacy_write32(dev, B43legacy_MMIO_STATUS2_BITFIELD,
1214 status);
1215 }
1216}
1217
1218static void handle_irq_ucode_debug(struct b43legacy_wldev *dev)
1219{
1220}
1221
1222/* Interrupt handler bottom-half */
1223static void b43legacy_interrupt_tasklet(struct b43legacy_wldev *dev)
1224{
1225 u32 reason;
1226 u32 dma_reason[ARRAY_SIZE(dev->dma_reason)];
1227 u32 merged_dma_reason = 0;
1228 int i;
1229 int activity = 0;
1230 unsigned long flags;
1231
1232 spin_lock_irqsave(&dev->wl->irq_lock, flags);
1233
1234 B43legacy_WARN_ON(b43legacy_status(dev) <
1235 B43legacy_STAT_INITIALIZED);
1236
1237 reason = dev->irq_reason;
1238 for (i = 0; i < ARRAY_SIZE(dma_reason); i++) {
1239 dma_reason[i] = dev->dma_reason[i];
1240 merged_dma_reason |= dma_reason[i];
1241 }
1242
1243 if (unlikely(reason & B43legacy_IRQ_MAC_TXERR))
1244 b43legacyerr(dev->wl, "MAC transmission error\n");
1245
1246 if (unlikely(reason & B43legacy_IRQ_PHY_TXERR))
1247 b43legacyerr(dev->wl, "PHY transmission error\n");
1248
1249 if (unlikely(merged_dma_reason & (B43legacy_DMAIRQ_FATALMASK |
1250 B43legacy_DMAIRQ_NONFATALMASK))) {
1251 if (merged_dma_reason & B43legacy_DMAIRQ_FATALMASK) {
1252 b43legacyerr(dev->wl, "Fatal DMA error: "
1253 "0x%08X, 0x%08X, 0x%08X, "
1254 "0x%08X, 0x%08X, 0x%08X\n",
1255 dma_reason[0], dma_reason[1],
1256 dma_reason[2], dma_reason[3],
1257 dma_reason[4], dma_reason[5]);
1258 b43legacy_controller_restart(dev, "DMA error");
1259 mmiowb();
1260 spin_unlock_irqrestore(&dev->wl->irq_lock, flags);
1261 return;
1262 }
1263 if (merged_dma_reason & B43legacy_DMAIRQ_NONFATALMASK)
1264 b43legacyerr(dev->wl, "DMA error: "
1265 "0x%08X, 0x%08X, 0x%08X, "
1266 "0x%08X, 0x%08X, 0x%08X\n",
1267 dma_reason[0], dma_reason[1],
1268 dma_reason[2], dma_reason[3],
1269 dma_reason[4], dma_reason[5]);
1270 }
1271
1272 if (unlikely(reason & B43legacy_IRQ_UCODE_DEBUG))
1273 handle_irq_ucode_debug(dev);
1274 if (reason & B43legacy_IRQ_TBTT_INDI)
1275 handle_irq_tbtt_indication(dev);
1276 if (reason & B43legacy_IRQ_ATIM_END)
1277 handle_irq_atim_end(dev);
1278 if (reason & B43legacy_IRQ_BEACON)
1279 handle_irq_beacon(dev);
1280 if (reason & B43legacy_IRQ_PMQ)
1281 handle_irq_pmq(dev);
1282 if (reason & B43legacy_IRQ_TXFIFO_FLUSH_OK)
1283 ;/*TODO*/
1284 if (reason & B43legacy_IRQ_NOISESAMPLE_OK)
1285 handle_irq_noise(dev);
1286
1287 /* Check the DMA reason registers for received data. */
1288 if (dma_reason[0] & B43legacy_DMAIRQ_RX_DONE) {
1289 if (b43legacy_using_pio(dev))
1290 b43legacy_pio_rx(dev->pio.queue0);
1291 else
1292 b43legacy_dma_rx(dev->dma.rx_ring0);
1293 /* We intentionally don't set "activity" to 1, here. */
1294 }
1295 B43legacy_WARN_ON(dma_reason[1] & B43legacy_DMAIRQ_RX_DONE);
1296 B43legacy_WARN_ON(dma_reason[2] & B43legacy_DMAIRQ_RX_DONE);
1297 if (dma_reason[3] & B43legacy_DMAIRQ_RX_DONE) {
1298 if (b43legacy_using_pio(dev))
1299 b43legacy_pio_rx(dev->pio.queue3);
1300 else
1301 b43legacy_dma_rx(dev->dma.rx_ring3);
1302 activity = 1;
1303 }
1304 B43legacy_WARN_ON(dma_reason[4] & B43legacy_DMAIRQ_RX_DONE);
1305 B43legacy_WARN_ON(dma_reason[5] & B43legacy_DMAIRQ_RX_DONE);
1306
1307 if (reason & B43legacy_IRQ_TX_OK) {
1308 handle_irq_transmit_status(dev);
1309 activity = 1;
1310 /* TODO: In AP mode, this also causes sending of powersave
1311 responses. */
1312 }
1313
1314 if (!modparam_noleds)
1315 b43legacy_leds_update(dev, activity);
1316 b43legacy_interrupt_enable(dev, dev->irq_savedstate);
1317 mmiowb();
1318 spin_unlock_irqrestore(&dev->wl->irq_lock, flags);
1319}
1320
1321static void pio_irq_workaround(struct b43legacy_wldev *dev,
1322 u16 base, int queueidx)
1323{
1324 u16 rxctl;
1325
1326 rxctl = b43legacy_read16(dev, base + B43legacy_PIO_RXCTL);
1327 if (rxctl & B43legacy_PIO_RXCTL_DATAAVAILABLE)
1328 dev->dma_reason[queueidx] |= B43legacy_DMAIRQ_RX_DONE;
1329 else
1330 dev->dma_reason[queueidx] &= ~B43legacy_DMAIRQ_RX_DONE;
1331}
1332
1333static void b43legacy_interrupt_ack(struct b43legacy_wldev *dev, u32 reason)
1334{
1335 if (b43legacy_using_pio(dev) &&
1336 (dev->dev->id.revision < 3) &&
1337 (!(reason & B43legacy_IRQ_PIO_WORKAROUND))) {
1338 /* Apply a PIO specific workaround to the dma_reasons */
1339 pio_irq_workaround(dev, B43legacy_MMIO_PIO1_BASE, 0);
1340 pio_irq_workaround(dev, B43legacy_MMIO_PIO2_BASE, 1);
1341 pio_irq_workaround(dev, B43legacy_MMIO_PIO3_BASE, 2);
1342 pio_irq_workaround(dev, B43legacy_MMIO_PIO4_BASE, 3);
1343 }
1344
1345 b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_REASON, reason);
1346
1347 b43legacy_write32(dev, B43legacy_MMIO_DMA0_REASON,
1348 dev->dma_reason[0]);
1349 b43legacy_write32(dev, B43legacy_MMIO_DMA1_REASON,
1350 dev->dma_reason[1]);
1351 b43legacy_write32(dev, B43legacy_MMIO_DMA2_REASON,
1352 dev->dma_reason[2]);
1353 b43legacy_write32(dev, B43legacy_MMIO_DMA3_REASON,
1354 dev->dma_reason[3]);
1355 b43legacy_write32(dev, B43legacy_MMIO_DMA4_REASON,
1356 dev->dma_reason[4]);
1357 b43legacy_write32(dev, B43legacy_MMIO_DMA5_REASON,
1358 dev->dma_reason[5]);
1359}
1360
1361/* Interrupt handler top-half */
1362static irqreturn_t b43legacy_interrupt_handler(int irq, void *dev_id)
1363{
1364 irqreturn_t ret = IRQ_NONE;
1365 struct b43legacy_wldev *dev = dev_id;
1366 u32 reason;
1367
1368 if (!dev)
1369 return IRQ_NONE;
1370
1371 spin_lock(&dev->wl->irq_lock);
1372
1373 if (b43legacy_status(dev) < B43legacy_STAT_STARTED)
1374 goto out;
1375 reason = b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
1376 if (reason == 0xffffffff) /* shared IRQ */
1377 goto out;
1378 ret = IRQ_HANDLED;
1379 reason &= b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_MASK);
1380 if (!reason)
1381 goto out;
1382
1383 dev->dma_reason[0] = b43legacy_read32(dev,
1384 B43legacy_MMIO_DMA0_REASON)
1385 & 0x0001DC00;
1386 dev->dma_reason[1] = b43legacy_read32(dev,
1387 B43legacy_MMIO_DMA1_REASON)
1388 & 0x0000DC00;
1389 dev->dma_reason[2] = b43legacy_read32(dev,
1390 B43legacy_MMIO_DMA2_REASON)
1391 & 0x0000DC00;
1392 dev->dma_reason[3] = b43legacy_read32(dev,
1393 B43legacy_MMIO_DMA3_REASON)
1394 & 0x0001DC00;
1395 dev->dma_reason[4] = b43legacy_read32(dev,
1396 B43legacy_MMIO_DMA4_REASON)
1397 & 0x0000DC00;
1398 dev->dma_reason[5] = b43legacy_read32(dev,
1399 B43legacy_MMIO_DMA5_REASON)
1400 & 0x0000DC00;
1401
1402 b43legacy_interrupt_ack(dev, reason);
1403 /* disable all IRQs. They are enabled again in the bottom half. */
1404 dev->irq_savedstate = b43legacy_interrupt_disable(dev,
1405 B43legacy_IRQ_ALL);
1406 /* save the reason code and call our bottom half. */
1407 dev->irq_reason = reason;
1408 tasklet_schedule(&dev->isr_tasklet);
1409out:
1410 mmiowb();
1411 spin_unlock(&dev->wl->irq_lock);
1412
1413 return ret;
1414}
1415
1416static void b43legacy_release_firmware(struct b43legacy_wldev *dev)
1417{
1418 release_firmware(dev->fw.ucode);
1419 dev->fw.ucode = NULL;
1420 release_firmware(dev->fw.pcm);
1421 dev->fw.pcm = NULL;
1422 release_firmware(dev->fw.initvals);
1423 dev->fw.initvals = NULL;
1424 release_firmware(dev->fw.initvals_band);
1425 dev->fw.initvals_band = NULL;
1426}
1427
1428static void b43legacy_print_fw_helptext(struct b43legacy_wl *wl)
1429{
1430 b43legacyerr(wl, "You must go to http://linuxwireless.org/en/users/"
1431 "Drivers/bcm43xx#devicefirmware "
1432 "and download the correct firmware (version 3).\n");
1433}
1434
1435static int do_request_fw(struct b43legacy_wldev *dev,
1436 const char *name,
1437 const struct firmware **fw)
1438{
1439 char path[sizeof(modparam_fwpostfix) + 32];
1440 struct b43legacy_fw_header *hdr;
1441 u32 size;
1442 int err;
1443
1444 if (!name)
1445 return 0;
1446
1447 snprintf(path, ARRAY_SIZE(path),
1448 "b43legacy%s/%s.fw",
1449 modparam_fwpostfix, name);
1450 err = request_firmware(fw, path, dev->dev->dev);
1451 if (err) {
1452 b43legacyerr(dev->wl, "Firmware file \"%s\" not found "
1453 "or load failed.\n", path);
1454 return err;
1455 }
1456 if ((*fw)->size < sizeof(struct b43legacy_fw_header))
1457 goto err_format;
1458 hdr = (struct b43legacy_fw_header *)((*fw)->data);
1459 switch (hdr->type) {
1460 case B43legacy_FW_TYPE_UCODE:
1461 case B43legacy_FW_TYPE_PCM:
1462 size = be32_to_cpu(hdr->size);
1463 if (size != (*fw)->size - sizeof(struct b43legacy_fw_header))
1464 goto err_format;
1465 /* fallthrough */
1466 case B43legacy_FW_TYPE_IV:
1467 if (hdr->ver != 1)
1468 goto err_format;
1469 break;
1470 default:
1471 goto err_format;
1472 }
1473
1474 return err;
1475
1476err_format:
1477 b43legacyerr(dev->wl, "Firmware file \"%s\" format error.\n", path);
1478 return -EPROTO;
1479}
1480
1481static int b43legacy_request_firmware(struct b43legacy_wldev *dev)
1482{
1483 struct b43legacy_firmware *fw = &dev->fw;
1484 const u8 rev = dev->dev->id.revision;
1485 const char *filename;
1486 u32 tmshigh;
1487 int err;
1488
1489 tmshigh = ssb_read32(dev->dev, SSB_TMSHIGH);
1490 if (!fw->ucode) {
1491 if (rev == 2)
1492 filename = "ucode2";
1493 else if (rev == 4)
1494 filename = "ucode4";
1495 else
1496 filename = "ucode5";
1497 err = do_request_fw(dev, filename, &fw->ucode);
1498 if (err)
1499 goto err_load;
1500 }
1501 if (!fw->pcm) {
1502 if (rev < 5)
1503 filename = "pcm4";
1504 else
1505 filename = "pcm5";
1506 err = do_request_fw(dev, filename, &fw->pcm);
1507 if (err)
1508 goto err_load;
1509 }
1510 if (!fw->initvals) {
1511 switch (dev->phy.type) {
1512 case B43legacy_PHYTYPE_G:
1513 if ((rev >= 5) && (rev <= 10))
1514 filename = "b0g0initvals5";
1515 else if (rev == 2 || rev == 4)
1516 filename = "b0g0initvals2";
1517 else
1518 goto err_no_initvals;
1519 break;
1520 default:
1521 goto err_no_initvals;
1522 }
1523 err = do_request_fw(dev, filename, &fw->initvals);
1524 if (err)
1525 goto err_load;
1526 }
1527 if (!fw->initvals_band) {
1528 switch (dev->phy.type) {
1529 case B43legacy_PHYTYPE_G:
1530 if ((rev >= 5) && (rev <= 10))
1531 filename = "b0g0bsinitvals5";
1532 else if (rev >= 11)
1533 filename = NULL;
1534 else if (rev == 2 || rev == 4)
1535 filename = NULL;
1536 else
1537 goto err_no_initvals;
1538 break;
1539 default:
1540 goto err_no_initvals;
1541 }
1542 err = do_request_fw(dev, filename, &fw->initvals_band);
1543 if (err)
1544 goto err_load;
1545 }
1546
1547 return 0;
1548
1549err_load:
1550 b43legacy_print_fw_helptext(dev->wl);
1551 goto error;
1552
1553err_no_initvals:
1554 err = -ENODEV;
1555 b43legacyerr(dev->wl, "No Initial Values firmware file for PHY %u, "
1556 "core rev %u\n", dev->phy.type, rev);
1557 goto error;
1558
1559error:
1560 b43legacy_release_firmware(dev);
1561 return err;
1562}
1563
1564static int b43legacy_upload_microcode(struct b43legacy_wldev *dev)
1565{
1566 const size_t hdr_len = sizeof(struct b43legacy_fw_header);
1567 const __be32 *data;
1568 unsigned int i;
1569 unsigned int len;
1570 u16 fwrev;
1571 u16 fwpatch;
1572 u16 fwdate;
1573 u16 fwtime;
1574 u32 tmp;
1575 int err = 0;
1576
1577 /* Upload Microcode. */
1578 data = (__be32 *) (dev->fw.ucode->data + hdr_len);
1579 len = (dev->fw.ucode->size - hdr_len) / sizeof(__be32);
1580 b43legacy_shm_control_word(dev,
1581 B43legacy_SHM_UCODE |
1582 B43legacy_SHM_AUTOINC_W,
1583 0x0000);
1584 for (i = 0; i < len; i++) {
1585 b43legacy_write32(dev, B43legacy_MMIO_SHM_DATA,
1586 be32_to_cpu(data[i]));
1587 udelay(10);
1588 }
1589
1590 if (dev->fw.pcm) {
1591 /* Upload PCM data. */
1592 data = (__be32 *) (dev->fw.pcm->data + hdr_len);
1593 len = (dev->fw.pcm->size - hdr_len) / sizeof(__be32);
1594 b43legacy_shm_control_word(dev, B43legacy_SHM_HW, 0x01EA);
1595 b43legacy_write32(dev, B43legacy_MMIO_SHM_DATA, 0x00004000);
1596 /* No need for autoinc bit in SHM_HW */
1597 b43legacy_shm_control_word(dev, B43legacy_SHM_HW, 0x01EB);
1598 for (i = 0; i < len; i++) {
1599 b43legacy_write32(dev, B43legacy_MMIO_SHM_DATA,
1600 be32_to_cpu(data[i]));
1601 udelay(10);
1602 }
1603 }
1604
1605 b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_REASON,
1606 B43legacy_IRQ_ALL);
1607 b43legacy_write32(dev, B43legacy_MMIO_STATUS_BITFIELD, 0x00020402);
1608
1609 /* Wait for the microcode to load and respond */
1610 i = 0;
1611 while (1) {
1612 tmp = b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
1613 if (tmp == B43legacy_IRQ_MAC_SUSPENDED)
1614 break;
1615 i++;
1616 if (i >= B43legacy_IRQWAIT_MAX_RETRIES) {
1617 b43legacyerr(dev->wl, "Microcode not responding\n");
1618 b43legacy_print_fw_helptext(dev->wl);
1619 err = -ENODEV;
1620 goto out;
1621 }
1622 udelay(10);
1623 }
1624 /* dummy read follows */
1625 b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
1626
1627 /* Get and check the revisions. */
1628 fwrev = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
1629 B43legacy_SHM_SH_UCODEREV);
1630 fwpatch = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
1631 B43legacy_SHM_SH_UCODEPATCH);
1632 fwdate = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
1633 B43legacy_SHM_SH_UCODEDATE);
1634 fwtime = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
1635 B43legacy_SHM_SH_UCODETIME);
1636
1637 if (fwrev > 0x128) {
1638 b43legacyerr(dev->wl, "YOU ARE TRYING TO LOAD V4 FIRMWARE."
1639 " Only firmware from binary drivers version 3.x"
1640 " is supported. You must change your firmware"
1641 " files.\n");
1642 b43legacy_print_fw_helptext(dev->wl);
1643 b43legacy_write32(dev, B43legacy_MMIO_STATUS_BITFIELD, 0);
1644 err = -EOPNOTSUPP;
1645 goto out;
1646 }
1647 b43legacydbg(dev->wl, "Loading firmware version 0x%X, patch level %u "
1648 "(20%.2i-%.2i-%.2i %.2i:%.2i:%.2i)\n", fwrev, fwpatch,
1649 (fwdate >> 12) & 0xF, (fwdate >> 8) & 0xF, fwdate & 0xFF,
1650 (fwtime >> 11) & 0x1F, (fwtime >> 5) & 0x3F, fwtime & 0x1F);
1651
1652 dev->fw.rev = fwrev;
1653 dev->fw.patch = fwpatch;
1654
1655out:
1656 return err;
1657}
1658
1659static int b43legacy_write_initvals(struct b43legacy_wldev *dev,
1660 const struct b43legacy_iv *ivals,
1661 size_t count,
1662 size_t array_size)
1663{
1664 const struct b43legacy_iv *iv;
1665 u16 offset;
1666 size_t i;
1667 bool bit32;
1668
1669 BUILD_BUG_ON(sizeof(struct b43legacy_iv) != 6);
1670 iv = ivals;
1671 for (i = 0; i < count; i++) {
1672 if (array_size < sizeof(iv->offset_size))
1673 goto err_format;
1674 array_size -= sizeof(iv->offset_size);
1675 offset = be16_to_cpu(iv->offset_size);
1676 bit32 = !!(offset & B43legacy_IV_32BIT);
1677 offset &= B43legacy_IV_OFFSET_MASK;
1678 if (offset >= 0x1000)
1679 goto err_format;
1680 if (bit32) {
1681 u32 value;
1682
1683 if (array_size < sizeof(iv->data.d32))
1684 goto err_format;
1685 array_size -= sizeof(iv->data.d32);
1686
1687 value = be32_to_cpu(get_unaligned(&iv->data.d32));
1688 b43legacy_write32(dev, offset, value);
1689
1690 iv = (const struct b43legacy_iv *)((const uint8_t *)iv +
1691 sizeof(__be16) +
1692 sizeof(__be32));
1693 } else {
1694 u16 value;
1695
1696 if (array_size < sizeof(iv->data.d16))
1697 goto err_format;
1698 array_size -= sizeof(iv->data.d16);
1699
1700 value = be16_to_cpu(iv->data.d16);
1701 b43legacy_write16(dev, offset, value);
1702
1703 iv = (const struct b43legacy_iv *)((const uint8_t *)iv +
1704 sizeof(__be16) +
1705 sizeof(__be16));
1706 }
1707 }
1708 if (array_size)
1709 goto err_format;
1710
1711 return 0;
1712
1713err_format:
1714 b43legacyerr(dev->wl, "Initial Values Firmware file-format error.\n");
1715 b43legacy_print_fw_helptext(dev->wl);
1716
1717 return -EPROTO;
1718}
1719
1720static int b43legacy_upload_initvals(struct b43legacy_wldev *dev)
1721{
1722 const size_t hdr_len = sizeof(struct b43legacy_fw_header);
1723 const struct b43legacy_fw_header *hdr;
1724 struct b43legacy_firmware *fw = &dev->fw;
1725 const struct b43legacy_iv *ivals;
1726 size_t count;
1727 int err;
1728
1729 hdr = (const struct b43legacy_fw_header *)(fw->initvals->data);
1730 ivals = (const struct b43legacy_iv *)(fw->initvals->data + hdr_len);
1731 count = be32_to_cpu(hdr->size);
1732 err = b43legacy_write_initvals(dev, ivals, count,
1733 fw->initvals->size - hdr_len);
1734 if (err)
1735 goto out;
1736 if (fw->initvals_band) {
1737 hdr = (const struct b43legacy_fw_header *)
1738 (fw->initvals_band->data);
1739 ivals = (const struct b43legacy_iv *)(fw->initvals_band->data
1740 + hdr_len);
1741 count = be32_to_cpu(hdr->size);
1742 err = b43legacy_write_initvals(dev, ivals, count,
1743 fw->initvals_band->size - hdr_len);
1744 if (err)
1745 goto out;
1746 }
1747out:
1748
1749 return err;
1750}
1751
1752/* Initialize the GPIOs
1753 * http://bcm-specs.sipsolutions.net/GPIO
1754 */
1755static int b43legacy_gpio_init(struct b43legacy_wldev *dev)
1756{
1757 struct ssb_bus *bus = dev->dev->bus;
1758 struct ssb_device *gpiodev, *pcidev = NULL;
1759 u32 mask;
1760 u32 set;
1761
1762 b43legacy_write32(dev, B43legacy_MMIO_STATUS_BITFIELD,
1763 b43legacy_read32(dev,
1764 B43legacy_MMIO_STATUS_BITFIELD)
1765 & 0xFFFF3FFF);
1766
1767 b43legacy_leds_switch_all(dev, 0);
1768 b43legacy_write16(dev, B43legacy_MMIO_GPIO_MASK,
1769 b43legacy_read16(dev,
1770 B43legacy_MMIO_GPIO_MASK)
1771 | 0x000F);
1772
1773 mask = 0x0000001F;
1774 set = 0x0000000F;
1775 if (dev->dev->bus->chip_id == 0x4301) {
1776 mask |= 0x0060;
1777 set |= 0x0060;
1778 }
1779 if (dev->dev->bus->sprom.r1.boardflags_lo & B43legacy_BFL_PACTRL) {
1780 b43legacy_write16(dev, B43legacy_MMIO_GPIO_MASK,
1781 b43legacy_read16(dev,
1782 B43legacy_MMIO_GPIO_MASK)
1783 | 0x0200);
1784 mask |= 0x0200;
1785 set |= 0x0200;
1786 }
1787 if (dev->dev->id.revision >= 2)
1788 mask |= 0x0010; /* FIXME: This is redundant. */
1789
1790#ifdef CONFIG_SSB_DRIVER_PCICORE
1791 pcidev = bus->pcicore.dev;
1792#endif
1793 gpiodev = bus->chipco.dev ? : pcidev;
1794 if (!gpiodev)
1795 return 0;
1796 ssb_write32(gpiodev, B43legacy_GPIO_CONTROL,
1797 (ssb_read32(gpiodev, B43legacy_GPIO_CONTROL)
1798 & mask) | set);
1799
1800 return 0;
1801}
1802
1803/* Turn off all GPIO stuff. Call this on module unload, for example. */
1804static void b43legacy_gpio_cleanup(struct b43legacy_wldev *dev)
1805{
1806 struct ssb_bus *bus = dev->dev->bus;
1807 struct ssb_device *gpiodev, *pcidev = NULL;
1808
1809#ifdef CONFIG_SSB_DRIVER_PCICORE
1810 pcidev = bus->pcicore.dev;
1811#endif
1812 gpiodev = bus->chipco.dev ? : pcidev;
1813 if (!gpiodev)
1814 return;
1815 ssb_write32(gpiodev, B43legacy_GPIO_CONTROL, 0);
1816}
1817
1818/* http://bcm-specs.sipsolutions.net/EnableMac */
1819void b43legacy_mac_enable(struct b43legacy_wldev *dev)
1820{
1821 dev->mac_suspended--;
1822 B43legacy_WARN_ON(dev->mac_suspended < 0);
1823 if (dev->mac_suspended == 0) {
1824 b43legacy_write32(dev, B43legacy_MMIO_STATUS_BITFIELD,
1825 b43legacy_read32(dev,
1826 B43legacy_MMIO_STATUS_BITFIELD)
1827 | B43legacy_SBF_MAC_ENABLED);
1828 b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_REASON,
1829 B43legacy_IRQ_MAC_SUSPENDED);
1830 /* the next two are dummy reads */
1831 b43legacy_read32(dev, B43legacy_MMIO_STATUS_BITFIELD);
1832 b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
1833 b43legacy_power_saving_ctl_bits(dev, -1, -1);
1834 }
1835}
1836
1837/* http://bcm-specs.sipsolutions.net/SuspendMAC */
1838void b43legacy_mac_suspend(struct b43legacy_wldev *dev)
1839{
1840 int i;
1841 u32 tmp;
1842
1843 B43legacy_WARN_ON(dev->mac_suspended < 0);
1844 if (dev->mac_suspended == 0) {
1845 b43legacy_power_saving_ctl_bits(dev, -1, 1);
1846 b43legacy_write32(dev, B43legacy_MMIO_STATUS_BITFIELD,
1847 b43legacy_read32(dev,
1848 B43legacy_MMIO_STATUS_BITFIELD)
1849 & ~B43legacy_SBF_MAC_ENABLED);
1850 b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
1851 for (i = 10000; i; i--) {
1852 tmp = b43legacy_read32(dev,
1853 B43legacy_MMIO_GEN_IRQ_REASON);
1854 if (tmp & B43legacy_IRQ_MAC_SUSPENDED)
1855 goto out;
1856 udelay(1);
1857 }
1858 b43legacyerr(dev->wl, "MAC suspend failed\n");
1859 }
1860out:
1861 dev->mac_suspended++;
1862}
1863
1864static void b43legacy_adjust_opmode(struct b43legacy_wldev *dev)
1865{
1866 struct b43legacy_wl *wl = dev->wl;
1867 u32 ctl;
1868 u16 cfp_pretbtt;
1869
1870 ctl = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
1871 /* Reset status to STA infrastructure mode. */
1872 ctl &= ~B43legacy_MACCTL_AP;
1873 ctl &= ~B43legacy_MACCTL_KEEP_CTL;
1874 ctl &= ~B43legacy_MACCTL_KEEP_BADPLCP;
1875 ctl &= ~B43legacy_MACCTL_KEEP_BAD;
1876 ctl &= ~B43legacy_MACCTL_PROMISC;
1877 ctl |= B43legacy_MACCTL_INFRA;
1878
1879 if (wl->operating) {
1880 switch (wl->if_type) {
1881 case IEEE80211_IF_TYPE_AP:
1882 ctl |= B43legacy_MACCTL_AP;
1883 break;
1884 case IEEE80211_IF_TYPE_IBSS:
1885 ctl &= ~B43legacy_MACCTL_INFRA;
1886 break;
1887 case IEEE80211_IF_TYPE_STA:
1888 case IEEE80211_IF_TYPE_MNTR:
1889 case IEEE80211_IF_TYPE_WDS:
1890 break;
1891 default:
1892 b43legacyerr(wl, "Improper value of %d for"
1893 " wl->if_type\n", wl->if_type);
1894 }
1895 }
1896 if (wl->monitor) {
1897 ctl |= B43legacy_MACCTL_KEEP_CTL;
1898 if (modparam_mon_keep_bad)
1899 ctl |= B43legacy_MACCTL_KEEP_BAD;
1900 if (modparam_mon_keep_badplcp)
1901 ctl |= B43legacy_MACCTL_KEEP_BADPLCP;
1902 }
1903 if (wl->promisc)
1904 ctl |= B43legacy_MACCTL_PROMISC;
1905 /* Workaround: On old hardware the HW-MAC-address-filter
1906 * doesn't work properly, so always run promisc in filter
1907 * it in software. */
1908 if (dev->dev->id.revision <= 4)
1909 ctl |= B43legacy_MACCTL_PROMISC;
1910
1911 b43legacy_write32(dev, B43legacy_MMIO_MACCTL, ctl);
1912
1913 cfp_pretbtt = 2;
1914 if ((ctl & B43legacy_MACCTL_INFRA) &&
1915 !(ctl & B43legacy_MACCTL_AP)) {
1916 if (dev->dev->bus->chip_id == 0x4306 &&
1917 dev->dev->bus->chip_rev == 3)
1918 cfp_pretbtt = 100;
1919 else
1920 cfp_pretbtt = 50;
1921 }
1922 b43legacy_write16(dev, 0x612, cfp_pretbtt);
1923}
1924
1925static void b43legacy_rate_memory_write(struct b43legacy_wldev *dev,
1926 u16 rate,
1927 int is_ofdm)
1928{
1929 u16 offset;
1930
1931 if (is_ofdm) {
1932 offset = 0x480;
1933 offset += (b43legacy_plcp_get_ratecode_ofdm(rate) & 0x000F) * 2;
1934 } else {
1935 offset = 0x4C0;
1936 offset += (b43legacy_plcp_get_ratecode_cck(rate) & 0x000F) * 2;
1937 }
1938 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, offset + 0x20,
1939 b43legacy_shm_read16(dev,
1940 B43legacy_SHM_SHARED, offset));
1941}
1942
1943static void b43legacy_rate_memory_init(struct b43legacy_wldev *dev)
1944{
1945 switch (dev->phy.type) {
1946 case B43legacy_PHYTYPE_G:
1947 b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_6MB, 1);
1948 b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_12MB, 1);
1949 b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_18MB, 1);
1950 b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_24MB, 1);
1951 b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_36MB, 1);
1952 b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_48MB, 1);
1953 b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_54MB, 1);
1954 /* fallthrough */
1955 case B43legacy_PHYTYPE_B:
1956 b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_1MB, 0);
1957 b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_2MB, 0);
1958 b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_5MB, 0);
1959 b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_11MB, 0);
1960 break;
1961 default:
1962 B43legacy_BUG_ON(1);
1963 }
1964}
1965
1966/* Set the TX-Antenna for management frames sent by firmware. */
1967static void b43legacy_mgmtframe_txantenna(struct b43legacy_wldev *dev,
1968 int antenna)
1969{
1970 u16 ant = 0;
1971 u16 tmp;
1972
1973 switch (antenna) {
1974 case B43legacy_ANTENNA0:
1975 ant |= B43legacy_TX4_PHY_ANT0;
1976 break;
1977 case B43legacy_ANTENNA1:
1978 ant |= B43legacy_TX4_PHY_ANT1;
1979 break;
1980 case B43legacy_ANTENNA_AUTO:
1981 ant |= B43legacy_TX4_PHY_ANTLAST;
1982 break;
1983 default:
1984 B43legacy_BUG_ON(1);
1985 }
1986
1987 /* FIXME We also need to set the other flags of the PHY control
1988 * field somewhere. */
1989
1990 /* For Beacons */
1991 tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
1992 B43legacy_SHM_SH_BEACPHYCTL);
1993 tmp = (tmp & ~B43legacy_TX4_PHY_ANT) | ant;
1994 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
1995 B43legacy_SHM_SH_BEACPHYCTL, tmp);
1996 /* For ACK/CTS */
1997 tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
1998 B43legacy_SHM_SH_ACKCTSPHYCTL);
1999 tmp = (tmp & ~B43legacy_TX4_PHY_ANT) | ant;
2000 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
2001 B43legacy_SHM_SH_ACKCTSPHYCTL, tmp);
2002 /* For Probe Resposes */
2003 tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
2004 B43legacy_SHM_SH_PRPHYCTL);
2005 tmp = (tmp & ~B43legacy_TX4_PHY_ANT) | ant;
2006 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
2007 B43legacy_SHM_SH_PRPHYCTL, tmp);
2008}
2009
1065de15
LF
2010/* Returns TRUE, if the radio is enabled in hardware. */
2011static bool b43legacy_is_hw_radio_enabled(struct b43legacy_wldev *dev)
2012{
2013 if (dev->phy.rev >= 3) {
2014 if (!(b43legacy_read32(dev, B43legacy_MMIO_RADIO_HWENABLED_HI)
2015 & B43legacy_MMIO_RADIO_HWENABLED_HI_MASK))
2016 return 1;
2017 } else {
2018 if (b43legacy_read16(dev, B43legacy_MMIO_RADIO_HWENABLED_LO)
2019 & B43legacy_MMIO_RADIO_HWENABLED_LO_MASK)
2020 return 1;
2021 }
2022 return 0;
2023}
2024
75388acd
LF
2025/* This is the opposite of b43legacy_chip_init() */
2026static void b43legacy_chip_exit(struct b43legacy_wldev *dev)
2027{
2028 b43legacy_radio_turn_off(dev);
2029 if (!modparam_noleds)
2030 b43legacy_leds_exit(dev);
2031 b43legacy_gpio_cleanup(dev);
2032 /* firmware is released later */
2033}
2034
2035/* Initialize the chip
2036 * http://bcm-specs.sipsolutions.net/ChipInit
2037 */
2038static int b43legacy_chip_init(struct b43legacy_wldev *dev)
2039{
2040 struct b43legacy_phy *phy = &dev->phy;
2041 int err;
2042 int tmp;
2043 u32 value32;
2044 u16 value16;
2045
2046 b43legacy_write32(dev, B43legacy_MMIO_STATUS_BITFIELD,
2047 B43legacy_SBF_CORE_READY
2048 | B43legacy_SBF_400);
2049
2050 err = b43legacy_request_firmware(dev);
2051 if (err)
2052 goto out;
2053 err = b43legacy_upload_microcode(dev);
2054 if (err)
2055 goto out; /* firmware is released later */
2056
2057 err = b43legacy_gpio_init(dev);
2058 if (err)
2059 goto out; /* firmware is released later */
2060 err = b43legacy_upload_initvals(dev);
2061 if (err)
2062 goto err_gpio_cleanup;
2063 b43legacy_radio_turn_on(dev);
75388acd
LF
2064
2065 b43legacy_write16(dev, 0x03E6, 0x0000);
2066 err = b43legacy_phy_init(dev);
2067 if (err)
2068 goto err_radio_off;
2069
2070 /* Select initial Interference Mitigation. */
2071 tmp = phy->interfmode;
2072 phy->interfmode = B43legacy_INTERFMODE_NONE;
2073 b43legacy_radio_set_interference_mitigation(dev, tmp);
2074
2075 b43legacy_phy_set_antenna_diversity(dev);
2076 b43legacy_mgmtframe_txantenna(dev, B43legacy_ANTENNA_DEFAULT);
2077
2078 if (phy->type == B43legacy_PHYTYPE_B) {
2079 value16 = b43legacy_read16(dev, 0x005E);
2080 value16 |= 0x0004;
2081 b43legacy_write16(dev, 0x005E, value16);
2082 }
2083 b43legacy_write32(dev, 0x0100, 0x01000000);
2084 if (dev->dev->id.revision < 5)
2085 b43legacy_write32(dev, 0x010C, 0x01000000);
2086
2087 value32 = b43legacy_read32(dev, B43legacy_MMIO_STATUS_BITFIELD);
2088 value32 &= ~B43legacy_SBF_MODE_NOTADHOC;
2089 b43legacy_write32(dev, B43legacy_MMIO_STATUS_BITFIELD, value32);
2090 value32 = b43legacy_read32(dev, B43legacy_MMIO_STATUS_BITFIELD);
2091 value32 |= B43legacy_SBF_MODE_NOTADHOC;
2092 b43legacy_write32(dev, B43legacy_MMIO_STATUS_BITFIELD, value32);
2093
2094 value32 = b43legacy_read32(dev, B43legacy_MMIO_STATUS_BITFIELD);
2095 value32 |= 0x100000;
2096 b43legacy_write32(dev, B43legacy_MMIO_STATUS_BITFIELD, value32);
2097
2098 if (b43legacy_using_pio(dev)) {
2099 b43legacy_write32(dev, 0x0210, 0x00000100);
2100 b43legacy_write32(dev, 0x0230, 0x00000100);
2101 b43legacy_write32(dev, 0x0250, 0x00000100);
2102 b43legacy_write32(dev, 0x0270, 0x00000100);
2103 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x0034,
2104 0x0000);
2105 }
2106
2107 /* Probe Response Timeout value */
2108 /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
2109 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x0074, 0x0000);
2110
2111 /* Initially set the wireless operation mode. */
2112 b43legacy_adjust_opmode(dev);
2113
2114 if (dev->dev->id.revision < 3) {
2115 b43legacy_write16(dev, 0x060E, 0x0000);
2116 b43legacy_write16(dev, 0x0610, 0x8000);
2117 b43legacy_write16(dev, 0x0604, 0x0000);
2118 b43legacy_write16(dev, 0x0606, 0x0200);
2119 } else {
2120 b43legacy_write32(dev, 0x0188, 0x80000000);
2121 b43legacy_write32(dev, 0x018C, 0x02000000);
2122 }
2123 b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_REASON, 0x00004000);
2124 b43legacy_write32(dev, B43legacy_MMIO_DMA0_IRQ_MASK, 0x0001DC00);
2125 b43legacy_write32(dev, B43legacy_MMIO_DMA1_IRQ_MASK, 0x0000DC00);
2126 b43legacy_write32(dev, B43legacy_MMIO_DMA2_IRQ_MASK, 0x0000DC00);
2127 b43legacy_write32(dev, B43legacy_MMIO_DMA3_IRQ_MASK, 0x0001DC00);
2128 b43legacy_write32(dev, B43legacy_MMIO_DMA4_IRQ_MASK, 0x0000DC00);
2129 b43legacy_write32(dev, B43legacy_MMIO_DMA5_IRQ_MASK, 0x0000DC00);
2130
2131 value32 = ssb_read32(dev->dev, SSB_TMSLOW);
2132 value32 |= 0x00100000;
2133 ssb_write32(dev->dev, SSB_TMSLOW, value32);
2134
2135 b43legacy_write16(dev, B43legacy_MMIO_POWERUP_DELAY,
2136 dev->dev->bus->chipco.fast_pwrup_delay);
2137
2138 B43legacy_WARN_ON(err != 0);
2139 b43legacydbg(dev->wl, "Chip initialized\n");
2140out:
2141 return err;
2142
2143err_radio_off:
2144 b43legacy_radio_turn_off(dev);
2145err_gpio_cleanup:
2146 b43legacy_gpio_cleanup(dev);
2147 goto out;
2148}
2149
2150static void b43legacy_periodic_every120sec(struct b43legacy_wldev *dev)
2151{
2152 struct b43legacy_phy *phy = &dev->phy;
2153
2154 if (phy->type != B43legacy_PHYTYPE_G || phy->rev < 2)
2155 return;
2156
2157 b43legacy_mac_suspend(dev);
2158 b43legacy_phy_lo_g_measure(dev);
2159 b43legacy_mac_enable(dev);
2160}
2161
2162static void b43legacy_periodic_every60sec(struct b43legacy_wldev *dev)
2163{
2164 b43legacy_phy_lo_mark_all_unused(dev);
2165 if (dev->dev->bus->sprom.r1.boardflags_lo & B43legacy_BFL_RSSI) {
2166 b43legacy_mac_suspend(dev);
2167 b43legacy_calc_nrssi_slope(dev);
2168 b43legacy_mac_enable(dev);
2169 }
2170}
2171
2172static void b43legacy_periodic_every30sec(struct b43legacy_wldev *dev)
2173{
2174 /* Update device statistics. */
2175 b43legacy_calculate_link_quality(dev);
2176}
2177
2178static void b43legacy_periodic_every15sec(struct b43legacy_wldev *dev)
2179{
2180 b43legacy_phy_xmitpower(dev); /* FIXME: unless scanning? */
2181}
2182
2183static void b43legacy_periodic_every1sec(struct b43legacy_wldev *dev)
2184{
1065de15 2185 bool radio_hw_enable;
75388acd
LF
2186
2187 /* check if radio hardware enabled status changed */
2188 radio_hw_enable = b43legacy_is_hw_radio_enabled(dev);
2189 if (unlikely(dev->radio_hw_enable != radio_hw_enable)) {
2190 dev->radio_hw_enable = radio_hw_enable;
2191 b43legacyinfo(dev->wl, "Radio hardware status changed to %s\n",
1065de15 2192 (radio_hw_enable) ? "enabled" : "disabled");
75388acd
LF
2193 b43legacy_leds_update(dev, 0);
2194 }
2195}
2196
2197static void do_periodic_work(struct b43legacy_wldev *dev)
2198{
2199 unsigned int state;
2200
2201 state = dev->periodic_state;
2202 if (state % 120 == 0)
2203 b43legacy_periodic_every120sec(dev);
2204 if (state % 60 == 0)
2205 b43legacy_periodic_every60sec(dev);
2206 if (state % 30 == 0)
2207 b43legacy_periodic_every30sec(dev);
2208 if (state % 15 == 0)
2209 b43legacy_periodic_every15sec(dev);
2210 b43legacy_periodic_every1sec(dev);
2211}
2212
2213/* Estimate a "Badness" value based on the periodic work
2214 * state-machine state. "Badness" is worse (bigger), if the
2215 * periodic work will take longer.
2216 */
2217static int estimate_periodic_work_badness(unsigned int state)
2218{
2219 int badness = 0;
2220
2221 if (state % 120 == 0) /* every 120 sec */
2222 badness += 10;
2223 if (state % 60 == 0) /* every 60 sec */
2224 badness += 5;
2225 if (state % 30 == 0) /* every 30 sec */
2226 badness += 1;
2227 if (state % 15 == 0) /* every 15 sec */
2228 badness += 1;
2229
2230#define BADNESS_LIMIT 4
2231 return badness;
2232}
2233
2234static void b43legacy_periodic_work_handler(struct work_struct *work)
2235{
2236 struct b43legacy_wldev *dev =
2237 container_of(work, struct b43legacy_wldev,
2238 periodic_work.work);
2239 unsigned long flags;
2240 unsigned long delay;
2241 u32 savedirqs = 0;
2242 int badness;
2243
2244 mutex_lock(&dev->wl->mutex);
2245
2246 if (unlikely(b43legacy_status(dev) != B43legacy_STAT_STARTED))
2247 goto out;
2248 if (b43legacy_debug(dev, B43legacy_DBG_PWORK_STOP))
2249 goto out_requeue;
2250
2251 badness = estimate_periodic_work_badness(dev->periodic_state);
2252 if (badness > BADNESS_LIMIT) {
2253 spin_lock_irqsave(&dev->wl->irq_lock, flags);
2254 /* Suspend TX as we don't want to transmit packets while
2255 * we recalibrate the hardware. */
2256 b43legacy_tx_suspend(dev);
2257 savedirqs = b43legacy_interrupt_disable(dev,
2258 B43legacy_IRQ_ALL);
2259 /* Periodic work will take a long time, so we want it to
2260 * be preemtible and release the spinlock. */
2261 spin_unlock_irqrestore(&dev->wl->irq_lock, flags);
2262 b43legacy_synchronize_irq(dev);
2263
2264 do_periodic_work(dev);
2265
2266 spin_lock_irqsave(&dev->wl->irq_lock, flags);
2267 b43legacy_interrupt_enable(dev, savedirqs);
2268 b43legacy_tx_resume(dev);
2269 mmiowb();
2270 spin_unlock_irqrestore(&dev->wl->irq_lock, flags);
2271 } else {
2272 /* Take the global driver lock. This will lock any operation. */
2273 spin_lock_irqsave(&dev->wl->irq_lock, flags);
2274
2275 do_periodic_work(dev);
2276
2277 mmiowb();
2278 spin_unlock_irqrestore(&dev->wl->irq_lock, flags);
2279 }
2280 dev->periodic_state++;
2281out_requeue:
2282 if (b43legacy_debug(dev, B43legacy_DBG_PWORK_FAST))
2283 delay = msecs_to_jiffies(50);
2284 else
2285 delay = round_jiffies(HZ);
2286 queue_delayed_work(dev->wl->hw->workqueue,
2287 &dev->periodic_work, delay);
2288out:
2289 mutex_unlock(&dev->wl->mutex);
2290}
2291
2292static void b43legacy_periodic_tasks_setup(struct b43legacy_wldev *dev)
2293{
2294 struct delayed_work *work = &dev->periodic_work;
2295
2296 dev->periodic_state = 0;
2297 INIT_DELAYED_WORK(work, b43legacy_periodic_work_handler);
2298 queue_delayed_work(dev->wl->hw->workqueue, work, 0);
2299}
2300
2301/* Validate access to the chip (SHM) */
2302static int b43legacy_validate_chipaccess(struct b43legacy_wldev *dev)
2303{
2304 u32 value;
2305 u32 shm_backup;
2306
2307 shm_backup = b43legacy_shm_read32(dev, B43legacy_SHM_SHARED, 0);
2308 b43legacy_shm_write32(dev, B43legacy_SHM_SHARED, 0, 0xAA5555AA);
2309 if (b43legacy_shm_read32(dev, B43legacy_SHM_SHARED, 0) !=
2310 0xAA5555AA)
2311 goto error;
2312 b43legacy_shm_write32(dev, B43legacy_SHM_SHARED, 0, 0x55AAAA55);
2313 if (b43legacy_shm_read32(dev, B43legacy_SHM_SHARED, 0) !=
2314 0x55AAAA55)
2315 goto error;
2316 b43legacy_shm_write32(dev, B43legacy_SHM_SHARED, 0, shm_backup);
2317
2318 value = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
2319 if ((value | B43legacy_MACCTL_GMODE) !=
2320 (B43legacy_MACCTL_GMODE | B43legacy_MACCTL_IHR_ENABLED))
2321 goto error;
2322
2323 value = b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
2324 if (value)
2325 goto error;
2326
2327 return 0;
2328error:
2329 b43legacyerr(dev->wl, "Failed to validate the chipaccess\n");
2330 return -ENODEV;
2331}
2332
2333static void b43legacy_security_init(struct b43legacy_wldev *dev)
2334{
2335 dev->max_nr_keys = (dev->dev->id.revision >= 5) ? 58 : 20;
2336 B43legacy_WARN_ON(dev->max_nr_keys > ARRAY_SIZE(dev->key));
2337 dev->ktp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
2338 0x0056);
2339 /* KTP is a word address, but we address SHM bytewise.
2340 * So multiply by two.
2341 */
2342 dev->ktp *= 2;
2343 if (dev->dev->id.revision >= 5)
2344 /* Number of RCMTA address slots */
2345 b43legacy_write16(dev, B43legacy_MMIO_RCMTA_COUNT,
2346 dev->max_nr_keys - 8);
2347}
2348
2349static int b43legacy_rng_read(struct hwrng *rng, u32 *data)
2350{
2351 struct b43legacy_wl *wl = (struct b43legacy_wl *)rng->priv;
2352 unsigned long flags;
2353
2354 /* Don't take wl->mutex here, as it could deadlock with
2355 * hwrng internal locking. It's not needed to take
2356 * wl->mutex here, anyway. */
2357
2358 spin_lock_irqsave(&wl->irq_lock, flags);
2359 *data = b43legacy_read16(wl->current_dev, B43legacy_MMIO_RNG);
2360 spin_unlock_irqrestore(&wl->irq_lock, flags);
2361
2362 return (sizeof(u16));
2363}
2364
2365static void b43legacy_rng_exit(struct b43legacy_wl *wl)
2366{
2367 if (wl->rng_initialized)
2368 hwrng_unregister(&wl->rng);
2369}
2370
2371static int b43legacy_rng_init(struct b43legacy_wl *wl)
2372{
2373 int err;
2374
2375 snprintf(wl->rng_name, ARRAY_SIZE(wl->rng_name),
2376 "%s_%s", KBUILD_MODNAME, wiphy_name(wl->hw->wiphy));
2377 wl->rng.name = wl->rng_name;
2378 wl->rng.data_read = b43legacy_rng_read;
2379 wl->rng.priv = (unsigned long)wl;
2380 wl->rng_initialized = 1;
2381 err = hwrng_register(&wl->rng);
2382 if (err) {
2383 wl->rng_initialized = 0;
2384 b43legacyerr(wl, "Failed to register the random "
2385 "number generator (%d)\n", err);
2386 }
2387
2388 return err;
2389}
2390
2391static int b43legacy_tx(struct ieee80211_hw *hw,
2392 struct sk_buff *skb,
2393 struct ieee80211_tx_control *ctl)
2394{
2395 struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
2396 struct b43legacy_wldev *dev = wl->current_dev;
2397 int err = -ENODEV;
2398 unsigned long flags;
2399
2400 if (unlikely(!dev))
2401 goto out;
2402 if (unlikely(b43legacy_status(dev) < B43legacy_STAT_STARTED))
2403 goto out;
2404 /* DMA-TX is done without a global lock. */
2405 if (b43legacy_using_pio(dev)) {
2406 spin_lock_irqsave(&wl->irq_lock, flags);
2407 err = b43legacy_pio_tx(dev, skb, ctl);
2408 spin_unlock_irqrestore(&wl->irq_lock, flags);
2409 } else
2410 err = b43legacy_dma_tx(dev, skb, ctl);
2411out:
2412 if (unlikely(err))
2413 return NETDEV_TX_BUSY;
2414 return NETDEV_TX_OK;
2415}
2416
2417static int b43legacy_conf_tx(struct ieee80211_hw *hw,
2418 int queue,
2419 const struct ieee80211_tx_queue_params *params)
2420{
2421 return 0;
2422}
2423
2424static int b43legacy_get_tx_stats(struct ieee80211_hw *hw,
2425 struct ieee80211_tx_queue_stats *stats)
2426{
2427 struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
2428 struct b43legacy_wldev *dev = wl->current_dev;
2429 unsigned long flags;
2430 int err = -ENODEV;
2431
2432 if (!dev)
2433 goto out;
2434 spin_lock_irqsave(&wl->irq_lock, flags);
2435 if (likely(b43legacy_status(dev) >= B43legacy_STAT_STARTED)) {
2436 if (b43legacy_using_pio(dev))
2437 b43legacy_pio_get_tx_stats(dev, stats);
2438 else
2439 b43legacy_dma_get_tx_stats(dev, stats);
2440 err = 0;
2441 }
2442 spin_unlock_irqrestore(&wl->irq_lock, flags);
2443out:
2444 return err;
2445}
2446
2447static int b43legacy_get_stats(struct ieee80211_hw *hw,
2448 struct ieee80211_low_level_stats *stats)
2449{
2450 struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
2451 unsigned long flags;
2452
2453 spin_lock_irqsave(&wl->irq_lock, flags);
2454 memcpy(stats, &wl->ieee_stats, sizeof(*stats));
2455 spin_unlock_irqrestore(&wl->irq_lock, flags);
2456
2457 return 0;
2458}
2459
2460static const char *phymode_to_string(unsigned int phymode)
2461{
2462 switch (phymode) {
2463 case B43legacy_PHYMODE_B:
2464 return "B";
2465 case B43legacy_PHYMODE_G:
2466 return "G";
2467 default:
2468 B43legacy_BUG_ON(1);
2469 }
2470 return "";
2471}
2472
2473static int find_wldev_for_phymode(struct b43legacy_wl *wl,
2474 unsigned int phymode,
2475 struct b43legacy_wldev **dev,
2476 bool *gmode)
2477{
2478 struct b43legacy_wldev *d;
2479
2480 list_for_each_entry(d, &wl->devlist, list) {
2481 if (d->phy.possible_phymodes & phymode) {
2482 /* Ok, this device supports the PHY-mode.
2483 * Set the gmode bit. */
2484 *gmode = 1;
2485 *dev = d;
2486
2487 return 0;
2488 }
2489 }
2490
2491 return -ESRCH;
2492}
2493
2494static void b43legacy_put_phy_into_reset(struct b43legacy_wldev *dev)
2495{
2496 struct ssb_device *sdev = dev->dev;
2497 u32 tmslow;
2498
2499 tmslow = ssb_read32(sdev, SSB_TMSLOW);
2500 tmslow &= ~B43legacy_TMSLOW_GMODE;
2501 tmslow |= B43legacy_TMSLOW_PHYRESET;
2502 tmslow |= SSB_TMSLOW_FGC;
2503 ssb_write32(sdev, SSB_TMSLOW, tmslow);
2504 msleep(1);
2505
2506 tmslow = ssb_read32(sdev, SSB_TMSLOW);
2507 tmslow &= ~SSB_TMSLOW_FGC;
2508 tmslow |= B43legacy_TMSLOW_PHYRESET;
2509 ssb_write32(sdev, SSB_TMSLOW, tmslow);
2510 msleep(1);
2511}
2512
2513/* Expects wl->mutex locked */
2514static int b43legacy_switch_phymode(struct b43legacy_wl *wl,
2515 unsigned int new_mode)
2516{
2517 struct b43legacy_wldev *up_dev;
2518 struct b43legacy_wldev *down_dev;
2519 int err;
2520 bool gmode = 0;
2521 int prev_status;
2522
2523 err = find_wldev_for_phymode(wl, new_mode, &up_dev, &gmode);
2524 if (err) {
2525 b43legacyerr(wl, "Could not find a device for %s-PHY mode\n",
2526 phymode_to_string(new_mode));
2527 return err;
2528 }
2529 if ((up_dev == wl->current_dev) &&
2530 (!!wl->current_dev->phy.gmode == !!gmode))
2531 /* This device is already running. */
2532 return 0;
2533 b43legacydbg(wl, "Reconfiguring PHYmode to %s-PHY\n",
2534 phymode_to_string(new_mode));
2535 down_dev = wl->current_dev;
2536
2537 prev_status = b43legacy_status(down_dev);
2538 /* Shutdown the currently running core. */
2539 if (prev_status >= B43legacy_STAT_STARTED)
2540 b43legacy_wireless_core_stop(down_dev);
2541 if (prev_status >= B43legacy_STAT_INITIALIZED)
2542 b43legacy_wireless_core_exit(down_dev);
2543
2544 if (down_dev != up_dev)
2545 /* We switch to a different core, so we put PHY into
2546 * RESET on the old core. */
2547 b43legacy_put_phy_into_reset(down_dev);
2548
2549 /* Now start the new core. */
2550 up_dev->phy.gmode = gmode;
2551 if (prev_status >= B43legacy_STAT_INITIALIZED) {
2552 err = b43legacy_wireless_core_init(up_dev);
2553 if (err) {
2554 b43legacyerr(wl, "Fatal: Could not initialize device"
2555 " for newly selected %s-PHY mode\n",
2556 phymode_to_string(new_mode));
2557 goto init_failure;
2558 }
2559 }
2560 if (prev_status >= B43legacy_STAT_STARTED) {
2561 err = b43legacy_wireless_core_start(up_dev);
2562 if (err) {
2563 b43legacyerr(wl, "Fatal: Coult not start device for "
2564 "newly selected %s-PHY mode\n",
2565 phymode_to_string(new_mode));
2566 b43legacy_wireless_core_exit(up_dev);
2567 goto init_failure;
2568 }
2569 }
2570 B43legacy_WARN_ON(b43legacy_status(up_dev) != prev_status);
2571
2572 b43legacy_shm_write32(up_dev, B43legacy_SHM_SHARED, 0x003E, 0);
2573
2574 wl->current_dev = up_dev;
2575
2576 return 0;
2577init_failure:
2578 /* Whoops, failed to init the new core. No core is operating now. */
2579 wl->current_dev = NULL;
2580 return err;
2581}
2582
2583static int b43legacy_antenna_from_ieee80211(u8 antenna)
2584{
2585 switch (antenna) {
2586 case 0: /* default/diversity */
2587 return B43legacy_ANTENNA_DEFAULT;
2588 case 1: /* Antenna 0 */
2589 return B43legacy_ANTENNA0;
2590 case 2: /* Antenna 1 */
2591 return B43legacy_ANTENNA1;
2592 default:
2593 return B43legacy_ANTENNA_DEFAULT;
2594 }
2595}
2596
2597static int b43legacy_dev_config(struct ieee80211_hw *hw,
2598 struct ieee80211_conf *conf)
2599{
2600 struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
2601 struct b43legacy_wldev *dev;
2602 struct b43legacy_phy *phy;
2603 unsigned long flags;
2604 unsigned int new_phymode = 0xFFFF;
2605 int antenna_tx;
2606 int antenna_rx;
2607 int err = 0;
2608 u32 savedirqs;
2609
2610 antenna_tx = b43legacy_antenna_from_ieee80211(conf->antenna_sel_tx);
2611 antenna_rx = b43legacy_antenna_from_ieee80211(conf->antenna_sel_rx);
2612
2613 mutex_lock(&wl->mutex);
2614
2615 /* Switch the PHY mode (if necessary). */
2616 switch (conf->phymode) {
2617 case MODE_IEEE80211B:
2618 new_phymode = B43legacy_PHYMODE_B;
2619 break;
2620 case MODE_IEEE80211G:
2621 new_phymode = B43legacy_PHYMODE_G;
2622 break;
2623 default:
2624 B43legacy_WARN_ON(1);
2625 }
2626 err = b43legacy_switch_phymode(wl, new_phymode);
2627 if (err)
2628 goto out_unlock_mutex;
2629 dev = wl->current_dev;
2630 phy = &dev->phy;
2631
2632 /* Disable IRQs while reconfiguring the device.
2633 * This makes it possible to drop the spinlock throughout
2634 * the reconfiguration process. */
2635 spin_lock_irqsave(&wl->irq_lock, flags);
2636 if (b43legacy_status(dev) < B43legacy_STAT_STARTED) {
2637 spin_unlock_irqrestore(&wl->irq_lock, flags);
2638 goto out_unlock_mutex;
2639 }
2640 savedirqs = b43legacy_interrupt_disable(dev, B43legacy_IRQ_ALL);
2641 spin_unlock_irqrestore(&wl->irq_lock, flags);
2642 b43legacy_synchronize_irq(dev);
2643
2644 /* Switch to the requested channel.
2645 * The firmware takes care of races with the TX handler. */
2646 if (conf->channel_val != phy->channel)
2647 b43legacy_radio_selectchannel(dev, conf->channel_val, 0);
2648
2649 /* Enable/Disable ShortSlot timing. */
2650 if ((!!(conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME))
2651 != dev->short_slot) {
2652 B43legacy_WARN_ON(phy->type != B43legacy_PHYTYPE_G);
2653 if (conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME)
2654 b43legacy_short_slot_timing_enable(dev);
2655 else
2656 b43legacy_short_slot_timing_disable(dev);
2657 }
2658
2659 /* Adjust the desired TX power level. */
2660 if (conf->power_level != 0) {
2661 if (conf->power_level != phy->power_level) {
2662 phy->power_level = conf->power_level;
2663 b43legacy_phy_xmitpower(dev);
2664 }
2665 }
2666
2667 /* Antennas for RX and management frame TX. */
2668 b43legacy_mgmtframe_txantenna(dev, antenna_tx);
2669
2670 /* Update templates for AP mode. */
2671 if (b43legacy_is_mode(wl, IEEE80211_IF_TYPE_AP))
2672 b43legacy_set_beacon_int(dev, conf->beacon_int);
2673
2674
42a9174f
LF
2675 if (!!conf->radio_enabled != phy->radio_on) {
2676 if (conf->radio_enabled) {
2677 b43legacy_radio_turn_on(dev);
2678 b43legacyinfo(dev->wl, "Radio turned on by software\n");
2679 if (!dev->radio_hw_enable)
2680 b43legacyinfo(dev->wl, "The hardware RF-kill"
2681 " button still turns the radio"
2682 " physically off. Press the"
2683 " button to turn it on.\n");
2684 } else {
2685 b43legacy_radio_turn_off(dev);
2686 b43legacyinfo(dev->wl, "Radio turned off by"
2687 " software\n");
2688 }
2689 }
2690
75388acd
LF
2691 spin_lock_irqsave(&wl->irq_lock, flags);
2692 b43legacy_interrupt_enable(dev, savedirqs);
2693 mmiowb();
2694 spin_unlock_irqrestore(&wl->irq_lock, flags);
2695out_unlock_mutex:
2696 mutex_unlock(&wl->mutex);
2697
2698 return err;
2699}
2700
2701static int b43legacy_dev_set_key(struct ieee80211_hw *hw,
2702 set_key_cmd cmd,
2703 const u8 *local_addr, const u8 *addr,
2704 struct ieee80211_key_conf *key)
2705{
2706 struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
2707 struct b43legacy_wldev *dev = wl->current_dev;
2708 unsigned long flags;
2709 int err = -EOPNOTSUPP;
0795af57 2710 DECLARE_MAC_BUF(mac);
75388acd
LF
2711
2712 if (!dev)
2713 return -ENODEV;
2714 mutex_lock(&wl->mutex);
2715 spin_lock_irqsave(&wl->irq_lock, flags);
2716
2717 if (b43legacy_status(dev) < B43legacy_STAT_INITIALIZED) {
2718 err = -ENODEV;
2719 }
2720 spin_unlock_irqrestore(&wl->irq_lock, flags);
2721 mutex_unlock(&wl->mutex);
2722 b43legacydbg(wl, "Using software based encryption for "
0795af57 2723 "mac: %s\n", print_mac(mac, addr));
75388acd
LF
2724 return err;
2725}
2726
2727static void b43legacy_set_multicast_list(struct ieee80211_hw *hw,
2728 unsigned short netflags,
2729 int mc_count)
2730{
2731 struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
2732 struct b43legacy_wldev *dev = wl->current_dev;
2733 unsigned long flags;
2734
2735 if (!dev)
2736 return;
2737 spin_lock_irqsave(&wl->irq_lock, flags);
2738 if (wl->promisc != !!(netflags & IFF_PROMISC)) {
2739 wl->promisc = !!(netflags & IFF_PROMISC);
2740 if (b43legacy_status(dev) >= B43legacy_STAT_INITIALIZED)
2741 b43legacy_adjust_opmode(dev);
2742 }
2743 spin_unlock_irqrestore(&wl->irq_lock, flags);
2744}
2745
2746static int b43legacy_config_interface(struct ieee80211_hw *hw,
2747 int if_id,
2748 struct ieee80211_if_conf *conf)
2749{
2750 struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
2751 struct b43legacy_wldev *dev = wl->current_dev;
2752 unsigned long flags;
2753
2754 if (!dev)
2755 return -ENODEV;
2756 mutex_lock(&wl->mutex);
2757 spin_lock_irqsave(&wl->irq_lock, flags);
2758 if (conf->type != IEEE80211_IF_TYPE_MNTR) {
2759 B43legacy_WARN_ON(wl->if_id != if_id);
2760 wl->bssid = conf->bssid;
2761 if (b43legacy_status(dev) >= B43legacy_STAT_INITIALIZED) {
2762 if (b43legacy_is_mode(wl, IEEE80211_IF_TYPE_AP)) {
2763 B43legacy_WARN_ON(conf->type !=
2764 IEEE80211_IF_TYPE_AP);
2765 b43legacy_set_ssid(dev, conf->ssid,
2766 conf->ssid_len);
2767 if (conf->beacon)
2768 b43legacy_refresh_templates(dev,
2769 conf->beacon);
2770 }
2771 b43legacy_write_mac_bssid_templates(dev);
2772 }
2773 }
2774 spin_unlock_irqrestore(&wl->irq_lock, flags);
2775 mutex_unlock(&wl->mutex);
2776
2777 return 0;
2778}
2779
2780/* Locking: wl->mutex */
2781static void b43legacy_wireless_core_stop(struct b43legacy_wldev *dev)
2782{
2783 struct b43legacy_wl *wl = dev->wl;
2784 unsigned long flags;
2785
2786 if (b43legacy_status(dev) < B43legacy_STAT_STARTED)
2787 return;
2788 b43legacy_set_status(dev, B43legacy_STAT_INITIALIZED);
2789
2790 mutex_unlock(&wl->mutex);
2791 /* Must unlock as it would otherwise deadlock. No races here.
2792 * Cancel the possibly running self-rearming periodic work. */
2793 cancel_delayed_work_sync(&dev->periodic_work);
2794 mutex_lock(&wl->mutex);
2795
2796 ieee80211_stop_queues(wl->hw); /* FIXME this could cause a deadlock */
2797
2798 /* Disable and sync interrupts. */
2799 spin_lock_irqsave(&wl->irq_lock, flags);
2800 dev->irq_savedstate = b43legacy_interrupt_disable(dev,
2801 B43legacy_IRQ_ALL);
2802 b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_MASK); /* flush */
2803 spin_unlock_irqrestore(&wl->irq_lock, flags);
2804 b43legacy_synchronize_irq(dev);
2805
2806 b43legacy_mac_suspend(dev);
2807 free_irq(dev->dev->irq, dev);
2808 b43legacydbg(wl, "Wireless interface stopped\n");
2809}
2810
2811/* Locking: wl->mutex */
2812static int b43legacy_wireless_core_start(struct b43legacy_wldev *dev)
2813{
2814 int err;
2815
2816 B43legacy_WARN_ON(b43legacy_status(dev) != B43legacy_STAT_INITIALIZED);
2817
2818 drain_txstatus_queue(dev);
2819 err = request_irq(dev->dev->irq, b43legacy_interrupt_handler,
2820 IRQF_SHARED, KBUILD_MODNAME, dev);
2821 if (err) {
2822 b43legacyerr(dev->wl, "Cannot request IRQ-%d\n",
2823 dev->dev->irq);
2824 goto out;
2825 }
2826 /* We are ready to run. */
2827 b43legacy_set_status(dev, B43legacy_STAT_STARTED);
2828
2829 /* Start data flow (TX/RX) */
2830 b43legacy_mac_enable(dev);
2831 b43legacy_interrupt_enable(dev, dev->irq_savedstate);
2832 ieee80211_start_queues(dev->wl->hw);
2833
2834 /* Start maintenance work */
2835 b43legacy_periodic_tasks_setup(dev);
2836
2837 b43legacydbg(dev->wl, "Wireless interface started\n");
2838out:
2839 return err;
2840}
2841
2842/* Get PHY and RADIO versioning numbers */
2843static int b43legacy_phy_versioning(struct b43legacy_wldev *dev)
2844{
2845 struct b43legacy_phy *phy = &dev->phy;
2846 u32 tmp;
2847 u8 analog_type;
2848 u8 phy_type;
2849 u8 phy_rev;
2850 u16 radio_manuf;
2851 u16 radio_ver;
2852 u16 radio_rev;
2853 int unsupported = 0;
2854
2855 /* Get PHY versioning */
2856 tmp = b43legacy_read16(dev, B43legacy_MMIO_PHY_VER);
2857 analog_type = (tmp & B43legacy_PHYVER_ANALOG)
2858 >> B43legacy_PHYVER_ANALOG_SHIFT;
2859 phy_type = (tmp & B43legacy_PHYVER_TYPE) >> B43legacy_PHYVER_TYPE_SHIFT;
2860 phy_rev = (tmp & B43legacy_PHYVER_VERSION);
2861 switch (phy_type) {
2862 case B43legacy_PHYTYPE_B:
2863 if (phy_rev != 2 && phy_rev != 4
2864 && phy_rev != 6 && phy_rev != 7)
2865 unsupported = 1;
2866 break;
2867 case B43legacy_PHYTYPE_G:
2868 if (phy_rev > 8)
2869 unsupported = 1;
2870 break;
2871 default:
2872 unsupported = 1;
2873 };
2874 if (unsupported) {
2875 b43legacyerr(dev->wl, "FOUND UNSUPPORTED PHY "
2876 "(Analog %u, Type %u, Revision %u)\n",
2877 analog_type, phy_type, phy_rev);
2878 return -EOPNOTSUPP;
2879 }
2880 b43legacydbg(dev->wl, "Found PHY: Analog %u, Type %u, Revision %u\n",
2881 analog_type, phy_type, phy_rev);
2882
2883
2884 /* Get RADIO versioning */
2885 if (dev->dev->bus->chip_id == 0x4317) {
2886 if (dev->dev->bus->chip_rev == 0)
2887 tmp = 0x3205017F;
2888 else if (dev->dev->bus->chip_rev == 1)
2889 tmp = 0x4205017F;
2890 else
2891 tmp = 0x5205017F;
2892 } else {
2893 b43legacy_write16(dev, B43legacy_MMIO_RADIO_CONTROL,
2894 B43legacy_RADIOCTL_ID);
2895 tmp = b43legacy_read16(dev, B43legacy_MMIO_RADIO_DATA_HIGH);
2896 tmp <<= 16;
2897 b43legacy_write16(dev, B43legacy_MMIO_RADIO_CONTROL,
2898 B43legacy_RADIOCTL_ID);
2899 tmp |= b43legacy_read16(dev, B43legacy_MMIO_RADIO_DATA_LOW);
2900 }
2901 radio_manuf = (tmp & 0x00000FFF);
2902 radio_ver = (tmp & 0x0FFFF000) >> 12;
2903 radio_rev = (tmp & 0xF0000000) >> 28;
2904 switch (phy_type) {
2905 case B43legacy_PHYTYPE_B:
2906 if ((radio_ver & 0xFFF0) != 0x2050)
2907 unsupported = 1;
2908 break;
2909 case B43legacy_PHYTYPE_G:
2910 if (radio_ver != 0x2050)
2911 unsupported = 1;
2912 break;
2913 default:
2914 B43legacy_BUG_ON(1);
2915 }
2916 if (unsupported) {
2917 b43legacyerr(dev->wl, "FOUND UNSUPPORTED RADIO "
2918 "(Manuf 0x%X, Version 0x%X, Revision %u)\n",
2919 radio_manuf, radio_ver, radio_rev);
2920 return -EOPNOTSUPP;
2921 }
2922 b43legacydbg(dev->wl, "Found Radio: Manuf 0x%X, Version 0x%X,"
2923 " Revision %u\n", radio_manuf, radio_ver, radio_rev);
2924
2925
2926 phy->radio_manuf = radio_manuf;
2927 phy->radio_ver = radio_ver;
2928 phy->radio_rev = radio_rev;
2929
2930 phy->analog = analog_type;
2931 phy->type = phy_type;
2932 phy->rev = phy_rev;
2933
2934 return 0;
2935}
2936
2937static void setup_struct_phy_for_init(struct b43legacy_wldev *dev,
2938 struct b43legacy_phy *phy)
2939{
2940 struct b43legacy_lopair *lo;
2941 int i;
2942
2943 memset(phy->minlowsig, 0xFF, sizeof(phy->minlowsig));
2944 memset(phy->minlowsigpos, 0, sizeof(phy->minlowsigpos));
2945
2946 /* Flags */
2947 phy->locked = 0;
1065de15
LF
2948 /* Assume the radio is enabled. If it's not enabled, the state will
2949 * immediately get fixed on the first periodic work run. */
2950 dev->radio_hw_enable = 1;
75388acd
LF
2951
2952 phy->savedpctlreg = 0xFFFF;
2953 phy->aci_enable = 0;
2954 phy->aci_wlan_automatic = 0;
2955 phy->aci_hw_rssi = 0;
2956
2957 lo = phy->_lo_pairs;
2958 if (lo)
2959 memset(lo, 0, sizeof(struct b43legacy_lopair) *
2960 B43legacy_LO_COUNT);
2961 phy->max_lb_gain = 0;
2962 phy->trsw_rx_gain = 0;
2963
2964 /* Set default attenuation values. */
2965 phy->bbatt = b43legacy_default_baseband_attenuation(dev);
2966 phy->rfatt = b43legacy_default_radio_attenuation(dev);
2967 phy->txctl1 = b43legacy_default_txctl1(dev);
2968 phy->txpwr_offset = 0;
2969
2970 /* NRSSI */
2971 phy->nrssislope = 0;
2972 for (i = 0; i < ARRAY_SIZE(phy->nrssi); i++)
2973 phy->nrssi[i] = -1000;
2974 for (i = 0; i < ARRAY_SIZE(phy->nrssi_lt); i++)
2975 phy->nrssi_lt[i] = i;
2976
2977 phy->lofcal = 0xFFFF;
2978 phy->initval = 0xFFFF;
2979
2980 spin_lock_init(&phy->lock);
2981 phy->interfmode = B43legacy_INTERFMODE_NONE;
2982 phy->channel = 0xFF;
2983}
2984
2985static void setup_struct_wldev_for_init(struct b43legacy_wldev *dev)
2986{
2987 /* Flags */
2988 dev->reg124_set_0x4 = 0;
2989
2990 /* Stats */
2991 memset(&dev->stats, 0, sizeof(dev->stats));
2992
2993 setup_struct_phy_for_init(dev, &dev->phy);
2994
2995 /* IRQ related flags */
2996 dev->irq_reason = 0;
2997 memset(dev->dma_reason, 0, sizeof(dev->dma_reason));
2998 dev->irq_savedstate = B43legacy_IRQ_MASKTEMPLATE;
2999
3000 dev->mac_suspended = 1;
3001
3002 /* Noise calculation context */
3003 memset(&dev->noisecalc, 0, sizeof(dev->noisecalc));
3004}
3005
3006static void b43legacy_imcfglo_timeouts_workaround(struct b43legacy_wldev *dev)
3007{
3008#ifdef CONFIG_SSB_DRIVER_PCICORE
3009 struct ssb_bus *bus = dev->dev->bus;
3010 u32 tmp;
3011
3012 if (bus->pcicore.dev &&
3013 bus->pcicore.dev->id.coreid == SSB_DEV_PCI &&
3014 bus->pcicore.dev->id.revision <= 5) {
3015 /* IMCFGLO timeouts workaround. */
3016 tmp = ssb_read32(dev->dev, SSB_IMCFGLO);
3017 tmp &= ~SSB_IMCFGLO_REQTO;
3018 tmp &= ~SSB_IMCFGLO_SERTO;
3019 switch (bus->bustype) {
3020 case SSB_BUSTYPE_PCI:
3021 case SSB_BUSTYPE_PCMCIA:
3022 tmp |= 0x32;
3023 break;
3024 case SSB_BUSTYPE_SSB:
3025 tmp |= 0x53;
3026 break;
3027 }
3028 ssb_write32(dev->dev, SSB_IMCFGLO, tmp);
3029 }
3030#endif /* CONFIG_SSB_DRIVER_PCICORE */
3031}
3032
3033/* Shutdown a wireless core */
3034/* Locking: wl->mutex */
3035static void b43legacy_wireless_core_exit(struct b43legacy_wldev *dev)
3036{
3037 struct b43legacy_wl *wl = dev->wl;
3038 struct b43legacy_phy *phy = &dev->phy;
3039
3040 B43legacy_WARN_ON(b43legacy_status(dev) > B43legacy_STAT_INITIALIZED);
3041 if (b43legacy_status(dev) != B43legacy_STAT_INITIALIZED)
3042 return;
3043 b43legacy_set_status(dev, B43legacy_STAT_UNINIT);
3044
3045 mutex_unlock(&wl->mutex);
3046 /* Must unlock as it would otherwise deadlock. No races here.
3047 * Cancel possibly pending workqueues. */
3048 cancel_work_sync(&dev->restart_work);
3049 mutex_lock(&wl->mutex);
3050
3051 b43legacy_rng_exit(dev->wl);
3052 b43legacy_pio_free(dev);
3053 b43legacy_dma_free(dev);
3054 b43legacy_chip_exit(dev);
3055 b43legacy_radio_turn_off(dev);
3056 b43legacy_switch_analog(dev, 0);
3057 if (phy->dyn_tssi_tbl)
3058 kfree(phy->tssi2dbm);
3059 kfree(phy->lo_control);
3060 phy->lo_control = NULL;
3061 ssb_device_disable(dev->dev, 0);
3062 ssb_bus_may_powerdown(dev->dev->bus);
3063}
3064
3065static void prepare_phy_data_for_init(struct b43legacy_wldev *dev)
3066{
3067 struct b43legacy_phy *phy = &dev->phy;
3068 int i;
3069
3070 /* Set default attenuation values. */
3071 phy->bbatt = b43legacy_default_baseband_attenuation(dev);
3072 phy->rfatt = b43legacy_default_radio_attenuation(dev);
3073 phy->txctl1 = b43legacy_default_txctl1(dev);
3074 phy->txctl2 = 0xFFFF;
3075 phy->txpwr_offset = 0;
3076
3077 /* NRSSI */
3078 phy->nrssislope = 0;
3079 for (i = 0; i < ARRAY_SIZE(phy->nrssi); i++)
3080 phy->nrssi[i] = -1000;
3081 for (i = 0; i < ARRAY_SIZE(phy->nrssi_lt); i++)
3082 phy->nrssi_lt[i] = i;
3083
3084 phy->lofcal = 0xFFFF;
3085 phy->initval = 0xFFFF;
3086
3087 phy->aci_enable = 0;
3088 phy->aci_wlan_automatic = 0;
3089 phy->aci_hw_rssi = 0;
3090
3091 phy->antenna_diversity = 0xFFFF;
3092 memset(phy->minlowsig, 0xFF, sizeof(phy->minlowsig));
3093 memset(phy->minlowsigpos, 0, sizeof(phy->minlowsigpos));
3094
3095 /* Flags */
3096 phy->calibrated = 0;
3097 phy->locked = 0;
3098
3099 if (phy->_lo_pairs)
3100 memset(phy->_lo_pairs, 0,
3101 sizeof(struct b43legacy_lopair) * B43legacy_LO_COUNT);
3102 memset(phy->loopback_gain, 0, sizeof(phy->loopback_gain));
3103}
3104
3105/* Initialize a wireless core */
3106static int b43legacy_wireless_core_init(struct b43legacy_wldev *dev)
3107{
3108 struct b43legacy_wl *wl = dev->wl;
3109 struct ssb_bus *bus = dev->dev->bus;
3110 struct b43legacy_phy *phy = &dev->phy;
3111 struct ssb_sprom *sprom = &dev->dev->bus->sprom;
3112 int err;
3113 u32 hf;
3114 u32 tmp;
3115
3116 B43legacy_WARN_ON(b43legacy_status(dev) != B43legacy_STAT_UNINIT);
3117
3118 err = ssb_bus_powerup(bus, 0);
3119 if (err)
3120 goto out;
3121 if (!ssb_device_is_enabled(dev->dev)) {
3122 tmp = phy->gmode ? B43legacy_TMSLOW_GMODE : 0;
3123 b43legacy_wireless_core_reset(dev, tmp);
3124 }
3125
3126 if ((phy->type == B43legacy_PHYTYPE_B) ||
3127 (phy->type == B43legacy_PHYTYPE_G)) {
3128 phy->_lo_pairs = kzalloc(sizeof(struct b43legacy_lopair)
3129 * B43legacy_LO_COUNT,
3130 GFP_KERNEL);
3131 if (!phy->_lo_pairs)
3132 return -ENOMEM;
3133 }
3134 setup_struct_wldev_for_init(dev);
3135
3136 err = b43legacy_phy_init_tssi2dbm_table(dev);
3137 if (err)
3138 goto err_kfree_lo_control;
3139
3140 /* Enable IRQ routing to this device. */
3141 ssb_pcicore_dev_irqvecs_enable(&bus->pcicore, dev->dev);
3142
3143 b43legacy_imcfglo_timeouts_workaround(dev);
3144 prepare_phy_data_for_init(dev);
3145 b43legacy_phy_calibrate(dev);
3146 err = b43legacy_chip_init(dev);
3147 if (err)
3148 goto err_kfree_tssitbl;
3149 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
3150 B43legacy_SHM_SH_WLCOREREV,
3151 dev->dev->id.revision);
3152 hf = b43legacy_hf_read(dev);
3153 if (phy->type == B43legacy_PHYTYPE_G) {
3154 hf |= B43legacy_HF_SYMW;
3155 if (phy->rev == 1)
3156 hf |= B43legacy_HF_GDCW;
3157 if (sprom->r1.boardflags_lo & B43legacy_BFL_PACTRL)
3158 hf |= B43legacy_HF_OFDMPABOOST;
3159 } else if (phy->type == B43legacy_PHYTYPE_B) {
3160 hf |= B43legacy_HF_SYMW;
3161 if (phy->rev >= 2 && phy->radio_ver == 0x2050)
3162 hf &= ~B43legacy_HF_GDCW;
3163 }
3164 b43legacy_hf_write(dev, hf);
3165
3166 /* Short/Long Retry Limit.
3167 * The retry-limit is a 4-bit counter. Enforce this to avoid overflowing
3168 * the chip-internal counter.
3169 */
3170 tmp = limit_value(modparam_short_retry, 0, 0xF);
3171 b43legacy_shm_write16(dev, B43legacy_SHM_WIRELESS,
3172 0x0006, tmp);
3173 tmp = limit_value(modparam_long_retry, 0, 0xF);
3174 b43legacy_shm_write16(dev, B43legacy_SHM_WIRELESS,
3175 0x0007, tmp);
3176
3177 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
3178 0x0044, 3);
3179 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
3180 0x0046, 2);
3181
3182 /* Disable sending probe responses from firmware.
3183 * Setting the MaxTime to one usec will always trigger
3184 * a timeout, so we never send any probe resp.
3185 * A timeout of zero is infinite. */
3186 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
3187 B43legacy_SHM_SH_PRMAXTIME, 1);
3188
3189 b43legacy_rate_memory_init(dev);
3190
3191 /* Minimum Contention Window */
3192 if (phy->type == B43legacy_PHYTYPE_B)
3193 b43legacy_shm_write16(dev, B43legacy_SHM_WIRELESS,
3194 0x0003, 31);
3195 else
3196 b43legacy_shm_write16(dev, B43legacy_SHM_WIRELESS,
3197 0x0003, 15);
3198 /* Maximum Contention Window */
3199 b43legacy_shm_write16(dev, B43legacy_SHM_WIRELESS,
3200 0x0004, 1023);
3201
3202 do {
3203 if (b43legacy_using_pio(dev))
3204 err = b43legacy_pio_init(dev);
3205 else {
3206 err = b43legacy_dma_init(dev);
3207 if (!err)
3208 b43legacy_qos_init(dev);
3209 }
3210 } while (err == -EAGAIN);
3211 if (err)
3212 goto err_chip_exit;
3213
3214 b43legacy_write16(dev, 0x0612, 0x0050);
3215 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x0416, 0x0050);
3216 b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x0414, 0x01F4);
3217
3218 ssb_bus_powerup(bus, 1); /* Enable dynamic PCTL */
3219 wl->bssid = NULL;
3220 b43legacy_upload_card_macaddress(dev, NULL);
3221 b43legacy_security_init(dev);
3222 b43legacy_rng_init(wl);
3223
3224 b43legacy_set_status(dev, B43legacy_STAT_INITIALIZED);
3225
3226out:
3227 return err;
3228
3229err_chip_exit:
3230 b43legacy_chip_exit(dev);
3231err_kfree_tssitbl:
3232 if (phy->dyn_tssi_tbl)
3233 kfree(phy->tssi2dbm);
3234err_kfree_lo_control:
3235 kfree(phy->lo_control);
3236 phy->lo_control = NULL;
3237 ssb_bus_may_powerdown(bus);
3238 B43legacy_WARN_ON(b43legacy_status(dev) != B43legacy_STAT_UNINIT);
3239 return err;
3240}
3241
3242static int b43legacy_add_interface(struct ieee80211_hw *hw,
3243 struct ieee80211_if_init_conf *conf)
3244{
3245 struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
3246 struct b43legacy_wldev *dev;
3247 unsigned long flags;
3248 int err = -EOPNOTSUPP;
3249 int did_init = 0;
3250
3251 mutex_lock(&wl->mutex);
3252 if ((conf->type != IEEE80211_IF_TYPE_MNTR) &&
3253 wl->operating)
3254 goto out_mutex_unlock;
3255
3256 b43legacydbg(wl, "Adding Interface type %d\n", conf->type);
3257
3258 dev = wl->current_dev;
3259 if (b43legacy_status(dev) < B43legacy_STAT_INITIALIZED) {
3260 err = b43legacy_wireless_core_init(dev);
3261 if (err)
3262 goto out_mutex_unlock;
3263 did_init = 1;
3264 }
3265 if (b43legacy_status(dev) < B43legacy_STAT_STARTED) {
3266 err = b43legacy_wireless_core_start(dev);
3267 if (err) {
3268 if (did_init)
3269 b43legacy_wireless_core_exit(dev);
3270 goto out_mutex_unlock;
3271 }
3272 }
3273
3274 spin_lock_irqsave(&wl->irq_lock, flags);
3275 switch (conf->type) {
3276 case IEEE80211_IF_TYPE_MNTR:
3277 wl->monitor++;
3278 break;
3279 default:
3280 wl->operating = 1;
3281 wl->if_id = conf->if_id;
3282 wl->if_type = conf->type;
3283 b43legacy_upload_card_macaddress(dev, conf->mac_addr);
3284 }
3285 b43legacy_adjust_opmode(dev);
3286 spin_unlock_irqrestore(&wl->irq_lock, flags);
3287
3288 err = 0;
3289out_mutex_unlock:
3290 mutex_unlock(&wl->mutex);
3291
3292 return err;
3293}
3294
3295static void b43legacy_remove_interface(struct ieee80211_hw *hw,
3296 struct ieee80211_if_init_conf *conf)
3297{
3298 struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
3299 struct b43legacy_wldev *dev;
3300 unsigned long flags;
3301
3302 b43legacydbg(wl, "Removing Interface type %d\n", conf->type);
3303
3304 mutex_lock(&wl->mutex);
3305 if (conf->type == IEEE80211_IF_TYPE_MNTR) {
3306 wl->monitor--;
3307 B43legacy_WARN_ON(wl->monitor < 0);
3308 } else {
3309 B43legacy_WARN_ON(!wl->operating);
3310 wl->operating = 0;
3311 }
3312
3313 dev = wl->current_dev;
3314 if (!wl->operating && wl->monitor == 0) {
3315 /* No interface left. */
3316 if (b43legacy_status(dev) >= B43legacy_STAT_STARTED)
3317 b43legacy_wireless_core_stop(dev);
3318 b43legacy_wireless_core_exit(dev);
3319 } else {
3320 /* Just monitor interfaces left. */
3321 spin_lock_irqsave(&wl->irq_lock, flags);
3322 b43legacy_adjust_opmode(dev);
3323 if (!wl->operating)
3324 b43legacy_upload_card_macaddress(dev, NULL);
3325 spin_unlock_irqrestore(&wl->irq_lock, flags);
3326 }
3327 mutex_unlock(&wl->mutex);
3328}
3329
3330
3331static const struct ieee80211_ops b43legacy_hw_ops = {
3332 .tx = b43legacy_tx,
3333 .conf_tx = b43legacy_conf_tx,
3334 .add_interface = b43legacy_add_interface,
3335 .remove_interface = b43legacy_remove_interface,
3336 .config = b43legacy_dev_config,
3337 .config_interface = b43legacy_config_interface,
3338 .set_key = b43legacy_dev_set_key,
3339 .set_multicast_list = b43legacy_set_multicast_list,
3340 .get_stats = b43legacy_get_stats,
3341 .get_tx_stats = b43legacy_get_tx_stats,
3342};
3343
3344/* Hard-reset the chip. Do not call this directly.
3345 * Use b43legacy_controller_restart()
3346 */
3347static void b43legacy_chip_reset(struct work_struct *work)
3348{
3349 struct b43legacy_wldev *dev =
3350 container_of(work, struct b43legacy_wldev, restart_work);
3351 struct b43legacy_wl *wl = dev->wl;
3352 int err = 0;
3353 int prev_status;
3354
3355 mutex_lock(&wl->mutex);
3356
3357 prev_status = b43legacy_status(dev);
3358 /* Bring the device down... */
3359 if (prev_status >= B43legacy_STAT_STARTED)
3360 b43legacy_wireless_core_stop(dev);
3361 if (prev_status >= B43legacy_STAT_INITIALIZED)
3362 b43legacy_wireless_core_exit(dev);
3363
3364 /* ...and up again. */
3365 if (prev_status >= B43legacy_STAT_INITIALIZED) {
3366 err = b43legacy_wireless_core_init(dev);
3367 if (err)
3368 goto out;
3369 }
3370 if (prev_status >= B43legacy_STAT_STARTED) {
3371 err = b43legacy_wireless_core_start(dev);
3372 if (err) {
3373 b43legacy_wireless_core_exit(dev);
3374 goto out;
3375 }
3376 }
3377out:
3378 mutex_unlock(&wl->mutex);
3379 if (err)
3380 b43legacyerr(wl, "Controller restart FAILED\n");
3381 else
3382 b43legacyinfo(wl, "Controller restarted\n");
3383}
3384
3385static int b43legacy_setup_modes(struct b43legacy_wldev *dev,
3386 int have_bphy,
3387 int have_gphy)
3388{
3389 struct ieee80211_hw *hw = dev->wl->hw;
3390 struct ieee80211_hw_mode *mode;
3391 struct b43legacy_phy *phy = &dev->phy;
3392 int cnt = 0;
3393 int err;
3394
3395 phy->possible_phymodes = 0;
3396 for (; 1; cnt++) {
3397 if (have_bphy) {
3398 B43legacy_WARN_ON(cnt >= B43legacy_MAX_PHYHWMODES);
3399 mode = &phy->hwmodes[cnt];
3400
3401 mode->mode = MODE_IEEE80211B;
3402 mode->num_channels = b43legacy_bg_chantable_size;
3403 mode->channels = b43legacy_bg_chantable;
3404 mode->num_rates = b43legacy_b_ratetable_size;
3405 mode->rates = b43legacy_b_ratetable;
3406 err = ieee80211_register_hwmode(hw, mode);
3407 if (err)
3408 return err;
3409
3410 phy->possible_phymodes |= B43legacy_PHYMODE_B;
3411 have_bphy = 0;
3412 continue;
3413 }
3414 if (have_gphy) {
3415 B43legacy_WARN_ON(cnt >= B43legacy_MAX_PHYHWMODES);
3416 mode = &phy->hwmodes[cnt];
3417
3418 mode->mode = MODE_IEEE80211G;
3419 mode->num_channels = b43legacy_bg_chantable_size;
3420 mode->channels = b43legacy_bg_chantable;
3421 mode->num_rates = b43legacy_g_ratetable_size;
3422 mode->rates = b43legacy_g_ratetable;
3423 err = ieee80211_register_hwmode(hw, mode);
3424 if (err)
3425 return err;
3426
3427 phy->possible_phymodes |= B43legacy_PHYMODE_G;
3428 have_gphy = 0;
3429 continue;
3430 }
3431 break;
3432 }
3433
3434 return 0;
3435}
3436
3437static void b43legacy_wireless_core_detach(struct b43legacy_wldev *dev)
3438{
3439 /* We release firmware that late to not be required to re-request
3440 * is all the time when we reinit the core. */
3441 b43legacy_release_firmware(dev);
3442}
3443
3444static int b43legacy_wireless_core_attach(struct b43legacy_wldev *dev)
3445{
3446 struct b43legacy_wl *wl = dev->wl;
3447 struct ssb_bus *bus = dev->dev->bus;
3448 struct pci_dev *pdev = bus->host_pci;
3449 int err;
3450 int have_bphy = 0;
3451 int have_gphy = 0;
3452 u32 tmp;
3453
3454 /* Do NOT do any device initialization here.
3455 * Do it in wireless_core_init() instead.
3456 * This function is for gathering basic information about the HW, only.
3457 * Also some structs may be set up here. But most likely you want to
3458 * have that in core_init(), too.
3459 */
3460
3461 err = ssb_bus_powerup(bus, 0);
3462 if (err) {
3463 b43legacyerr(wl, "Bus powerup failed\n");
3464 goto out;
3465 }
3466 /* Get the PHY type. */
3467 if (dev->dev->id.revision >= 5) {
3468 u32 tmshigh;
3469
3470 tmshigh = ssb_read32(dev->dev, SSB_TMSHIGH);
3471 have_gphy = !!(tmshigh & B43legacy_TMSHIGH_GPHY);
3472 if (!have_gphy)
3473 have_bphy = 1;
3474 } else if (dev->dev->id.revision == 4)
3475 have_gphy = 1;
3476 else
3477 have_bphy = 1;
3478
3479 /* Initialize LEDs structs. */
3480 err = b43legacy_leds_init(dev);
3481 if (err)
3482 goto err_powerdown;
3483
3484 dev->phy.gmode = (have_gphy || have_bphy);
3485 tmp = dev->phy.gmode ? B43legacy_TMSLOW_GMODE : 0;
3486 b43legacy_wireless_core_reset(dev, tmp);
3487
3488 err = b43legacy_phy_versioning(dev);
3489 if (err)
3490 goto err_leds_exit;
3491 /* Check if this device supports multiband. */
3492 if (!pdev ||
3493 (pdev->device != 0x4312 &&
3494 pdev->device != 0x4319 &&
3495 pdev->device != 0x4324)) {
3496 /* No multiband support. */
3497 have_bphy = 0;
3498 have_gphy = 0;
3499 switch (dev->phy.type) {
3500 case B43legacy_PHYTYPE_B:
3501 have_bphy = 1;
3502 break;
3503 case B43legacy_PHYTYPE_G:
3504 have_gphy = 1;
3505 break;
3506 default:
3507 B43legacy_BUG_ON(1);
3508 }
3509 }
3510 dev->phy.gmode = (have_gphy || have_bphy);
3511 tmp = dev->phy.gmode ? B43legacy_TMSLOW_GMODE : 0;
3512 b43legacy_wireless_core_reset(dev, tmp);
3513
3514 err = b43legacy_validate_chipaccess(dev);
3515 if (err)
3516 goto err_leds_exit;
3517 err = b43legacy_setup_modes(dev, have_bphy, have_gphy);
3518 if (err)
3519 goto err_leds_exit;
3520
3521 /* Now set some default "current_dev" */
3522 if (!wl->current_dev)
3523 wl->current_dev = dev;
3524 INIT_WORK(&dev->restart_work, b43legacy_chip_reset);
3525
3526 b43legacy_radio_turn_off(dev);
3527 b43legacy_switch_analog(dev, 0);
3528 ssb_device_disable(dev->dev, 0);
3529 ssb_bus_may_powerdown(bus);
3530
3531out:
3532 return err;
3533
3534err_leds_exit:
3535 b43legacy_leds_exit(dev);
3536err_powerdown:
3537 ssb_bus_may_powerdown(bus);
3538 return err;
3539}
3540
3541static void b43legacy_one_core_detach(struct ssb_device *dev)
3542{
3543 struct b43legacy_wldev *wldev;
3544 struct b43legacy_wl *wl;
3545
3546 wldev = ssb_get_drvdata(dev);
3547 wl = wldev->wl;
3548 cancel_work_sync(&wldev->restart_work);
3549 b43legacy_debugfs_remove_device(wldev);
3550 b43legacy_wireless_core_detach(wldev);
3551 list_del(&wldev->list);
3552 wl->nr_devs--;
3553 ssb_set_drvdata(dev, NULL);
3554 kfree(wldev);
3555}
3556
3557static int b43legacy_one_core_attach(struct ssb_device *dev,
3558 struct b43legacy_wl *wl)
3559{
3560 struct b43legacy_wldev *wldev;
3561 struct pci_dev *pdev;
3562 int err = -ENOMEM;
3563
3564 if (!list_empty(&wl->devlist)) {
3565 /* We are not the first core on this chip. */
3566 pdev = dev->bus->host_pci;
3567 /* Only special chips support more than one wireless
3568 * core, although some of the other chips have more than
3569 * one wireless core as well. Check for this and
3570 * bail out early.
3571 */
3572 if (!pdev ||
3573 ((pdev->device != 0x4321) &&
3574 (pdev->device != 0x4313) &&
3575 (pdev->device != 0x431A))) {
3576 b43legacydbg(wl, "Ignoring unconnected 802.11 core\n");
3577 return -ENODEV;
3578 }
3579 }
3580
3581 wldev = kzalloc(sizeof(*wldev), GFP_KERNEL);
3582 if (!wldev)
3583 goto out;
3584
3585 wldev->dev = dev;
3586 wldev->wl = wl;
3587 b43legacy_set_status(wldev, B43legacy_STAT_UNINIT);
3588 wldev->bad_frames_preempt = modparam_bad_frames_preempt;
3589 tasklet_init(&wldev->isr_tasklet,
3590 (void (*)(unsigned long))b43legacy_interrupt_tasklet,
3591 (unsigned long)wldev);
3592 if (modparam_pio)
3593 wldev->__using_pio = 1;
3594 INIT_LIST_HEAD(&wldev->list);
3595
3596 err = b43legacy_wireless_core_attach(wldev);
3597 if (err)
3598 goto err_kfree_wldev;
3599
3600 list_add(&wldev->list, &wl->devlist);
3601 wl->nr_devs++;
3602 ssb_set_drvdata(dev, wldev);
3603 b43legacy_debugfs_add_device(wldev);
3604out:
3605 return err;
3606
3607err_kfree_wldev:
3608 kfree(wldev);
3609 return err;
3610}
3611
3612static void b43legacy_sprom_fixup(struct ssb_bus *bus)
3613{
3614 /* boardflags workarounds */
3615 if (bus->boardinfo.vendor == PCI_VENDOR_ID_APPLE &&
3616 bus->boardinfo.type == 0x4E &&
3617 bus->boardinfo.rev > 0x40)
3618 bus->sprom.r1.boardflags_lo |= B43legacy_BFL_PACTRL;
3619
3620 /* Convert Antennagain values to Q5.2 */
3621 if (bus->sprom.r1.antenna_gain_bg == 0xFF)
3622 bus->sprom.r1.antenna_gain_bg = 2; /* if unset, use 2 dBm */
3623 bus->sprom.r1.antenna_gain_bg <<= 2;
3624}
3625
3626static void b43legacy_wireless_exit(struct ssb_device *dev,
3627 struct b43legacy_wl *wl)
3628{
3629 struct ieee80211_hw *hw = wl->hw;
3630
3631 ssb_set_devtypedata(dev, NULL);
3632 ieee80211_free_hw(hw);
3633}
3634
3635static int b43legacy_wireless_init(struct ssb_device *dev)
3636{
3637 struct ssb_sprom *sprom = &dev->bus->sprom;
3638 struct ieee80211_hw *hw;
3639 struct b43legacy_wl *wl;
3640 int err = -ENOMEM;
3641
3642 b43legacy_sprom_fixup(dev->bus);
3643
3644 hw = ieee80211_alloc_hw(sizeof(*wl), &b43legacy_hw_ops);
3645 if (!hw) {
3646 b43legacyerr(NULL, "Could not allocate ieee80211 device\n");
3647 goto out;
3648 }
3649
3650 /* fill hw info */
3651 hw->flags = IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE |
3652 IEEE80211_HW_RX_INCLUDES_FCS;
3653 hw->max_signal = 100;
3654 hw->max_rssi = -110;
3655 hw->max_noise = -110;
3656 hw->queues = 1; /* FIXME: hardware has more queues */
3657 SET_IEEE80211_DEV(hw, dev->dev);
3658 if (is_valid_ether_addr(sprom->r1.et1mac))
3659 SET_IEEE80211_PERM_ADDR(hw, sprom->r1.et1mac);
3660 else
3661 SET_IEEE80211_PERM_ADDR(hw, sprom->r1.il0mac);
3662
3663 /* Get and initialize struct b43legacy_wl */
3664 wl = hw_to_b43legacy_wl(hw);
3665 memset(wl, 0, sizeof(*wl));
3666 wl->hw = hw;
3667 spin_lock_init(&wl->irq_lock);
3668 spin_lock_init(&wl->leds_lock);
3669 mutex_init(&wl->mutex);
3670 INIT_LIST_HEAD(&wl->devlist);
3671
3672 ssb_set_devtypedata(dev, wl);
3673 b43legacyinfo(wl, "Broadcom %04X WLAN found\n", dev->bus->chip_id);
3674 err = 0;
3675out:
3676 return err;
3677}
3678
3679static int b43legacy_probe(struct ssb_device *dev,
3680 const struct ssb_device_id *id)
3681{
3682 struct b43legacy_wl *wl;
3683 int err;
3684 int first = 0;
3685
3686 wl = ssb_get_devtypedata(dev);
3687 if (!wl) {
3688 /* Probing the first core - setup common struct b43legacy_wl */
3689 first = 1;
3690 err = b43legacy_wireless_init(dev);
3691 if (err)
3692 goto out;
3693 wl = ssb_get_devtypedata(dev);
3694 B43legacy_WARN_ON(!wl);
3695 }
3696 err = b43legacy_one_core_attach(dev, wl);
3697 if (err)
3698 goto err_wireless_exit;
3699
3700 if (first) {
3701 err = ieee80211_register_hw(wl->hw);
3702 if (err)
3703 goto err_one_core_detach;
3704 }
3705
3706out:
3707 return err;
3708
3709err_one_core_detach:
3710 b43legacy_one_core_detach(dev);
3711err_wireless_exit:
3712 if (first)
3713 b43legacy_wireless_exit(dev, wl);
3714 return err;
3715}
3716
3717static void b43legacy_remove(struct ssb_device *dev)
3718{
3719 struct b43legacy_wl *wl = ssb_get_devtypedata(dev);
3720 struct b43legacy_wldev *wldev = ssb_get_drvdata(dev);
3721
3722 B43legacy_WARN_ON(!wl);
3723 if (wl->current_dev == wldev)
3724 ieee80211_unregister_hw(wl->hw);
3725
3726 b43legacy_one_core_detach(dev);
3727
3728 if (list_empty(&wl->devlist))
3729 /* Last core on the chip unregistered.
3730 * We can destroy common struct b43legacy_wl.
3731 */
3732 b43legacy_wireless_exit(dev, wl);
3733}
3734
3735/* Perform a hardware reset. This can be called from any context. */
3736void b43legacy_controller_restart(struct b43legacy_wldev *dev,
3737 const char *reason)
3738{
3739 /* Must avoid requeueing, if we are in shutdown. */
3740 if (b43legacy_status(dev) < B43legacy_STAT_INITIALIZED)
3741 return;
3742 b43legacyinfo(dev->wl, "Controller RESET (%s) ...\n", reason);
3743 queue_work(dev->wl->hw->workqueue, &dev->restart_work);
3744}
3745
3746#ifdef CONFIG_PM
3747
3748static int b43legacy_suspend(struct ssb_device *dev, pm_message_t state)
3749{
3750 struct b43legacy_wldev *wldev = ssb_get_drvdata(dev);
3751 struct b43legacy_wl *wl = wldev->wl;
3752
3753 b43legacydbg(wl, "Suspending...\n");
3754
3755 mutex_lock(&wl->mutex);
3756 wldev->suspend_init_status = b43legacy_status(wldev);
3757 if (wldev->suspend_init_status >= B43legacy_STAT_STARTED)
3758 b43legacy_wireless_core_stop(wldev);
3759 if (wldev->suspend_init_status >= B43legacy_STAT_INITIALIZED)
3760 b43legacy_wireless_core_exit(wldev);
3761 mutex_unlock(&wl->mutex);
3762
3763 b43legacydbg(wl, "Device suspended.\n");
3764
3765 return 0;
3766}
3767
3768static int b43legacy_resume(struct ssb_device *dev)
3769{
3770 struct b43legacy_wldev *wldev = ssb_get_drvdata(dev);
3771 struct b43legacy_wl *wl = wldev->wl;
3772 int err = 0;
3773
3774 b43legacydbg(wl, "Resuming...\n");
3775
3776 mutex_lock(&wl->mutex);
3777 if (wldev->suspend_init_status >= B43legacy_STAT_INITIALIZED) {
3778 err = b43legacy_wireless_core_init(wldev);
3779 if (err) {
3780 b43legacyerr(wl, "Resume failed at core init\n");
3781 goto out;
3782 }
3783 }
3784 if (wldev->suspend_init_status >= B43legacy_STAT_STARTED) {
3785 err = b43legacy_wireless_core_start(wldev);
3786 if (err) {
3787 b43legacy_wireless_core_exit(wldev);
3788 b43legacyerr(wl, "Resume failed at core start\n");
3789 goto out;
3790 }
3791 }
3792 mutex_unlock(&wl->mutex);
3793
3794 b43legacydbg(wl, "Device resumed.\n");
3795out:
3796 return err;
3797}
3798
3799#else /* CONFIG_PM */
3800# define b43legacy_suspend NULL
3801# define b43legacy_resume NULL
3802#endif /* CONFIG_PM */
3803
3804static struct ssb_driver b43legacy_ssb_driver = {
3805 .name = KBUILD_MODNAME,
3806 .id_table = b43legacy_ssb_tbl,
3807 .probe = b43legacy_probe,
3808 .remove = b43legacy_remove,
3809 .suspend = b43legacy_suspend,
3810 .resume = b43legacy_resume,
3811};
3812
3813static int __init b43legacy_init(void)
3814{
3815 int err;
3816
3817 b43legacy_debugfs_init();
3818
3819 err = ssb_driver_register(&b43legacy_ssb_driver);
3820 if (err)
3821 goto err_dfs_exit;
3822
3823 return err;
3824
3825err_dfs_exit:
3826 b43legacy_debugfs_exit();
3827 return err;
3828}
3829
3830static void __exit b43legacy_exit(void)
3831{
3832 ssb_driver_unregister(&b43legacy_ssb_driver);
3833 b43legacy_debugfs_exit();
3834}
3835
3836module_init(b43legacy_init)
3837module_exit(b43legacy_exit)