LCOV - code coverage report
Current view: top level - drivers/net/wireless/broadcom/b43legacy - main.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 15 2071 0.7 %
Date: 2022-03-28 16:04:14 Functions: 2 101 2.0 %
Branches: 1 780 0.1 %

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

Generated by: LCOV version 1.14