LCOV - code coverage report
Current view: top level - drivers/net/wireless/broadcom/b43legacy - phy.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 0 1423 0.0 %
Date: 2022-04-01 13:59:58 Functions: 0 31 0.0 %
Branches: 0 572 0.0 %

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

Generated by: LCOV version 1.14