• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/net/wireless/b43legacy/
1/*
2
3  Broadcom B43legacy wireless driver
4
5  Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>,
6		     Stefano Brivio <stefano.brivio@polimi.it>
7		     Michael Buesch <mbuesch@freenet.de>
8		     Danny van Dyk <kugelfang@gentoo.org>
9     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/pci.h>
34#include <linux/sched.h>
35#include <linux/slab.h>
36#include <linux/types.h>
37
38#include "b43legacy.h"
39#include "phy.h"
40#include "main.h"
41#include "radio.h"
42#include "ilt.h"
43
44
45static const s8 b43legacy_tssi2dbm_b_table[] = {
46	0x4D, 0x4C, 0x4B, 0x4A,
47	0x4A, 0x49, 0x48, 0x47,
48	0x47, 0x46, 0x45, 0x45,
49	0x44, 0x43, 0x42, 0x42,
50	0x41, 0x40, 0x3F, 0x3E,
51	0x3D, 0x3C, 0x3B, 0x3A,
52	0x39, 0x38, 0x37, 0x36,
53	0x35, 0x34, 0x32, 0x31,
54	0x30, 0x2F, 0x2D, 0x2C,
55	0x2B, 0x29, 0x28, 0x26,
56	0x25, 0x23, 0x21, 0x1F,
57	0x1D, 0x1A, 0x17, 0x14,
58	0x10, 0x0C, 0x06, 0x00,
59	  -7,   -7,   -7,   -7,
60	  -7,   -7,   -7,   -7,
61	  -7,   -7,   -7,   -7,
62};
63
64static const s8 b43legacy_tssi2dbm_g_table[] = {
65	 77,  77,  77,  76,
66	 76,  76,  75,  75,
67	 74,  74,  73,  73,
68	 73,  72,  72,  71,
69	 71,  70,  70,  69,
70	 68,  68,  67,  67,
71	 66,  65,  65,  64,
72	 63,  63,  62,  61,
73	 60,  59,  58,  57,
74	 56,  55,  54,  53,
75	 52,  50,  49,  47,
76	 45,  43,  40,  37,
77	 33,  28,  22,  14,
78	  5,  -7, -20, -20,
79	-20, -20, -20, -20,
80	-20, -20, -20, -20,
81};
82
83static void b43legacy_phy_initg(struct b43legacy_wldev *dev);
84
85
86static inline
87void b43legacy_voluntary_preempt(void)
88{
89	B43legacy_BUG_ON(!(!in_atomic() && !in_irq() &&
90			  !in_interrupt() && !irqs_disabled()));
91#ifndef CONFIG_PREEMPT
92	cond_resched();
93#endif /* CONFIG_PREEMPT */
94}
95
96/* Lock the PHY registers against concurrent access from the microcode.
97 * This lock is nonrecursive. */
98void b43legacy_phy_lock(struct b43legacy_wldev *dev)
99{
100#if B43legacy_DEBUG
101	B43legacy_WARN_ON(dev->phy.phy_locked);
102	dev->phy.phy_locked = 1;
103#endif
104
105	if (dev->dev->id.revision < 3) {
106		b43legacy_mac_suspend(dev);
107	} else {
108		if (!b43legacy_is_mode(dev->wl, NL80211_IFTYPE_AP))
109			b43legacy_power_saving_ctl_bits(dev, -1, 1);
110	}
111}
112
113void b43legacy_phy_unlock(struct b43legacy_wldev *dev)
114{
115#if B43legacy_DEBUG
116	B43legacy_WARN_ON(!dev->phy.phy_locked);
117	dev->phy.phy_locked = 0;
118#endif
119
120	if (dev->dev->id.revision < 3) {
121		b43legacy_mac_enable(dev);
122	} else {
123		if (!b43legacy_is_mode(dev->wl, NL80211_IFTYPE_AP))
124			b43legacy_power_saving_ctl_bits(dev, -1, -1);
125	}
126}
127
128u16 b43legacy_phy_read(struct b43legacy_wldev *dev, u16 offset)
129{
130	b43legacy_write16(dev, B43legacy_MMIO_PHY_CONTROL, offset);
131	return b43legacy_read16(dev, B43legacy_MMIO_PHY_DATA);
132}
133
134void b43legacy_phy_write(struct b43legacy_wldev *dev, u16 offset, u16 val)
135{
136	b43legacy_write16(dev, B43legacy_MMIO_PHY_CONTROL, offset);
137	mmiowb();
138	b43legacy_write16(dev, B43legacy_MMIO_PHY_DATA, val);
139}
140
141void b43legacy_phy_calibrate(struct b43legacy_wldev *dev)
142{
143	struct b43legacy_phy *phy = &dev->phy;
144
145	b43legacy_read32(dev, B43legacy_MMIO_MACCTL); /* Dummy read. */
146	if (phy->calibrated)
147		return;
148	if (phy->type == B43legacy_PHYTYPE_G && phy->rev == 1) {
149		b43legacy_wireless_core_reset(dev, 0);
150		b43legacy_phy_initg(dev);
151		b43legacy_wireless_core_reset(dev, B43legacy_TMSLOW_GMODE);
152	}
153	phy->calibrated = 1;
154}
155
156/* intialize B PHY power control
157 * as described in http://bcm-specs.sipsolutions.net/InitPowerControl
158 */
159static void b43legacy_phy_init_pctl(struct b43legacy_wldev *dev)
160{
161	struct b43legacy_phy *phy = &dev->phy;
162	u16 saved_batt = 0;
163	u16 saved_ratt = 0;
164	u16 saved_txctl1 = 0;
165	int must_reset_txpower = 0;
166
167	B43legacy_BUG_ON(!(phy->type == B43legacy_PHYTYPE_B ||
168			  phy->type == B43legacy_PHYTYPE_G));
169	if (is_bcm_board_vendor(dev) &&
170	    (dev->dev->bus->boardinfo.type == 0x0416))
171		return;
172
173	b43legacy_phy_write(dev, 0x0028, 0x8018);
174	b43legacy_write16(dev, 0x03E6, b43legacy_read16(dev, 0x03E6) & 0xFFDF);
175
176	if (phy->type == B43legacy_PHYTYPE_G) {
177		if (!phy->gmode)
178			return;
179		b43legacy_phy_write(dev, 0x047A, 0xC111);
180	}
181	if (phy->savedpctlreg != 0xFFFF)
182		return;
183#ifdef CONFIG_B43LEGACY_DEBUG
184	if (phy->manual_txpower_control)
185		return;
186#endif
187
188	if (phy->type == B43legacy_PHYTYPE_B &&
189	    phy->rev >= 2 &&
190	    phy->radio_ver == 0x2050)
191		b43legacy_radio_write16(dev, 0x0076,
192					b43legacy_radio_read16(dev, 0x0076)
193					| 0x0084);
194	else {
195		saved_batt = phy->bbatt;
196		saved_ratt = phy->rfatt;
197		saved_txctl1 = phy->txctl1;
198		if ((phy->radio_rev >= 6) && (phy->radio_rev <= 8)
199		    && 0)
200			b43legacy_radio_set_txpower_bg(dev, 0xB, 0x1F, 0);
201		else
202			b43legacy_radio_set_txpower_bg(dev, 0xB, 9, 0);
203		must_reset_txpower = 1;
204	}
205	b43legacy_dummy_transmission(dev);
206
207	phy->savedpctlreg = b43legacy_phy_read(dev, B43legacy_PHY_G_PCTL);
208
209	if (must_reset_txpower)
210		b43legacy_radio_set_txpower_bg(dev, saved_batt, saved_ratt,
211					       saved_txctl1);
212	else
213		b43legacy_radio_write16(dev, 0x0076, b43legacy_radio_read16(dev,
214					0x0076) & 0xFF7B);
215	b43legacy_radio_clear_tssi(dev);
216}
217
218static void b43legacy_phy_agcsetup(struct b43legacy_wldev *dev)
219{
220	struct b43legacy_phy *phy = &dev->phy;
221	u16 offset = 0x0000;
222
223	if (phy->rev == 1)
224		offset = 0x4C00;
225
226	b43legacy_ilt_write(dev, offset, 0x00FE);
227	b43legacy_ilt_write(dev, offset + 1, 0x000D);
228	b43legacy_ilt_write(dev, offset + 2, 0x0013);
229	b43legacy_ilt_write(dev, offset + 3, 0x0019);
230
231	if (phy->rev == 1) {
232		b43legacy_ilt_write(dev, 0x1800, 0x2710);
233		b43legacy_ilt_write(dev, 0x1801, 0x9B83);
234		b43legacy_ilt_write(dev, 0x1802, 0x9B83);
235		b43legacy_ilt_write(dev, 0x1803, 0x0F8D);
236		b43legacy_phy_write(dev, 0x0455, 0x0004);
237	}
238
239	b43legacy_phy_write(dev, 0x04A5, (b43legacy_phy_read(dev, 0x04A5)
240					  & 0x00FF) | 0x5700);
241	b43legacy_phy_write(dev, 0x041A, (b43legacy_phy_read(dev, 0x041A)
242					  & 0xFF80) | 0x000F);
243	b43legacy_phy_write(dev, 0x041A, (b43legacy_phy_read(dev, 0x041A)
244					  & 0xC07F) | 0x2B80);
245	b43legacy_phy_write(dev, 0x048C, (b43legacy_phy_read(dev, 0x048C)
246					  & 0xF0FF) | 0x0300);
247
248	b43legacy_radio_write16(dev, 0x007A,
249				b43legacy_radio_read16(dev, 0x007A)
250				| 0x0008);
251
252	b43legacy_phy_write(dev, 0x04A0, (b43legacy_phy_read(dev, 0x04A0)
253			    & 0xFFF0) | 0x0008);
254	b43legacy_phy_write(dev, 0x04A1, (b43legacy_phy_read(dev, 0x04A1)
255			    & 0xF0FF) | 0x0600);
256	b43legacy_phy_write(dev, 0x04A2, (b43legacy_phy_read(dev, 0x04A2)
257			    & 0xF0FF) | 0x0700);
258	b43legacy_phy_write(dev, 0x04A0, (b43legacy_phy_read(dev, 0x04A0)
259			    & 0xF0FF) | 0x0100);
260
261	if (phy->rev == 1)
262		b43legacy_phy_write(dev, 0x04A2,
263				    (b43legacy_phy_read(dev, 0x04A2)
264				    & 0xFFF0) | 0x0007);
265
266	b43legacy_phy_write(dev, 0x0488, (b43legacy_phy_read(dev, 0x0488)
267			    & 0xFF00) | 0x001C);
268	b43legacy_phy_write(dev, 0x0488, (b43legacy_phy_read(dev, 0x0488)
269			    & 0xC0FF) | 0x0200);
270	b43legacy_phy_write(dev, 0x0496, (b43legacy_phy_read(dev, 0x0496)
271			    & 0xFF00) | 0x001C);
272	b43legacy_phy_write(dev, 0x0489, (b43legacy_phy_read(dev, 0x0489)
273			    & 0xFF00) | 0x0020);
274	b43legacy_phy_write(dev, 0x0489, (b43legacy_phy_read(dev, 0x0489)
275			    & 0xC0FF) | 0x0200);
276	b43legacy_phy_write(dev, 0x0482, (b43legacy_phy_read(dev, 0x0482)
277			    & 0xFF00) | 0x002E);
278	b43legacy_phy_write(dev, 0x0496, (b43legacy_phy_read(dev, 0x0496)
279			    & 0x00FF) | 0x1A00);
280	b43legacy_phy_write(dev, 0x0481, (b43legacy_phy_read(dev, 0x0481)
281			    & 0xFF00) | 0x0028);
282	b43legacy_phy_write(dev, 0x0481, (b43legacy_phy_read(dev, 0x0481)
283			    & 0x00FF) | 0x2C00);
284
285	if (phy->rev == 1) {
286		b43legacy_phy_write(dev, 0x0430, 0x092B);
287		b43legacy_phy_write(dev, 0x041B,
288				    (b43legacy_phy_read(dev, 0x041B)
289				    & 0xFFE1) | 0x0002);
290	} else {
291		b43legacy_phy_write(dev, 0x041B,
292				    b43legacy_phy_read(dev, 0x041B) & 0xFFE1);
293		b43legacy_phy_write(dev, 0x041F, 0x287A);
294		b43legacy_phy_write(dev, 0x0420,
295				    (b43legacy_phy_read(dev, 0x0420)
296				    & 0xFFF0) | 0x0004);
297	}
298
299	if (phy->rev > 2) {
300		b43legacy_phy_write(dev, 0x0422, 0x287A);
301		b43legacy_phy_write(dev, 0x0420,
302				    (b43legacy_phy_read(dev, 0x0420)
303				    & 0x0FFF) | 0x3000);
304	}
305
306	b43legacy_phy_write(dev, 0x04A8, (b43legacy_phy_read(dev, 0x04A8)
307			    & 0x8080) | 0x7874);
308	b43legacy_phy_write(dev, 0x048E, 0x1C00);
309
310	if (phy->rev == 1) {
311		b43legacy_phy_write(dev, 0x04AB,
312				    (b43legacy_phy_read(dev, 0x04AB)
313				    & 0xF0FF) | 0x0600);
314		b43legacy_phy_write(dev, 0x048B, 0x005E);
315		b43legacy_phy_write(dev, 0x048C,
316				    (b43legacy_phy_read(dev, 0x048C) & 0xFF00)
317				    | 0x001E);
318		b43legacy_phy_write(dev, 0x048D, 0x0002);
319	}
320
321	b43legacy_ilt_write(dev, offset + 0x0800, 0);
322	b43legacy_ilt_write(dev, offset + 0x0801, 7);
323	b43legacy_ilt_write(dev, offset + 0x0802, 16);
324	b43legacy_ilt_write(dev, offset + 0x0803, 28);
325
326	if (phy->rev >= 6) {
327		b43legacy_phy_write(dev, 0x0426,
328				    (b43legacy_phy_read(dev, 0x0426) & 0xFFFC));
329		b43legacy_phy_write(dev, 0x0426,
330				    (b43legacy_phy_read(dev, 0x0426) & 0xEFFF));
331	}
332}
333
334static void b43legacy_phy_setupg(struct b43legacy_wldev *dev)
335{
336	struct b43legacy_phy *phy = &dev->phy;
337	u16 i;
338
339	B43legacy_BUG_ON(phy->type != B43legacy_PHYTYPE_G);
340	if (phy->rev == 1) {
341		b43legacy_phy_write(dev, 0x0406, 0x4F19);
342		b43legacy_phy_write(dev, B43legacy_PHY_G_CRS,
343				    (b43legacy_phy_read(dev,
344				    B43legacy_PHY_G_CRS) & 0xFC3F) | 0x0340);
345		b43legacy_phy_write(dev, 0x042C, 0x005A);
346		b43legacy_phy_write(dev, 0x0427, 0x001A);
347
348		for (i = 0; i < B43legacy_ILT_FINEFREQG_SIZE; i++)
349			b43legacy_ilt_write(dev, 0x5800 + i,
350					    b43legacy_ilt_finefreqg[i]);
351		for (i = 0; i < B43legacy_ILT_NOISEG1_SIZE; i++)
352			b43legacy_ilt_write(dev, 0x1800 + i,
353					    b43legacy_ilt_noiseg1[i]);
354		for (i = 0; i < B43legacy_ILT_ROTOR_SIZE; i++)
355			b43legacy_ilt_write32(dev, 0x2000 + i,
356					      b43legacy_ilt_rotor[i]);
357	} else {
358		/* nrssi values are signed 6-bit values. Why 0x7654 here? */
359		b43legacy_nrssi_hw_write(dev, 0xBA98, (s16)0x7654);
360
361		if (phy->rev == 2) {
362			b43legacy_phy_write(dev, 0x04C0, 0x1861);
363			b43legacy_phy_write(dev, 0x04C1, 0x0271);
364		} else if (phy->rev > 2) {
365			b43legacy_phy_write(dev, 0x04C0, 0x0098);
366			b43legacy_phy_write(dev, 0x04C1, 0x0070);
367			b43legacy_phy_write(dev, 0x04C9, 0x0080);
368		}
369		b43legacy_phy_write(dev, 0x042B, b43legacy_phy_read(dev,
370				    0x042B) | 0x800);
371
372		for (i = 0; i < 64; i++)
373			b43legacy_ilt_write(dev, 0x4000 + i, i);
374		for (i = 0; i < B43legacy_ILT_NOISEG2_SIZE; i++)
375			b43legacy_ilt_write(dev, 0x1800 + i,
376					    b43legacy_ilt_noiseg2[i]);
377	}
378
379	if (phy->rev <= 2)
380		for (i = 0; i < B43legacy_ILT_NOISESCALEG_SIZE; i++)
381			b43legacy_ilt_write(dev, 0x1400 + i,
382					    b43legacy_ilt_noisescaleg1[i]);
383	else if ((phy->rev >= 7) && (b43legacy_phy_read(dev, 0x0449) & 0x0200))
384		for (i = 0; i < B43legacy_ILT_NOISESCALEG_SIZE; i++)
385			b43legacy_ilt_write(dev, 0x1400 + i,
386					    b43legacy_ilt_noisescaleg3[i]);
387	else
388		for (i = 0; i < B43legacy_ILT_NOISESCALEG_SIZE; i++)
389			b43legacy_ilt_write(dev, 0x1400 + i,
390					    b43legacy_ilt_noisescaleg2[i]);
391
392	if (phy->rev == 2)
393		for (i = 0; i < B43legacy_ILT_SIGMASQR_SIZE; i++)
394			b43legacy_ilt_write(dev, 0x5000 + i,
395					    b43legacy_ilt_sigmasqr1[i]);
396	else if ((phy->rev > 2) && (phy->rev <= 8))
397		for (i = 0; i < B43legacy_ILT_SIGMASQR_SIZE; i++)
398			b43legacy_ilt_write(dev, 0x5000 + i,
399					    b43legacy_ilt_sigmasqr2[i]);
400
401	if (phy->rev == 1) {
402		for (i = 0; i < B43legacy_ILT_RETARD_SIZE; i++)
403			b43legacy_ilt_write32(dev, 0x2400 + i,
404					      b43legacy_ilt_retard[i]);
405		for (i = 4; i < 20; i++)
406			b43legacy_ilt_write(dev, 0x5400 + i, 0x0020);
407		b43legacy_phy_agcsetup(dev);
408
409		if (is_bcm_board_vendor(dev) &&
410		    (dev->dev->bus->boardinfo.type == 0x0416) &&
411		    (dev->dev->bus->boardinfo.rev == 0x0017))
412			return;
413
414		b43legacy_ilt_write(dev, 0x5001, 0x0002);
415		b43legacy_ilt_write(dev, 0x5002, 0x0001);
416	} else {
417		for (i = 0; i <= 0x20; i++)
418			b43legacy_ilt_write(dev, 0x1000 + i, 0x0820);
419		b43legacy_phy_agcsetup(dev);
420		b43legacy_phy_read(dev, 0x0400); /* dummy read */
421		b43legacy_phy_write(dev, 0x0403, 0x1000);
422		b43legacy_ilt_write(dev, 0x3C02, 0x000F);
423		b43legacy_ilt_write(dev, 0x3C03, 0x0014);
424
425		if (is_bcm_board_vendor(dev) &&
426		    (dev->dev->bus->boardinfo.type == 0x0416) &&
427		    (dev->dev->bus->boardinfo.rev == 0x0017))
428			return;
429
430		b43legacy_ilt_write(dev, 0x0401, 0x0002);
431		b43legacy_ilt_write(dev, 0x0402, 0x0001);
432	}
433}
434
435/* Initialize the APHY portion of a GPHY. */
436static void b43legacy_phy_inita(struct b43legacy_wldev *dev)
437{
438
439	might_sleep();
440
441	b43legacy_phy_setupg(dev);
442	if (dev->dev->bus->sprom.boardflags_lo & B43legacy_BFL_PACTRL)
443		b43legacy_phy_write(dev, 0x046E, 0x03CF);
444}
445
446static void b43legacy_phy_initb2(struct b43legacy_wldev *dev)
447{
448	struct b43legacy_phy *phy = &dev->phy;
449	u16 offset;
450	int val;
451
452	b43legacy_write16(dev, 0x03EC, 0x3F22);
453	b43legacy_phy_write(dev, 0x0020, 0x301C);
454	b43legacy_phy_write(dev, 0x0026, 0x0000);
455	b43legacy_phy_write(dev, 0x0030, 0x00C6);
456	b43legacy_phy_write(dev, 0x0088, 0x3E00);
457	val = 0x3C3D;
458	for (offset = 0x0089; offset < 0x00A7; offset++) {
459		b43legacy_phy_write(dev, offset, val);
460		val -= 0x0202;
461	}
462	b43legacy_phy_write(dev, 0x03E4, 0x3000);
463	b43legacy_radio_selectchannel(dev, phy->channel, 0);
464	if (phy->radio_ver != 0x2050) {
465		b43legacy_radio_write16(dev, 0x0075, 0x0080);
466		b43legacy_radio_write16(dev, 0x0079, 0x0081);
467	}
468	b43legacy_radio_write16(dev, 0x0050, 0x0020);
469	b43legacy_radio_write16(dev, 0x0050, 0x0023);
470	if (phy->radio_ver == 0x2050) {
471		b43legacy_radio_write16(dev, 0x0050, 0x0020);
472		b43legacy_radio_write16(dev, 0x005A, 0x0070);
473		b43legacy_radio_write16(dev, 0x005B, 0x007B);
474		b43legacy_radio_write16(dev, 0x005C, 0x00B0);
475		b43legacy_radio_write16(dev, 0x007A, 0x000F);
476		b43legacy_phy_write(dev, 0x0038, 0x0677);
477		b43legacy_radio_init2050(dev);
478	}
479	b43legacy_phy_write(dev, 0x0014, 0x0080);
480	b43legacy_phy_write(dev, 0x0032, 0x00CA);
481	b43legacy_phy_write(dev, 0x0032, 0x00CC);
482	b43legacy_phy_write(dev, 0x0035, 0x07C2);
483	b43legacy_phy_lo_b_measure(dev);
484	b43legacy_phy_write(dev, 0x0026, 0xCC00);
485	if (phy->radio_ver != 0x2050)
486		b43legacy_phy_write(dev, 0x0026, 0xCE00);
487	b43legacy_write16(dev, B43legacy_MMIO_CHANNEL_EXT, 0x1000);
488	b43legacy_phy_write(dev, 0x002A, 0x88A3);
489	if (phy->radio_ver != 0x2050)
490		b43legacy_phy_write(dev, 0x002A, 0x88C2);
491	b43legacy_radio_set_txpower_bg(dev, 0xFFFF, 0xFFFF, 0xFFFF);
492	b43legacy_phy_init_pctl(dev);
493}
494
495static void b43legacy_phy_initb4(struct b43legacy_wldev *dev)
496{
497	struct b43legacy_phy *phy = &dev->phy;
498	u16 offset;
499	u16 val;
500
501	b43legacy_write16(dev, 0x03EC, 0x3F22);
502	b43legacy_phy_write(dev, 0x0020, 0x301C);
503	b43legacy_phy_write(dev, 0x0026, 0x0000);
504	b43legacy_phy_write(dev, 0x0030, 0x00C6);
505	b43legacy_phy_write(dev, 0x0088, 0x3E00);
506	val = 0x3C3D;
507	for (offset = 0x0089; offset < 0x00A7; offset++) {
508		b43legacy_phy_write(dev, offset, val);
509		val -= 0x0202;
510	}
511	b43legacy_phy_write(dev, 0x03E4, 0x3000);
512	b43legacy_radio_selectchannel(dev, phy->channel, 0);
513	if (phy->radio_ver != 0x2050) {
514		b43legacy_radio_write16(dev, 0x0075, 0x0080);
515		b43legacy_radio_write16(dev, 0x0079, 0x0081);
516	}
517	b43legacy_radio_write16(dev, 0x0050, 0x0020);
518	b43legacy_radio_write16(dev, 0x0050, 0x0023);
519	if (phy->radio_ver == 0x2050) {
520		b43legacy_radio_write16(dev, 0x0050, 0x0020);
521		b43legacy_radio_write16(dev, 0x005A, 0x0070);
522		b43legacy_radio_write16(dev, 0x005B, 0x007B);
523		b43legacy_radio_write16(dev, 0x005C, 0x00B0);
524		b43legacy_radio_write16(dev, 0x007A, 0x000F);
525		b43legacy_phy_write(dev, 0x0038, 0x0677);
526		b43legacy_radio_init2050(dev);
527	}
528	b43legacy_phy_write(dev, 0x0014, 0x0080);
529	b43legacy_phy_write(dev, 0x0032, 0x00CA);
530	if (phy->radio_ver == 0x2050)
531		b43legacy_phy_write(dev, 0x0032, 0x00E0);
532	b43legacy_phy_write(dev, 0x0035, 0x07C2);
533
534	b43legacy_phy_lo_b_measure(dev);
535
536	b43legacy_phy_write(dev, 0x0026, 0xCC00);
537	if (phy->radio_ver == 0x2050)
538		b43legacy_phy_write(dev, 0x0026, 0xCE00);
539	b43legacy_write16(dev, B43legacy_MMIO_CHANNEL_EXT, 0x1100);
540	b43legacy_phy_write(dev, 0x002A, 0x88A3);
541	if (phy->radio_ver == 0x2050)
542		b43legacy_phy_write(dev, 0x002A, 0x88C2);
543	b43legacy_radio_set_txpower_bg(dev, 0xFFFF, 0xFFFF, 0xFFFF);
544	if (dev->dev->bus->sprom.boardflags_lo & B43legacy_BFL_RSSI) {
545		b43legacy_calc_nrssi_slope(dev);
546		b43legacy_calc_nrssi_threshold(dev);
547	}
548	b43legacy_phy_init_pctl(dev);
549}
550
551static void b43legacy_phy_initb5(struct b43legacy_wldev *dev)
552{
553	struct b43legacy_phy *phy = &dev->phy;
554	u16 offset;
555	u16 value;
556	u8 old_channel;
557
558	if (phy->analog == 1)
559		b43legacy_radio_write16(dev, 0x007A,
560					b43legacy_radio_read16(dev, 0x007A)
561					| 0x0050);
562	if (!is_bcm_board_vendor(dev) &&
563	    (dev->dev->bus->boardinfo.type != 0x0416)) {
564		value = 0x2120;
565		for (offset = 0x00A8 ; offset < 0x00C7; offset++) {
566			b43legacy_phy_write(dev, offset, value);
567			value += 0x0202;
568		}
569	}
570	b43legacy_phy_write(dev, 0x0035,
571			    (b43legacy_phy_read(dev, 0x0035) & 0xF0FF)
572			    | 0x0700);
573	if (phy->radio_ver == 0x2050)
574		b43legacy_phy_write(dev, 0x0038, 0x0667);
575
576	if (phy->gmode) {
577		if (phy->radio_ver == 0x2050) {
578			b43legacy_radio_write16(dev, 0x007A,
579					b43legacy_radio_read16(dev, 0x007A)
580					| 0x0020);
581			b43legacy_radio_write16(dev, 0x0051,
582					b43legacy_radio_read16(dev, 0x0051)
583					| 0x0004);
584		}
585		b43legacy_write16(dev, B43legacy_MMIO_PHY_RADIO, 0x0000);
586
587		b43legacy_phy_write(dev, 0x0802, b43legacy_phy_read(dev, 0x0802)
588				    | 0x0100);
589		b43legacy_phy_write(dev, 0x042B, b43legacy_phy_read(dev, 0x042B)
590				    | 0x2000);
591
592		b43legacy_phy_write(dev, 0x001C, 0x186A);
593
594		b43legacy_phy_write(dev, 0x0013, (b43legacy_phy_read(dev,
595				    0x0013) & 0x00FF) | 0x1900);
596		b43legacy_phy_write(dev, 0x0035, (b43legacy_phy_read(dev,
597				    0x0035) & 0xFFC0) | 0x0064);
598		b43legacy_phy_write(dev, 0x005D, (b43legacy_phy_read(dev,
599				    0x005D) & 0xFF80) | 0x000A);
600		b43legacy_phy_write(dev, 0x5B, 0x0000);
601		b43legacy_phy_write(dev, 0x5C, 0x0000);
602	}
603
604	if (dev->bad_frames_preempt)
605		b43legacy_phy_write(dev, B43legacy_PHY_RADIO_BITFIELD,
606				    b43legacy_phy_read(dev,
607				    B43legacy_PHY_RADIO_BITFIELD) | (1 << 12));
608
609	if (phy->analog == 1) {
610		b43legacy_phy_write(dev, 0x0026, 0xCE00);
611		b43legacy_phy_write(dev, 0x0021, 0x3763);
612		b43legacy_phy_write(dev, 0x0022, 0x1BC3);
613		b43legacy_phy_write(dev, 0x0023, 0x06F9);
614		b43legacy_phy_write(dev, 0x0024, 0x037E);
615	} else
616		b43legacy_phy_write(dev, 0x0026, 0xCC00);
617	b43legacy_phy_write(dev, 0x0030, 0x00C6);
618	b43legacy_write16(dev, 0x03EC, 0x3F22);
619
620	if (phy->analog == 1)
621		b43legacy_phy_write(dev, 0x0020, 0x3E1C);
622	else
623		b43legacy_phy_write(dev, 0x0020, 0x301C);
624
625	if (phy->analog == 0)
626		b43legacy_write16(dev, 0x03E4, 0x3000);
627
628	old_channel = (phy->channel == 0xFF) ? 1 : phy->channel;
629	/* Force to channel 7, even if not supported. */
630	b43legacy_radio_selectchannel(dev, 7, 0);
631
632	if (phy->radio_ver != 0x2050) {
633		b43legacy_radio_write16(dev, 0x0075, 0x0080);
634		b43legacy_radio_write16(dev, 0x0079, 0x0081);
635	}
636
637	b43legacy_radio_write16(dev, 0x0050, 0x0020);
638	b43legacy_radio_write16(dev, 0x0050, 0x0023);
639
640	if (phy->radio_ver == 0x2050) {
641		b43legacy_radio_write16(dev, 0x0050, 0x0020);
642		b43legacy_radio_write16(dev, 0x005A, 0x0070);
643	}
644
645	b43legacy_radio_write16(dev, 0x005B, 0x007B);
646	b43legacy_radio_write16(dev, 0x005C, 0x00B0);
647
648	b43legacy_radio_write16(dev, 0x007A, b43legacy_radio_read16(dev,
649				0x007A) | 0x0007);
650
651	b43legacy_radio_selectchannel(dev, old_channel, 0);
652
653	b43legacy_phy_write(dev, 0x0014, 0x0080);
654	b43legacy_phy_write(dev, 0x0032, 0x00CA);
655	b43legacy_phy_write(dev, 0x002A, 0x88A3);
656
657	b43legacy_radio_set_txpower_bg(dev, 0xFFFF, 0xFFFF, 0xFFFF);
658
659	if (phy->radio_ver == 0x2050)
660		b43legacy_radio_write16(dev, 0x005D, 0x000D);
661
662	b43legacy_write16(dev, 0x03E4, (b43legacy_read16(dev, 0x03E4) &
663			  0xFFC0) | 0x0004);
664}
665
666static void b43legacy_phy_initb6(struct b43legacy_wldev *dev)
667{
668	struct b43legacy_phy *phy = &dev->phy;
669	u16 offset;
670	u16 val;
671	u8 old_channel;
672
673	b43legacy_phy_write(dev, 0x003E, 0x817A);
674	b43legacy_radio_write16(dev, 0x007A,
675				(b43legacy_radio_read16(dev, 0x007A) | 0x0058));
676	if (phy->radio_rev == 4 ||
677	     phy->radio_rev == 5) {
678		b43legacy_radio_write16(dev, 0x0051, 0x0037);
679		b43legacy_radio_write16(dev, 0x0052, 0x0070);
680		b43legacy_radio_write16(dev, 0x0053, 0x00B3);
681		b43legacy_radio_write16(dev, 0x0054, 0x009B);
682		b43legacy_radio_write16(dev, 0x005A, 0x0088);
683		b43legacy_radio_write16(dev, 0x005B, 0x0088);
684		b43legacy_radio_write16(dev, 0x005D, 0x0088);
685		b43legacy_radio_write16(dev, 0x005E, 0x0088);
686		b43legacy_radio_write16(dev, 0x007D, 0x0088);
687		b43legacy_shm_write32(dev, B43legacy_SHM_SHARED,
688				      B43legacy_UCODEFLAGS_OFFSET,
689				      (b43legacy_shm_read32(dev,
690				      B43legacy_SHM_SHARED,
691				      B43legacy_UCODEFLAGS_OFFSET)
692				      | 0x00000200));
693	}
694	if (phy->radio_rev == 8) {
695		b43legacy_radio_write16(dev, 0x0051, 0x0000);
696		b43legacy_radio_write16(dev, 0x0052, 0x0040);
697		b43legacy_radio_write16(dev, 0x0053, 0x00B7);
698		b43legacy_radio_write16(dev, 0x0054, 0x0098);
699		b43legacy_radio_write16(dev, 0x005A, 0x0088);
700		b43legacy_radio_write16(dev, 0x005B, 0x006B);
701		b43legacy_radio_write16(dev, 0x005C, 0x000F);
702		if (dev->dev->bus->sprom.boardflags_lo & 0x8000) {
703			b43legacy_radio_write16(dev, 0x005D, 0x00FA);
704			b43legacy_radio_write16(dev, 0x005E, 0x00D8);
705		} else {
706			b43legacy_radio_write16(dev, 0x005D, 0x00F5);
707			b43legacy_radio_write16(dev, 0x005E, 0x00B8);
708		}
709		b43legacy_radio_write16(dev, 0x0073, 0x0003);
710		b43legacy_radio_write16(dev, 0x007D, 0x00A8);
711		b43legacy_radio_write16(dev, 0x007C, 0x0001);
712		b43legacy_radio_write16(dev, 0x007E, 0x0008);
713	}
714	val = 0x1E1F;
715	for (offset = 0x0088; offset < 0x0098; offset++) {
716		b43legacy_phy_write(dev, offset, val);
717		val -= 0x0202;
718	}
719	val = 0x3E3F;
720	for (offset = 0x0098; offset < 0x00A8; offset++) {
721		b43legacy_phy_write(dev, offset, val);
722		val -= 0x0202;
723	}
724	val = 0x2120;
725	for (offset = 0x00A8; offset < 0x00C8; offset++) {
726		b43legacy_phy_write(dev, offset, (val & 0x3F3F));
727		val += 0x0202;
728	}
729	if (phy->type == B43legacy_PHYTYPE_G) {
730		b43legacy_radio_write16(dev, 0x007A,
731					b43legacy_radio_read16(dev, 0x007A) |
732					0x0020);
733		b43legacy_radio_write16(dev, 0x0051,
734					b43legacy_radio_read16(dev, 0x0051) |
735					0x0004);
736		b43legacy_phy_write(dev, 0x0802,
737				    b43legacy_phy_read(dev, 0x0802) | 0x0100);
738		b43legacy_phy_write(dev, 0x042B,
739				    b43legacy_phy_read(dev, 0x042B) | 0x2000);
740		b43legacy_phy_write(dev, 0x5B, 0x0000);
741		b43legacy_phy_write(dev, 0x5C, 0x0000);
742	}
743
744	old_channel = phy->channel;
745	if (old_channel >= 8)
746		b43legacy_radio_selectchannel(dev, 1, 0);
747	else
748		b43legacy_radio_selectchannel(dev, 13, 0);
749
750	b43legacy_radio_write16(dev, 0x0050, 0x0020);
751	b43legacy_radio_write16(dev, 0x0050, 0x0023);
752	udelay(40);
753	if (phy->radio_rev < 6 || phy->radio_rev == 8) {
754		b43legacy_radio_write16(dev, 0x007C,
755					(b43legacy_radio_read16(dev, 0x007C)
756					| 0x0002));
757		b43legacy_radio_write16(dev, 0x0050, 0x0020);
758	}
759	if (phy->radio_rev <= 2) {
760		b43legacy_radio_write16(dev, 0x0050, 0x0020);
761		b43legacy_radio_write16(dev, 0x005A, 0x0070);
762		b43legacy_radio_write16(dev, 0x005B, 0x007B);
763		b43legacy_radio_write16(dev, 0x005C, 0x00B0);
764	}
765	b43legacy_radio_write16(dev, 0x007A,
766				(b43legacy_radio_read16(dev,
767				0x007A) & 0x00F8) | 0x0007);
768
769	b43legacy_radio_selectchannel(dev, old_channel, 0);
770
771	b43legacy_phy_write(dev, 0x0014, 0x0200);
772	if (phy->radio_rev >= 6)
773		b43legacy_phy_write(dev, 0x002A, 0x88C2);
774	else
775		b43legacy_phy_write(dev, 0x002A, 0x8AC0);
776	b43legacy_phy_write(dev, 0x0038, 0x0668);
777	b43legacy_radio_set_txpower_bg(dev, 0xFFFF, 0xFFFF, 0xFFFF);
778	if (phy->radio_rev == 4 || phy->radio_rev == 5)
779		b43legacy_phy_write(dev, 0x005D, (b43legacy_phy_read(dev,
780				    0x005D) & 0xFF80) | 0x0003);
781	if (phy->radio_rev <= 2)
782		b43legacy_radio_write16(dev, 0x005D, 0x000D);
783
784	if (phy->analog == 4) {
785		b43legacy_write16(dev, 0x03E4, 0x0009);
786		b43legacy_phy_write(dev, 0x61, b43legacy_phy_read(dev, 0x61)
787				    & 0xFFF);
788	} else
789		b43legacy_phy_write(dev, 0x0002, (b43legacy_phy_read(dev,
790				    0x0002) & 0xFFC0) | 0x0004);
791	if (phy->type == B43legacy_PHYTYPE_G)
792		b43legacy_write16(dev, 0x03E6, 0x0);
793	if (phy->type == B43legacy_PHYTYPE_B) {
794		b43legacy_write16(dev, 0x03E6, 0x8140);
795		b43legacy_phy_write(dev, 0x0016, 0x0410);
796		b43legacy_phy_write(dev, 0x0017, 0x0820);
797		b43legacy_phy_write(dev, 0x0062, 0x0007);
798		b43legacy_radio_init2050(dev);
799		b43legacy_phy_lo_g_measure(dev);
800		if (dev->dev->bus->sprom.boardflags_lo &
801		    B43legacy_BFL_RSSI) {
802			b43legacy_calc_nrssi_slope(dev);
803			b43legacy_calc_nrssi_threshold(dev);
804		}
805		b43legacy_phy_init_pctl(dev);
806	}
807}
808
809static void b43legacy_calc_loopback_gain(struct b43legacy_wldev *dev)
810{
811	struct b43legacy_phy *phy = &dev->phy;
812	u16 backup_phy[15] = {0};
813	u16 backup_radio[3];
814	u16 backup_bband;
815	u16 i;
816	u16 loop1_cnt;
817	u16 loop1_done;
818	u16 loop1_omitted;
819	u16 loop2_done;
820
821	backup_phy[0] = b43legacy_phy_read(dev, 0x0429);
822	backup_phy[1] = b43legacy_phy_read(dev, 0x0001);
823	backup_phy[2] = b43legacy_phy_read(dev, 0x0811);
824	backup_phy[3] = b43legacy_phy_read(dev, 0x0812);
825	if (phy->rev != 1) {
826		backup_phy[4] = b43legacy_phy_read(dev, 0x0814);
827		backup_phy[5] = b43legacy_phy_read(dev, 0x0815);
828	}
829	backup_phy[6] = b43legacy_phy_read(dev, 0x005A);
830	backup_phy[7] = b43legacy_phy_read(dev, 0x0059);
831	backup_phy[8] = b43legacy_phy_read(dev, 0x0058);
832	backup_phy[9] = b43legacy_phy_read(dev, 0x000A);
833	backup_phy[10] = b43legacy_phy_read(dev, 0x0003);
834	backup_phy[11] = b43legacy_phy_read(dev, 0x080F);
835	backup_phy[12] = b43legacy_phy_read(dev, 0x0810);
836	backup_phy[13] = b43legacy_phy_read(dev, 0x002B);
837	backup_phy[14] = b43legacy_phy_read(dev, 0x0015);
838	b43legacy_phy_read(dev, 0x002D); /* dummy read */
839	backup_bband = phy->bbatt;
840	backup_radio[0] = b43legacy_radio_read16(dev, 0x0052);
841	backup_radio[1] = b43legacy_radio_read16(dev, 0x0043);
842	backup_radio[2] = b43legacy_radio_read16(dev, 0x007A);
843
844	b43legacy_phy_write(dev, 0x0429,
845			    b43legacy_phy_read(dev, 0x0429) & 0x3FFF);
846	b43legacy_phy_write(dev, 0x0001,
847			    b43legacy_phy_read(dev, 0x0001) & 0x8000);
848	b43legacy_phy_write(dev, 0x0811,
849			    b43legacy_phy_read(dev, 0x0811) | 0x0002);
850	b43legacy_phy_write(dev, 0x0812,
851			    b43legacy_phy_read(dev, 0x0812) & 0xFFFD);
852	b43legacy_phy_write(dev, 0x0811,
853			    b43legacy_phy_read(dev, 0x0811) | 0x0001);
854	b43legacy_phy_write(dev, 0x0812,
855			    b43legacy_phy_read(dev, 0x0812) & 0xFFFE);
856	if (phy->rev != 1) {
857		b43legacy_phy_write(dev, 0x0814,
858				    b43legacy_phy_read(dev, 0x0814) | 0x0001);
859		b43legacy_phy_write(dev, 0x0815,
860				    b43legacy_phy_read(dev, 0x0815) & 0xFFFE);
861		b43legacy_phy_write(dev, 0x0814,
862				    b43legacy_phy_read(dev, 0x0814) | 0x0002);
863		b43legacy_phy_write(dev, 0x0815,
864				    b43legacy_phy_read(dev, 0x0815) & 0xFFFD);
865	}
866	b43legacy_phy_write(dev, 0x0811, b43legacy_phy_read(dev, 0x0811) |
867			    0x000C);
868	b43legacy_phy_write(dev, 0x0812, b43legacy_phy_read(dev, 0x0812) |
869			    0x000C);
870
871	b43legacy_phy_write(dev, 0x0811, (b43legacy_phy_read(dev, 0x0811)
872			    & 0xFFCF) | 0x0030);
873	b43legacy_phy_write(dev, 0x0812, (b43legacy_phy_read(dev, 0x0812)
874			    & 0xFFCF) | 0x0010);
875
876	b43legacy_phy_write(dev, 0x005A, 0x0780);
877	b43legacy_phy_write(dev, 0x0059, 0xC810);
878	b43legacy_phy_write(dev, 0x0058, 0x000D);
879	if (phy->analog == 0)
880		b43legacy_phy_write(dev, 0x0003, 0x0122);
881	else
882		b43legacy_phy_write(dev, 0x000A,
883				    b43legacy_phy_read(dev, 0x000A)
884				    | 0x2000);
885	if (phy->rev != 1) {
886		b43legacy_phy_write(dev, 0x0814,
887				    b43legacy_phy_read(dev, 0x0814) | 0x0004);
888		b43legacy_phy_write(dev, 0x0815,
889				    b43legacy_phy_read(dev, 0x0815) & 0xFFFB);
890	}
891	b43legacy_phy_write(dev, 0x0003,
892			    (b43legacy_phy_read(dev, 0x0003)
893			     & 0xFF9F) | 0x0040);
894	if (phy->radio_ver == 0x2050 && phy->radio_rev == 2) {
895		b43legacy_radio_write16(dev, 0x0052, 0x0000);
896		b43legacy_radio_write16(dev, 0x0043,
897					(b43legacy_radio_read16(dev, 0x0043)
898					 & 0xFFF0) | 0x0009);
899		loop1_cnt = 9;
900	} else if (phy->radio_rev == 8) {
901		b43legacy_radio_write16(dev, 0x0043, 0x000F);
902		loop1_cnt = 15;
903	} else
904		loop1_cnt = 0;
905
906	b43legacy_phy_set_baseband_attenuation(dev, 11);
907
908	if (phy->rev >= 3)
909		b43legacy_phy_write(dev, 0x080F, 0xC020);
910	else
911		b43legacy_phy_write(dev, 0x080F, 0x8020);
912	b43legacy_phy_write(dev, 0x0810, 0x0000);
913
914	b43legacy_phy_write(dev, 0x002B,
915			    (b43legacy_phy_read(dev, 0x002B)
916			     & 0xFFC0) | 0x0001);
917	b43legacy_phy_write(dev, 0x002B,
918			    (b43legacy_phy_read(dev, 0x002B)
919			     & 0xC0FF) | 0x0800);
920	b43legacy_phy_write(dev, 0x0811,
921			    b43legacy_phy_read(dev, 0x0811) | 0x0100);
922	b43legacy_phy_write(dev, 0x0812,
923			    b43legacy_phy_read(dev, 0x0812) & 0xCFFF);
924	if (dev->dev->bus->sprom.boardflags_lo & B43legacy_BFL_EXTLNA) {
925		if (phy->rev >= 7) {
926			b43legacy_phy_write(dev, 0x0811,
927					    b43legacy_phy_read(dev, 0x0811)
928					    | 0x0800);
929			b43legacy_phy_write(dev, 0x0812,
930					    b43legacy_phy_read(dev, 0x0812)
931					    | 0x8000);
932		}
933	}
934	b43legacy_radio_write16(dev, 0x007A,
935				b43legacy_radio_read16(dev, 0x007A)
936				& 0x00F7);
937
938	for (i = 0; i < loop1_cnt; i++) {
939		b43legacy_radio_write16(dev, 0x0043, loop1_cnt);
940		b43legacy_phy_write(dev, 0x0812,
941				    (b43legacy_phy_read(dev, 0x0812)
942				     & 0xF0FF) | (i << 8));
943		b43legacy_phy_write(dev, 0x0015,
944				    (b43legacy_phy_read(dev, 0x0015)
945				     & 0x0FFF) | 0xA000);
946		b43legacy_phy_write(dev, 0x0015,
947				    (b43legacy_phy_read(dev, 0x0015)
948				     & 0x0FFF) | 0xF000);
949		udelay(20);
950		if (b43legacy_phy_read(dev, 0x002D) >= 0x0DFC)
951			break;
952	}
953	loop1_done = i;
954	loop1_omitted = loop1_cnt - loop1_done;
955
956	loop2_done = 0;
957	if (loop1_done >= 8) {
958		b43legacy_phy_write(dev, 0x0812,
959				    b43legacy_phy_read(dev, 0x0812)
960				    | 0x0030);
961		for (i = loop1_done - 8; i < 16; i++) {
962			b43legacy_phy_write(dev, 0x0812,
963					    (b43legacy_phy_read(dev, 0x0812)
964					     & 0xF0FF) | (i << 8));
965			b43legacy_phy_write(dev, 0x0015,
966					    (b43legacy_phy_read(dev, 0x0015)
967					     & 0x0FFF) | 0xA000);
968			b43legacy_phy_write(dev, 0x0015,
969					    (b43legacy_phy_read(dev, 0x0015)
970					     & 0x0FFF) | 0xF000);
971			udelay(20);
972			if (b43legacy_phy_read(dev, 0x002D) >= 0x0DFC)
973				break;
974		}
975	}
976
977	if (phy->rev != 1) {
978		b43legacy_phy_write(dev, 0x0814, backup_phy[4]);
979		b43legacy_phy_write(dev, 0x0815, backup_phy[5]);
980	}
981	b43legacy_phy_write(dev, 0x005A, backup_phy[6]);
982	b43legacy_phy_write(dev, 0x0059, backup_phy[7]);
983	b43legacy_phy_write(dev, 0x0058, backup_phy[8]);
984	b43legacy_phy_write(dev, 0x000A, backup_phy[9]);
985	b43legacy_phy_write(dev, 0x0003, backup_phy[10]);
986	b43legacy_phy_write(dev, 0x080F, backup_phy[11]);
987	b43legacy_phy_write(dev, 0x0810, backup_phy[12]);
988	b43legacy_phy_write(dev, 0x002B, backup_phy[13]);
989	b43legacy_phy_write(dev, 0x0015, backup_phy[14]);
990
991	b43legacy_phy_set_baseband_attenuation(dev, backup_bband);
992
993	b43legacy_radio_write16(dev, 0x0052, backup_radio[0]);
994	b43legacy_radio_write16(dev, 0x0043, backup_radio[1]);
995	b43legacy_radio_write16(dev, 0x007A, backup_radio[2]);
996
997	b43legacy_phy_write(dev, 0x0811, backup_phy[2] | 0x0003);
998	udelay(10);
999	b43legacy_phy_write(dev, 0x0811, backup_phy[2]);
1000	b43legacy_phy_write(dev, 0x0812, backup_phy[3]);
1001	b43legacy_phy_write(dev, 0x0429, backup_phy[0]);
1002	b43legacy_phy_write(dev, 0x0001, backup_phy[1]);
1003
1004	phy->loopback_gain[0] = ((loop1_done * 6) - (loop1_omitted * 4)) - 11;
1005	phy->loopback_gain[1] = (24 - (3 * loop2_done)) * 2;
1006}
1007
1008static void b43legacy_phy_initg(struct b43legacy_wldev *dev)
1009{
1010	struct b43legacy_phy *phy = &dev->phy;
1011	u16 tmp;
1012
1013	if (phy->rev == 1)
1014		b43legacy_phy_initb5(dev);
1015	else
1016		b43legacy_phy_initb6(dev);
1017	if (phy->rev >= 2 && phy->gmode)
1018		b43legacy_phy_inita(dev);
1019
1020	if (phy->rev >= 2) {
1021		b43legacy_phy_write(dev, 0x0814, 0x0000);
1022		b43legacy_phy_write(dev, 0x0815, 0x0000);
1023	}
1024	if (phy->rev == 2) {
1025		b43legacy_phy_write(dev, 0x0811, 0x0000);
1026		b43legacy_phy_write(dev, 0x0015, 0x00C0);
1027	}
1028	if (phy->rev > 5) {
1029		b43legacy_phy_write(dev, 0x0811, 0x0400);
1030		b43legacy_phy_write(dev, 0x0015, 0x00C0);
1031	}
1032	if (phy->gmode) {
1033		tmp = b43legacy_phy_read(dev, 0x0400) & 0xFF;
1034		if (tmp == 3) {
1035			b43legacy_phy_write(dev, 0x04C2, 0x1816);
1036			b43legacy_phy_write(dev, 0x04C3, 0x8606);
1037		}
1038		if (tmp == 4 || tmp == 5) {
1039			b43legacy_phy_write(dev, 0x04C2, 0x1816);
1040			b43legacy_phy_write(dev, 0x04C3, 0x8006);
1041			b43legacy_phy_write(dev, 0x04CC,
1042					    (b43legacy_phy_read(dev,
1043					     0x04CC) & 0x00FF) |
1044					     0x1F00);
1045		}
1046		if (phy->rev >= 2)
1047			b43legacy_phy_write(dev, 0x047E, 0x0078);
1048	}
1049	if (phy->radio_rev == 8) {
1050		b43legacy_phy_write(dev, 0x0801, b43legacy_phy_read(dev, 0x0801)
1051				    | 0x0080);
1052		b43legacy_phy_write(dev, 0x043E, b43legacy_phy_read(dev, 0x043E)
1053				    | 0x0004);
1054	}
1055	if (phy->rev >= 2 && phy->gmode)
1056		b43legacy_calc_loopback_gain(dev);
1057	if (phy->radio_rev != 8) {
1058		if (phy->initval == 0xFFFF)
1059			phy->initval = b43legacy_radio_init2050(dev);
1060		else
1061			b43legacy_radio_write16(dev, 0x0078, phy->initval);
1062	}
1063	if (phy->txctl2 == 0xFFFF)
1064		b43legacy_phy_lo_g_measure(dev);
1065	else {
1066		if (phy->radio_ver == 0x2050 && phy->radio_rev == 8)
1067			b43legacy_radio_write16(dev, 0x0052,
1068						(phy->txctl1 << 4) |
1069						phy->txctl2);
1070		else
1071			b43legacy_radio_write16(dev, 0x0052,
1072						(b43legacy_radio_read16(dev,
1073						 0x0052) & 0xFFF0) |
1074						 phy->txctl1);
1075		if (phy->rev >= 6)
1076			b43legacy_phy_write(dev, 0x0036,
1077					    (b43legacy_phy_read(dev, 0x0036)
1078					     & 0x0FFF) | (phy->txctl2 << 12));
1079		if (dev->dev->bus->sprom.boardflags_lo &
1080		    B43legacy_BFL_PACTRL)
1081			b43legacy_phy_write(dev, 0x002E, 0x8075);
1082		else
1083			b43legacy_phy_write(dev, 0x002E, 0x807F);
1084		if (phy->rev < 2)
1085			b43legacy_phy_write(dev, 0x002F, 0x0101);
1086		else
1087			b43legacy_phy_write(dev, 0x002F, 0x0202);
1088	}
1089	if (phy->gmode) {
1090		b43legacy_phy_lo_adjust(dev, 0);
1091		b43legacy_phy_write(dev, 0x080F, 0x8078);
1092	}
1093
1094	if (!(dev->dev->bus->sprom.boardflags_lo & B43legacy_BFL_RSSI)) {
1095		/* The specs state to update the NRSSI LT with
1096		 * the value 0x7FFFFFFF here. I think that is some weird
1097		 * compiler optimization in the original driver.
1098		 * Essentially, what we do here is resetting all NRSSI LT
1099		 * entries to -32 (see the clamp_val() in nrssi_hw_update())
1100		 */
1101		b43legacy_nrssi_hw_update(dev, 0xFFFF);
1102		b43legacy_calc_nrssi_threshold(dev);
1103	} else if (phy->gmode || phy->rev >= 2) {
1104		if (phy->nrssi[0] == -1000) {
1105			B43legacy_WARN_ON(phy->nrssi[1] != -1000);
1106			b43legacy_calc_nrssi_slope(dev);
1107		} else {
1108			B43legacy_WARN_ON(phy->nrssi[1] == -1000);
1109			b43legacy_calc_nrssi_threshold(dev);
1110		}
1111	}
1112	if (phy->radio_rev == 8)
1113		b43legacy_phy_write(dev, 0x0805, 0x3230);
1114	b43legacy_phy_init_pctl(dev);
1115	if (dev->dev->bus->chip_id == 0x4306
1116	    && dev->dev->bus->chip_package == 2) {
1117		b43legacy_phy_write(dev, 0x0429,
1118				    b43legacy_phy_read(dev, 0x0429) & 0xBFFF);
1119		b43legacy_phy_write(dev, 0x04C3,
1120				    b43legacy_phy_read(dev, 0x04C3) & 0x7FFF);
1121	}
1122}
1123
1124static u16 b43legacy_phy_lo_b_r15_loop(struct b43legacy_wldev *dev)
1125{
1126	int i;
1127	u16 ret = 0;
1128	unsigned long flags;
1129
1130	local_irq_save(flags);
1131	for (i = 0; i < 10; i++) {
1132		b43legacy_phy_write(dev, 0x0015, 0xAFA0);
1133		udelay(1);
1134		b43legacy_phy_write(dev, 0x0015, 0xEFA0);
1135		udelay(10);
1136		b43legacy_phy_write(dev, 0x0015, 0xFFA0);
1137		udelay(40);
1138		ret += b43legacy_phy_read(dev, 0x002C);
1139	}
1140	local_irq_restore(flags);
1141	b43legacy_voluntary_preempt();
1142
1143	return ret;
1144}
1145
1146void b43legacy_phy_lo_b_measure(struct b43legacy_wldev *dev)
1147{
1148	struct b43legacy_phy *phy = &dev->phy;
1149	u16 regstack[12] = { 0 };
1150	u16 mls;
1151	u16 fval;
1152	int i;
1153	int j;
1154
1155	regstack[0] = b43legacy_phy_read(dev, 0x0015);
1156	regstack[1] = b43legacy_radio_read16(dev, 0x0052) & 0xFFF0;
1157
1158	if (phy->radio_ver == 0x2053) {
1159		regstack[2] = b43legacy_phy_read(dev, 0x000A);
1160		regstack[3] = b43legacy_phy_read(dev, 0x002A);
1161		regstack[4] = b43legacy_phy_read(dev, 0x0035);
1162		regstack[5] = b43legacy_phy_read(dev, 0x0003);
1163		regstack[6] = b43legacy_phy_read(dev, 0x0001);
1164		regstack[7] = b43legacy_phy_read(dev, 0x0030);
1165
1166		regstack[8] = b43legacy_radio_read16(dev, 0x0043);
1167		regstack[9] = b43legacy_radio_read16(dev, 0x007A);
1168		regstack[10] = b43legacy_read16(dev, 0x03EC);
1169		regstack[11] = b43legacy_radio_read16(dev, 0x0052) & 0x00F0;
1170
1171		b43legacy_phy_write(dev, 0x0030, 0x00FF);
1172		b43legacy_write16(dev, 0x03EC, 0x3F3F);
1173		b43legacy_phy_write(dev, 0x0035, regstack[4] & 0xFF7F);
1174		b43legacy_radio_write16(dev, 0x007A, regstack[9] & 0xFFF0);
1175	}
1176	b43legacy_phy_write(dev, 0x0015, 0xB000);
1177	b43legacy_phy_write(dev, 0x002B, 0x0004);
1178
1179	if (phy->radio_ver == 0x2053) {
1180		b43legacy_phy_write(dev, 0x002B, 0x0203);
1181		b43legacy_phy_write(dev, 0x002A, 0x08A3);
1182	}
1183
1184	phy->minlowsig[0] = 0xFFFF;
1185
1186	for (i = 0; i < 4; i++) {
1187		b43legacy_radio_write16(dev, 0x0052, regstack[1] | i);
1188		b43legacy_phy_lo_b_r15_loop(dev);
1189	}
1190	for (i = 0; i < 10; i++) {
1191		b43legacy_radio_write16(dev, 0x0052, regstack[1] | i);
1192		mls = b43legacy_phy_lo_b_r15_loop(dev) / 10;
1193		if (mls < phy->minlowsig[0]) {
1194			phy->minlowsig[0] = mls;
1195			phy->minlowsigpos[0] = i;
1196		}
1197	}
1198	b43legacy_radio_write16(dev, 0x0052, regstack[1]
1199				| phy->minlowsigpos[0]);
1200
1201	phy->minlowsig[1] = 0xFFFF;
1202
1203	for (i = -4; i < 5; i += 2) {
1204		for (j = -4; j < 5; j += 2) {
1205			if (j < 0)
1206				fval = (0x0100 * i) + j + 0x0100;
1207			else
1208				fval = (0x0100 * i) + j;
1209			b43legacy_phy_write(dev, 0x002F, fval);
1210			mls = b43legacy_phy_lo_b_r15_loop(dev) / 10;
1211			if (mls < phy->minlowsig[1]) {
1212				phy->minlowsig[1] = mls;
1213				phy->minlowsigpos[1] = fval;
1214			}
1215		}
1216	}
1217	phy->minlowsigpos[1] += 0x0101;
1218
1219	b43legacy_phy_write(dev, 0x002F, phy->minlowsigpos[1]);
1220	if (phy->radio_ver == 0x2053) {
1221		b43legacy_phy_write(dev, 0x000A, regstack[2]);
1222		b43legacy_phy_write(dev, 0x002A, regstack[3]);
1223		b43legacy_phy_write(dev, 0x0035, regstack[4]);
1224		b43legacy_phy_write(dev, 0x0003, regstack[5]);
1225		b43legacy_phy_write(dev, 0x0001, regstack[6]);
1226		b43legacy_phy_write(dev, 0x0030, regstack[7]);
1227
1228		b43legacy_radio_write16(dev, 0x0043, regstack[8]);
1229		b43legacy_radio_write16(dev, 0x007A, regstack[9]);
1230
1231		b43legacy_radio_write16(dev, 0x0052,
1232					(b43legacy_radio_read16(dev, 0x0052)
1233					& 0x000F) | regstack[11]);
1234
1235		b43legacy_write16(dev, 0x03EC, regstack[10]);
1236	}
1237	b43legacy_phy_write(dev, 0x0015, regstack[0]);
1238}
1239
1240static inline
1241u16 b43legacy_phy_lo_g_deviation_subval(struct b43legacy_wldev *dev,
1242					u16 control)
1243{
1244	struct b43legacy_phy *phy = &dev->phy;
1245	u16 ret;
1246	unsigned long flags;
1247
1248	local_irq_save(flags);
1249	if (phy->gmode) {
1250		b43legacy_phy_write(dev, 0x15, 0xE300);
1251		control <<= 8;
1252		b43legacy_phy_write(dev, 0x0812, control | 0x00B0);
1253		udelay(5);
1254		b43legacy_phy_write(dev, 0x0812, control | 0x00B2);
1255		udelay(2);
1256		b43legacy_phy_write(dev, 0x0812, control | 0x00B3);
1257		udelay(4);
1258		b43legacy_phy_write(dev, 0x0015, 0xF300);
1259		udelay(8);
1260	} else {
1261		b43legacy_phy_write(dev, 0x0015, control | 0xEFA0);
1262		udelay(2);
1263		b43legacy_phy_write(dev, 0x0015, control | 0xEFE0);
1264		udelay(4);
1265		b43legacy_phy_write(dev, 0x0015, control | 0xFFE0);
1266		udelay(8);
1267	}
1268	ret = b43legacy_phy_read(dev, 0x002D);
1269	local_irq_restore(flags);
1270	b43legacy_voluntary_preempt();
1271
1272	return ret;
1273}
1274
1275static u32 b43legacy_phy_lo_g_singledeviation(struct b43legacy_wldev *dev,
1276					      u16 control)
1277{
1278	int i;
1279	u32 ret = 0;
1280
1281	for (i = 0; i < 8; i++)
1282		ret += b43legacy_phy_lo_g_deviation_subval(dev, control);
1283
1284	return ret;
1285}
1286
1287/* Write the LocalOscillator CONTROL */
1288static inline
1289void b43legacy_lo_write(struct b43legacy_wldev *dev,
1290			struct b43legacy_lopair *pair)
1291{
1292	u16 value;
1293
1294	value = (u8)(pair->low);
1295	value |= ((u8)(pair->high)) << 8;
1296
1297#ifdef CONFIG_B43LEGACY_DEBUG
1298	/* Sanity check. */
1299	if (pair->low < -8 || pair->low > 8 ||
1300	    pair->high < -8 || pair->high > 8) {
1301		b43legacydbg(dev->wl,
1302		       "WARNING: Writing invalid LOpair "
1303		       "(low: %d, high: %d)\n",
1304		       pair->low, pair->high);
1305		dump_stack();
1306	}
1307#endif
1308
1309	b43legacy_phy_write(dev, B43legacy_PHY_G_LO_CONTROL, value);
1310}
1311
1312static inline
1313struct b43legacy_lopair *b43legacy_find_lopair(struct b43legacy_wldev *dev,
1314					       u16 bbatt,
1315					       u16 rfatt,
1316					       u16 tx)
1317{
1318	static const u8 dict[10] = { 11, 10, 11, 12, 13, 12, 13, 12, 13, 12 };
1319	struct b43legacy_phy *phy = &dev->phy;
1320
1321	if (bbatt > 6)
1322		bbatt = 6;
1323	B43legacy_WARN_ON(rfatt >= 10);
1324
1325	if (tx == 3)
1326		return b43legacy_get_lopair(phy, rfatt, bbatt);
1327	return b43legacy_get_lopair(phy, dict[rfatt], bbatt);
1328}
1329
1330static inline
1331struct b43legacy_lopair *b43legacy_current_lopair(struct b43legacy_wldev *dev)
1332{
1333	struct b43legacy_phy *phy = &dev->phy;
1334
1335	return b43legacy_find_lopair(dev, phy->bbatt,
1336				     phy->rfatt, phy->txctl1);
1337}
1338
1339/* Adjust B/G LO */
1340void b43legacy_phy_lo_adjust(struct b43legacy_wldev *dev, int fixed)
1341{
1342	struct b43legacy_lopair *pair;
1343
1344	if (fixed) {
1345		/* Use fixed values. Only for initialization. */
1346		pair = b43legacy_find_lopair(dev, 2, 3, 0);
1347	} else
1348		pair = b43legacy_current_lopair(dev);
1349	b43legacy_lo_write(dev, pair);
1350}
1351
1352static void b43legacy_phy_lo_g_measure_txctl2(struct b43legacy_wldev *dev)
1353{
1354	struct b43legacy_phy *phy = &dev->phy;
1355	u16 txctl2 = 0;
1356	u16 i;
1357	u32 smallest;
1358	u32 tmp;
1359
1360	b43legacy_radio_write16(dev, 0x0052, 0x0000);
1361	udelay(10);
1362	smallest = b43legacy_phy_lo_g_singledeviation(dev, 0);
1363	for (i = 0; i < 16; i++) {
1364		b43legacy_radio_write16(dev, 0x0052, i);
1365		udelay(10);
1366		tmp = b43legacy_phy_lo_g_singledeviation(dev, 0);
1367		if (tmp < smallest) {
1368			smallest = tmp;
1369			txctl2 = i;
1370		}
1371	}
1372	phy->txctl2 = txctl2;
1373}
1374
1375static
1376void b43legacy_phy_lo_g_state(struct b43legacy_wldev *dev,
1377			      const struct b43legacy_lopair *in_pair,
1378			      struct b43legacy_lopair *out_pair,
1379			      u16 r27)
1380{
1381	static const struct b43legacy_lopair transitions[8] = {
1382		{ .high =  1,  .low =  1, },
1383		{ .high =  1,  .low =  0, },
1384		{ .high =  1,  .low = -1, },
1385		{ .high =  0,  .low = -1, },
1386		{ .high = -1,  .low = -1, },
1387		{ .high = -1,  .low =  0, },
1388		{ .high = -1,  .low =  1, },
1389		{ .high =  0,  .low =  1, },
1390	};
1391	struct b43legacy_lopair lowest_transition = {
1392		.high = in_pair->high,
1393		.low = in_pair->low,
1394	};
1395	struct b43legacy_lopair tmp_pair;
1396	struct b43legacy_lopair transition;
1397	int i = 12;
1398	int state = 0;
1399	int found_lower;
1400	int j;
1401	int begin;
1402	int end;
1403	u32 lowest_deviation;
1404	u32 tmp;
1405
1406	/* Note that in_pair and out_pair can point to the same pair.
1407	 * Be careful. */
1408
1409	b43legacy_lo_write(dev, &lowest_transition);
1410	lowest_deviation = b43legacy_phy_lo_g_singledeviation(dev, r27);
1411	do {
1412		found_lower = 0;
1413		B43legacy_WARN_ON(!(state >= 0 && state <= 8));
1414		if (state == 0) {
1415			begin = 1;
1416			end = 8;
1417		} else if (state % 2 == 0) {
1418			begin = state - 1;
1419			end = state + 1;
1420		} else {
1421			begin = state - 2;
1422			end = state + 2;
1423		}
1424		if (begin < 1)
1425			begin += 8;
1426		if (end > 8)
1427			end -= 8;
1428
1429		j = begin;
1430		tmp_pair.high = lowest_transition.high;
1431		tmp_pair.low = lowest_transition.low;
1432		while (1) {
1433			B43legacy_WARN_ON(!(j >= 1 && j <= 8));
1434			transition.high = tmp_pair.high +
1435					  transitions[j - 1].high;
1436			transition.low = tmp_pair.low + transitions[j - 1].low;
1437			if ((abs(transition.low) < 9)
1438			     && (abs(transition.high) < 9)) {
1439				b43legacy_lo_write(dev, &transition);
1440				tmp = b43legacy_phy_lo_g_singledeviation(dev,
1441								       r27);
1442				if (tmp < lowest_deviation) {
1443					lowest_deviation = tmp;
1444					state = j;
1445					found_lower = 1;
1446
1447					lowest_transition.high =
1448								transition.high;
1449					lowest_transition.low = transition.low;
1450				}
1451			}
1452			if (j == end)
1453				break;
1454			if (j == 8)
1455				j = 1;
1456			else
1457				j++;
1458		}
1459	} while (i-- && found_lower);
1460
1461	out_pair->high = lowest_transition.high;
1462	out_pair->low = lowest_transition.low;
1463}
1464
1465/* Set the baseband attenuation value on chip. */
1466void b43legacy_phy_set_baseband_attenuation(struct b43legacy_wldev *dev,
1467					    u16 bbatt)
1468{
1469	struct b43legacy_phy *phy = &dev->phy;
1470	u16 value;
1471
1472	if (phy->analog == 0) {
1473		value = (b43legacy_read16(dev, 0x03E6) & 0xFFF0);
1474		value |= (bbatt & 0x000F);
1475		b43legacy_write16(dev, 0x03E6, value);
1476		return;
1477	}
1478
1479	if (phy->analog > 1) {
1480		value = b43legacy_phy_read(dev, 0x0060) & 0xFFC3;
1481		value |= (bbatt << 2) & 0x003C;
1482	} else {
1483		value = b43legacy_phy_read(dev, 0x0060) & 0xFF87;
1484		value |= (bbatt << 3) & 0x0078;
1485	}
1486	b43legacy_phy_write(dev, 0x0060, value);
1487}
1488
1489/* http://bcm-specs.sipsolutions.net/LocalOscillator/Measure */
1490void b43legacy_phy_lo_g_measure(struct b43legacy_wldev *dev)
1491{
1492	static const u8 pairorder[10] = { 3, 1, 5, 7, 9, 2, 0, 4, 6, 8 };
1493	const int is_initializing = (b43legacy_status(dev)
1494				     < B43legacy_STAT_STARTED);
1495	struct b43legacy_phy *phy = &dev->phy;
1496	u16 h;
1497	u16 i;
1498	u16 oldi = 0;
1499	u16 j;
1500	struct b43legacy_lopair control;
1501	struct b43legacy_lopair *tmp_control;
1502	u16 tmp;
1503	u16 regstack[16] = { 0 };
1504	u8 oldchannel;
1505
1506	u8 r27 = 0;
1507	u16 r31;
1508
1509	oldchannel = phy->channel;
1510	/* Setup */
1511	if (phy->gmode) {
1512		regstack[0] = b43legacy_phy_read(dev, B43legacy_PHY_G_CRS);
1513		regstack[1] = b43legacy_phy_read(dev, 0x0802);
1514		b43legacy_phy_write(dev, B43legacy_PHY_G_CRS, regstack[0]
1515				    & 0x7FFF);
1516		b43legacy_phy_write(dev, 0x0802, regstack[1] & 0xFFFC);
1517	}
1518	regstack[3] = b43legacy_read16(dev, 0x03E2);
1519	b43legacy_write16(dev, 0x03E2, regstack[3] | 0x8000);
1520	regstack[4] = b43legacy_read16(dev, B43legacy_MMIO_CHANNEL_EXT);
1521	regstack[5] = b43legacy_phy_read(dev, 0x15);
1522	regstack[6] = b43legacy_phy_read(dev, 0x2A);
1523	regstack[7] = b43legacy_phy_read(dev, 0x35);
1524	regstack[8] = b43legacy_phy_read(dev, 0x60);
1525	regstack[9] = b43legacy_radio_read16(dev, 0x43);
1526	regstack[10] = b43legacy_radio_read16(dev, 0x7A);
1527	regstack[11] = b43legacy_radio_read16(dev, 0x52);
1528	if (phy->gmode) {
1529		regstack[12] = b43legacy_phy_read(dev, 0x0811);
1530		regstack[13] = b43legacy_phy_read(dev, 0x0812);
1531		regstack[14] = b43legacy_phy_read(dev, 0x0814);
1532		regstack[15] = b43legacy_phy_read(dev, 0x0815);
1533	}
1534	b43legacy_radio_selectchannel(dev, 6, 0);
1535	if (phy->gmode) {
1536		b43legacy_phy_write(dev, B43legacy_PHY_G_CRS, regstack[0]
1537				    & 0x7FFF);
1538		b43legacy_phy_write(dev, 0x0802, regstack[1] & 0xFFFC);
1539		b43legacy_dummy_transmission(dev);
1540	}
1541	b43legacy_radio_write16(dev, 0x0043, 0x0006);
1542
1543	b43legacy_phy_set_baseband_attenuation(dev, 2);
1544
1545	b43legacy_write16(dev, B43legacy_MMIO_CHANNEL_EXT, 0x0000);
1546	b43legacy_phy_write(dev, 0x002E, 0x007F);
1547	b43legacy_phy_write(dev, 0x080F, 0x0078);
1548	b43legacy_phy_write(dev, 0x0035, regstack[7] & ~(1 << 7));
1549	b43legacy_radio_write16(dev, 0x007A, regstack[10] & 0xFFF0);
1550	b43legacy_phy_write(dev, 0x002B, 0x0203);
1551	b43legacy_phy_write(dev, 0x002A, 0x08A3);
1552	if (phy->gmode) {
1553		b43legacy_phy_write(dev, 0x0814, regstack[14] | 0x0003);
1554		b43legacy_phy_write(dev, 0x0815, regstack[15] & 0xFFFC);
1555		b43legacy_phy_write(dev, 0x0811, 0x01B3);
1556		b43legacy_phy_write(dev, 0x0812, 0x00B2);
1557	}
1558	if (is_initializing)
1559		b43legacy_phy_lo_g_measure_txctl2(dev);
1560	b43legacy_phy_write(dev, 0x080F, 0x8078);
1561
1562	/* Measure */
1563	control.low = 0;
1564	control.high = 0;
1565	for (h = 0; h < 10; h++) {
1566		/* Loop over each possible RadioAttenuation (0-9) */
1567		i = pairorder[h];
1568		if (is_initializing) {
1569			if (i == 3) {
1570				control.low = 0;
1571				control.high = 0;
1572			} else if (((i % 2 == 1) && (oldi % 2 == 1)) ||
1573				  ((i % 2 == 0) && (oldi % 2 == 0))) {
1574				tmp_control = b43legacy_get_lopair(phy, oldi,
1575								   0);
1576				memcpy(&control, tmp_control, sizeof(control));
1577			} else {
1578				tmp_control = b43legacy_get_lopair(phy, 3, 0);
1579				memcpy(&control, tmp_control, sizeof(control));
1580			}
1581		}
1582		/* Loop over each possible BasebandAttenuation/2 */
1583		for (j = 0; j < 4; j++) {
1584			if (is_initializing) {
1585				tmp = i * 2 + j;
1586				r27 = 0;
1587				r31 = 0;
1588				if (tmp > 14) {
1589					r31 = 1;
1590					if (tmp > 17)
1591						r27 = 1;
1592					if (tmp > 19)
1593						r27 = 2;
1594				}
1595			} else {
1596				tmp_control = b43legacy_get_lopair(phy, i,
1597								   j * 2);
1598				if (!tmp_control->used)
1599					continue;
1600				memcpy(&control, tmp_control, sizeof(control));
1601				r27 = 3;
1602				r31 = 0;
1603			}
1604			b43legacy_radio_write16(dev, 0x43, i);
1605			b43legacy_radio_write16(dev, 0x52, phy->txctl2);
1606			udelay(10);
1607			b43legacy_voluntary_preempt();
1608
1609			b43legacy_phy_set_baseband_attenuation(dev, j * 2);
1610
1611			tmp = (regstack[10] & 0xFFF0);
1612			if (r31)
1613				tmp |= 0x0008;
1614			b43legacy_radio_write16(dev, 0x007A, tmp);
1615
1616			tmp_control = b43legacy_get_lopair(phy, i, j * 2);
1617			b43legacy_phy_lo_g_state(dev, &control, tmp_control,
1618						 r27);
1619		}
1620		oldi = i;
1621	}
1622	/* Loop over each possible RadioAttenuation (10-13) */
1623	for (i = 10; i < 14; i++) {
1624		/* Loop over each possible BasebandAttenuation/2 */
1625		for (j = 0; j < 4; j++) {
1626			if (is_initializing) {
1627				tmp_control = b43legacy_get_lopair(phy, i - 9,
1628								 j * 2);
1629				memcpy(&control, tmp_control, sizeof(control));
1630				tmp = (i - 9) * 2 + j - 5;
1631				r27 = 0;
1632				r31 = 0;
1633				if (tmp > 14) {
1634					r31 = 1;
1635					if (tmp > 17)
1636						r27 = 1;
1637					if (tmp > 19)
1638						r27 = 2;
1639				}
1640			} else {
1641				tmp_control = b43legacy_get_lopair(phy, i - 9,
1642								   j * 2);
1643				if (!tmp_control->used)
1644					continue;
1645				memcpy(&control, tmp_control, sizeof(control));
1646				r27 = 3;
1647				r31 = 0;
1648			}
1649			b43legacy_radio_write16(dev, 0x43, i - 9);
1650			b43legacy_radio_write16(dev, 0x52,
1651					      phy->txctl2
1652					      | (3/*txctl1*/ << 4));
1653			udelay(10);
1654			b43legacy_voluntary_preempt();
1655
1656			b43legacy_phy_set_baseband_attenuation(dev, j * 2);
1657
1658			tmp = (regstack[10] & 0xFFF0);
1659			if (r31)
1660				tmp |= 0x0008;
1661			b43legacy_radio_write16(dev, 0x7A, tmp);
1662
1663			tmp_control = b43legacy_get_lopair(phy, i, j * 2);
1664			b43legacy_phy_lo_g_state(dev, &control, tmp_control,
1665						 r27);
1666		}
1667	}
1668
1669	/* Restoration */
1670	if (phy->gmode) {
1671		b43legacy_phy_write(dev, 0x0015, 0xE300);
1672		b43legacy_phy_write(dev, 0x0812, (r27 << 8) | 0xA0);
1673		udelay(5);
1674		b43legacy_phy_write(dev, 0x0812, (r27 << 8) | 0xA2);
1675		udelay(2);
1676		b43legacy_phy_write(dev, 0x0812, (r27 << 8) | 0xA3);
1677		b43legacy_voluntary_preempt();
1678	} else
1679		b43legacy_phy_write(dev, 0x0015, r27 | 0xEFA0);
1680	b43legacy_phy_lo_adjust(dev, is_initializing);
1681	b43legacy_phy_write(dev, 0x002E, 0x807F);
1682	if (phy->gmode)
1683		b43legacy_phy_write(dev, 0x002F, 0x0202);
1684	else
1685		b43legacy_phy_write(dev, 0x002F, 0x0101);
1686	b43legacy_write16(dev, B43legacy_MMIO_CHANNEL_EXT, regstack[4]);
1687	b43legacy_phy_write(dev, 0x0015, regstack[5]);
1688	b43legacy_phy_write(dev, 0x002A, regstack[6]);
1689	b43legacy_phy_write(dev, 0x0035, regstack[7]);
1690	b43legacy_phy_write(dev, 0x0060, regstack[8]);
1691	b43legacy_radio_write16(dev, 0x0043, regstack[9]);
1692	b43legacy_radio_write16(dev, 0x007A, regstack[10]);
1693	regstack[11] &= 0x00F0;
1694	regstack[11] |= (b43legacy_radio_read16(dev, 0x52) & 0x000F);
1695	b43legacy_radio_write16(dev, 0x52, regstack[11]);
1696	b43legacy_write16(dev, 0x03E2, regstack[3]);
1697	if (phy->gmode) {
1698		b43legacy_phy_write(dev, 0x0811, regstack[12]);
1699		b43legacy_phy_write(dev, 0x0812, regstack[13]);
1700		b43legacy_phy_write(dev, 0x0814, regstack[14]);
1701		b43legacy_phy_write(dev, 0x0815, regstack[15]);
1702		b43legacy_phy_write(dev, B43legacy_PHY_G_CRS, regstack[0]);
1703		b43legacy_phy_write(dev, 0x0802, regstack[1]);
1704	}
1705	b43legacy_radio_selectchannel(dev, oldchannel, 1);
1706
1707#ifdef CONFIG_B43LEGACY_DEBUG
1708	{
1709		/* Sanity check for all lopairs. */
1710		for (i = 0; i < B43legacy_LO_COUNT; i++) {
1711			tmp_control = phy->_lo_pairs + i;
1712			if (tmp_control->low < -8 || tmp_control->low > 8 ||
1713			    tmp_control->high < -8 || tmp_control->high > 8)
1714				b43legacywarn(dev->wl,
1715				       "WARNING: Invalid LOpair (low: %d, high:"
1716				       " %d, index: %d)\n",
1717				       tmp_control->low, tmp_control->high, i);
1718		}
1719	}
1720#endif /* CONFIG_B43LEGACY_DEBUG */
1721}
1722
1723static
1724void b43legacy_phy_lo_mark_current_used(struct b43legacy_wldev *dev)
1725{
1726	struct b43legacy_lopair *pair;
1727
1728	pair = b43legacy_current_lopair(dev);
1729	pair->used = 1;
1730}
1731
1732void b43legacy_phy_lo_mark_all_unused(struct b43legacy_wldev *dev)
1733{
1734	struct b43legacy_phy *phy = &dev->phy;
1735	struct b43legacy_lopair *pair;
1736	int i;
1737
1738	for (i = 0; i < B43legacy_LO_COUNT; i++) {
1739		pair = phy->_lo_pairs + i;
1740		pair->used = 0;
1741	}
1742}
1743
1744/* http://bcm-specs.sipsolutions.net/EstimatePowerOut
1745 * This function converts a TSSI value to dBm in Q5.2
1746 */
1747static s8 b43legacy_phy_estimate_power_out(struct b43legacy_wldev *dev, s8 tssi)
1748{
1749	struct b43legacy_phy *phy = &dev->phy;
1750	s8 dbm = 0;
1751	s32 tmp;
1752
1753	tmp = phy->idle_tssi;
1754	tmp += tssi;
1755	tmp -= phy->savedpctlreg;
1756
1757	switch (phy->type) {
1758	case B43legacy_PHYTYPE_B:
1759	case B43legacy_PHYTYPE_G:
1760		tmp = clamp_val(tmp, 0x00, 0x3F);
1761		dbm = phy->tssi2dbm[tmp];
1762		break;
1763	default:
1764		B43legacy_BUG_ON(1);
1765	}
1766
1767	return dbm;
1768}
1769
1770/* http://bcm-specs.sipsolutions.net/RecalculateTransmissionPower */
1771void b43legacy_phy_xmitpower(struct b43legacy_wldev *dev)
1772{
1773	struct b43legacy_phy *phy = &dev->phy;
1774	u16 tmp;
1775	u16 txpower;
1776	s8 v0;
1777	s8 v1;
1778	s8 v2;
1779	s8 v3;
1780	s8 average;
1781	int max_pwr;
1782	s16 desired_pwr;
1783	s16 estimated_pwr;
1784	s16 pwr_adjust;
1785	s16 radio_att_delta;
1786	s16 baseband_att_delta;
1787	s16 radio_attenuation;
1788	s16 baseband_attenuation;
1789
1790	if (phy->savedpctlreg == 0xFFFF)
1791		return;
1792	if ((dev->dev->bus->boardinfo.type == 0x0416) &&
1793	    is_bcm_board_vendor(dev))
1794		return;
1795#ifdef CONFIG_B43LEGACY_DEBUG
1796	if (phy->manual_txpower_control)
1797		return;
1798#endif
1799
1800	B43legacy_BUG_ON(!(phy->type == B43legacy_PHYTYPE_B ||
1801			 phy->type == B43legacy_PHYTYPE_G));
1802	tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED, 0x0058);
1803	v0 = (s8)(tmp & 0x00FF);
1804	v1 = (s8)((tmp & 0xFF00) >> 8);
1805	tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED, 0x005A);
1806	v2 = (s8)(tmp & 0x00FF);
1807	v3 = (s8)((tmp & 0xFF00) >> 8);
1808	tmp = 0;
1809
1810	if (v0 == 0x7F || v1 == 0x7F || v2 == 0x7F || v3 == 0x7F) {
1811		tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
1812					 0x0070);
1813		v0 = (s8)(tmp & 0x00FF);
1814		v1 = (s8)((tmp & 0xFF00) >> 8);
1815		tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
1816					 0x0072);
1817		v2 = (s8)(tmp & 0x00FF);
1818		v3 = (s8)((tmp & 0xFF00) >> 8);
1819		if (v0 == 0x7F || v1 == 0x7F || v2 == 0x7F || v3 == 0x7F)
1820			return;
1821		v0 = (v0 + 0x20) & 0x3F;
1822		v1 = (v1 + 0x20) & 0x3F;
1823		v2 = (v2 + 0x20) & 0x3F;
1824		v3 = (v3 + 0x20) & 0x3F;
1825		tmp = 1;
1826	}
1827	b43legacy_radio_clear_tssi(dev);
1828
1829	average = (v0 + v1 + v2 + v3 + 2) / 4;
1830
1831	if (tmp && (b43legacy_shm_read16(dev, B43legacy_SHM_SHARED, 0x005E)
1832	    & 0x8))
1833		average -= 13;
1834
1835	estimated_pwr = b43legacy_phy_estimate_power_out(dev, average);
1836
1837	max_pwr = dev->dev->bus->sprom.maxpwr_bg;
1838
1839	if ((dev->dev->bus->sprom.boardflags_lo
1840	     & B43legacy_BFL_PACTRL) &&
1841	    (phy->type == B43legacy_PHYTYPE_G))
1842		max_pwr -= 0x3;
1843	if (unlikely(max_pwr <= 0)) {
1844		b43legacywarn(dev->wl, "Invalid max-TX-power value in SPROM."
1845			"\n");
1846		max_pwr = 74; /* fake it */
1847		dev->dev->bus->sprom.maxpwr_bg = max_pwr;
1848	}
1849
1850	/* Use regulatory information to get the maximum power.
1851	 * In the absence of such data from mac80211, we will use 20 dBm, which
1852	 * is the value for the EU, US, Canada, and most of the world.
1853	 * The regulatory maximum is reduced by the antenna gain (from sprom)
1854	 * and 1.5 dBm (a safety factor??). The result is in Q5.2 format
1855	 * which accounts for the factor of 4 */
1856#define REG_MAX_PWR 20
1857	max_pwr = min(REG_MAX_PWR * 4
1858		      - dev->dev->bus->sprom.antenna_gain.ghz24.a0
1859		      - 0x6, max_pwr);
1860
1861	/* find the desired power in Q5.2 - power_level is in dBm
1862	 * and limit it - max_pwr is already in Q5.2 */
1863	desired_pwr = clamp_val(phy->power_level << 2, 0, max_pwr);
1864	if (b43legacy_debug(dev, B43legacy_DBG_XMITPOWER))
1865		b43legacydbg(dev->wl, "Current TX power output: " Q52_FMT
1866		       " dBm, Desired TX power output: " Q52_FMT
1867		       " dBm\n", Q52_ARG(estimated_pwr),
1868		       Q52_ARG(desired_pwr));
1869	/* Check if we need to adjust the current power. The factor of 2 is
1870	 * for damping */
1871	pwr_adjust = (desired_pwr - estimated_pwr) / 2;
1872	/* RF attenuation delta
1873	 * The minus sign is because lower attenuation => more power */
1874	radio_att_delta = -(pwr_adjust + 7) >> 3;
1875	/* Baseband attenuation delta */
1876	baseband_att_delta = -(pwr_adjust >> 1) - (4 * radio_att_delta);
1877	/* Do we need to adjust anything? */
1878	if ((radio_att_delta == 0) && (baseband_att_delta == 0)) {
1879		b43legacy_phy_lo_mark_current_used(dev);
1880		return;
1881	}
1882
1883	/* Calculate the new attenuation values. */
1884	baseband_attenuation = phy->bbatt;
1885	baseband_attenuation += baseband_att_delta;
1886	radio_attenuation = phy->rfatt;
1887	radio_attenuation += radio_att_delta;
1888
1889	/* Get baseband and radio attenuation values into permitted ranges.
1890	 * baseband 0-11, radio 0-9.
1891	 * Radio attenuation affects power level 4 times as much as baseband.
1892	 */
1893	if (radio_attenuation < 0) {
1894		baseband_attenuation -= (4 * -radio_attenuation);
1895		radio_attenuation = 0;
1896	} else if (radio_attenuation > 9) {
1897		baseband_attenuation += (4 * (radio_attenuation - 9));
1898		radio_attenuation = 9;
1899	} else {
1900		while (baseband_attenuation < 0 && radio_attenuation > 0) {
1901			baseband_attenuation += 4;
1902			radio_attenuation--;
1903		}
1904		while (baseband_attenuation > 11 && radio_attenuation < 9) {
1905			baseband_attenuation -= 4;
1906			radio_attenuation++;
1907		}
1908	}
1909	baseband_attenuation = clamp_val(baseband_attenuation, 0, 11);
1910
1911	txpower = phy->txctl1;
1912	if ((phy->radio_ver == 0x2050) && (phy->radio_rev == 2)) {
1913		if (radio_attenuation <= 1) {
1914			if (txpower == 0) {
1915				txpower = 3;
1916				radio_attenuation += 2;
1917				baseband_attenuation += 2;
1918			} else if (dev->dev->bus->sprom.boardflags_lo
1919				   & B43legacy_BFL_PACTRL) {
1920				baseband_attenuation += 4 *
1921						     (radio_attenuation - 2);
1922				radio_attenuation = 2;
1923			}
1924		} else if (radio_attenuation > 4 && txpower != 0) {
1925			txpower = 0;
1926			if (baseband_attenuation < 3) {
1927				radio_attenuation -= 3;
1928				baseband_attenuation += 2;
1929			} else {
1930				radio_attenuation -= 2;
1931				baseband_attenuation -= 2;
1932			}
1933		}
1934	}
1935	/* Save the control values */
1936	phy->txctl1 = txpower;
1937	baseband_attenuation = clamp_val(baseband_attenuation, 0, 11);
1938	radio_attenuation = clamp_val(radio_attenuation, 0, 9);
1939	phy->rfatt = radio_attenuation;
1940	phy->bbatt = baseband_attenuation;
1941
1942	/* Adjust the hardware */
1943	b43legacy_phy_lock(dev);
1944	b43legacy_radio_lock(dev);
1945	b43legacy_radio_set_txpower_bg(dev, baseband_attenuation,
1946				       radio_attenuation, txpower);
1947	b43legacy_phy_lo_mark_current_used(dev);
1948	b43legacy_radio_unlock(dev);
1949	b43legacy_phy_unlock(dev);
1950}
1951
1952static inline
1953s32 b43legacy_tssi2dbm_ad(s32 num, s32 den)
1954{
1955	if (num < 0)
1956		return num/den;
1957	else
1958		return (num+den/2)/den;
1959}
1960
1961static inline
1962s8 b43legacy_tssi2dbm_entry(s8 entry [], u8 index, s16 pab0, s16 pab1, s16 pab2)
1963{
1964	s32 m1;
1965	s32 m2;
1966	s32 f = 256;
1967	s32 q;
1968	s32 delta;
1969	s8 i = 0;
1970
1971	m1 = b43legacy_tssi2dbm_ad(16 * pab0 + index * pab1, 32);
1972	m2 = max(b43legacy_tssi2dbm_ad(32768 + index * pab2, 256), 1);
1973	do {
1974		if (i > 15)
1975			return -EINVAL;
1976		q = b43legacy_tssi2dbm_ad(f * 4096 -
1977					  b43legacy_tssi2dbm_ad(m2 * f, 16) *
1978					  f, 2048);
1979		delta = abs(q - f);
1980		f = q;
1981		i++;
1982	} while (delta >= 2);
1983	entry[index] = clamp_val(b43legacy_tssi2dbm_ad(m1 * f, 8192),
1984				   -127, 128);
1985	return 0;
1986}
1987
1988/* http://bcm-specs.sipsolutions.net/TSSI_to_DBM_Table */
1989int b43legacy_phy_init_tssi2dbm_table(struct b43legacy_wldev *dev)
1990{
1991	struct b43legacy_phy *phy = &dev->phy;
1992	s16 pab0;
1993	s16 pab1;
1994	s16 pab2;
1995	u8 idx;
1996	s8 *dyn_tssi2dbm;
1997
1998	B43legacy_WARN_ON(!(phy->type == B43legacy_PHYTYPE_B ||
1999			  phy->type == B43legacy_PHYTYPE_G));
2000	pab0 = (s16)(dev->dev->bus->sprom.pa0b0);
2001	pab1 = (s16)(dev->dev->bus->sprom.pa0b1);
2002	pab2 = (s16)(dev->dev->bus->sprom.pa0b2);
2003
2004	if ((dev->dev->bus->chip_id == 0x4301) && (phy->radio_ver != 0x2050)) {
2005		phy->idle_tssi = 0x34;
2006		phy->tssi2dbm = b43legacy_tssi2dbm_b_table;
2007		return 0;
2008	}
2009
2010	if (pab0 != 0 && pab1 != 0 && pab2 != 0 &&
2011	    pab0 != -1 && pab1 != -1 && pab2 != -1) {
2012		/* The pabX values are set in SPROM. Use them. */
2013		if ((s8)dev->dev->bus->sprom.itssi_bg != 0 &&
2014		    (s8)dev->dev->bus->sprom.itssi_bg != -1)
2015			phy->idle_tssi = (s8)(dev->dev->bus->sprom.
2016					  itssi_bg);
2017		else
2018			phy->idle_tssi = 62;
2019		dyn_tssi2dbm = kmalloc(64, GFP_KERNEL);
2020		if (dyn_tssi2dbm == NULL) {
2021			b43legacyerr(dev->wl, "Could not allocate memory "
2022			       "for tssi2dbm table\n");
2023			return -ENOMEM;
2024		}
2025		for (idx = 0; idx < 64; idx++)
2026			if (b43legacy_tssi2dbm_entry(dyn_tssi2dbm, idx, pab0,
2027						     pab1, pab2)) {
2028				phy->tssi2dbm = NULL;
2029				b43legacyerr(dev->wl, "Could not generate "
2030				       "tssi2dBm table\n");
2031				kfree(dyn_tssi2dbm);
2032				return -ENODEV;
2033			}
2034		phy->tssi2dbm = dyn_tssi2dbm;
2035		phy->dyn_tssi_tbl = 1;
2036	} else {
2037		/* pabX values not set in SPROM. */
2038		switch (phy->type) {
2039		case B43legacy_PHYTYPE_B:
2040			phy->idle_tssi = 0x34;
2041			phy->tssi2dbm = b43legacy_tssi2dbm_b_table;
2042			break;
2043		case B43legacy_PHYTYPE_G:
2044			phy->idle_tssi = 0x34;
2045			phy->tssi2dbm = b43legacy_tssi2dbm_g_table;
2046			break;
2047		}
2048	}
2049
2050	return 0;
2051}
2052
2053int b43legacy_phy_init(struct b43legacy_wldev *dev)
2054{
2055	struct b43legacy_phy *phy = &dev->phy;
2056	int err = -ENODEV;
2057
2058	switch (phy->type) {
2059	case B43legacy_PHYTYPE_B:
2060		switch (phy->rev) {
2061		case 2:
2062			b43legacy_phy_initb2(dev);
2063			err = 0;
2064			break;
2065		case 4:
2066			b43legacy_phy_initb4(dev);
2067			err = 0;
2068			break;
2069		case 5:
2070			b43legacy_phy_initb5(dev);
2071			err = 0;
2072			break;
2073		case 6:
2074			b43legacy_phy_initb6(dev);
2075			err = 0;
2076			break;
2077		}
2078		break;
2079	case B43legacy_PHYTYPE_G:
2080		b43legacy_phy_initg(dev);
2081		err = 0;
2082		break;
2083	}
2084	if (err)
2085		b43legacyerr(dev->wl, "Unknown PHYTYPE found\n");
2086
2087	return err;
2088}
2089
2090void b43legacy_phy_set_antenna_diversity(struct b43legacy_wldev *dev)
2091{
2092	struct b43legacy_phy *phy = &dev->phy;
2093	u16 antennadiv;
2094	u16 offset;
2095	u16 value;
2096	u32 ucodeflags;
2097
2098	antennadiv = phy->antenna_diversity;
2099
2100	if (antennadiv == 0xFFFF)
2101		antennadiv = 3;
2102	B43legacy_WARN_ON(antennadiv > 3);
2103
2104	ucodeflags = b43legacy_shm_read32(dev, B43legacy_SHM_SHARED,
2105					  B43legacy_UCODEFLAGS_OFFSET);
2106	b43legacy_shm_write32(dev, B43legacy_SHM_SHARED,
2107			      B43legacy_UCODEFLAGS_OFFSET,
2108			      ucodeflags & ~B43legacy_UCODEFLAG_AUTODIV);
2109
2110	switch (phy->type) {
2111	case B43legacy_PHYTYPE_G:
2112		offset = 0x0400;
2113
2114		if (antennadiv == 2)
2115			value = (3/*automatic*/ << 7);
2116		else
2117			value = (antennadiv << 7);
2118		b43legacy_phy_write(dev, offset + 1,
2119				    (b43legacy_phy_read(dev, offset + 1)
2120				    & 0x7E7F) | value);
2121
2122		if (antennadiv >= 2) {
2123			if (antennadiv == 2)
2124				value = (antennadiv << 7);
2125			else
2126				value = (0/*force0*/ << 7);
2127			b43legacy_phy_write(dev, offset + 0x2B,
2128					    (b43legacy_phy_read(dev,
2129					    offset + 0x2B)
2130					    & 0xFEFF) | value);
2131		}
2132
2133		if (phy->type == B43legacy_PHYTYPE_G) {
2134			if (antennadiv >= 2)
2135				b43legacy_phy_write(dev, 0x048C,
2136						    b43legacy_phy_read(dev,
2137						    0x048C) | 0x2000);
2138			else
2139				b43legacy_phy_write(dev, 0x048C,
2140						    b43legacy_phy_read(dev,
2141						    0x048C) & ~0x2000);
2142			if (phy->rev >= 2) {
2143				b43legacy_phy_write(dev, 0x0461,
2144						    b43legacy_phy_read(dev,
2145						    0x0461) | 0x0010);
2146				b43legacy_phy_write(dev, 0x04AD,
2147						    (b43legacy_phy_read(dev,
2148						    0x04AD)
2149						    & 0x00FF) | 0x0015);
2150				if (phy->rev == 2)
2151					b43legacy_phy_write(dev, 0x0427,
2152							    0x0008);
2153				else
2154					b43legacy_phy_write(dev, 0x0427,
2155						(b43legacy_phy_read(dev, 0x0427)
2156						 & 0x00FF) | 0x0008);
2157			} else if (phy->rev >= 6)
2158				b43legacy_phy_write(dev, 0x049B, 0x00DC);
2159		} else {
2160			if (phy->rev < 3)
2161				b43legacy_phy_write(dev, 0x002B,
2162						    (b43legacy_phy_read(dev,
2163						    0x002B) & 0x00FF)
2164						    | 0x0024);
2165			else {
2166				b43legacy_phy_write(dev, 0x0061,
2167						    b43legacy_phy_read(dev,
2168						    0x0061) | 0x0010);
2169				if (phy->rev == 3) {
2170					b43legacy_phy_write(dev, 0x0093,
2171							    0x001D);
2172					b43legacy_phy_write(dev, 0x0027,
2173							    0x0008);
2174				} else {
2175					b43legacy_phy_write(dev, 0x0093,
2176							    0x003A);
2177					b43legacy_phy_write(dev, 0x0027,
2178						(b43legacy_phy_read(dev, 0x0027)
2179						 & 0x00FF) | 0x0008);
2180				}
2181			}
2182		}
2183		break;
2184	case B43legacy_PHYTYPE_B:
2185		if (dev->dev->id.revision == 2)
2186			value = (3/*automatic*/ << 7);
2187		else
2188			value = (antennadiv << 7);
2189		b43legacy_phy_write(dev, 0x03E2,
2190				    (b43legacy_phy_read(dev, 0x03E2)
2191				    & 0xFE7F) | value);
2192		break;
2193	default:
2194		B43legacy_WARN_ON(1);
2195	}
2196
2197	if (antennadiv >= 2) {
2198		ucodeflags = b43legacy_shm_read32(dev, B43legacy_SHM_SHARED,
2199						  B43legacy_UCODEFLAGS_OFFSET);
2200		b43legacy_shm_write32(dev, B43legacy_SHM_SHARED,
2201				      B43legacy_UCODEFLAGS_OFFSET,
2202				      ucodeflags | B43legacy_UCODEFLAG_AUTODIV);
2203	}
2204
2205	phy->antenna_diversity = antennadiv;
2206}
2207
2208/* Set the PowerSavingControlBits.
2209 * Bitvalues:
2210 *   0  => unset the bit
2211 *   1  => set the bit
2212 *   -1 => calculate the bit
2213 */
2214void b43legacy_power_saving_ctl_bits(struct b43legacy_wldev *dev,
2215				     int bit25, int bit26)
2216{
2217	int i;
2218	u32 status;
2219
2220bit25 = 0;
2221bit26 = 1;
2222
2223	if (bit25 == -1) {
2224	}
2225	if (bit26 == -1) {
2226	}
2227	status = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
2228	if (bit25)
2229		status |= B43legacy_MACCTL_HWPS;
2230	else
2231		status &= ~B43legacy_MACCTL_HWPS;
2232	if (bit26)
2233		status |= B43legacy_MACCTL_AWAKE;
2234	else
2235		status &= ~B43legacy_MACCTL_AWAKE;
2236	b43legacy_write32(dev, B43legacy_MMIO_MACCTL, status);
2237	if (bit26 && dev->dev->id.revision >= 5) {
2238		for (i = 0; i < 100; i++) {
2239			if (b43legacy_shm_read32(dev, B43legacy_SHM_SHARED,
2240						 0x0040) != 4)
2241				break;
2242			udelay(10);
2243		}
2244	}
2245}
2246