b43: update cordic code to match current specs
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / wireless / b43 / phy_common.c
blob8f7d7eff2d803a79649e4a340f15a6d806089adb
1 /*
3 Broadcom B43 wireless driver
4 Common PHY routines
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 <mb@bu3sch.de>
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"
30 #include "phy_g.h"
31 #include "phy_a.h"
32 #include "phy_n.h"
33 #include "phy_lp.h"
34 #include "b43.h"
35 #include "main.h"
38 int b43_phy_allocate(struct b43_wldev *dev)
40 struct b43_phy *phy = &(dev->phy);
41 int err;
43 phy->ops = NULL;
45 switch (phy->type) {
46 case B43_PHYTYPE_A:
47 phy->ops = &b43_phyops_a;
48 break;
49 case B43_PHYTYPE_G:
50 phy->ops = &b43_phyops_g;
51 break;
52 case B43_PHYTYPE_N:
53 #ifdef CONFIG_B43_NPHY
54 phy->ops = &b43_phyops_n;
55 #endif
56 break;
57 case B43_PHYTYPE_LP:
58 #ifdef CONFIG_B43_PHY_LP
59 phy->ops = &b43_phyops_lp;
60 #endif
61 break;
63 if (B43_WARN_ON(!phy->ops))
64 return -ENODEV;
66 err = phy->ops->allocate(dev);
67 if (err)
68 phy->ops = NULL;
70 return err;
73 void b43_phy_free(struct b43_wldev *dev)
75 dev->phy.ops->free(dev);
76 dev->phy.ops = NULL;
79 int b43_phy_init(struct b43_wldev *dev)
81 struct b43_phy *phy = &dev->phy;
82 const struct b43_phy_operations *ops = phy->ops;
83 int err;
85 phy->channel = ops->get_default_chan(dev);
87 ops->software_rfkill(dev, false);
88 err = ops->init(dev);
89 if (err) {
90 b43err(dev->wl, "PHY init failed\n");
91 goto err_block_rf;
93 /* Make sure to switch hardware and firmware (SHM) to
94 * the default channel. */
95 err = b43_switch_channel(dev, ops->get_default_chan(dev));
96 if (err) {
97 b43err(dev->wl, "PHY init: Channel switch to default failed\n");
98 goto err_phy_exit;
101 return 0;
103 err_phy_exit:
104 if (ops->exit)
105 ops->exit(dev);
106 err_block_rf:
107 ops->software_rfkill(dev, true);
109 return err;
112 void b43_phy_exit(struct b43_wldev *dev)
114 const struct b43_phy_operations *ops = dev->phy.ops;
116 ops->software_rfkill(dev, true);
117 if (ops->exit)
118 ops->exit(dev);
121 bool b43_has_hardware_pctl(struct b43_wldev *dev)
123 if (!dev->phy.hardware_power_control)
124 return 0;
125 if (!dev->phy.ops->supports_hwpctl)
126 return 0;
127 return dev->phy.ops->supports_hwpctl(dev);
130 void b43_radio_lock(struct b43_wldev *dev)
132 u32 macctl;
134 #if B43_DEBUG
135 B43_WARN_ON(dev->phy.radio_locked);
136 dev->phy.radio_locked = 1;
137 #endif
139 macctl = b43_read32(dev, B43_MMIO_MACCTL);
140 macctl |= B43_MACCTL_RADIOLOCK;
141 b43_write32(dev, B43_MMIO_MACCTL, macctl);
142 /* Commit the write and wait for the firmware
143 * to finish any radio register access. */
144 b43_read32(dev, B43_MMIO_MACCTL);
145 udelay(10);
148 void b43_radio_unlock(struct b43_wldev *dev)
150 u32 macctl;
152 #if B43_DEBUG
153 B43_WARN_ON(!dev->phy.radio_locked);
154 dev->phy.radio_locked = 0;
155 #endif
157 /* Commit any write */
158 b43_read16(dev, B43_MMIO_PHY_VER);
159 /* unlock */
160 macctl = b43_read32(dev, B43_MMIO_MACCTL);
161 macctl &= ~B43_MACCTL_RADIOLOCK;
162 b43_write32(dev, B43_MMIO_MACCTL, macctl);
165 void b43_phy_lock(struct b43_wldev *dev)
167 #if B43_DEBUG
168 B43_WARN_ON(dev->phy.phy_locked);
169 dev->phy.phy_locked = 1;
170 #endif
171 B43_WARN_ON(dev->dev->id.revision < 3);
173 if (!b43_is_mode(dev->wl, NL80211_IFTYPE_AP))
174 b43_power_saving_ctl_bits(dev, B43_PS_AWAKE);
177 void b43_phy_unlock(struct b43_wldev *dev)
179 #if B43_DEBUG
180 B43_WARN_ON(!dev->phy.phy_locked);
181 dev->phy.phy_locked = 0;
182 #endif
183 B43_WARN_ON(dev->dev->id.revision < 3);
185 if (!b43_is_mode(dev->wl, NL80211_IFTYPE_AP))
186 b43_power_saving_ctl_bits(dev, 0);
189 static inline void assert_mac_suspended(struct b43_wldev *dev)
191 if (!B43_DEBUG)
192 return;
193 if ((b43_status(dev) >= B43_STAT_INITIALIZED) &&
194 (dev->mac_suspended <= 0)) {
195 b43dbg(dev->wl, "PHY/RADIO register access with "
196 "enabled MAC.\n");
197 dump_stack();
201 u16 b43_radio_read(struct b43_wldev *dev, u16 reg)
203 assert_mac_suspended(dev);
204 return dev->phy.ops->radio_read(dev, reg);
207 void b43_radio_write(struct b43_wldev *dev, u16 reg, u16 value)
209 assert_mac_suspended(dev);
210 dev->phy.ops->radio_write(dev, reg, value);
213 void b43_radio_mask(struct b43_wldev *dev, u16 offset, u16 mask)
215 b43_radio_write16(dev, offset,
216 b43_radio_read16(dev, offset) & mask);
219 void b43_radio_set(struct b43_wldev *dev, u16 offset, u16 set)
221 b43_radio_write16(dev, offset,
222 b43_radio_read16(dev, offset) | set);
225 void b43_radio_maskset(struct b43_wldev *dev, u16 offset, u16 mask, u16 set)
227 b43_radio_write16(dev, offset,
228 (b43_radio_read16(dev, offset) & mask) | set);
231 u16 b43_phy_read(struct b43_wldev *dev, u16 reg)
233 assert_mac_suspended(dev);
234 return dev->phy.ops->phy_read(dev, reg);
237 void b43_phy_write(struct b43_wldev *dev, u16 reg, u16 value)
239 assert_mac_suspended(dev);
240 dev->phy.ops->phy_write(dev, reg, value);
243 void b43_phy_copy(struct b43_wldev *dev, u16 destreg, u16 srcreg)
245 assert_mac_suspended(dev);
246 dev->phy.ops->phy_write(dev, destreg,
247 dev->phy.ops->phy_read(dev, srcreg));
250 void b43_phy_mask(struct b43_wldev *dev, u16 offset, u16 mask)
252 if (dev->phy.ops->phy_maskset) {
253 assert_mac_suspended(dev);
254 dev->phy.ops->phy_maskset(dev, offset, mask, 0);
255 } else {
256 b43_phy_write(dev, offset,
257 b43_phy_read(dev, offset) & mask);
261 void b43_phy_set(struct b43_wldev *dev, u16 offset, u16 set)
263 if (dev->phy.ops->phy_maskset) {
264 assert_mac_suspended(dev);
265 dev->phy.ops->phy_maskset(dev, offset, 0xFFFF, set);
266 } else {
267 b43_phy_write(dev, offset,
268 b43_phy_read(dev, offset) | set);
272 void b43_phy_maskset(struct b43_wldev *dev, u16 offset, u16 mask, u16 set)
274 if (dev->phy.ops->phy_maskset) {
275 assert_mac_suspended(dev);
276 dev->phy.ops->phy_maskset(dev, offset, mask, set);
277 } else {
278 b43_phy_write(dev, offset,
279 (b43_phy_read(dev, offset) & mask) | set);
283 int b43_switch_channel(struct b43_wldev *dev, unsigned int new_channel)
285 struct b43_phy *phy = &(dev->phy);
286 u16 channelcookie, savedcookie;
287 int err;
289 if (new_channel == B43_DEFAULT_CHANNEL)
290 new_channel = phy->ops->get_default_chan(dev);
292 /* First we set the channel radio code to prevent the
293 * firmware from sending ghost packets.
295 channelcookie = new_channel;
296 if (b43_current_band(dev->wl) == IEEE80211_BAND_5GHZ)
297 channelcookie |= 0x100;
298 //FIXME set 40Mhz flag if required
299 savedcookie = b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_CHAN);
300 b43_shm_write16(dev, B43_SHM_SHARED, B43_SHM_SH_CHAN, channelcookie);
302 /* Now try to switch the PHY hardware channel. */
303 err = phy->ops->switch_channel(dev, new_channel);
304 if (err)
305 goto err_restore_cookie;
307 dev->phy.channel = new_channel;
308 /* Wait for the radio to tune to the channel and stabilize. */
309 msleep(8);
311 return 0;
313 err_restore_cookie:
314 b43_shm_write16(dev, B43_SHM_SHARED,
315 B43_SHM_SH_CHAN, savedcookie);
317 return err;
320 void b43_software_rfkill(struct b43_wldev *dev, bool blocked)
322 struct b43_phy *phy = &dev->phy;
324 b43_mac_suspend(dev);
325 phy->ops->software_rfkill(dev, blocked);
326 phy->radio_on = !blocked;
327 b43_mac_enable(dev);
331 * b43_phy_txpower_adjust_work - TX power workqueue.
333 * Workqueue for updating the TX power parameters in hardware.
335 void b43_phy_txpower_adjust_work(struct work_struct *work)
337 struct b43_wl *wl = container_of(work, struct b43_wl,
338 txpower_adjust_work);
339 struct b43_wldev *dev;
341 mutex_lock(&wl->mutex);
342 dev = wl->current_dev;
344 if (likely(dev && (b43_status(dev) >= B43_STAT_STARTED)))
345 dev->phy.ops->adjust_txpower(dev);
347 mutex_unlock(&wl->mutex);
350 void b43_phy_txpower_check(struct b43_wldev *dev, unsigned int flags)
352 struct b43_phy *phy = &dev->phy;
353 unsigned long now = jiffies;
354 enum b43_txpwr_result result;
356 if (!(flags & B43_TXPWR_IGNORE_TIME)) {
357 /* Check if it's time for a TXpower check. */
358 if (time_before(now, phy->next_txpwr_check_time))
359 return; /* Not yet */
361 /* The next check will be needed in two seconds, or later. */
362 phy->next_txpwr_check_time = round_jiffies(now + (HZ * 2));
364 if ((dev->dev->bus->boardinfo.vendor == SSB_BOARDVENDOR_BCM) &&
365 (dev->dev->bus->boardinfo.type == SSB_BOARD_BU4306))
366 return; /* No software txpower adjustment needed */
368 result = phy->ops->recalc_txpower(dev, !!(flags & B43_TXPWR_IGNORE_TSSI));
369 if (result == B43_TXPWR_RES_DONE)
370 return; /* We are done. */
371 B43_WARN_ON(result != B43_TXPWR_RES_NEED_ADJUST);
372 B43_WARN_ON(phy->ops->adjust_txpower == NULL);
374 /* We must adjust the transmission power in hardware.
375 * Schedule b43_phy_txpower_adjust_work(). */
376 ieee80211_queue_work(dev->wl->hw, &dev->wl->txpower_adjust_work);
379 int b43_phy_shm_tssi_read(struct b43_wldev *dev, u16 shm_offset)
381 const bool is_ofdm = (shm_offset != B43_SHM_SH_TSSI_CCK);
382 unsigned int a, b, c, d;
383 unsigned int average;
384 u32 tmp;
386 tmp = b43_shm_read32(dev, B43_SHM_SHARED, shm_offset);
387 a = tmp & 0xFF;
388 b = (tmp >> 8) & 0xFF;
389 c = (tmp >> 16) & 0xFF;
390 d = (tmp >> 24) & 0xFF;
391 if (a == 0 || a == B43_TSSI_MAX ||
392 b == 0 || b == B43_TSSI_MAX ||
393 c == 0 || c == B43_TSSI_MAX ||
394 d == 0 || d == B43_TSSI_MAX)
395 return -ENOENT;
396 /* The values are OK. Clear them. */
397 tmp = B43_TSSI_MAX | (B43_TSSI_MAX << 8) |
398 (B43_TSSI_MAX << 16) | (B43_TSSI_MAX << 24);
399 b43_shm_write32(dev, B43_SHM_SHARED, shm_offset, tmp);
401 if (is_ofdm) {
402 a = (a + 32) & 0x3F;
403 b = (b + 32) & 0x3F;
404 c = (c + 32) & 0x3F;
405 d = (d + 32) & 0x3F;
408 /* Get the average of the values with 0.5 added to each value. */
409 average = (a + b + c + d + 2) / 4;
410 if (is_ofdm) {
411 /* Adjust for CCK-boost */
412 if (b43_shm_read16(dev, B43_SHM_SHARED, B43_SHM_SH_HOSTFLO)
413 & B43_HF_CCKBOOST)
414 average = (average >= 13) ? (average - 13) : 0;
417 return average;
420 void b43_phyop_switch_analog_generic(struct b43_wldev *dev, bool on)
422 b43_write16(dev, B43_MMIO_PHY0, on ? 0 : 0xF4);
425 /* http://bcm-v4.sipsolutions.net/802.11/PHY/Cordic */
426 struct b43_c32 b43_cordic(int theta)
428 u32 arctg[] = { 2949120, 1740967, 919879, 466945, 234379, 117304,
429 58666, 29335, 14668, 7334, 3667, 1833, 917, 458,
430 229, 115, 57, 29, };
431 u8 i;
432 s32 tmp;
433 s8 signx = 1;
434 u32 angle = 0;
435 struct b43_c32 ret = { .i = 39797, .q = 0, };
437 while (theta > (180 << 16))
438 theta -= (360 << 16);
439 while (theta < -(180 << 16))
440 theta += (360 << 16);
442 if (theta > (90 << 16)) {
443 theta -= (180 << 16);
444 signx = -1;
445 } else if (theta < -(90 << 16)) {
446 theta += (180 << 16);
447 signx = -1;
450 for (i = 0; i <= 17; i++) {
451 if (theta > angle) {
452 tmp = ret.i - (ret.q >> i);
453 ret.q += ret.i >> i;
454 ret.i = tmp;
455 angle += arctg[i];
456 } else {
457 tmp = ret.i + (ret.q >> i);
458 ret.q -= ret.i >> i;
459 ret.i = tmp;
460 angle -= arctg[i];
464 ret.i *= signx;
465 ret.q *= signx;
467 return ret;