3 Broadcom B43 wireless driver
6 Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>,
7 Copyright (c) 2005-2007 Stefano Brivio <stefano.brivio@polimi.it>
8 Copyright (c) 2005-2008 Michael Buesch <m@bues.ch>
9 Copyright (c) 2005, 2006 Danny van Dyk <kugelfang@gentoo.org>
10 Copyright (c) 2005, 2006 Andreas Jaggi <andreas.jaggi@waterwave.ch>
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; see the file COPYING. If not, write to
24 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
25 Boston, MA 02110-1301, USA.
29 #include "phy_common.h"
40 int b43_phy_allocate(struct b43_wldev
*dev
)
42 struct b43_phy
*phy
= &(dev
->phy
);
49 phy
->ops
= &b43_phyops_a
;
52 phy
->ops
= &b43_phyops_g
;
55 #ifdef CONFIG_B43_PHY_N
56 phy
->ops
= &b43_phyops_n
;
60 #ifdef CONFIG_B43_PHY_LP
61 phy
->ops
= &b43_phyops_lp
;
65 #ifdef CONFIG_B43_PHY_HT
66 phy
->ops
= &b43_phyops_ht
;
70 #ifdef CONFIG_B43_PHY_LCN
71 phy
->ops
= &b43_phyops_lcn
;
75 if (B43_WARN_ON(!phy
->ops
))
78 err
= phy
->ops
->allocate(dev
);
85 void b43_phy_free(struct b43_wldev
*dev
)
87 dev
->phy
.ops
->free(dev
);
91 int b43_phy_init(struct b43_wldev
*dev
)
93 struct b43_phy
*phy
= &dev
->phy
;
94 const struct b43_phy_operations
*ops
= phy
->ops
;
97 phy
->channel
= ops
->get_default_chan(dev
);
99 ops
->software_rfkill(dev
, false);
100 err
= ops
->init(dev
);
102 b43err(dev
->wl
, "PHY init failed\n");
105 /* Make sure to switch hardware and firmware (SHM) to
106 * the default channel. */
107 err
= b43_switch_channel(dev
, ops
->get_default_chan(dev
));
109 b43err(dev
->wl
, "PHY init: Channel switch to default failed\n");
119 ops
->software_rfkill(dev
, true);
124 void b43_phy_exit(struct b43_wldev
*dev
)
126 const struct b43_phy_operations
*ops
= dev
->phy
.ops
;
128 ops
->software_rfkill(dev
, true);
133 bool b43_has_hardware_pctl(struct b43_wldev
*dev
)
135 if (!dev
->phy
.hardware_power_control
)
137 if (!dev
->phy
.ops
->supports_hwpctl
)
139 return dev
->phy
.ops
->supports_hwpctl(dev
);
142 void b43_radio_lock(struct b43_wldev
*dev
)
147 B43_WARN_ON(dev
->phy
.radio_locked
);
148 dev
->phy
.radio_locked
= true;
151 macctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
152 macctl
|= B43_MACCTL_RADIOLOCK
;
153 b43_write32(dev
, B43_MMIO_MACCTL
, macctl
);
154 /* Commit the write and wait for the firmware
155 * to finish any radio register access. */
156 b43_read32(dev
, B43_MMIO_MACCTL
);
160 void b43_radio_unlock(struct b43_wldev
*dev
)
165 B43_WARN_ON(!dev
->phy
.radio_locked
);
166 dev
->phy
.radio_locked
= false;
169 /* Commit any write */
170 b43_read16(dev
, B43_MMIO_PHY_VER
);
172 macctl
= b43_read32(dev
, B43_MMIO_MACCTL
);
173 macctl
&= ~B43_MACCTL_RADIOLOCK
;
174 b43_write32(dev
, B43_MMIO_MACCTL
, macctl
);
177 void b43_phy_lock(struct b43_wldev
*dev
)
180 B43_WARN_ON(dev
->phy
.phy_locked
);
181 dev
->phy
.phy_locked
= true;
183 B43_WARN_ON(dev
->dev
->core_rev
< 3);
185 if (!b43_is_mode(dev
->wl
, NL80211_IFTYPE_AP
))
186 b43_power_saving_ctl_bits(dev
, B43_PS_AWAKE
);
189 void b43_phy_unlock(struct b43_wldev
*dev
)
192 B43_WARN_ON(!dev
->phy
.phy_locked
);
193 dev
->phy
.phy_locked
= false;
195 B43_WARN_ON(dev
->dev
->core_rev
< 3);
197 if (!b43_is_mode(dev
->wl
, NL80211_IFTYPE_AP
))
198 b43_power_saving_ctl_bits(dev
, 0);
201 static inline void assert_mac_suspended(struct b43_wldev
*dev
)
205 if ((b43_status(dev
) >= B43_STAT_INITIALIZED
) &&
206 (dev
->mac_suspended
<= 0)) {
207 b43dbg(dev
->wl
, "PHY/RADIO register access with "
213 u16
b43_radio_read(struct b43_wldev
*dev
, u16 reg
)
215 assert_mac_suspended(dev
);
216 return dev
->phy
.ops
->radio_read(dev
, reg
);
219 void b43_radio_write(struct b43_wldev
*dev
, u16 reg
, u16 value
)
221 assert_mac_suspended(dev
);
222 dev
->phy
.ops
->radio_write(dev
, reg
, value
);
225 void b43_radio_mask(struct b43_wldev
*dev
, u16 offset
, u16 mask
)
227 b43_radio_write16(dev
, offset
,
228 b43_radio_read16(dev
, offset
) & mask
);
231 void b43_radio_set(struct b43_wldev
*dev
, u16 offset
, u16 set
)
233 b43_radio_write16(dev
, offset
,
234 b43_radio_read16(dev
, offset
) | set
);
237 void b43_radio_maskset(struct b43_wldev
*dev
, u16 offset
, u16 mask
, u16 set
)
239 b43_radio_write16(dev
, offset
,
240 (b43_radio_read16(dev
, offset
) & mask
) | set
);
243 bool b43_radio_wait_value(struct b43_wldev
*dev
, u16 offset
, u16 mask
,
244 u16 value
, int delay
, int timeout
)
249 for (i
= 0; i
< timeout
; i
+= delay
) {
250 val
= b43_radio_read(dev
, offset
);
251 if ((val
& mask
) == value
)
258 u16
b43_phy_read(struct b43_wldev
*dev
, u16 reg
)
260 assert_mac_suspended(dev
);
261 dev
->phy
.writes_counter
= 0;
262 return dev
->phy
.ops
->phy_read(dev
, reg
);
265 void b43_phy_write(struct b43_wldev
*dev
, u16 reg
, u16 value
)
267 assert_mac_suspended(dev
);
268 dev
->phy
.ops
->phy_write(dev
, reg
, value
);
269 if (++dev
->phy
.writes_counter
== B43_MAX_WRITES_IN_ROW
) {
270 b43_read16(dev
, B43_MMIO_PHY_VER
);
271 dev
->phy
.writes_counter
= 0;
275 void b43_phy_copy(struct b43_wldev
*dev
, u16 destreg
, u16 srcreg
)
277 assert_mac_suspended(dev
);
278 dev
->phy
.ops
->phy_write(dev
, destreg
,
279 dev
->phy
.ops
->phy_read(dev
, srcreg
));
282 void b43_phy_mask(struct b43_wldev
*dev
, u16 offset
, u16 mask
)
284 if (dev
->phy
.ops
->phy_maskset
) {
285 assert_mac_suspended(dev
);
286 dev
->phy
.ops
->phy_maskset(dev
, offset
, mask
, 0);
288 b43_phy_write(dev
, offset
,
289 b43_phy_read(dev
, offset
) & mask
);
293 void b43_phy_set(struct b43_wldev
*dev
, u16 offset
, u16 set
)
295 if (dev
->phy
.ops
->phy_maskset
) {
296 assert_mac_suspended(dev
);
297 dev
->phy
.ops
->phy_maskset(dev
, offset
, 0xFFFF, set
);
299 b43_phy_write(dev
, offset
,
300 b43_phy_read(dev
, offset
) | set
);
304 void b43_phy_maskset(struct b43_wldev
*dev
, u16 offset
, u16 mask
, u16 set
)
306 if (dev
->phy
.ops
->phy_maskset
) {
307 assert_mac_suspended(dev
);
308 dev
->phy
.ops
->phy_maskset(dev
, offset
, mask
, set
);
310 b43_phy_write(dev
, offset
,
311 (b43_phy_read(dev
, offset
) & mask
) | set
);
315 int b43_switch_channel(struct b43_wldev
*dev
, unsigned int new_channel
)
317 struct b43_phy
*phy
= &(dev
->phy
);
318 u16 channelcookie
, savedcookie
;
321 if (new_channel
== B43_DEFAULT_CHANNEL
)
322 new_channel
= phy
->ops
->get_default_chan(dev
);
324 /* First we set the channel radio code to prevent the
325 * firmware from sending ghost packets.
327 channelcookie
= new_channel
;
328 if (b43_current_band(dev
->wl
) == IEEE80211_BAND_5GHZ
)
329 channelcookie
|= B43_SHM_SH_CHAN_5GHZ
;
330 /* FIXME: set 40Mhz flag if required */
332 channelcookie
|= B43_SHM_SH_CHAN_40MHZ
;
333 savedcookie
= b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_CHAN
);
334 b43_shm_write16(dev
, B43_SHM_SHARED
, B43_SHM_SH_CHAN
, channelcookie
);
336 /* Now try to switch the PHY hardware channel. */
337 err
= phy
->ops
->switch_channel(dev
, new_channel
);
339 goto err_restore_cookie
;
341 dev
->phy
.channel
= new_channel
;
342 /* Wait for the radio to tune to the channel and stabilize. */
348 b43_shm_write16(dev
, B43_SHM_SHARED
,
349 B43_SHM_SH_CHAN
, savedcookie
);
354 void b43_software_rfkill(struct b43_wldev
*dev
, bool blocked
)
356 struct b43_phy
*phy
= &dev
->phy
;
358 b43_mac_suspend(dev
);
359 phy
->ops
->software_rfkill(dev
, blocked
);
360 phy
->radio_on
= !blocked
;
365 * b43_phy_txpower_adjust_work - TX power workqueue.
367 * Workqueue for updating the TX power parameters in hardware.
369 void b43_phy_txpower_adjust_work(struct work_struct
*work
)
371 struct b43_wl
*wl
= container_of(work
, struct b43_wl
,
372 txpower_adjust_work
);
373 struct b43_wldev
*dev
;
375 mutex_lock(&wl
->mutex
);
376 dev
= wl
->current_dev
;
378 if (likely(dev
&& (b43_status(dev
) >= B43_STAT_STARTED
)))
379 dev
->phy
.ops
->adjust_txpower(dev
);
381 mutex_unlock(&wl
->mutex
);
384 void b43_phy_txpower_check(struct b43_wldev
*dev
, unsigned int flags
)
386 struct b43_phy
*phy
= &dev
->phy
;
387 unsigned long now
= jiffies
;
388 enum b43_txpwr_result result
;
390 if (!(flags
& B43_TXPWR_IGNORE_TIME
)) {
391 /* Check if it's time for a TXpower check. */
392 if (time_before(now
, phy
->next_txpwr_check_time
))
393 return; /* Not yet */
395 /* The next check will be needed in two seconds, or later. */
396 phy
->next_txpwr_check_time
= round_jiffies(now
+ (HZ
* 2));
398 if ((dev
->dev
->board_vendor
== SSB_BOARDVENDOR_BCM
) &&
399 (dev
->dev
->board_type
== SSB_BOARD_BU4306
))
400 return; /* No software txpower adjustment needed */
402 result
= phy
->ops
->recalc_txpower(dev
, !!(flags
& B43_TXPWR_IGNORE_TSSI
));
403 if (result
== B43_TXPWR_RES_DONE
)
404 return; /* We are done. */
405 B43_WARN_ON(result
!= B43_TXPWR_RES_NEED_ADJUST
);
406 B43_WARN_ON(phy
->ops
->adjust_txpower
== NULL
);
408 /* We must adjust the transmission power in hardware.
409 * Schedule b43_phy_txpower_adjust_work(). */
410 ieee80211_queue_work(dev
->wl
->hw
, &dev
->wl
->txpower_adjust_work
);
413 int b43_phy_shm_tssi_read(struct b43_wldev
*dev
, u16 shm_offset
)
415 const bool is_ofdm
= (shm_offset
!= B43_SHM_SH_TSSI_CCK
);
416 unsigned int a
, b
, c
, d
;
417 unsigned int average
;
420 tmp
= b43_shm_read32(dev
, B43_SHM_SHARED
, shm_offset
);
422 b
= (tmp
>> 8) & 0xFF;
423 c
= (tmp
>> 16) & 0xFF;
424 d
= (tmp
>> 24) & 0xFF;
425 if (a
== 0 || a
== B43_TSSI_MAX
||
426 b
== 0 || b
== B43_TSSI_MAX
||
427 c
== 0 || c
== B43_TSSI_MAX
||
428 d
== 0 || d
== B43_TSSI_MAX
)
430 /* The values are OK. Clear them. */
431 tmp
= B43_TSSI_MAX
| (B43_TSSI_MAX
<< 8) |
432 (B43_TSSI_MAX
<< 16) | (B43_TSSI_MAX
<< 24);
433 b43_shm_write32(dev
, B43_SHM_SHARED
, shm_offset
, tmp
);
442 /* Get the average of the values with 0.5 added to each value. */
443 average
= (a
+ b
+ c
+ d
+ 2) / 4;
445 /* Adjust for CCK-boost */
446 if (b43_shm_read16(dev
, B43_SHM_SHARED
, B43_SHM_SH_HOSTF1
)
448 average
= (average
>= 13) ? (average
- 13) : 0;
454 void b43_phyop_switch_analog_generic(struct b43_wldev
*dev
, bool on
)
456 b43_write16(dev
, B43_MMIO_PHY0
, on
? 0 : 0xF4);
460 bool b43_channel_type_is_40mhz(enum nl80211_channel_type channel_type
)
462 return (channel_type
== NL80211_CHAN_HT40MINUS
||
463 channel_type
== NL80211_CHAN_HT40PLUS
);
466 /* http://bcm-v4.sipsolutions.net/802.11/PHY/N/BmacPhyClkFgc */
467 void b43_phy_force_clock(struct b43_wldev
*dev
, bool force
)
471 WARN_ON(dev
->phy
.type
!= B43_PHYTYPE_N
&&
472 dev
->phy
.type
!= B43_PHYTYPE_HT
);
474 switch (dev
->dev
->bus_type
) {
475 #ifdef CONFIG_B43_BCMA
477 tmp
= bcma_aread32(dev
->dev
->bdev
, BCMA_IOCTL
);
479 tmp
|= BCMA_IOCTL_FGC
;
481 tmp
&= ~BCMA_IOCTL_FGC
;
482 bcma_awrite32(dev
->dev
->bdev
, BCMA_IOCTL
, tmp
);
485 #ifdef CONFIG_B43_SSB
487 tmp
= ssb_read32(dev
->dev
->sdev
, SSB_TMSLOW
);
489 tmp
|= SSB_TMSLOW_FGC
;
491 tmp
&= ~SSB_TMSLOW_FGC
;
492 ssb_write32(dev
->dev
->sdev
, SSB_TMSLOW
, tmp
);
498 /* http://bcm-v4.sipsolutions.net/802.11/PHY/Cordic */
499 struct b43_c32
b43_cordic(int theta
)
501 static const u32 arctg
[] = {
502 2949120, 1740967, 919879, 466945, 234379, 117304,
503 58666, 29335, 14668, 7334, 3667, 1833,
504 917, 458, 229, 115, 57, 29,
510 struct b43_c32 ret
= { .i
= 39797, .q
= 0, };
512 while (theta
> (180 << 16))
513 theta
-= (360 << 16);
514 while (theta
< -(180 << 16))
515 theta
+= (360 << 16);
517 if (theta
> (90 << 16)) {
518 theta
-= (180 << 16);
520 } else if (theta
< -(90 << 16)) {
521 theta
+= (180 << 16);
525 for (i
= 0; i
<= 17; i
++) {
527 tmp
= ret
.i
- (ret
.q
>> i
);
532 tmp
= ret
.i
+ (ret
.q
>> i
);