linux/drivers/net/wireless/brcm80211/brcmsmac/main.c
<<
>>
Prefs
   1/*
   2 * Copyright (c) 2010 Broadcom Corporation
   3 *
   4 * Permission to use, copy, modify, and/or distribute this software for any
   5 * purpose with or without fee is hereby granted, provided that the above
   6 * copyright notice and this permission notice appear in all copies.
   7 *
   8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15 */
  16
  17#include <linux/pci_ids.h>
  18#include <linux/if_ether.h>
  19#include <net/mac80211.h>
  20#include <brcm_hw_ids.h>
  21#include <aiutils.h>
  22#include <chipcommon.h>
  23#include "rate.h"
  24#include "scb.h"
  25#include "phy/phy_hal.h"
  26#include "channel.h"
  27#include "antsel.h"
  28#include "stf.h"
  29#include "ampdu.h"
  30#include "mac80211_if.h"
  31#include "ucode_loader.h"
  32#include "main.h"
  33#include "soc.h"
  34
  35/*
  36 * Indication for txflowcontrol that all priority bits in
  37 * TXQ_STOP_FOR_PRIOFC_MASK are to be considered.
  38 */
  39#define ALLPRIO                         -1
  40
  41/* watchdog timer, in unit of ms */
  42#define TIMER_INTERVAL_WATCHDOG         1000
  43/* radio monitor timer, in unit of ms */
  44#define TIMER_INTERVAL_RADIOCHK         800
  45
  46/* beacon interval, in unit of 1024TU */
  47#define BEACON_INTERVAL_DEFAULT         100
  48
  49/* n-mode support capability */
  50/* 2x2 includes both 1x1 & 2x2 devices
  51 * reserved #define 2 for future when we want to separate 1x1 & 2x2 and
  52 * control it independently
  53 */
  54#define WL_11N_2x2                      1
  55#define WL_11N_3x3                      3
  56#define WL_11N_4x4                      4
  57
  58#define EDCF_ACI_MASK                   0x60
  59#define EDCF_ACI_SHIFT                  5
  60#define EDCF_ECWMIN_MASK                0x0f
  61#define EDCF_ECWMAX_SHIFT               4
  62#define EDCF_AIFSN_MASK                 0x0f
  63#define EDCF_AIFSN_MAX                  15
  64#define EDCF_ECWMAX_MASK                0xf0
  65
  66#define EDCF_AC_BE_TXOP_STA             0x0000
  67#define EDCF_AC_BK_TXOP_STA             0x0000
  68#define EDCF_AC_VO_ACI_STA              0x62
  69#define EDCF_AC_VO_ECW_STA              0x32
  70#define EDCF_AC_VI_ACI_STA              0x42
  71#define EDCF_AC_VI_ECW_STA              0x43
  72#define EDCF_AC_BK_ECW_STA              0xA4
  73#define EDCF_AC_VI_TXOP_STA             0x005e
  74#define EDCF_AC_VO_TXOP_STA             0x002f
  75#define EDCF_AC_BE_ACI_STA              0x03
  76#define EDCF_AC_BE_ECW_STA              0xA4
  77#define EDCF_AC_BK_ACI_STA              0x27
  78#define EDCF_AC_VO_TXOP_AP              0x002f
  79
  80#define EDCF_TXOP2USEC(txop)            ((txop) << 5)
  81#define EDCF_ECW2CW(exp)                ((1 << (exp)) - 1)
  82
  83#define APHY_SYMBOL_TIME                4
  84#define APHY_PREAMBLE_TIME              16
  85#define APHY_SIGNAL_TIME                4
  86#define APHY_SIFS_TIME                  16
  87#define APHY_SERVICE_NBITS              16
  88#define APHY_TAIL_NBITS                 6
  89#define BPHY_SIFS_TIME                  10
  90#define BPHY_PLCP_SHORT_TIME            96
  91
  92#define PREN_PREAMBLE                   24
  93#define PREN_MM_EXT                     12
  94#define PREN_PREAMBLE_EXT               4
  95
  96#define DOT11_MAC_HDR_LEN               24
  97#define DOT11_ACK_LEN                   10
  98#define DOT11_BA_LEN                    4
  99#define DOT11_OFDM_SIGNAL_EXTENSION     6
 100#define DOT11_MIN_FRAG_LEN              256
 101#define DOT11_RTS_LEN                   16
 102#define DOT11_CTS_LEN                   10
 103#define DOT11_BA_BITMAP_LEN             128
 104#define DOT11_MIN_BEACON_PERIOD         1
 105#define DOT11_MAX_BEACON_PERIOD         0xFFFF
 106#define DOT11_MAXNUMFRAGS               16
 107#define DOT11_MAX_FRAG_LEN              2346
 108
 109#define BPHY_PLCP_TIME                  192
 110#define RIFS_11N_TIME                   2
 111
 112/* length of the BCN template area */
 113#define BCN_TMPL_LEN                    512
 114
 115/* brcms_bss_info flag bit values */
 116#define BRCMS_BSS_HT                    0x0020  /* BSS is HT (MIMO) capable */
 117
 118/* chip rx buffer offset */
 119#define BRCMS_HWRXOFF                   38
 120
 121/* rfdisable delay timer 500 ms, runs of ALP clock */
 122#define RFDISABLE_DEFAULT               10000000
 123
 124#define BRCMS_TEMPSENSE_PERIOD          10      /* 10 second timeout */
 125
 126/* precedences numbers for wlc queues. These are twice as may levels as
 127 * 802.1D priorities.
 128 * Odd numbers are used for HI priority traffic at same precedence levels
 129 * These constants are used ONLY by wlc_prio2prec_map.  Do not use them
 130 * elsewhere.
 131 */
 132#define _BRCMS_PREC_NONE                0       /* None = - */
 133#define _BRCMS_PREC_BK                  2       /* BK - Background */
 134#define _BRCMS_PREC_BE                  4       /* BE - Best-effort */
 135#define _BRCMS_PREC_EE                  6       /* EE - Excellent-effort */
 136#define _BRCMS_PREC_CL                  8       /* CL - Controlled Load */
 137#define _BRCMS_PREC_VI                  10      /* Vi - Video */
 138#define _BRCMS_PREC_VO                  12      /* Vo - Voice */
 139#define _BRCMS_PREC_NC                  14      /* NC - Network Control */
 140
 141/* synthpu_dly times in us */
 142#define SYNTHPU_DLY_APHY_US             3700
 143#define SYNTHPU_DLY_BPHY_US             1050
 144#define SYNTHPU_DLY_NPHY_US             2048
 145#define SYNTHPU_DLY_LPPHY_US            300
 146
 147#define ANTCNT                          10      /* vanilla M_MAX_ANTCNT val */
 148
 149/* Per-AC retry limit register definitions; uses defs.h bitfield macros */
 150#define EDCF_SHORT_S                    0
 151#define EDCF_SFB_S                      4
 152#define EDCF_LONG_S                     8
 153#define EDCF_LFB_S                      12
 154#define EDCF_SHORT_M                    BITFIELD_MASK(4)
 155#define EDCF_SFB_M                      BITFIELD_MASK(4)
 156#define EDCF_LONG_M                     BITFIELD_MASK(4)
 157#define EDCF_LFB_M                      BITFIELD_MASK(4)
 158
 159#define RETRY_SHORT_DEF                 7       /* Default Short retry Limit */
 160#define RETRY_SHORT_MAX                 255     /* Maximum Short retry Limit */
 161#define RETRY_LONG_DEF                  4       /* Default Long retry count */
 162#define RETRY_SHORT_FB                  3       /* Short count for fb rate */
 163#define RETRY_LONG_FB                   2       /* Long count for fb rate */
 164
 165#define APHY_CWMIN                      15
 166#define PHY_CWMAX                       1023
 167
 168#define EDCF_AIFSN_MIN                  1
 169
 170#define FRAGNUM_MASK                    0xF
 171
 172#define APHY_SLOT_TIME                  9
 173#define BPHY_SLOT_TIME                  20
 174
 175#define WL_SPURAVOID_OFF                0
 176#define WL_SPURAVOID_ON1                1
 177#define WL_SPURAVOID_ON2                2
 178
 179/* invalid core flags, use the saved coreflags */
 180#define BRCMS_USE_COREFLAGS             0xffffffff
 181
 182/* values for PLCPHdr_override */
 183#define BRCMS_PLCP_AUTO                 -1
 184#define BRCMS_PLCP_SHORT                0
 185#define BRCMS_PLCP_LONG                 1
 186
 187/* values for g_protection_override and n_protection_override */
 188#define BRCMS_PROTECTION_AUTO           -1
 189#define BRCMS_PROTECTION_OFF            0
 190#define BRCMS_PROTECTION_ON             1
 191#define BRCMS_PROTECTION_MMHDR_ONLY     2
 192#define BRCMS_PROTECTION_CTS_ONLY       3
 193
 194/* values for g_protection_control and n_protection_control */
 195#define BRCMS_PROTECTION_CTL_OFF        0
 196#define BRCMS_PROTECTION_CTL_LOCAL      1
 197#define BRCMS_PROTECTION_CTL_OVERLAP    2
 198
 199/* values for n_protection */
 200#define BRCMS_N_PROTECTION_OFF          0
 201#define BRCMS_N_PROTECTION_OPTIONAL     1
 202#define BRCMS_N_PROTECTION_20IN40       2
 203#define BRCMS_N_PROTECTION_MIXEDMODE    3
 204
 205/* values for band specific 40MHz capabilities */
 206#define BRCMS_N_BW_20ALL                0
 207#define BRCMS_N_BW_40ALL                1
 208#define BRCMS_N_BW_20IN2G_40IN5G        2
 209
 210/* bitflags for SGI support (sgi_rx iovar) */
 211#define BRCMS_N_SGI_20                  0x01
 212#define BRCMS_N_SGI_40                  0x02
 213
 214/* defines used by the nrate iovar */
 215/* MSC in use,indicates b0-6 holds an mcs */
 216#define NRATE_MCS_INUSE                 0x00000080
 217/* rate/mcs value */
 218#define NRATE_RATE_MASK                 0x0000007f
 219/* stf mode mask: siso, cdd, stbc, sdm */
 220#define NRATE_STF_MASK                  0x0000ff00
 221/* stf mode shift */
 222#define NRATE_STF_SHIFT                 8
 223/* bit indicate to override mcs only */
 224#define NRATE_OVERRIDE_MCS_ONLY         0x40000000
 225#define NRATE_SGI_MASK                  0x00800000      /* sgi mode */
 226#define NRATE_SGI_SHIFT                 23              /* sgi mode */
 227#define NRATE_LDPC_CODING               0x00400000      /* adv coding in use */
 228#define NRATE_LDPC_SHIFT                22              /* ldpc shift */
 229
 230#define NRATE_STF_SISO                  0               /* stf mode SISO */
 231#define NRATE_STF_CDD                   1               /* stf mode CDD */
 232#define NRATE_STF_STBC                  2               /* stf mode STBC */
 233#define NRATE_STF_SDM                   3               /* stf mode SDM */
 234
 235#define MAX_DMA_SEGS                    4
 236
 237/* Max # of entries in Tx FIFO based on 4kb page size */
 238#define NTXD                            256
 239/* Max # of entries in Rx FIFO based on 4kb page size */
 240#define NRXD                            256
 241
 242/* try to keep this # rbufs posted to the chip */
 243#define NRXBUFPOST                      32
 244
 245/* data msg txq hiwat mark */
 246#define BRCMS_DATAHIWAT                 50
 247
 248/* max # frames to process in brcms_c_recv() */
 249#define RXBND                           8
 250/* max # tx status to process in wlc_txstatus() */
 251#define TXSBND                          8
 252
 253/* brcmu_format_flags() bit description structure */
 254struct brcms_c_bit_desc {
 255        u32 bit;
 256        const char *name;
 257};
 258
 259/*
 260 * The following table lists the buffer memory allocated to xmt fifos in HW.
 261 * the size is in units of 256bytes(one block), total size is HW dependent
 262 * ucode has default fifo partition, sw can overwrite if necessary
 263 *
 264 * This is documented in twiki under the topic UcodeTxFifo. Please ensure
 265 * the twiki is updated before making changes.
 266 */
 267
 268/* Starting corerev for the fifo size table */
 269#define XMTFIFOTBL_STARTREV     20
 270
 271struct d11init {
 272        __le16 addr;
 273        __le16 size;
 274        __le32 value;
 275};
 276
 277struct edcf_acparam {
 278        u8 ACI;
 279        u8 ECW;
 280        u16 TXOP;
 281} __packed;
 282
 283const u8 prio2fifo[NUMPRIO] = {
 284        TX_AC_BE_FIFO,          /* 0    BE      AC_BE   Best Effort */
 285        TX_AC_BK_FIFO,          /* 1    BK      AC_BK   Background */
 286        TX_AC_BK_FIFO,          /* 2    --      AC_BK   Background */
 287        TX_AC_BE_FIFO,          /* 3    EE      AC_BE   Best Effort */
 288        TX_AC_VI_FIFO,          /* 4    CL      AC_VI   Video */
 289        TX_AC_VI_FIFO,          /* 5    VI      AC_VI   Video */
 290        TX_AC_VO_FIFO,          /* 6    VO      AC_VO   Voice */
 291        TX_AC_VO_FIFO           /* 7    NC      AC_VO   Voice */
 292};
 293
 294/* debug/trace */
 295uint brcm_msg_level =
 296#if defined(BCMDBG)
 297        LOG_ERROR_VAL;
 298#else
 299        0;
 300#endif                          /* BCMDBG */
 301
 302/* TX FIFO number to WME/802.1E Access Category */
 303static const u8 wme_fifo2ac[] = {
 304        IEEE80211_AC_BK,
 305        IEEE80211_AC_BE,
 306        IEEE80211_AC_VI,
 307        IEEE80211_AC_VO,
 308        IEEE80211_AC_BE,
 309        IEEE80211_AC_BE
 310};
 311
 312/* ieee80211 Access Category to TX FIFO number */
 313static const u8 wme_ac2fifo[] = {
 314        TX_AC_VO_FIFO,
 315        TX_AC_VI_FIFO,
 316        TX_AC_BE_FIFO,
 317        TX_AC_BK_FIFO
 318};
 319
 320/* 802.1D Priority to precedence queue mapping */
 321const u8 wlc_prio2prec_map[] = {
 322        _BRCMS_PREC_BE,         /* 0 BE - Best-effort */
 323        _BRCMS_PREC_BK,         /* 1 BK - Background */
 324        _BRCMS_PREC_NONE,               /* 2 None = - */
 325        _BRCMS_PREC_EE,         /* 3 EE - Excellent-effort */
 326        _BRCMS_PREC_CL,         /* 4 CL - Controlled Load */
 327        _BRCMS_PREC_VI,         /* 5 Vi - Video */
 328        _BRCMS_PREC_VO,         /* 6 Vo - Voice */
 329        _BRCMS_PREC_NC,         /* 7 NC - Network Control */
 330};
 331
 332static const u16 xmtfifo_sz[][NFIFO] = {
 333        /* corerev 20: 5120, 49152, 49152, 5376, 4352, 1280 */
 334        {20, 192, 192, 21, 17, 5},
 335        /* corerev 21: 2304, 14848, 5632, 3584, 3584, 1280 */
 336        {9, 58, 22, 14, 14, 5},
 337        /* corerev 22: 5120, 49152, 49152, 5376, 4352, 1280 */
 338        {20, 192, 192, 21, 17, 5},
 339        /* corerev 23: 5120, 49152, 49152, 5376, 4352, 1280 */
 340        {20, 192, 192, 21, 17, 5},
 341        /* corerev 24: 2304, 14848, 5632, 3584, 3584, 1280 */
 342        {9, 58, 22, 14, 14, 5},
 343};
 344
 345#ifdef BCMDBG
 346static const char * const fifo_names[] = {
 347        "AC_BK", "AC_BE", "AC_VI", "AC_VO", "BCMC", "ATIM" };
 348#else
 349static const char fifo_names[6][0];
 350#endif
 351
 352#ifdef BCMDBG
 353/* pointer to most recently allocated wl/wlc */
 354static struct brcms_c_info *wlc_info_dbg = (struct brcms_c_info *) (NULL);
 355#endif
 356
 357/* Find basic rate for a given rate */
 358static u8 brcms_basic_rate(struct brcms_c_info *wlc, u32 rspec)
 359{
 360        if (is_mcs_rate(rspec))
 361                return wlc->band->basic_rate[mcs_table[rspec & RSPEC_RATE_MASK]
 362                       .leg_ofdm];
 363        return wlc->band->basic_rate[rspec & RSPEC_RATE_MASK];
 364}
 365
 366static u16 frametype(u32 rspec, u8 mimoframe)
 367{
 368        if (is_mcs_rate(rspec))
 369                return mimoframe;
 370        return is_cck_rate(rspec) ? FT_CCK : FT_OFDM;
 371}
 372
 373/* currently the best mechanism for determining SIFS is the band in use */
 374static u16 get_sifs(struct brcms_band *band)
 375{
 376        return band->bandtype == BRCM_BAND_5G ? APHY_SIFS_TIME :
 377                                 BPHY_SIFS_TIME;
 378}
 379
 380/*
 381 * Detect Card removed.
 382 * Even checking an sbconfig register read will not false trigger when the core
 383 * is in reset it breaks CF address mechanism. Accessing gphy phyversion will
 384 * cause SB error if aphy is in reset on 4306B0-DB. Need a simple accessible
 385 * reg with fixed 0/1 pattern (some platforms return all 0).
 386 * If clocks are present, call the sb routine which will figure out if the
 387 * device is removed.
 388 */
 389static bool brcms_deviceremoved(struct brcms_c_info *wlc)
 390{
 391        u32 macctrl;
 392
 393        if (!wlc->hw->clk)
 394                return ai_deviceremoved(wlc->hw->sih);
 395        macctrl = bcma_read32(wlc->hw->d11core,
 396                              D11REGOFFS(maccontrol));
 397        return (macctrl & (MCTL_PSM_JMP_0 | MCTL_IHR_EN)) != MCTL_IHR_EN;
 398}
 399
 400/* sum the individual fifo tx pending packet counts */
 401static s16 brcms_txpktpendtot(struct brcms_c_info *wlc)
 402{
 403        return wlc->core->txpktpend[0] + wlc->core->txpktpend[1] +
 404               wlc->core->txpktpend[2] + wlc->core->txpktpend[3];
 405}
 406
 407static bool brcms_is_mband_unlocked(struct brcms_c_info *wlc)
 408{
 409        return wlc->pub->_nbands > 1 && !wlc->bandlocked;
 410}
 411
 412static int brcms_chspec_bw(u16 chanspec)
 413{
 414        if (CHSPEC_IS40(chanspec))
 415                return BRCMS_40_MHZ;
 416        if (CHSPEC_IS20(chanspec))
 417                return BRCMS_20_MHZ;
 418
 419        return BRCMS_10_MHZ;
 420}
 421
 422static void brcms_c_bsscfg_mfree(struct brcms_bss_cfg *cfg)
 423{
 424        if (cfg == NULL)
 425                return;
 426
 427        kfree(cfg->current_bss);
 428        kfree(cfg);
 429}
 430
 431static void brcms_c_detach_mfree(struct brcms_c_info *wlc)
 432{
 433        if (wlc == NULL)
 434                return;
 435
 436        brcms_c_bsscfg_mfree(wlc->bsscfg);
 437        kfree(wlc->pub);
 438        kfree(wlc->modulecb);
 439        kfree(wlc->default_bss);
 440        kfree(wlc->protection);
 441        kfree(wlc->stf);
 442        kfree(wlc->bandstate[0]);
 443        kfree(wlc->corestate->macstat_snapshot);
 444        kfree(wlc->corestate);
 445        kfree(wlc->hw->bandstate[0]);
 446        kfree(wlc->hw);
 447
 448        /* free the wlc */
 449        kfree(wlc);
 450        wlc = NULL;
 451}
 452
 453static struct brcms_bss_cfg *brcms_c_bsscfg_malloc(uint unit)
 454{
 455        struct brcms_bss_cfg *cfg;
 456
 457        cfg = kzalloc(sizeof(struct brcms_bss_cfg), GFP_ATOMIC);
 458        if (cfg == NULL)
 459                goto fail;
 460
 461        cfg->current_bss = kzalloc(sizeof(struct brcms_bss_info), GFP_ATOMIC);
 462        if (cfg->current_bss == NULL)
 463                goto fail;
 464
 465        return cfg;
 466
 467 fail:
 468        brcms_c_bsscfg_mfree(cfg);
 469        return NULL;
 470}
 471
 472static struct brcms_c_info *
 473brcms_c_attach_malloc(uint unit, uint *err, uint devid)
 474{
 475        struct brcms_c_info *wlc;
 476
 477        wlc = kzalloc(sizeof(struct brcms_c_info), GFP_ATOMIC);
 478        if (wlc == NULL) {
 479                *err = 1002;
 480                goto fail;
 481        }
 482
 483        /* allocate struct brcms_c_pub state structure */
 484        wlc->pub = kzalloc(sizeof(struct brcms_pub), GFP_ATOMIC);
 485        if (wlc->pub == NULL) {
 486                *err = 1003;
 487                goto fail;
 488        }
 489        wlc->pub->wlc = wlc;
 490
 491        /* allocate struct brcms_hardware state structure */
 492
 493        wlc->hw = kzalloc(sizeof(struct brcms_hardware), GFP_ATOMIC);
 494        if (wlc->hw == NULL) {
 495                *err = 1005;
 496                goto fail;
 497        }
 498        wlc->hw->wlc = wlc;
 499
 500        wlc->hw->bandstate[0] =
 501                kzalloc(sizeof(struct brcms_hw_band) * MAXBANDS, GFP_ATOMIC);
 502        if (wlc->hw->bandstate[0] == NULL) {
 503                *err = 1006;
 504                goto fail;
 505        } else {
 506                int i;
 507
 508                for (i = 1; i < MAXBANDS; i++)
 509                        wlc->hw->bandstate[i] = (struct brcms_hw_band *)
 510                            ((unsigned long)wlc->hw->bandstate[0] +
 511                             (sizeof(struct brcms_hw_band) * i));
 512        }
 513
 514        wlc->modulecb =
 515                kzalloc(sizeof(struct modulecb) * BRCMS_MAXMODULES, GFP_ATOMIC);
 516        if (wlc->modulecb == NULL) {
 517                *err = 1009;
 518                goto fail;
 519        }
 520
 521        wlc->default_bss = kzalloc(sizeof(struct brcms_bss_info), GFP_ATOMIC);
 522        if (wlc->default_bss == NULL) {
 523                *err = 1010;
 524                goto fail;
 525        }
 526
 527        wlc->bsscfg = brcms_c_bsscfg_malloc(unit);
 528        if (wlc->bsscfg == NULL) {
 529                *err = 1011;
 530                goto fail;
 531        }
 532
 533        wlc->protection = kzalloc(sizeof(struct brcms_protection),
 534                                  GFP_ATOMIC);
 535        if (wlc->protection == NULL) {
 536                *err = 1016;
 537                goto fail;
 538        }
 539
 540        wlc->stf = kzalloc(sizeof(struct brcms_stf), GFP_ATOMIC);
 541        if (wlc->stf == NULL) {
 542                *err = 1017;
 543                goto fail;
 544        }
 545
 546        wlc->bandstate[0] =
 547                kzalloc(sizeof(struct brcms_band)*MAXBANDS, GFP_ATOMIC);
 548        if (wlc->bandstate[0] == NULL) {
 549                *err = 1025;
 550                goto fail;
 551        } else {
 552                int i;
 553
 554                for (i = 1; i < MAXBANDS; i++)
 555                        wlc->bandstate[i] = (struct brcms_band *)
 556                                ((unsigned long)wlc->bandstate[0]
 557                                + (sizeof(struct brcms_band)*i));
 558        }
 559
 560        wlc->corestate = kzalloc(sizeof(struct brcms_core), GFP_ATOMIC);
 561        if (wlc->corestate == NULL) {
 562                *err = 1026;
 563                goto fail;
 564        }
 565
 566        wlc->corestate->macstat_snapshot =
 567                kzalloc(sizeof(struct macstat), GFP_ATOMIC);
 568        if (wlc->corestate->macstat_snapshot == NULL) {
 569                *err = 1027;
 570                goto fail;
 571        }
 572
 573        return wlc;
 574
 575 fail:
 576        brcms_c_detach_mfree(wlc);
 577        return NULL;
 578}
 579
 580/*
 581 * Update the slot timing for standard 11b/g (20us slots)
 582 * or shortslot 11g (9us slots)
 583 * The PSM needs to be suspended for this call.
 584 */
 585static void brcms_b_update_slot_timing(struct brcms_hardware *wlc_hw,
 586                                        bool shortslot)
 587{
 588        struct bcma_device *core = wlc_hw->d11core;
 589
 590        if (shortslot) {
 591                /* 11g short slot: 11a timing */
 592                bcma_write16(core, D11REGOFFS(ifs_slot), 0x0207);
 593                brcms_b_write_shm(wlc_hw, M_DOT11_SLOT, APHY_SLOT_TIME);
 594        } else {
 595                /* 11g long slot: 11b timing */
 596                bcma_write16(core, D11REGOFFS(ifs_slot), 0x0212);
 597                brcms_b_write_shm(wlc_hw, M_DOT11_SLOT, BPHY_SLOT_TIME);
 598        }
 599}
 600
 601/*
 602 * calculate frame duration of a given rate and length, return
 603 * time in usec unit
 604 */
 605static uint brcms_c_calc_frame_time(struct brcms_c_info *wlc, u32 ratespec,
 606                                    u8 preamble_type, uint mac_len)
 607{
 608        uint nsyms, dur = 0, Ndps, kNdps;
 609        uint rate = rspec2rate(ratespec);
 610
 611        if (rate == 0) {
 612                wiphy_err(wlc->wiphy, "wl%d: WAR: using rate of 1 mbps\n",
 613                          wlc->pub->unit);
 614                rate = BRCM_RATE_1M;
 615        }
 616
 617        BCMMSG(wlc->wiphy, "wl%d: rspec 0x%x, preamble_type %d, len%d\n",
 618                 wlc->pub->unit, ratespec, preamble_type, mac_len);
 619
 620        if (is_mcs_rate(ratespec)) {
 621                uint mcs = ratespec & RSPEC_RATE_MASK;
 622                int tot_streams = mcs_2_txstreams(mcs) + rspec_stc(ratespec);
 623
 624                dur = PREN_PREAMBLE + (tot_streams * PREN_PREAMBLE_EXT);
 625                if (preamble_type == BRCMS_MM_PREAMBLE)
 626                        dur += PREN_MM_EXT;
 627                /* 1000Ndbps = kbps * 4 */
 628                kNdps = mcs_2_rate(mcs, rspec_is40mhz(ratespec),
 629                                   rspec_issgi(ratespec)) * 4;
 630
 631                if (rspec_stc(ratespec) == 0)
 632                        nsyms =
 633                            CEIL((APHY_SERVICE_NBITS + 8 * mac_len +
 634                                  APHY_TAIL_NBITS) * 1000, kNdps);
 635                else
 636                        /* STBC needs to have even number of symbols */
 637                        nsyms =
 638                            2 *
 639                            CEIL((APHY_SERVICE_NBITS + 8 * mac_len +
 640                                  APHY_TAIL_NBITS) * 1000, 2 * kNdps);
 641
 642                dur += APHY_SYMBOL_TIME * nsyms;
 643                if (wlc->band->bandtype == BRCM_BAND_2G)
 644                        dur += DOT11_OFDM_SIGNAL_EXTENSION;
 645        } else if (is_ofdm_rate(rate)) {
 646                dur = APHY_PREAMBLE_TIME;
 647                dur += APHY_SIGNAL_TIME;
 648                /* Ndbps = Mbps * 4 = rate(500Kbps) * 2 */
 649                Ndps = rate * 2;
 650                /* NSyms = CEILING((SERVICE + 8*NBytes + TAIL) / Ndbps) */
 651                nsyms =
 652                    CEIL((APHY_SERVICE_NBITS + 8 * mac_len + APHY_TAIL_NBITS),
 653                         Ndps);
 654                dur += APHY_SYMBOL_TIME * nsyms;
 655                if (wlc->band->bandtype == BRCM_BAND_2G)
 656                        dur += DOT11_OFDM_SIGNAL_EXTENSION;
 657        } else {
 658                /*
 659                 * calc # bits * 2 so factor of 2 in rate (1/2 mbps)
 660                 * will divide out
 661                 */
 662                mac_len = mac_len * 8 * 2;
 663                /* calc ceiling of bits/rate = microseconds of air time */
 664                dur = (mac_len + rate - 1) / rate;
 665                if (preamble_type & BRCMS_SHORT_PREAMBLE)
 666                        dur += BPHY_PLCP_SHORT_TIME;
 667                else
 668                        dur += BPHY_PLCP_TIME;
 669        }
 670        return dur;
 671}
 672
 673static void brcms_c_write_inits(struct brcms_hardware *wlc_hw,
 674                                const struct d11init *inits)
 675{
 676        struct bcma_device *core = wlc_hw->d11core;
 677        int i;
 678        uint offset;
 679        u16 size;
 680        u32 value;
 681
 682        BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
 683
 684        for (i = 0; inits[i].addr != cpu_to_le16(0xffff); i++) {
 685                size = le16_to_cpu(inits[i].size);
 686                offset = le16_to_cpu(inits[i].addr);
 687                value = le32_to_cpu(inits[i].value);
 688                if (size == 2)
 689                        bcma_write16(core, offset, value);
 690                else if (size == 4)
 691                        bcma_write32(core, offset, value);
 692                else
 693                        break;
 694        }
 695}
 696
 697static void brcms_c_write_mhf(struct brcms_hardware *wlc_hw, u16 *mhfs)
 698{
 699        u8 idx;
 700        u16 addr[] = {
 701                M_HOST_FLAGS1, M_HOST_FLAGS2, M_HOST_FLAGS3, M_HOST_FLAGS4,
 702                M_HOST_FLAGS5
 703        };
 704
 705        for (idx = 0; idx < MHFMAX; idx++)
 706                brcms_b_write_shm(wlc_hw, addr[idx], mhfs[idx]);
 707}
 708
 709static void brcms_c_ucode_bsinit(struct brcms_hardware *wlc_hw)
 710{
 711        struct wiphy *wiphy = wlc_hw->wlc->wiphy;
 712        struct brcms_ucode *ucode = &wlc_hw->wlc->wl->ucode;
 713
 714        /* init microcode host flags */
 715        brcms_c_write_mhf(wlc_hw, wlc_hw->band->mhfs);
 716
 717        /* do band-specific ucode IHR, SHM, and SCR inits */
 718        if (D11REV_IS(wlc_hw->corerev, 23)) {
 719                if (BRCMS_ISNPHY(wlc_hw->band))
 720                        brcms_c_write_inits(wlc_hw, ucode->d11n0bsinitvals16);
 721                else
 722                        wiphy_err(wiphy, "%s: wl%d: unsupported phy in corerev"
 723                                  " %d\n", __func__, wlc_hw->unit,
 724                                  wlc_hw->corerev);
 725        } else {
 726                if (D11REV_IS(wlc_hw->corerev, 24)) {
 727                        if (BRCMS_ISLCNPHY(wlc_hw->band))
 728                                brcms_c_write_inits(wlc_hw,
 729                                                    ucode->d11lcn0bsinitvals24);
 730                        else
 731                                wiphy_err(wiphy, "%s: wl%d: unsupported phy in"
 732                                          " core rev %d\n", __func__,
 733                                          wlc_hw->unit, wlc_hw->corerev);
 734                } else {
 735                        wiphy_err(wiphy, "%s: wl%d: unsupported corerev %d\n",
 736                                __func__, wlc_hw->unit, wlc_hw->corerev);
 737                }
 738        }
 739}
 740
 741static void brcms_b_core_ioctl(struct brcms_hardware *wlc_hw, u32 m, u32 v)
 742{
 743        struct bcma_device *core = wlc_hw->d11core;
 744        u32 ioctl = bcma_aread32(core, BCMA_IOCTL) & ~m;
 745
 746        bcma_awrite32(core, BCMA_IOCTL, ioctl | v);
 747}
 748
 749static void brcms_b_core_phy_clk(struct brcms_hardware *wlc_hw, bool clk)
 750{
 751        BCMMSG(wlc_hw->wlc->wiphy, "wl%d: clk %d\n", wlc_hw->unit, clk);
 752
 753        wlc_hw->phyclk = clk;
 754
 755        if (OFF == clk) {       /* clear gmode bit, put phy into reset */
 756
 757                brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC | SICF_GMODE),
 758                                   (SICF_PRST | SICF_FGC));
 759                udelay(1);
 760                brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC), SICF_PRST);
 761                udelay(1);
 762
 763        } else {                /* take phy out of reset */
 764
 765                brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC), SICF_FGC);
 766                udelay(1);
 767                brcms_b_core_ioctl(wlc_hw, SICF_FGC, 0);
 768                udelay(1);
 769
 770        }
 771}
 772
 773/* low-level band switch utility routine */
 774static void brcms_c_setxband(struct brcms_hardware *wlc_hw, uint bandunit)
 775{
 776        BCMMSG(wlc_hw->wlc->wiphy, "wl%d: bandunit %d\n", wlc_hw->unit,
 777                bandunit);
 778
 779        wlc_hw->band = wlc_hw->bandstate[bandunit];
 780
 781        /*
 782         * BMAC_NOTE:
 783         *   until we eliminate need for wlc->band refs in low level code
 784         */
 785        wlc_hw->wlc->band = wlc_hw->wlc->bandstate[bandunit];
 786
 787        /* set gmode core flag */
 788        if (wlc_hw->sbclk && !wlc_hw->noreset) {
 789                u32 gmode = 0;
 790
 791                if (bandunit == 0)
 792                        gmode = SICF_GMODE;
 793
 794                brcms_b_core_ioctl(wlc_hw, SICF_GMODE, gmode);
 795        }
 796}
 797
 798/* switch to new band but leave it inactive */
 799static u32 brcms_c_setband_inact(struct brcms_c_info *wlc, uint bandunit)
 800{
 801        struct brcms_hardware *wlc_hw = wlc->hw;
 802        u32 macintmask;
 803        u32 macctrl;
 804
 805        BCMMSG(wlc->wiphy, "wl%d\n", wlc_hw->unit);
 806        macctrl = bcma_read32(wlc_hw->d11core,
 807                              D11REGOFFS(maccontrol));
 808        WARN_ON((macctrl & MCTL_EN_MAC) != 0);
 809
 810        /* disable interrupts */
 811        macintmask = brcms_intrsoff(wlc->wl);
 812
 813        /* radio off */
 814        wlc_phy_switch_radio(wlc_hw->band->pi, OFF);
 815
 816        brcms_b_core_phy_clk(wlc_hw, OFF);
 817
 818        brcms_c_setxband(wlc_hw, bandunit);
 819
 820        return macintmask;
 821}
 822
 823/* process an individual struct tx_status */
 824static bool
 825brcms_c_dotxstatus(struct brcms_c_info *wlc, struct tx_status *txs)
 826{
 827        struct sk_buff *p;
 828        uint queue;
 829        struct d11txh *txh;
 830        struct scb *scb = NULL;
 831        bool free_pdu;
 832        int tx_rts, tx_frame_count, tx_rts_count;
 833        uint totlen, supr_status;
 834        bool lastframe;
 835        struct ieee80211_hdr *h;
 836        u16 mcl;
 837        struct ieee80211_tx_info *tx_info;
 838        struct ieee80211_tx_rate *txrate;
 839        int i;
 840
 841        /* discard intermediate indications for ucode with one legitimate case:
 842         *   e.g. if "useRTS" is set. ucode did a successful rts/cts exchange,
 843         *   but the subsequent tx of DATA failed. so it will start rts/cts
 844         *   from the beginning (resetting the rts transmission count)
 845         */
 846        if (!(txs->status & TX_STATUS_AMPDU)
 847            && (txs->status & TX_STATUS_INTERMEDIATE)) {
 848                wiphy_err(wlc->wiphy, "%s: INTERMEDIATE but not AMPDU\n",
 849                          __func__);
 850                return false;
 851        }
 852
 853        queue = txs->frameid & TXFID_QUEUE_MASK;
 854        if (queue >= NFIFO) {
 855                p = NULL;
 856                goto fatal;
 857        }
 858
 859        p = dma_getnexttxp(wlc->hw->di[queue], DMA_RANGE_TRANSMITTED);
 860        if (p == NULL)
 861                goto fatal;
 862
 863        txh = (struct d11txh *) (p->data);
 864        mcl = le16_to_cpu(txh->MacTxControlLow);
 865
 866        if (txs->phyerr) {
 867                if (brcm_msg_level & LOG_ERROR_VAL) {
 868                        wiphy_err(wlc->wiphy, "phyerr 0x%x, rate 0x%x\n",
 869                                  txs->phyerr, txh->MainRates);
 870                        brcms_c_print_txdesc(txh);
 871                }
 872                brcms_c_print_txstatus(txs);
 873        }
 874
 875        if (txs->frameid != le16_to_cpu(txh->TxFrameID))
 876                goto fatal;
 877        tx_info = IEEE80211_SKB_CB(p);
 878        h = (struct ieee80211_hdr *)((u8 *) (txh + 1) + D11_PHY_HDR_LEN);
 879
 880        if (tx_info->control.sta)
 881                scb = &wlc->pri_scb;
 882
 883        if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
 884                brcms_c_ampdu_dotxstatus(wlc->ampdu, scb, p, txs);
 885                return false;
 886        }
 887
 888        supr_status = txs->status & TX_STATUS_SUPR_MASK;
 889        if (supr_status == TX_STATUS_SUPR_BADCH)
 890                BCMMSG(wlc->wiphy,
 891                       "%s: Pkt tx suppressed, possibly channel %d\n",
 892                       __func__, CHSPEC_CHANNEL(wlc->default_bss->chanspec));
 893
 894        tx_rts = le16_to_cpu(txh->MacTxControlLow) & TXC_SENDRTS;
 895        tx_frame_count =
 896            (txs->status & TX_STATUS_FRM_RTX_MASK) >> TX_STATUS_FRM_RTX_SHIFT;
 897        tx_rts_count =
 898            (txs->status & TX_STATUS_RTS_RTX_MASK) >> TX_STATUS_RTS_RTX_SHIFT;
 899
 900        lastframe = !ieee80211_has_morefrags(h->frame_control);
 901
 902        if (!lastframe) {
 903                wiphy_err(wlc->wiphy, "Not last frame!\n");
 904        } else {
 905                /*
 906                 * Set information to be consumed by Minstrel ht.
 907                 *
 908                 * The "fallback limit" is the number of tx attempts a given
 909                 * MPDU is sent at the "primary" rate. Tx attempts beyond that
 910                 * limit are sent at the "secondary" rate.
 911                 * A 'short frame' does not exceed RTS treshold.
 912                 */
 913                u16 sfbl,       /* Short Frame Rate Fallback Limit */
 914                    lfbl,       /* Long Frame Rate Fallback Limit */
 915                    fbl;
 916
 917                if (queue < IEEE80211_NUM_ACS) {
 918                        sfbl = GFIELD(wlc->wme_retries[wme_fifo2ac[queue]],
 919                                      EDCF_SFB);
 920                        lfbl = GFIELD(wlc->wme_retries[wme_fifo2ac[queue]],
 921                                      EDCF_LFB);
 922                } else {
 923                        sfbl = wlc->SFBL;
 924                        lfbl = wlc->LFBL;
 925                }
 926
 927                txrate = tx_info->status.rates;
 928                if (txrate[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
 929                        fbl = lfbl;
 930                else
 931                        fbl = sfbl;
 932
 933                ieee80211_tx_info_clear_status(tx_info);
 934
 935                if ((tx_frame_count > fbl) && (txrate[1].idx >= 0)) {
 936                        /*
 937                         * rate selection requested a fallback rate
 938                         * and we used it
 939                         */
 940                        txrate[0].count = fbl;
 941                        txrate[1].count = tx_frame_count - fbl;
 942                } else {
 943                        /*
 944                         * rate selection did not request fallback rate, or
 945                         * we didn't need it
 946                         */
 947                        txrate[0].count = tx_frame_count;
 948                        /*
 949                         * rc80211_minstrel.c:minstrel_tx_status() expects
 950                         * unused rates to be marked with idx = -1
 951                         */
 952                        txrate[1].idx = -1;
 953                        txrate[1].count = 0;
 954                }
 955
 956                /* clear the rest of the rates */
 957                for (i = 2; i < IEEE80211_TX_MAX_RATES; i++) {
 958                        txrate[i].idx = -1;
 959                        txrate[i].count = 0;
 960                }
 961
 962                if (txs->status & TX_STATUS_ACK_RCV)
 963                        tx_info->flags |= IEEE80211_TX_STAT_ACK;
 964        }
 965
 966        totlen = p->len;
 967        free_pdu = true;
 968
 969        brcms_c_txfifo_complete(wlc, queue, 1);
 970
 971        if (lastframe) {
 972                /* remove PLCP & Broadcom tx descriptor header */
 973                skb_pull(p, D11_PHY_HDR_LEN);
 974                skb_pull(p, D11_TXH_LEN);
 975                ieee80211_tx_status_irqsafe(wlc->pub->ieee_hw, p);
 976        } else {
 977                wiphy_err(wlc->wiphy, "%s: Not last frame => not calling "
 978                          "tx_status\n", __func__);
 979        }
 980
 981        return false;
 982
 983 fatal:
 984        if (p)
 985                brcmu_pkt_buf_free_skb(p);
 986
 987        return true;
 988
 989}
 990
 991/* process tx completion events in BMAC
 992 * Return true if more tx status need to be processed. false otherwise.
 993 */
 994static bool
 995brcms_b_txstatus(struct brcms_hardware *wlc_hw, bool bound, bool *fatal)
 996{
 997        bool morepending = false;
 998        struct brcms_c_info *wlc = wlc_hw->wlc;
 999        struct bcma_device *core;
1000        struct tx_status txstatus, *txs;
1001        u32 s1, s2;
1002        uint n = 0;
1003        /*
1004         * Param 'max_tx_num' indicates max. # tx status to process before
1005         * break out.
1006         */
1007        uint max_tx_num = bound ? TXSBND : -1;
1008
1009        BCMMSG(wlc->wiphy, "wl%d\n", wlc_hw->unit);
1010
1011        txs = &txstatus;
1012        core = wlc_hw->d11core;
1013        *fatal = false;
1014        s1 = bcma_read32(core, D11REGOFFS(frmtxstatus));
1015        while (!(*fatal)
1016               && (s1 & TXS_V)) {
1017
1018                if (s1 == 0xffffffff) {
1019                        wiphy_err(wlc->wiphy, "wl%d: %s: dead chip\n",
1020                                wlc_hw->unit, __func__);
1021                        return morepending;
1022                }
1023                s2 = bcma_read32(core, D11REGOFFS(frmtxstatus2));
1024
1025                txs->status = s1 & TXS_STATUS_MASK;
1026                txs->frameid = (s1 & TXS_FID_MASK) >> TXS_FID_SHIFT;
1027                txs->sequence = s2 & TXS_SEQ_MASK;
1028                txs->phyerr = (s2 & TXS_PTX_MASK) >> TXS_PTX_SHIFT;
1029                txs->lasttxtime = 0;
1030
1031                *fatal = brcms_c_dotxstatus(wlc_hw->wlc, txs);
1032
1033                /* !give others some time to run! */
1034                if (++n >= max_tx_num)
1035                        break;
1036                s1 = bcma_read32(core, D11REGOFFS(frmtxstatus));
1037        }
1038
1039        if (*fatal)
1040                return 0;
1041
1042        if (n >= max_tx_num)
1043                morepending = true;
1044
1045        if (!pktq_empty(&wlc->pkt_queue->q))
1046                brcms_c_send_q(wlc);
1047
1048        return morepending;
1049}
1050
1051static void brcms_c_tbtt(struct brcms_c_info *wlc)
1052{
1053        if (!wlc->bsscfg->BSS)
1054                /*
1055                 * DirFrmQ is now valid...defer setting until end
1056                 * of ATIM window
1057                 */
1058                wlc->qvalid |= MCMD_DIRFRMQVAL;
1059}
1060
1061/* set initial host flags value */
1062static void
1063brcms_c_mhfdef(struct brcms_c_info *wlc, u16 *mhfs, u16 mhf2_init)
1064{
1065        struct brcms_hardware *wlc_hw = wlc->hw;
1066
1067        memset(mhfs, 0, MHFMAX * sizeof(u16));
1068
1069        mhfs[MHF2] |= mhf2_init;
1070
1071        /* prohibit use of slowclock on multifunction boards */
1072        if (wlc_hw->boardflags & BFL_NOPLLDOWN)
1073                mhfs[MHF1] |= MHF1_FORCEFASTCLK;
1074
1075        if (BRCMS_ISNPHY(wlc_hw->band) && NREV_LT(wlc_hw->band->phyrev, 2)) {
1076                mhfs[MHF2] |= MHF2_NPHY40MHZ_WAR;
1077                mhfs[MHF1] |= MHF1_IQSWAP_WAR;
1078        }
1079}
1080
1081static uint
1082dmareg(uint direction, uint fifonum)
1083{
1084        if (direction == DMA_TX)
1085                return offsetof(struct d11regs, fifo64regs[fifonum].dmaxmt);
1086        return offsetof(struct d11regs, fifo64regs[fifonum].dmarcv);
1087}
1088
1089static bool brcms_b_attach_dmapio(struct brcms_c_info *wlc, uint j, bool wme)
1090{
1091        uint i;
1092        char name[8];
1093        /*
1094         * ucode host flag 2 needed for pio mode, independent of band and fifo
1095         */
1096        u16 pio_mhf2 = 0;
1097        struct brcms_hardware *wlc_hw = wlc->hw;
1098        uint unit = wlc_hw->unit;
1099        struct wiphy *wiphy = wlc->wiphy;
1100
1101        /* name and offsets for dma_attach */
1102        snprintf(name, sizeof(name), "wl%d", unit);
1103
1104        if (wlc_hw->di[0] == NULL) {    /* Init FIFOs */
1105                int dma_attach_err = 0;
1106
1107                /*
1108                 * FIFO 0
1109                 * TX: TX_AC_BK_FIFO (TX AC Background data packets)
1110                 * RX: RX_FIFO (RX data packets)
1111                 */
1112                wlc_hw->di[0] = dma_attach(name, wlc_hw->sih, wlc_hw->d11core,
1113                                           (wme ? dmareg(DMA_TX, 0) : 0),
1114                                           dmareg(DMA_RX, 0),
1115                                           (wme ? NTXD : 0), NRXD,
1116                                           RXBUFSZ, -1, NRXBUFPOST,
1117                                           BRCMS_HWRXOFF, &brcm_msg_level);
1118                dma_attach_err |= (NULL == wlc_hw->di[0]);
1119
1120                /*
1121                 * FIFO 1
1122                 * TX: TX_AC_BE_FIFO (TX AC Best-Effort data packets)
1123                 *   (legacy) TX_DATA_FIFO (TX data packets)
1124                 * RX: UNUSED
1125                 */
1126                wlc_hw->di[1] = dma_attach(name, wlc_hw->sih, wlc_hw->d11core,
1127                                           dmareg(DMA_TX, 1), 0,
1128                                           NTXD, 0, 0, -1, 0, 0,
1129                                           &brcm_msg_level);
1130                dma_attach_err |= (NULL == wlc_hw->di[1]);
1131
1132                /*
1133                 * FIFO 2
1134                 * TX: TX_AC_VI_FIFO (TX AC Video data packets)
1135                 * RX: UNUSED
1136                 */
1137                wlc_hw->di[2] = dma_attach(name, wlc_hw->sih, wlc_hw->d11core,
1138                                           dmareg(DMA_TX, 2), 0,
1139                                           NTXD, 0, 0, -1, 0, 0,
1140                                           &brcm_msg_level);
1141                dma_attach_err |= (NULL == wlc_hw->di[2]);
1142                /*
1143                 * FIFO 3
1144                 * TX: TX_AC_VO_FIFO (TX AC Voice data packets)
1145                 *   (legacy) TX_CTL_FIFO (TX control & mgmt packets)
1146                 */
1147                wlc_hw->di[3] = dma_attach(name, wlc_hw->sih, wlc_hw->d11core,
1148                                           dmareg(DMA_TX, 3),
1149                                           0, NTXD, 0, 0, -1,
1150                                           0, 0, &brcm_msg_level);
1151                dma_attach_err |= (NULL == wlc_hw->di[3]);
1152/* Cleaner to leave this as if with AP defined */
1153
1154                if (dma_attach_err) {
1155                        wiphy_err(wiphy, "wl%d: wlc_attach: dma_attach failed"
1156                                  "\n", unit);
1157                        return false;
1158                }
1159
1160                /* get pointer to dma engine tx flow control variable */
1161                for (i = 0; i < NFIFO; i++)
1162                        if (wlc_hw->di[i])
1163                                wlc_hw->txavail[i] =
1164                                    (uint *) dma_getvar(wlc_hw->di[i],
1165                                                        "&txavail");
1166        }
1167
1168        /* initial ucode host flags */
1169        brcms_c_mhfdef(wlc, wlc_hw->band->mhfs, pio_mhf2);
1170
1171        return true;
1172}
1173
1174static void brcms_b_detach_dmapio(struct brcms_hardware *wlc_hw)
1175{
1176        uint j;
1177
1178        for (j = 0; j < NFIFO; j++) {
1179                if (wlc_hw->di[j]) {
1180                        dma_detach(wlc_hw->di[j]);
1181                        wlc_hw->di[j] = NULL;
1182                }
1183        }
1184}
1185
1186/*
1187 * Initialize brcms_c_info default values ...
1188 * may get overrides later in this function
1189 *  BMAC_NOTES, move low out and resolve the dangling ones
1190 */
1191static void brcms_b_info_init(struct brcms_hardware *wlc_hw)
1192{
1193        struct brcms_c_info *wlc = wlc_hw->wlc;
1194
1195        /* set default sw macintmask value */
1196        wlc->defmacintmask = DEF_MACINTMASK;
1197
1198        /* various 802.11g modes */
1199        wlc_hw->shortslot = false;
1200
1201        wlc_hw->SFBL = RETRY_SHORT_FB;
1202        wlc_hw->LFBL = RETRY_LONG_FB;
1203
1204        /* default mac retry limits */
1205        wlc_hw->SRL = RETRY_SHORT_DEF;
1206        wlc_hw->LRL = RETRY_LONG_DEF;
1207        wlc_hw->chanspec = ch20mhz_chspec(1);
1208}
1209
1210static void brcms_b_wait_for_wake(struct brcms_hardware *wlc_hw)
1211{
1212        /* delay before first read of ucode state */
1213        udelay(40);
1214
1215        /* wait until ucode is no longer asleep */
1216        SPINWAIT((brcms_b_read_shm(wlc_hw, M_UCODE_DBGST) ==
1217                  DBGST_ASLEEP), wlc_hw->wlc->fastpwrup_dly);
1218}
1219
1220/* control chip clock to save power, enable dynamic clock or force fast clock */
1221static void brcms_b_clkctl_clk(struct brcms_hardware *wlc_hw, uint mode)
1222{
1223        if (ai_get_cccaps(wlc_hw->sih) & CC_CAP_PMU) {
1224                /* new chips with PMU, CCS_FORCEHT will distribute the HT clock
1225                 * on backplane, but mac core will still run on ALP(not HT) when
1226                 * it enters powersave mode, which means the FCA bit may not be
1227                 * set. Should wakeup mac if driver wants it to run on HT.
1228                 */
1229
1230                if (wlc_hw->clk) {
1231                        if (mode == CLK_FAST) {
1232                                bcma_set32(wlc_hw->d11core,
1233                                           D11REGOFFS(clk_ctl_st),
1234                                           CCS_FORCEHT);
1235
1236                                udelay(64);
1237
1238                                SPINWAIT(
1239                                    ((bcma_read32(wlc_hw->d11core,
1240                                      D11REGOFFS(clk_ctl_st)) &
1241                                      CCS_HTAVAIL) == 0),
1242                                      PMU_MAX_TRANSITION_DLY);
1243                                WARN_ON(!(bcma_read32(wlc_hw->d11core,
1244                                        D11REGOFFS(clk_ctl_st)) &
1245                                        CCS_HTAVAIL));
1246                        } else {
1247                                if ((ai_get_pmurev(wlc_hw->sih) == 0) &&
1248                                    (bcma_read32(wlc_hw->d11core,
1249                                        D11REGOFFS(clk_ctl_st)) &
1250                                        (CCS_FORCEHT | CCS_HTAREQ)))
1251                                        SPINWAIT(
1252                                            ((bcma_read32(wlc_hw->d11core,
1253                                              offsetof(struct d11regs,
1254                                                       clk_ctl_st)) &
1255                                              CCS_HTAVAIL) == 0),
1256                                              PMU_MAX_TRANSITION_DLY);
1257                                bcma_mask32(wlc_hw->d11core,
1258                                        D11REGOFFS(clk_ctl_st),
1259                                        ~CCS_FORCEHT);
1260                        }
1261                }
1262                wlc_hw->forcefastclk = (mode == CLK_FAST);
1263        } else {
1264
1265                /* old chips w/o PMU, force HT through cc,
1266                 * then use FCA to verify mac is running fast clock
1267                 */
1268
1269                wlc_hw->forcefastclk = ai_clkctl_cc(wlc_hw->sih, mode);
1270
1271                /* check fast clock is available (if core is not in reset) */
1272                if (wlc_hw->forcefastclk && wlc_hw->clk)
1273                        WARN_ON(!(bcma_aread32(wlc_hw->d11core, BCMA_IOST) &
1274                                  SISF_FCLKA));
1275
1276                /*
1277                 * keep the ucode wake bit on if forcefastclk is on since we
1278                 * do not want ucode to put us back to slow clock when it dozes
1279                 * for PM mode. Code below matches the wake override bit with
1280                 * current forcefastclk state. Only setting bit in wake_override
1281                 * instead of waking ucode immediately since old code had this
1282                 * behavior. Older code set wlc->forcefastclk but only had the
1283                 * wake happen if the wakup_ucode work (protected by an up
1284                 * check) was executed just below.
1285                 */
1286                if (wlc_hw->forcefastclk)
1287                        mboolset(wlc_hw->wake_override,
1288                                 BRCMS_WAKE_OVERRIDE_FORCEFAST);
1289                else
1290                        mboolclr(wlc_hw->wake_override,
1291                                 BRCMS_WAKE_OVERRIDE_FORCEFAST);
1292        }
1293}
1294
1295/* set or clear ucode host flag bits
1296 * it has an optimization for no-change write
1297 * it only writes through shared memory when the core has clock;
1298 * pre-CLK changes should use wlc_write_mhf to get around the optimization
1299 *
1300 *
1301 * bands values are: BRCM_BAND_AUTO <--- Current band only
1302 *                   BRCM_BAND_5G   <--- 5G band only
1303 *                   BRCM_BAND_2G   <--- 2G band only
1304 *                   BRCM_BAND_ALL  <--- All bands
1305 */
1306void
1307brcms_b_mhf(struct brcms_hardware *wlc_hw, u8 idx, u16 mask, u16 val,
1308             int bands)
1309{
1310        u16 save;
1311        u16 addr[MHFMAX] = {
1312                M_HOST_FLAGS1, M_HOST_FLAGS2, M_HOST_FLAGS3, M_HOST_FLAGS4,
1313                M_HOST_FLAGS5
1314        };
1315        struct brcms_hw_band *band;
1316
1317        if ((val & ~mask) || idx >= MHFMAX)
1318                return; /* error condition */
1319
1320        switch (bands) {
1321                /* Current band only or all bands,
1322                 * then set the band to current band
1323                 */
1324        case BRCM_BAND_AUTO:
1325        case BRCM_BAND_ALL:
1326                band = wlc_hw->band;
1327                break;
1328        case BRCM_BAND_5G:
1329                band = wlc_hw->bandstate[BAND_5G_INDEX];
1330                break;
1331        case BRCM_BAND_2G:
1332                band = wlc_hw->bandstate[BAND_2G_INDEX];
1333                break;
1334        default:
1335                band = NULL;    /* error condition */
1336        }
1337
1338        if (band) {
1339                save = band->mhfs[idx];
1340                band->mhfs[idx] = (band->mhfs[idx] & ~mask) | val;
1341
1342                /* optimization: only write through if changed, and
1343                 * changed band is the current band
1344                 */
1345                if (wlc_hw->clk && (band->mhfs[idx] != save)
1346                    && (band == wlc_hw->band))
1347                        brcms_b_write_shm(wlc_hw, addr[idx],
1348                                           (u16) band->mhfs[idx]);
1349        }
1350
1351        if (bands == BRCM_BAND_ALL) {
1352                wlc_hw->bandstate[0]->mhfs[idx] =
1353                    (wlc_hw->bandstate[0]->mhfs[idx] & ~mask) | val;
1354                wlc_hw->bandstate[1]->mhfs[idx] =
1355                    (wlc_hw->bandstate[1]->mhfs[idx] & ~mask) | val;
1356        }
1357}
1358
1359/* set the maccontrol register to desired reset state and
1360 * initialize the sw cache of the register
1361 */
1362static void brcms_c_mctrl_reset(struct brcms_hardware *wlc_hw)
1363{
1364        /* IHR accesses are always enabled, PSM disabled, HPS off and WAKE on */
1365        wlc_hw->maccontrol = 0;
1366        wlc_hw->suspended_fifos = 0;
1367        wlc_hw->wake_override = 0;
1368        wlc_hw->mute_override = 0;
1369        brcms_b_mctrl(wlc_hw, ~0, MCTL_IHR_EN | MCTL_WAKE);
1370}
1371
1372/*
1373 * write the software state of maccontrol and
1374 * overrides to the maccontrol register
1375 */
1376static void brcms_c_mctrl_write(struct brcms_hardware *wlc_hw)
1377{
1378        u32 maccontrol = wlc_hw->maccontrol;
1379
1380        /* OR in the wake bit if overridden */
1381        if (wlc_hw->wake_override)
1382                maccontrol |= MCTL_WAKE;
1383
1384        /* set AP and INFRA bits for mute if needed */
1385        if (wlc_hw->mute_override) {
1386                maccontrol &= ~(MCTL_AP);
1387                maccontrol |= MCTL_INFRA;
1388        }
1389
1390        bcma_write32(wlc_hw->d11core, D11REGOFFS(maccontrol),
1391                     maccontrol);
1392}
1393
1394/* set or clear maccontrol bits */
1395void brcms_b_mctrl(struct brcms_hardware *wlc_hw, u32 mask, u32 val)
1396{
1397        u32 maccontrol;
1398        u32 new_maccontrol;
1399
1400        if (val & ~mask)
1401                return; /* error condition */
1402        maccontrol = wlc_hw->maccontrol;
1403        new_maccontrol = (maccontrol & ~mask) | val;
1404
1405        /* if the new maccontrol value is the same as the old, nothing to do */
1406        if (new_maccontrol == maccontrol)
1407                return;
1408
1409        /* something changed, cache the new value */
1410        wlc_hw->maccontrol = new_maccontrol;
1411
1412        /* write the new values with overrides applied */
1413        brcms_c_mctrl_write(wlc_hw);
1414}
1415
1416void brcms_c_ucode_wake_override_set(struct brcms_hardware *wlc_hw,
1417                                 u32 override_bit)
1418{
1419        if (wlc_hw->wake_override || (wlc_hw->maccontrol & MCTL_WAKE)) {
1420                mboolset(wlc_hw->wake_override, override_bit);
1421                return;
1422        }
1423
1424        mboolset(wlc_hw->wake_override, override_bit);
1425
1426        brcms_c_mctrl_write(wlc_hw);
1427        brcms_b_wait_for_wake(wlc_hw);
1428}
1429
1430void brcms_c_ucode_wake_override_clear(struct brcms_hardware *wlc_hw,
1431                                   u32 override_bit)
1432{
1433        mboolclr(wlc_hw->wake_override, override_bit);
1434
1435        if (wlc_hw->wake_override || (wlc_hw->maccontrol & MCTL_WAKE))
1436                return;
1437
1438        brcms_c_mctrl_write(wlc_hw);
1439}
1440
1441/* When driver needs ucode to stop beaconing, it has to make sure that
1442 * MCTL_AP is clear and MCTL_INFRA is set
1443 * Mode           MCTL_AP        MCTL_INFRA
1444 * AP                1              1
1445 * STA               0              1 <--- This will ensure no beacons
1446 * IBSS              0              0
1447 */
1448static void brcms_c_ucode_mute_override_set(struct brcms_hardware *wlc_hw)
1449{
1450        wlc_hw->mute_override = 1;
1451
1452        /* if maccontrol already has AP == 0 and INFRA == 1 without this
1453         * override, then there is no change to write
1454         */
1455        if ((wlc_hw->maccontrol & (MCTL_AP | MCTL_INFRA)) == MCTL_INFRA)
1456                return;
1457
1458        brcms_c_mctrl_write(wlc_hw);
1459}
1460
1461/* Clear the override on AP and INFRA bits */
1462static void brcms_c_ucode_mute_override_clear(struct brcms_hardware *wlc_hw)
1463{
1464        if (wlc_hw->mute_override == 0)
1465                return;
1466
1467        wlc_hw->mute_override = 0;
1468
1469        /* if maccontrol already has AP == 0 and INFRA == 1 without this
1470         * override, then there is no change to write
1471         */
1472        if ((wlc_hw->maccontrol & (MCTL_AP | MCTL_INFRA)) == MCTL_INFRA)
1473                return;
1474
1475        brcms_c_mctrl_write(wlc_hw);
1476}
1477
1478/*
1479 * Write a MAC address to the given match reg offset in the RXE match engine.
1480 */
1481static void
1482brcms_b_set_addrmatch(struct brcms_hardware *wlc_hw, int match_reg_offset,
1483                       const u8 *addr)
1484{
1485        struct bcma_device *core = wlc_hw->d11core;
1486        u16 mac_l;
1487        u16 mac_m;
1488        u16 mac_h;
1489
1490        BCMMSG(wlc_hw->wlc->wiphy, "wl%d: brcms_b_set_addrmatch\n",
1491                 wlc_hw->unit);
1492
1493        mac_l = addr[0] | (addr[1] << 8);
1494        mac_m = addr[2] | (addr[3] << 8);
1495        mac_h = addr[4] | (addr[5] << 8);
1496
1497        /* enter the MAC addr into the RXE match registers */
1498        bcma_write16(core, D11REGOFFS(rcm_ctl),
1499                     RCM_INC_DATA | match_reg_offset);
1500        bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_l);
1501        bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_m);
1502        bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_h);
1503}
1504
1505void
1506brcms_b_write_template_ram(struct brcms_hardware *wlc_hw, int offset, int len,
1507                            void *buf)
1508{
1509        struct bcma_device *core = wlc_hw->d11core;
1510        u32 word;
1511        __le32 word_le;
1512        __be32 word_be;
1513        bool be_bit;
1514        BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
1515
1516        bcma_write32(core, D11REGOFFS(tplatewrptr), offset);
1517
1518        /* if MCTL_BIGEND bit set in mac control register,
1519         * the chip swaps data in fifo, as well as data in
1520         * template ram
1521         */
1522        be_bit = (bcma_read32(core, D11REGOFFS(maccontrol)) & MCTL_BIGEND) != 0;
1523
1524        while (len > 0) {
1525                memcpy(&word, buf, sizeof(u32));
1526
1527                if (be_bit) {
1528                        word_be = cpu_to_be32(word);
1529                        word = *(u32 *)&word_be;
1530                } else {
1531                        word_le = cpu_to_le32(word);
1532                        word = *(u32 *)&word_le;
1533                }
1534
1535                bcma_write32(core, D11REGOFFS(tplatewrdata), word);
1536
1537                buf = (u8 *) buf + sizeof(u32);
1538                len -= sizeof(u32);
1539        }
1540}
1541
1542static void brcms_b_set_cwmin(struct brcms_hardware *wlc_hw, u16 newmin)
1543{
1544        wlc_hw->band->CWmin = newmin;
1545
1546        bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
1547                     OBJADDR_SCR_SEL | S_DOT11_CWMIN);
1548        (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
1549        bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), newmin);
1550}
1551
1552static void brcms_b_set_cwmax(struct brcms_hardware *wlc_hw, u16 newmax)
1553{
1554        wlc_hw->band->CWmax = newmax;
1555
1556        bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
1557                     OBJADDR_SCR_SEL | S_DOT11_CWMAX);
1558        (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
1559        bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), newmax);
1560}
1561
1562void brcms_b_bw_set(struct brcms_hardware *wlc_hw, u16 bw)
1563{
1564        bool fastclk;
1565
1566        /* request FAST clock if not on */
1567        fastclk = wlc_hw->forcefastclk;
1568        if (!fastclk)
1569                brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
1570
1571        wlc_phy_bw_state_set(wlc_hw->band->pi, bw);
1572
1573        brcms_b_phy_reset(wlc_hw);
1574        wlc_phy_init(wlc_hw->band->pi, wlc_phy_chanspec_get(wlc_hw->band->pi));
1575
1576        /* restore the clk */
1577        if (!fastclk)
1578                brcms_b_clkctl_clk(wlc_hw, CLK_DYNAMIC);
1579}
1580
1581static void brcms_b_upd_synthpu(struct brcms_hardware *wlc_hw)
1582{
1583        u16 v;
1584        struct brcms_c_info *wlc = wlc_hw->wlc;
1585        /* update SYNTHPU_DLY */
1586
1587        if (BRCMS_ISLCNPHY(wlc->band))
1588                v = SYNTHPU_DLY_LPPHY_US;
1589        else if (BRCMS_ISNPHY(wlc->band) && (NREV_GE(wlc->band->phyrev, 3)))
1590                v = SYNTHPU_DLY_NPHY_US;
1591        else
1592                v = SYNTHPU_DLY_BPHY_US;
1593
1594        brcms_b_write_shm(wlc_hw, M_SYNTHPU_DLY, v);
1595}
1596
1597static void brcms_c_ucode_txant_set(struct brcms_hardware *wlc_hw)
1598{
1599        u16 phyctl;
1600        u16 phytxant = wlc_hw->bmac_phytxant;
1601        u16 mask = PHY_TXC_ANT_MASK;
1602
1603        /* set the Probe Response frame phy control word */
1604        phyctl = brcms_b_read_shm(wlc_hw, M_CTXPRS_BLK + C_CTX_PCTLWD_POS);
1605        phyctl = (phyctl & ~mask) | phytxant;
1606        brcms_b_write_shm(wlc_hw, M_CTXPRS_BLK + C_CTX_PCTLWD_POS, phyctl);
1607
1608        /* set the Response (ACK/CTS) frame phy control word */
1609        phyctl = brcms_b_read_shm(wlc_hw, M_RSP_PCTLWD);
1610        phyctl = (phyctl & ~mask) | phytxant;
1611        brcms_b_write_shm(wlc_hw, M_RSP_PCTLWD, phyctl);
1612}
1613
1614static u16 brcms_b_ofdm_ratetable_offset(struct brcms_hardware *wlc_hw,
1615                                         u8 rate)
1616{
1617        uint i;
1618        u8 plcp_rate = 0;
1619        struct plcp_signal_rate_lookup {
1620                u8 rate;
1621                u8 signal_rate;
1622        };
1623        /* OFDM RATE sub-field of PLCP SIGNAL field, per 802.11 sec 17.3.4.1 */
1624        const struct plcp_signal_rate_lookup rate_lookup[] = {
1625                {BRCM_RATE_6M, 0xB},
1626                {BRCM_RATE_9M, 0xF},
1627                {BRCM_RATE_12M, 0xA},
1628                {BRCM_RATE_18M, 0xE},
1629                {BRCM_RATE_24M, 0x9},
1630                {BRCM_RATE_36M, 0xD},
1631                {BRCM_RATE_48M, 0x8},
1632                {BRCM_RATE_54M, 0xC}
1633        };
1634
1635        for (i = 0; i < ARRAY_SIZE(rate_lookup); i++) {
1636                if (rate == rate_lookup[i].rate) {
1637                        plcp_rate = rate_lookup[i].signal_rate;
1638                        break;
1639                }
1640        }
1641
1642        /* Find the SHM pointer to the rate table entry by looking in the
1643         * Direct-map Table
1644         */
1645        return 2 * brcms_b_read_shm(wlc_hw, M_RT_DIRMAP_A + (plcp_rate * 2));
1646}
1647
1648static void brcms_upd_ofdm_pctl1_table(struct brcms_hardware *wlc_hw)
1649{
1650        u8 rate;
1651        u8 rates[8] = {
1652                BRCM_RATE_6M, BRCM_RATE_9M, BRCM_RATE_12M, BRCM_RATE_18M,
1653                BRCM_RATE_24M, BRCM_RATE_36M, BRCM_RATE_48M, BRCM_RATE_54M
1654        };
1655        u16 entry_ptr;
1656        u16 pctl1;
1657        uint i;
1658
1659        if (!BRCMS_PHY_11N_CAP(wlc_hw->band))
1660                return;
1661
1662        /* walk the phy rate table and update the entries */
1663        for (i = 0; i < ARRAY_SIZE(rates); i++) {
1664                rate = rates[i];
1665
1666                entry_ptr = brcms_b_ofdm_ratetable_offset(wlc_hw, rate);
1667
1668                /* read the SHM Rate Table entry OFDM PCTL1 values */
1669                pctl1 =
1670                    brcms_b_read_shm(wlc_hw, entry_ptr + M_RT_OFDM_PCTL1_POS);
1671
1672                /* modify the value */
1673                pctl1 &= ~PHY_TXC1_MODE_MASK;
1674                pctl1 |= (wlc_hw->hw_stf_ss_opmode << PHY_TXC1_MODE_SHIFT);
1675
1676                /* Update the SHM Rate Table entry OFDM PCTL1 values */
1677                brcms_b_write_shm(wlc_hw, entry_ptr + M_RT_OFDM_PCTL1_POS,
1678                                   pctl1);
1679        }
1680}
1681
1682/* band-specific init */
1683static void brcms_b_bsinit(struct brcms_c_info *wlc, u16 chanspec)
1684{
1685        struct brcms_hardware *wlc_hw = wlc->hw;
1686
1687        BCMMSG(wlc->wiphy, "wl%d: bandunit %d\n", wlc_hw->unit,
1688                wlc_hw->band->bandunit);
1689
1690        brcms_c_ucode_bsinit(wlc_hw);
1691
1692        wlc_phy_init(wlc_hw->band->pi, chanspec);
1693
1694        brcms_c_ucode_txant_set(wlc_hw);
1695
1696        /*
1697         * cwmin is band-specific, update hardware
1698         * with value for current band
1699         */
1700        brcms_b_set_cwmin(wlc_hw, wlc_hw->band->CWmin);
1701        brcms_b_set_cwmax(wlc_hw, wlc_hw->band->CWmax);
1702
1703        brcms_b_update_slot_timing(wlc_hw,
1704                                   wlc_hw->band->bandtype == BRCM_BAND_5G ?
1705                                   true : wlc_hw->shortslot);
1706
1707        /* write phytype and phyvers */
1708        brcms_b_write_shm(wlc_hw, M_PHYTYPE, (u16) wlc_hw->band->phytype);
1709        brcms_b_write_shm(wlc_hw, M_PHYVER, (u16) wlc_hw->band->phyrev);
1710
1711        /*
1712         * initialize the txphyctl1 rate table since
1713         * shmem is shared between bands
1714         */
1715        brcms_upd_ofdm_pctl1_table(wlc_hw);
1716
1717        brcms_b_upd_synthpu(wlc_hw);
1718}
1719
1720/* Perform a soft reset of the PHY PLL */
1721void brcms_b_core_phypll_reset(struct brcms_hardware *wlc_hw)
1722{
1723        BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
1724
1725        ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_addr),
1726                  ~0, 0);
1727        udelay(1);
1728        ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data),
1729                  0x4, 0);
1730        udelay(1);
1731        ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data),
1732                  0x4, 4);
1733        udelay(1);
1734        ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data),
1735                  0x4, 0);
1736        udelay(1);
1737}
1738
1739/* light way to turn on phy clock without reset for NPHY only
1740 *  refer to brcms_b_core_phy_clk for full version
1741 */
1742void brcms_b_phyclk_fgc(struct brcms_hardware *wlc_hw, bool clk)
1743{
1744        /* support(necessary for NPHY and HYPHY) only */
1745        if (!BRCMS_ISNPHY(wlc_hw->band))
1746                return;
1747
1748        if (ON == clk)
1749                brcms_b_core_ioctl(wlc_hw, SICF_FGC, SICF_FGC);
1750        else
1751                brcms_b_core_ioctl(wlc_hw, SICF_FGC, 0);
1752
1753}
1754
1755void brcms_b_macphyclk_set(struct brcms_hardware *wlc_hw, bool clk)
1756{
1757        if (ON == clk)
1758                brcms_b_core_ioctl(wlc_hw, SICF_MPCLKE, SICF_MPCLKE);
1759        else
1760                brcms_b_core_ioctl(wlc_hw, SICF_MPCLKE, 0);
1761}
1762
1763void brcms_b_phy_reset(struct brcms_hardware *wlc_hw)
1764{
1765        struct brcms_phy_pub *pih = wlc_hw->band->pi;
1766        u32 phy_bw_clkbits;
1767        bool phy_in_reset = false;
1768
1769        BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
1770
1771        if (pih == NULL)
1772                return;
1773
1774        phy_bw_clkbits = wlc_phy_clk_bwbits(wlc_hw->band->pi);
1775
1776        /* Specific reset sequence required for NPHY rev 3 and 4 */
1777        if (BRCMS_ISNPHY(wlc_hw->band) && NREV_GE(wlc_hw->band->phyrev, 3) &&
1778            NREV_LE(wlc_hw->band->phyrev, 4)) {
1779                /* Set the PHY bandwidth */
1780                brcms_b_core_ioctl(wlc_hw, SICF_BWMASK, phy_bw_clkbits);
1781
1782                udelay(1);
1783
1784                /* Perform a soft reset of the PHY PLL */
1785                brcms_b_core_phypll_reset(wlc_hw);
1786
1787                /* reset the PHY */
1788                brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_PCLKE),
1789                                   (SICF_PRST | SICF_PCLKE));
1790                phy_in_reset = true;
1791        } else {
1792                brcms_b_core_ioctl(wlc_hw,
1793                                   (SICF_PRST | SICF_PCLKE | SICF_BWMASK),
1794                                   (SICF_PRST | SICF_PCLKE | phy_bw_clkbits));
1795        }
1796
1797        udelay(2);
1798        brcms_b_core_phy_clk(wlc_hw, ON);
1799
1800        if (pih)
1801                wlc_phy_anacore(pih, ON);
1802}
1803
1804/* switch to and initialize new band */
1805static void brcms_b_setband(struct brcms_hardware *wlc_hw, uint bandunit,
1806                            u16 chanspec) {
1807        struct brcms_c_info *wlc = wlc_hw->wlc;
1808        u32 macintmask;
1809
1810        /* Enable the d11 core before accessing it */
1811        if (!bcma_core_is_enabled(wlc_hw->d11core)) {
1812                bcma_core_enable(wlc_hw->d11core, 0);
1813                brcms_c_mctrl_reset(wlc_hw);
1814        }
1815
1816        macintmask = brcms_c_setband_inact(wlc, bandunit);
1817
1818        if (!wlc_hw->up)
1819                return;
1820
1821        brcms_b_core_phy_clk(wlc_hw, ON);
1822
1823        /* band-specific initializations */
1824        brcms_b_bsinit(wlc, chanspec);
1825
1826        /*
1827         * If there are any pending software interrupt bits,
1828         * then replace these with a harmless nonzero value
1829         * so brcms_c_dpc() will re-enable interrupts when done.
1830         */
1831        if (wlc->macintstatus)
1832                wlc->macintstatus = MI_DMAINT;
1833
1834        /* restore macintmask */
1835        brcms_intrsrestore(wlc->wl, macintmask);
1836
1837        /* ucode should still be suspended.. */
1838        WARN_ON((bcma_read32(wlc_hw->d11core, D11REGOFFS(maccontrol)) &
1839                 MCTL_EN_MAC) != 0);
1840}
1841
1842static bool brcms_c_isgoodchip(struct brcms_hardware *wlc_hw)
1843{
1844
1845        /* reject unsupported corerev */
1846        if (!CONF_HAS(D11CONF, wlc_hw->corerev)) {
1847                wiphy_err(wlc_hw->wlc->wiphy, "unsupported core rev %d\n",
1848                          wlc_hw->corerev);
1849                return false;
1850        }
1851
1852        return true;
1853}
1854
1855/* Validate some board info parameters */
1856static bool brcms_c_validboardtype(struct brcms_hardware *wlc_hw)
1857{
1858        uint boardrev = wlc_hw->boardrev;
1859
1860        /* 4 bits each for board type, major, minor, and tiny version */
1861        uint brt = (boardrev & 0xf000) >> 12;
1862        uint b0 = (boardrev & 0xf00) >> 8;
1863        uint b1 = (boardrev & 0xf0) >> 4;
1864        uint b2 = boardrev & 0xf;
1865
1866        /* voards from other vendors are always considered valid */
1867        if (ai_get_boardvendor(wlc_hw->sih) != PCI_VENDOR_ID_BROADCOM)
1868                return true;
1869
1870        /* do some boardrev sanity checks when boardvendor is Broadcom */
1871        if (boardrev == 0)
1872                return false;
1873
1874        if (boardrev <= 0xff)
1875                return true;
1876
1877        if ((brt > 2) || (brt == 0) || (b0 > 9) || (b0 == 0) || (b1 > 9)
1878                || (b2 > 9))
1879                return false;
1880
1881        return true;
1882}
1883
1884static char *brcms_c_get_macaddr(struct brcms_hardware *wlc_hw)
1885{
1886        enum brcms_srom_id var_id = BRCMS_SROM_MACADDR;
1887        char *macaddr;
1888
1889        /* If macaddr exists, use it (Sromrev4, CIS, ...). */
1890        macaddr = getvar(wlc_hw->sih, var_id);
1891        if (macaddr != NULL)
1892                return macaddr;
1893
1894        if (wlc_hw->_nbands > 1)
1895                var_id = BRCMS_SROM_ET1MACADDR;
1896        else
1897                var_id = BRCMS_SROM_IL0MACADDR;
1898
1899        macaddr = getvar(wlc_hw->sih, var_id);
1900        if (macaddr == NULL)
1901                wiphy_err(wlc_hw->wlc->wiphy, "wl%d: wlc_get_macaddr: macaddr "
1902                          "getvar(%d) not found\n", wlc_hw->unit, var_id);
1903
1904        return macaddr;
1905}
1906
1907/* power both the pll and external oscillator on/off */
1908static void brcms_b_xtal(struct brcms_hardware *wlc_hw, bool want)
1909{
1910        BCMMSG(wlc_hw->wlc->wiphy, "wl%d: want %d\n", wlc_hw->unit, want);
1911
1912        /*
1913         * dont power down if plldown is false or
1914         * we must poll hw radio disable
1915         */
1916        if (!want && wlc_hw->pllreq)
1917                return;
1918
1919        if (wlc_hw->sih)
1920                ai_clkctl_xtal(wlc_hw->sih, XTAL | PLL, want);
1921
1922        wlc_hw->sbclk = want;
1923        if (!wlc_hw->sbclk) {
1924                wlc_hw->clk = false;
1925                if (wlc_hw->band && wlc_hw->band->pi)
1926                        wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, false);
1927        }
1928}
1929
1930/*
1931 * Return true if radio is disabled, otherwise false.
1932 * hw radio disable signal is an external pin, users activate it asynchronously
1933 * this function could be called when driver is down and w/o clock
1934 * it operates on different registers depending on corerev and boardflag.
1935 */
1936static bool brcms_b_radio_read_hwdisabled(struct brcms_hardware *wlc_hw)
1937{
1938        bool v, clk, xtal;
1939        u32 flags = 0;
1940
1941        xtal = wlc_hw->sbclk;
1942        if (!xtal)
1943                brcms_b_xtal(wlc_hw, ON);
1944
1945        /* may need to take core out of reset first */
1946        clk = wlc_hw->clk;
1947        if (!clk) {
1948                /*
1949                 * mac no longer enables phyclk automatically when driver
1950                 * accesses phyreg throughput mac. This can be skipped since
1951                 * only mac reg is accessed below
1952                 */
1953                flags |= SICF_PCLKE;
1954
1955                /*
1956                 * TODO: test suspend/resume
1957                 *
1958                 * AI chip doesn't restore bar0win2 on
1959                 * hibernation/resume, need sw fixup
1960                 */
1961
1962                bcma_core_enable(wlc_hw->d11core, flags);
1963                brcms_c_mctrl_reset(wlc_hw);
1964        }
1965
1966        v = ((bcma_read32(wlc_hw->d11core,
1967                          D11REGOFFS(phydebug)) & PDBG_RFD) != 0);
1968
1969        /* put core back into reset */
1970        if (!clk)
1971                bcma_core_disable(wlc_hw->d11core, 0);
1972
1973        if (!xtal)
1974                brcms_b_xtal(wlc_hw, OFF);
1975
1976        return v;
1977}
1978
1979static bool wlc_dma_rxreset(struct brcms_hardware *wlc_hw, uint fifo)
1980{
1981        struct dma_pub *di = wlc_hw->di[fifo];
1982        return dma_rxreset(di);
1983}
1984
1985/* d11 core reset
1986 *   ensure fask clock during reset
1987 *   reset dma
1988 *   reset d11(out of reset)
1989 *   reset phy(out of reset)
1990 *   clear software macintstatus for fresh new start
1991 * one testing hack wlc_hw->noreset will bypass the d11/phy reset
1992 */
1993void brcms_b_corereset(struct brcms_hardware *wlc_hw, u32 flags)
1994{
1995        uint i;
1996        bool fastclk;
1997
1998        if (flags == BRCMS_USE_COREFLAGS)
1999                flags = (wlc_hw->band->pi ? wlc_hw->band->core_flags : 0);
2000
2001        BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
2002
2003        /* request FAST clock if not on  */
2004        fastclk = wlc_hw->forcefastclk;
2005        if (!fastclk)
2006                brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
2007
2008        /* reset the dma engines except first time thru */
2009        if (bcma_core_is_enabled(wlc_hw->d11core)) {
2010                for (i = 0; i < NFIFO; i++)
2011                        if ((wlc_hw->di[i]) && (!dma_txreset(wlc_hw->di[i])))
2012                                wiphy_err(wlc_hw->wlc->wiphy, "wl%d: %s: "
2013                                          "dma_txreset[%d]: cannot stop dma\n",
2014                                           wlc_hw->unit, __func__, i);
2015
2016                if ((wlc_hw->di[RX_FIFO])
2017                    && (!wlc_dma_rxreset(wlc_hw, RX_FIFO)))
2018                        wiphy_err(wlc_hw->wlc->wiphy, "wl%d: %s: dma_rxreset"
2019                                  "[%d]: cannot stop dma\n",
2020                                  wlc_hw->unit, __func__, RX_FIFO);
2021        }
2022        /* if noreset, just stop the psm and return */
2023        if (wlc_hw->noreset) {
2024                wlc_hw->wlc->macintstatus = 0;  /* skip wl_dpc after down */
2025                brcms_b_mctrl(wlc_hw, MCTL_PSM_RUN | MCTL_EN_MAC, 0);
2026                return;
2027        }
2028
2029        /*
2030         * mac no longer enables phyclk automatically when driver accesses
2031         * phyreg throughput mac, AND phy_reset is skipped at early stage when
2032         * band->pi is invalid. need to enable PHY CLK
2033         */
2034        flags |= SICF_PCLKE;
2035
2036        /*
2037         * reset the core
2038         * In chips with PMU, the fastclk request goes through d11 core
2039         * reg 0x1e0, which is cleared by the core_reset. have to re-request it.
2040         *
2041         * This adds some delay and we can optimize it by also requesting
2042         * fastclk through chipcommon during this period if necessary. But
2043         * that has to work coordinate with other driver like mips/arm since
2044         * they may touch chipcommon as well.
2045         */
2046        wlc_hw->clk = false;
2047        bcma_core_enable(wlc_hw->d11core, flags);
2048        wlc_hw->clk = true;
2049        if (wlc_hw->band && wlc_hw->band->pi)
2050                wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, true);
2051
2052        brcms_c_mctrl_reset(wlc_hw);
2053
2054        if (ai_get_cccaps(wlc_hw->sih) & CC_CAP_PMU)
2055                brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
2056
2057        brcms_b_phy_reset(wlc_hw);
2058
2059        /* turn on PHY_PLL */
2060        brcms_b_core_phypll_ctl(wlc_hw, true);
2061
2062        /* clear sw intstatus */
2063        wlc_hw->wlc->macintstatus = 0;
2064
2065        /* restore the clk setting */
2066        if (!fastclk)
2067                brcms_b_clkctl_clk(wlc_hw, CLK_DYNAMIC);
2068}
2069
2070/* txfifo sizes needs to be modified(increased) since the newer cores
2071 * have more memory.
2072 */
2073static void brcms_b_corerev_fifofixup(struct brcms_hardware *wlc_hw)
2074{
2075        struct bcma_device *core = wlc_hw->d11core;
2076        u16 fifo_nu;
2077        u16 txfifo_startblk = TXFIFO_START_BLK, txfifo_endblk;
2078        u16 txfifo_def, txfifo_def1;
2079        u16 txfifo_cmd;
2080
2081        /* tx fifos start at TXFIFO_START_BLK from the Base address */
2082        txfifo_startblk = TXFIFO_START_BLK;
2083
2084        /* sequence of operations:  reset fifo, set fifo size, reset fifo */
2085        for (fifo_nu = 0; fifo_nu < NFIFO; fifo_nu++) {
2086
2087                txfifo_endblk = txfifo_startblk + wlc_hw->xmtfifo_sz[fifo_nu];
2088                txfifo_def = (txfifo_startblk & 0xff) |
2089                    (((txfifo_endblk - 1) & 0xff) << TXFIFO_FIFOTOP_SHIFT);
2090                txfifo_def1 = ((txfifo_startblk >> 8) & 0x1) |
2091                    ((((txfifo_endblk -
2092                        1) >> 8) & 0x1) << TXFIFO_FIFOTOP_SHIFT);
2093                txfifo_cmd =
2094                    TXFIFOCMD_RESET_MASK | (fifo_nu << TXFIFOCMD_FIFOSEL_SHIFT);
2095
2096                bcma_write16(core, D11REGOFFS(xmtfifocmd), txfifo_cmd);
2097                bcma_write16(core, D11REGOFFS(xmtfifodef), txfifo_def);
2098                bcma_write16(core, D11REGOFFS(xmtfifodef1), txfifo_def1);
2099
2100                bcma_write16(core, D11REGOFFS(xmtfifocmd), txfifo_cmd);
2101
2102                txfifo_startblk += wlc_hw->xmtfifo_sz[fifo_nu];
2103        }
2104        /*
2105         * need to propagate to shm location to be in sync since ucode/hw won't
2106         * do this
2107         */
2108        brcms_b_write_shm(wlc_hw, M_FIFOSIZE0,
2109                           wlc_hw->xmtfifo_sz[TX_AC_BE_FIFO]);
2110        brcms_b_write_shm(wlc_hw, M_FIFOSIZE1,
2111                           wlc_hw->xmtfifo_sz[TX_AC_VI_FIFO]);
2112        brcms_b_write_shm(wlc_hw, M_FIFOSIZE2,
2113                           ((wlc_hw->xmtfifo_sz[TX_AC_VO_FIFO] << 8) | wlc_hw->
2114                            xmtfifo_sz[TX_AC_BK_FIFO]));
2115        brcms_b_write_shm(wlc_hw, M_FIFOSIZE3,
2116                           ((wlc_hw->xmtfifo_sz[TX_ATIM_FIFO] << 8) | wlc_hw->
2117                            xmtfifo_sz[TX_BCMC_FIFO]));
2118}
2119
2120/* This function is used for changing the tsf frac register
2121 * If spur avoidance mode is off, the mac freq will be 80/120/160Mhz
2122 * If spur avoidance mode is on1, the mac freq will be 82/123/164Mhz
2123 * If spur avoidance mode is on2, the mac freq will be 84/126/168Mhz
2124 * HTPHY Formula is 2^26/freq(MHz) e.g.
2125 * For spuron2 - 126MHz -> 2^26/126 = 532610.0
2126 *  - 532610 = 0x82082 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x2082
2127 * For spuron: 123MHz -> 2^26/123    = 545600.5
2128 *  - 545601 = 0x85341 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x5341
2129 * For spur off: 120MHz -> 2^26/120    = 559240.5
2130 *  - 559241 = 0x88889 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x8889
2131 */
2132
2133void brcms_b_switch_macfreq(struct brcms_hardware *wlc_hw, u8 spurmode)
2134{
2135        struct bcma_device *core = wlc_hw->d11core;
2136
2137        if ((ai_get_chip_id(wlc_hw->sih) == BCM43224_CHIP_ID) ||
2138            (ai_get_chip_id(wlc_hw->sih) == BCM43225_CHIP_ID)) {
2139                if (spurmode == WL_SPURAVOID_ON2) {     /* 126Mhz */
2140                        bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x2082);
2141                        bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8);
2142                } else if (spurmode == WL_SPURAVOID_ON1) {      /* 123Mhz */
2143                        bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x5341);
2144                        bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8);
2145                } else {        /* 120Mhz */
2146                        bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x8889);
2147                        bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8);
2148                }
2149        } else if (BRCMS_ISLCNPHY(wlc_hw->band)) {
2150                if (spurmode == WL_SPURAVOID_ON1) {     /* 82Mhz */
2151                        bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x7CE0);
2152                        bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0xC);
2153                } else {        /* 80Mhz */
2154                        bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0xCCCD);
2155                        bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0xC);
2156                }
2157        }
2158}
2159
2160/* Initialize GPIOs that are controlled by D11 core */
2161static void brcms_c_gpio_init(struct brcms_c_info *wlc)
2162{
2163        struct brcms_hardware *wlc_hw = wlc->hw;
2164        u32 gc, gm;
2165
2166        /* use GPIO select 0 to get all gpio signals from the gpio out reg */
2167        brcms_b_mctrl(wlc_hw, MCTL_GPOUT_SEL_MASK, 0);
2168
2169        /*
2170         * Common GPIO setup:
2171         *      G0 = LED 0 = WLAN Activity
2172         *      G1 = LED 1 = WLAN 2.4 GHz Radio State
2173         *      G2 = LED 2 = WLAN 5 GHz Radio State
2174         *      G4 = radio disable input (HI enabled, LO disabled)
2175         */
2176
2177        gc = gm = 0;
2178
2179        /* Allocate GPIOs for mimo antenna diversity feature */
2180        if (wlc_hw->antsel_type == ANTSEL_2x3) {
2181                /* Enable antenna diversity, use 2x3 mode */
2182                brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_EN,
2183                             MHF3_ANTSEL_EN, BRCM_BAND_ALL);
2184                brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_MODE,
2185                             MHF3_ANTSEL_MODE, BRCM_BAND_ALL);
2186
2187                /* init superswitch control */
2188                wlc_phy_antsel_init(wlc_hw->band->pi, false);
2189
2190        } else if (wlc_hw->antsel_type == ANTSEL_2x4) {
2191                gm |= gc |= (BOARD_GPIO_12 | BOARD_GPIO_13);
2192                /*
2193                 * The board itself is powered by these GPIOs
2194                 * (when not sending pattern) so set them high
2195                 */
2196                bcma_set16(wlc_hw->d11core, D11REGOFFS(psm_gpio_oe),
2197                           (BOARD_GPIO_12 | BOARD_GPIO_13));
2198                bcma_set16(wlc_hw->d11core, D11REGOFFS(psm_gpio_out),
2199                           (BOARD_GPIO_12 | BOARD_GPIO_13));
2200
2201                /* Enable antenna diversity, use 2x4 mode */
2202                brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_EN,
2203                             MHF3_ANTSEL_EN, BRCM_BAND_ALL);
2204                brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_MODE, 0,
2205                             BRCM_BAND_ALL);
2206
2207                /* Configure the desired clock to be 4Mhz */
2208                brcms_b_write_shm(wlc_hw, M_ANTSEL_CLKDIV,
2209                                   ANTSEL_CLKDIV_4MHZ);
2210        }
2211
2212        /*
2213         * gpio 9 controls the PA. ucode is responsible
2214         * for wiggling out and oe
2215         */
2216        if (wlc_hw->boardflags & BFL_PACTRL)
2217                gm |= gc |= BOARD_GPIO_PACTRL;
2218
2219        /* apply to gpiocontrol register */
2220        ai_gpiocontrol(wlc_hw->sih, gm, gc, GPIO_DRV_PRIORITY);
2221}
2222
2223static void brcms_ucode_write(struct brcms_hardware *wlc_hw,
2224                              const __le32 ucode[], const size_t nbytes)
2225{
2226        struct bcma_device *core = wlc_hw->d11core;
2227        uint i;
2228        uint count;
2229
2230        BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
2231
2232        count = (nbytes / sizeof(u32));
2233
2234        bcma_write32(core, D11REGOFFS(objaddr),
2235                     OBJADDR_AUTO_INC | OBJADDR_UCM_SEL);
2236        (void)bcma_read32(core, D11REGOFFS(objaddr));
2237        for (i = 0; i < count; i++)
2238                bcma_write32(core, D11REGOFFS(objdata), le32_to_cpu(ucode[i]));
2239
2240}
2241
2242static void brcms_ucode_download(struct brcms_hardware *wlc_hw)
2243{
2244        struct brcms_c_info *wlc;
2245        struct brcms_ucode *ucode = &wlc_hw->wlc->wl->ucode;
2246
2247        wlc = wlc_hw->wlc;
2248
2249        if (wlc_hw->ucode_loaded)
2250                return;
2251
2252        if (D11REV_IS(wlc_hw->corerev, 23)) {
2253                if (BRCMS_ISNPHY(wlc_hw->band)) {
2254                        brcms_ucode_write(wlc_hw, ucode->bcm43xx_16_mimo,
2255                                          ucode->bcm43xx_16_mimosz);
2256                        wlc_hw->ucode_loaded = true;
2257                } else
2258                        wiphy_err(wlc->wiphy, "%s: wl%d: unsupported phy in "
2259                                  "corerev %d\n",
2260                                  __func__, wlc_hw->unit, wlc_hw->corerev);
2261        } else if (D11REV_IS(wlc_hw->corerev, 24)) {
2262                if (BRCMS_ISLCNPHY(wlc_hw->band)) {
2263                        brcms_ucode_write(wlc_hw, ucode->bcm43xx_24_lcn,
2264                                          ucode->bcm43xx_24_lcnsz);
2265                        wlc_hw->ucode_loaded = true;
2266                } else {
2267                        wiphy_err(wlc->wiphy, "%s: wl%d: unsupported phy in "
2268                                  "corerev %d\n",
2269                                  __func__, wlc_hw->unit, wlc_hw->corerev);
2270                }
2271        }
2272}
2273
2274void brcms_b_txant_set(struct brcms_hardware *wlc_hw, u16 phytxant)
2275{
2276        /* update sw state */
2277        wlc_hw->bmac_phytxant = phytxant;
2278
2279        /* push to ucode if up */
2280        if (!wlc_hw->up)
2281                return;
2282        brcms_c_ucode_txant_set(wlc_hw);
2283
2284}
2285
2286u16 brcms_b_get_txant(struct brcms_hardware *wlc_hw)
2287{
2288        return (u16) wlc_hw->wlc->stf->txant;
2289}
2290
2291void brcms_b_antsel_type_set(struct brcms_hardware *wlc_hw, u8 antsel_type)
2292{
2293        wlc_hw->antsel_type = antsel_type;
2294
2295        /* Update the antsel type for phy module to use */
2296        wlc_phy_antsel_type_set(wlc_hw->band->pi, antsel_type);
2297}
2298
2299static void brcms_b_fifoerrors(struct brcms_hardware *wlc_hw)
2300{
2301        bool fatal = false;
2302        uint unit;
2303        uint intstatus, idx;
2304        struct bcma_device *core = wlc_hw->d11core;
2305        struct wiphy *wiphy = wlc_hw->wlc->wiphy;
2306
2307        unit = wlc_hw->unit;
2308
2309        for (idx = 0; idx < NFIFO; idx++) {
2310                /* read intstatus register and ignore any non-error bits */
2311                intstatus =
2312                        bcma_read32(core,
2313                                    D11REGOFFS(intctrlregs[idx].intstatus)) &
2314                        I_ERRORS;
2315                if (!intstatus)
2316                        continue;
2317
2318                BCMMSG(wlc_hw->wlc->wiphy, "wl%d: intstatus%d 0x%x\n",
2319                        unit, idx, intstatus);
2320
2321                if (intstatus & I_RO) {
2322                        wiphy_err(wiphy, "wl%d: fifo %d: receive fifo "
2323                                  "overflow\n", unit, idx);
2324                        fatal = true;
2325                }
2326
2327                if (intstatus & I_PC) {
2328                        wiphy_err(wiphy, "wl%d: fifo %d: descriptor error\n",
2329                                 unit, idx);
2330                        fatal = true;
2331                }
2332
2333                if (intstatus & I_PD) {
2334                        wiphy_err(wiphy, "wl%d: fifo %d: data error\n", unit,
2335                                  idx);
2336                        fatal = true;
2337                }
2338
2339                if (intstatus & I_DE) {
2340                        wiphy_err(wiphy, "wl%d: fifo %d: descriptor protocol "
2341                                  "error\n", unit, idx);
2342                        fatal = true;
2343                }
2344
2345                if (intstatus & I_RU)
2346                        wiphy_err(wiphy, "wl%d: fifo %d: receive descriptor "
2347                                  "underflow\n", idx, unit);
2348
2349                if (intstatus & I_XU) {
2350                        wiphy_err(wiphy, "wl%d: fifo %d: transmit fifo "
2351                                  "underflow\n", idx, unit);
2352                        fatal = true;
2353                }
2354
2355                if (fatal) {
2356                        brcms_fatal_error(wlc_hw->wlc->wl); /* big hammer */
2357                        break;
2358                } else
2359                        bcma_write32(core,
2360                                     D11REGOFFS(intctrlregs[idx].intstatus),
2361                                     intstatus);
2362        }
2363}
2364
2365void brcms_c_intrson(struct brcms_c_info *wlc)
2366{
2367        struct brcms_hardware *wlc_hw = wlc->hw;
2368        wlc->macintmask = wlc->defmacintmask;
2369        bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), wlc->macintmask);
2370}
2371
2372u32 brcms_c_intrsoff(struct brcms_c_info *wlc)
2373{
2374        struct brcms_hardware *wlc_hw = wlc->hw;
2375        u32 macintmask;
2376
2377        if (!wlc_hw->clk)
2378                return 0;
2379
2380        macintmask = wlc->macintmask;   /* isr can still happen */
2381
2382        bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), 0);
2383        (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(macintmask));
2384        udelay(1);              /* ensure int line is no longer driven */
2385        wlc->macintmask = 0;
2386
2387        /* return previous macintmask; resolve race between us and our isr */
2388        return wlc->macintstatus ? 0 : macintmask;
2389}
2390
2391void brcms_c_intrsrestore(struct brcms_c_info *wlc, u32 macintmask)
2392{
2393        struct brcms_hardware *wlc_hw = wlc->hw;
2394        if (!wlc_hw->clk)
2395                return;
2396
2397        wlc->macintmask = macintmask;
2398        bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), wlc->macintmask);
2399}
2400
2401/* assumes that the d11 MAC is enabled */
2402static void brcms_b_tx_fifo_suspend(struct brcms_hardware *wlc_hw,
2403                                    uint tx_fifo)
2404{
2405        u8 fifo = 1 << tx_fifo;
2406
2407        /* Two clients of this code, 11h Quiet period and scanning. */
2408
2409        /* only suspend if not already suspended */
2410        if ((wlc_hw->suspended_fifos & fifo) == fifo)
2411                return;
2412
2413        /* force the core awake only if not already */
2414        if (wlc_hw->suspended_fifos == 0)
2415                brcms_c_ucode_wake_override_set(wlc_hw,
2416                                                BRCMS_WAKE_OVERRIDE_TXFIFO);
2417
2418        wlc_hw->suspended_fifos |= fifo;
2419
2420        if (wlc_hw->di[tx_fifo]) {
2421                /*
2422                 * Suspending AMPDU transmissions in the middle can cause
2423                 * underflow which may result in mismatch between ucode and
2424                 * driver so suspend the mac before suspending the FIFO
2425                 */
2426                if (BRCMS_PHY_11N_CAP(wlc_hw->band))
2427                        brcms_c_suspend_mac_and_wait(wlc_hw->wlc);
2428
2429                dma_txsuspend(wlc_hw->di[tx_fifo]);
2430
2431                if (BRCMS_PHY_11N_CAP(wlc_hw->band))
2432                        brcms_c_enable_mac(wlc_hw->wlc);
2433        }
2434}
2435
2436static void brcms_b_tx_fifo_resume(struct brcms_hardware *wlc_hw,
2437                                   uint tx_fifo)
2438{
2439        /* BMAC_NOTE: BRCMS_TX_FIFO_ENAB is done in brcms_c_dpc() for DMA case
2440         * but need to be done here for PIO otherwise the watchdog will catch
2441         * the inconsistency and fire
2442         */
2443        /* Two clients of this code, 11h Quiet period and scanning. */
2444        if (wlc_hw->di[tx_fifo])
2445                dma_txresume(wlc_hw->di[tx_fifo]);
2446
2447        /* allow core to sleep again */
2448        if (wlc_hw->suspended_fifos == 0)
2449                return;
2450        else {
2451                wlc_hw->suspended_fifos &= ~(1 << tx_fifo);
2452                if (wlc_hw->suspended_fifos == 0)
2453                        brcms_c_ucode_wake_override_clear(wlc_hw,
2454                                                BRCMS_WAKE_OVERRIDE_TXFIFO);
2455        }
2456}
2457
2458/* precondition: requires the mac core to be enabled */
2459static void brcms_b_mute(struct brcms_hardware *wlc_hw, bool mute_tx)
2460{
2461        static const u8 null_ether_addr[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
2462
2463        if (mute_tx) {
2464                /* suspend tx fifos */
2465                brcms_b_tx_fifo_suspend(wlc_hw, TX_DATA_FIFO);
2466                brcms_b_tx_fifo_suspend(wlc_hw, TX_CTL_FIFO);
2467                brcms_b_tx_fifo_suspend(wlc_hw, TX_AC_BK_FIFO);
2468                brcms_b_tx_fifo_suspend(wlc_hw, TX_AC_VI_FIFO);
2469
2470                /* zero the address match register so we do not send ACKs */
2471                brcms_b_set_addrmatch(wlc_hw, RCM_MAC_OFFSET,
2472                                       null_ether_addr);
2473        } else {
2474                /* resume tx fifos */
2475                brcms_b_tx_fifo_resume(wlc_hw, TX_DATA_FIFO);
2476                brcms_b_tx_fifo_resume(wlc_hw, TX_CTL_FIFO);
2477                brcms_b_tx_fifo_resume(wlc_hw, TX_AC_BK_FIFO);
2478                brcms_b_tx_fifo_resume(wlc_hw, TX_AC_VI_FIFO);
2479
2480                /* Restore address */
2481                brcms_b_set_addrmatch(wlc_hw, RCM_MAC_OFFSET,
2482                                       wlc_hw->etheraddr);
2483        }
2484
2485        wlc_phy_mute_upd(wlc_hw->band->pi, mute_tx, 0);
2486
2487        if (mute_tx)
2488                brcms_c_ucode_mute_override_set(wlc_hw);
2489        else
2490                brcms_c_ucode_mute_override_clear(wlc_hw);
2491}
2492
2493void
2494brcms_c_mute(struct brcms_c_info *wlc, bool mute_tx)
2495{
2496        brcms_b_mute(wlc->hw, mute_tx);
2497}
2498
2499/*
2500 * Read and clear macintmask and macintstatus and intstatus registers.
2501 * This routine should be called with interrupts off
2502 * Return:
2503 *   -1 if brcms_deviceremoved(wlc) evaluates to true;
2504 *   0 if the interrupt is not for us, or we are in some special cases;
2505 *   device interrupt status bits otherwise.
2506 */
2507static inline u32 wlc_intstatus(struct brcms_c_info *wlc, bool in_isr)
2508{
2509        struct brcms_hardware *wlc_hw = wlc->hw;
2510        struct bcma_device *core = wlc_hw->d11core;
2511        u32 macintstatus;
2512
2513        /* macintstatus includes a DMA interrupt summary bit */
2514        macintstatus = bcma_read32(core, D11REGOFFS(macintstatus));
2515
2516        BCMMSG(wlc->wiphy, "wl%d: macintstatus: 0x%x\n", wlc_hw->unit,
2517                 macintstatus);
2518
2519        /* detect cardbus removed, in power down(suspend) and in reset */
2520        if (brcms_deviceremoved(wlc))
2521                return -1;
2522
2523        /* brcms_deviceremoved() succeeds even when the core is still resetting,
2524         * handle that case here.
2525         */
2526        if (macintstatus == 0xffffffff)
2527                return 0;
2528
2529        /* defer unsolicited interrupts */
2530        macintstatus &= (in_isr ? wlc->macintmask : wlc->defmacintmask);
2531
2532        /* if not for us */
2533        if (macintstatus == 0)
2534                return 0;
2535
2536        /* interrupts are already turned off for CFE build
2537         * Caution: For CFE Turning off the interrupts again has some undesired
2538         * consequences
2539         */
2540        /* turn off the interrupts */
2541        bcma_write32(core, D11REGOFFS(macintmask), 0);
2542        (void)bcma_read32(core, D11REGOFFS(macintmask));
2543        wlc->macintmask = 0;
2544
2545        /* clear device interrupts */
2546        bcma_write32(core, D11REGOFFS(macintstatus), macintstatus);
2547
2548        /* MI_DMAINT is indication of non-zero intstatus */
2549        if (macintstatus & MI_DMAINT)
2550                /*
2551                 * only fifo interrupt enabled is I_RI in
2552                 * RX_FIFO. If MI_DMAINT is set, assume it
2553                 * is set and clear the interrupt.
2554                 */
2555                bcma_write32(core, D11REGOFFS(intctrlregs[RX_FIFO].intstatus),
2556                             DEF_RXINTMASK);
2557
2558        return macintstatus;
2559}
2560
2561/* Update wlc->macintstatus and wlc->intstatus[]. */
2562/* Return true if they are updated successfully. false otherwise */
2563bool brcms_c_intrsupd(struct brcms_c_info *wlc)
2564{
2565        u32 macintstatus;
2566
2567        /* read and clear macintstatus and intstatus registers */
2568        macintstatus = wlc_intstatus(wlc, false);
2569
2570        /* device is removed */
2571        if (macintstatus == 0xffffffff)
2572                return false;
2573
2574        /* update interrupt status in software */
2575        wlc->macintstatus |= macintstatus;
2576
2577        return true;
2578}
2579
2580/*
2581 * First-level interrupt processing.
2582 * Return true if this was our interrupt, false otherwise.
2583 * *wantdpc will be set to true if further brcms_c_dpc() processing is required,
2584 * false otherwise.
2585 */
2586bool brcms_c_isr(struct brcms_c_info *wlc, bool *wantdpc)
2587{
2588        struct brcms_hardware *wlc_hw = wlc->hw;
2589        u32 macintstatus;
2590
2591        *wantdpc = false;
2592
2593        if (!wlc_hw->up || !wlc->macintmask)
2594                return false;
2595
2596        /* read and clear macintstatus and intstatus registers */
2597        macintstatus = wlc_intstatus(wlc, true);
2598
2599        if (macintstatus == 0xffffffff)
2600                wiphy_err(wlc->wiphy, "DEVICEREMOVED detected in the ISR code"
2601                          " path\n");
2602
2603        /* it is not for us */
2604        if (macintstatus == 0)
2605                return false;
2606
2607        *wantdpc = true;
2608
2609        /* save interrupt status bits */
2610        wlc->macintstatus = macintstatus;
2611
2612        return true;
2613
2614}
2615
2616void brcms_c_suspend_mac_and_wait(struct brcms_c_info *wlc)
2617{
2618        struct brcms_hardware *wlc_hw = wlc->hw;
2619        struct bcma_device *core = wlc_hw->d11core;
2620        u32 mc, mi;
2621        struct wiphy *wiphy = wlc->wiphy;
2622
2623        BCMMSG(wlc->wiphy, "wl%d: bandunit %d\n", wlc_hw->unit,
2624                wlc_hw->band->bandunit);
2625
2626        /*
2627         * Track overlapping suspend requests
2628         */
2629        wlc_hw->mac_suspend_depth++;
2630        if (wlc_hw->mac_suspend_depth > 1)
2631                return;
2632
2633        /* force the core awake */
2634        brcms_c_ucode_wake_override_set(wlc_hw, BRCMS_WAKE_OVERRIDE_MACSUSPEND);
2635
2636        mc = bcma_read32(core, D11REGOFFS(maccontrol));
2637
2638        if (mc == 0xffffffff) {
2639                wiphy_err(wiphy, "wl%d: %s: dead chip\n", wlc_hw->unit,
2640                          __func__);
2641                brcms_down(wlc->wl);
2642                return;
2643        }
2644        WARN_ON(mc & MCTL_PSM_JMP_0);
2645        WARN_ON(!(mc & MCTL_PSM_RUN));
2646        WARN_ON(!(mc & MCTL_EN_MAC));
2647
2648        mi = bcma_read32(core, D11REGOFFS(macintstatus));
2649        if (mi == 0xffffffff) {
2650                wiphy_err(wiphy, "wl%d: %s: dead chip\n", wlc_hw->unit,
2651                          __func__);
2652                brcms_down(wlc->wl);
2653                return;
2654        }
2655        WARN_ON(mi & MI_MACSSPNDD);
2656
2657        brcms_b_mctrl(wlc_hw, MCTL_EN_MAC, 0);
2658
2659        SPINWAIT(!(bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD),
2660                 BRCMS_MAX_MAC_SUSPEND);
2661
2662        if (!(bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD)) {
2663                wiphy_err(wiphy, "wl%d: wlc_suspend_mac_and_wait: waited %d uS"
2664                          " and MI_MACSSPNDD is still not on.\n",
2665                          wlc_hw->unit, BRCMS_MAX_MAC_SUSPEND);
2666                wiphy_err(wiphy, "wl%d: psmdebug 0x%08x, phydebug 0x%08x, "
2667                          "psm_brc 0x%04x\n", wlc_hw->unit,
2668                          bcma_read32(core, D11REGOFFS(psmdebug)),
2669                          bcma_read32(core, D11REGOFFS(phydebug)),
2670                          bcma_read16(core, D11REGOFFS(psm_brc)));
2671        }
2672
2673        mc = bcma_read32(core, D11REGOFFS(maccontrol));
2674        if (mc == 0xffffffff) {
2675                wiphy_err(wiphy, "wl%d: %s: dead chip\n", wlc_hw->unit,
2676                          __func__);
2677                brcms_down(wlc->wl);
2678                return;
2679        }
2680        WARN_ON(mc & MCTL_PSM_JMP_0);
2681        WARN_ON(!(mc & MCTL_PSM_RUN));
2682        WARN_ON(mc & MCTL_EN_MAC);
2683}
2684
2685void brcms_c_enable_mac(struct brcms_c_info *wlc)
2686{
2687        struct brcms_hardware *wlc_hw = wlc->hw;
2688        struct bcma_device *core = wlc_hw->d11core;
2689        u32 mc, mi;
2690
2691        BCMMSG(wlc->wiphy, "wl%d: bandunit %d\n", wlc_hw->unit,
2692                wlc->band->bandunit);
2693
2694        /*
2695         * Track overlapping suspend requests
2696         */
2697        wlc_hw->mac_suspend_depth--;
2698        if (wlc_hw->mac_suspend_depth > 0)
2699                return;
2700
2701        mc = bcma_read32(core, D11REGOFFS(maccontrol));
2702        WARN_ON(mc & MCTL_PSM_JMP_0);
2703        WARN_ON(mc & MCTL_EN_MAC);
2704        WARN_ON(!(mc & MCTL_PSM_RUN));
2705
2706        brcms_b_mctrl(wlc_hw, MCTL_EN_MAC, MCTL_EN_MAC);
2707        bcma_write32(core, D11REGOFFS(macintstatus), MI_MACSSPNDD);
2708
2709        mc = bcma_read32(core, D11REGOFFS(maccontrol));
2710        WARN_ON(mc & MCTL_PSM_JMP_0);
2711        WARN_ON(!(mc & MCTL_EN_MAC));
2712        WARN_ON(!(mc & MCTL_PSM_RUN));
2713
2714        mi = bcma_read32(core, D11REGOFFS(macintstatus));
2715        WARN_ON(mi & MI_MACSSPNDD);
2716
2717        brcms_c_ucode_wake_override_clear(wlc_hw,
2718                                          BRCMS_WAKE_OVERRIDE_MACSUSPEND);
2719}
2720
2721void brcms_b_band_stf_ss_set(struct brcms_hardware *wlc_hw, u8 stf_mode)
2722{
2723        wlc_hw->hw_stf_ss_opmode = stf_mode;
2724
2725        if (wlc_hw->clk)
2726                brcms_upd_ofdm_pctl1_table(wlc_hw);
2727}
2728
2729static bool brcms_b_validate_chip_access(struct brcms_hardware *wlc_hw)
2730{
2731        struct bcma_device *core = wlc_hw->d11core;
2732        u32 w, val;
2733        struct wiphy *wiphy = wlc_hw->wlc->wiphy;
2734
2735        BCMMSG(wiphy, "wl%d\n", wlc_hw->unit);
2736
2737        /* Validate dchip register access */
2738
2739        bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2740        (void)bcma_read32(core, D11REGOFFS(objaddr));
2741        w = bcma_read32(core, D11REGOFFS(objdata));
2742
2743        /* Can we write and read back a 32bit register? */
2744        bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2745        (void)bcma_read32(core, D11REGOFFS(objaddr));
2746        bcma_write32(core, D11REGOFFS(objdata), (u32) 0xaa5555aa);
2747
2748        bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2749        (void)bcma_read32(core, D11REGOFFS(objaddr));
2750        val = bcma_read32(core, D11REGOFFS(objdata));
2751        if (val != (u32) 0xaa5555aa) {
2752                wiphy_err(wiphy, "wl%d: validate_chip_access: SHM = 0x%x, "
2753                          "expected 0xaa5555aa\n", wlc_hw->unit, val);
2754                return false;
2755        }
2756
2757        bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2758        (void)bcma_read32(core, D11REGOFFS(objaddr));
2759        bcma_write32(core, D11REGOFFS(objdata), (u32) 0x55aaaa55);
2760
2761        bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2762        (void)bcma_read32(core, D11REGOFFS(objaddr));
2763        val = bcma_read32(core, D11REGOFFS(objdata));
2764        if (val != (u32) 0x55aaaa55) {
2765                wiphy_err(wiphy, "wl%d: validate_chip_access: SHM = 0x%x, "
2766                          "expected 0x55aaaa55\n", wlc_hw->unit, val);
2767                return false;
2768        }
2769
2770        bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2771        (void)bcma_read32(core, D11REGOFFS(objaddr));
2772        bcma_write32(core, D11REGOFFS(objdata), w);
2773
2774        /* clear CFPStart */
2775        bcma_write32(core, D11REGOFFS(tsf_cfpstart), 0);
2776
2777        w = bcma_read32(core, D11REGOFFS(maccontrol));
2778        if ((w != (MCTL_IHR_EN | MCTL_WAKE)) &&
2779            (w != (MCTL_IHR_EN | MCTL_GMODE | MCTL_WAKE))) {
2780                wiphy_err(wiphy, "wl%d: validate_chip_access: maccontrol = "
2781                          "0x%x, expected 0x%x or 0x%x\n", wlc_hw->unit, w,
2782                          (MCTL_IHR_EN | MCTL_WAKE),
2783                          (MCTL_IHR_EN | MCTL_GMODE | MCTL_WAKE));
2784                return false;
2785        }
2786
2787        return true;
2788}
2789
2790#define PHYPLL_WAIT_US  100000
2791
2792void brcms_b_core_phypll_ctl(struct brcms_hardware *wlc_hw, bool on)
2793{
2794        struct bcma_device *core = wlc_hw->d11core;
2795        u32 tmp;
2796
2797        BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
2798
2799        tmp = 0;
2800
2801        if (on) {
2802                if ((ai_get_chip_id(wlc_hw->sih) == BCM4313_CHIP_ID)) {
2803                        bcma_set32(core, D11REGOFFS(clk_ctl_st),
2804                                   CCS_ERSRC_REQ_HT |
2805                                   CCS_ERSRC_REQ_D11PLL |
2806                                   CCS_ERSRC_REQ_PHYPLL);
2807                        SPINWAIT((bcma_read32(core, D11REGOFFS(clk_ctl_st)) &
2808                                  CCS_ERSRC_AVAIL_HT) != CCS_ERSRC_AVAIL_HT,
2809                                 PHYPLL_WAIT_US);
2810
2811                        tmp = bcma_read32(core, D11REGOFFS(clk_ctl_st));
2812                        if ((tmp & CCS_ERSRC_AVAIL_HT) != CCS_ERSRC_AVAIL_HT)
2813                                wiphy_err(wlc_hw->wlc->wiphy, "%s: turn on PHY"
2814                                          " PLL failed\n", __func__);
2815                } else {
2816                        bcma_set32(core, D11REGOFFS(clk_ctl_st),
2817                                   tmp | CCS_ERSRC_REQ_D11PLL |
2818                                   CCS_ERSRC_REQ_PHYPLL);
2819                        SPINWAIT((bcma_read32(core, D11REGOFFS(clk_ctl_st)) &
2820                                  (CCS_ERSRC_AVAIL_D11PLL |
2821                                   CCS_ERSRC_AVAIL_PHYPLL)) !=
2822                                 (CCS_ERSRC_AVAIL_D11PLL |
2823                                  CCS_ERSRC_AVAIL_PHYPLL), PHYPLL_WAIT_US);
2824
2825                        tmp = bcma_read32(core, D11REGOFFS(clk_ctl_st));
2826                        if ((tmp &
2827                             (CCS_ERSRC_AVAIL_D11PLL | CCS_ERSRC_AVAIL_PHYPLL))
2828                            !=
2829                            (CCS_ERSRC_AVAIL_D11PLL | CCS_ERSRC_AVAIL_PHYPLL))
2830                                wiphy_err(wlc_hw->wlc->wiphy, "%s: turn on "
2831                                          "PHY PLL failed\n", __func__);
2832                }
2833        } else {
2834                /*
2835                 * Since the PLL may be shared, other cores can still
2836                 * be requesting it; so we'll deassert the request but
2837                 * not wait for status to comply.
2838                 */
2839                bcma_mask32(core, D11REGOFFS(clk_ctl_st),
2840                            ~CCS_ERSRC_REQ_PHYPLL);
2841                (void)bcma_read32(core, D11REGOFFS(clk_ctl_st));
2842        }
2843}
2844
2845static void brcms_c_coredisable(struct brcms_hardware *wlc_hw)
2846{
2847        bool dev_gone;
2848
2849        BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
2850
2851        dev_gone = brcms_deviceremoved(wlc_hw->wlc);
2852
2853        if (dev_gone)
2854                return;
2855
2856        if (wlc_hw->noreset)
2857                return;
2858
2859        /* radio off */
2860        wlc_phy_switch_radio(wlc_hw->band->pi, OFF);
2861
2862        /* turn off analog core */
2863        wlc_phy_anacore(wlc_hw->band->pi, OFF);
2864
2865        /* turn off PHYPLL to save power */
2866        brcms_b_core_phypll_ctl(wlc_hw, false);
2867
2868        wlc_hw->clk = false;
2869        bcma_core_disable(wlc_hw->d11core, 0);
2870        wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, false);
2871}
2872
2873static void brcms_c_flushqueues(struct brcms_c_info *wlc)
2874{
2875        struct brcms_hardware *wlc_hw = wlc->hw;
2876        uint i;
2877
2878        /* free any posted tx packets */
2879        for (i = 0; i < NFIFO; i++)
2880                if (wlc_hw->di[i]) {
2881                        dma_txreclaim(wlc_hw->di[i], DMA_RANGE_ALL);
2882                        wlc->core->txpktpend[i] = 0;
2883                        BCMMSG(wlc->wiphy, "pktpend fifo %d clrd\n", i);
2884                }
2885
2886        /* free any posted rx packets */
2887        dma_rxreclaim(wlc_hw->di[RX_FIFO]);
2888}
2889
2890static u16
2891brcms_b_read_objmem(struct brcms_hardware *wlc_hw, uint offset, u32 sel)
2892{
2893        struct bcma_device *core = wlc_hw->d11core;
2894        u16 objoff = D11REGOFFS(objdata);
2895
2896        bcma_write32(core, D11REGOFFS(objaddr), sel | (offset >> 2));
2897        (void)bcma_read32(core, D11REGOFFS(objaddr));
2898        if (offset & 2)
2899                objoff += 2;
2900
2901        return bcma_read16(core, objoff);
2902;
2903}
2904
2905static void
2906brcms_b_write_objmem(struct brcms_hardware *wlc_hw, uint offset, u16 v,
2907                     u32 sel)
2908{
2909        struct bcma_device *core = wlc_hw->d11core;
2910        u16 objoff = D11REGOFFS(objdata);
2911
2912        bcma_write32(core, D11REGOFFS(objaddr), sel | (offset >> 2));
2913        (void)bcma_read32(core, D11REGOFFS(objaddr));
2914        if (offset & 2)
2915                objoff += 2;
2916
2917        bcma_write16(core, objoff, v);
2918}
2919
2920/*
2921 * Read a single u16 from shared memory.
2922 * SHM 'offset' needs to be an even address
2923 */
2924u16 brcms_b_read_shm(struct brcms_hardware *wlc_hw, uint offset)
2925{
2926        return brcms_b_read_objmem(wlc_hw, offset, OBJADDR_SHM_SEL);
2927}
2928
2929/*
2930 * Write a single u16 to shared memory.
2931 * SHM 'offset' needs to be an even address
2932 */
2933void brcms_b_write_shm(struct brcms_hardware *wlc_hw, uint offset, u16 v)
2934{
2935        brcms_b_write_objmem(wlc_hw, offset, v, OBJADDR_SHM_SEL);
2936}
2937
2938/*
2939 * Copy a buffer to shared memory of specified type .
2940 * SHM 'offset' needs to be an even address and
2941 * Buffer length 'len' must be an even number of bytes
2942 * 'sel' selects the type of memory
2943 */
2944void
2945brcms_b_copyto_objmem(struct brcms_hardware *wlc_hw, uint offset,
2946                      const void *buf, int len, u32 sel)
2947{
2948        u16 v;
2949        const u8 *p = (const u8 *)buf;
2950        int i;
2951
2952        if (len <= 0 || (offset & 1) || (len & 1))
2953                return;
2954
2955        for (i = 0; i < len; i += 2) {
2956                v = p[i] | (p[i + 1] << 8);
2957                brcms_b_write_objmem(wlc_hw, offset + i, v, sel);
2958        }
2959}
2960
2961/*
2962 * Copy a piece of shared memory of specified type to a buffer .
2963 * SHM 'offset' needs to be an even address and
2964 * Buffer length 'len' must be an even number of bytes
2965 * 'sel' selects the type of memory
2966 */
2967void
2968brcms_b_copyfrom_objmem(struct brcms_hardware *wlc_hw, uint offset, void *buf,
2969                         int len, u32 sel)
2970{
2971        u16 v;
2972        u8 *p = (u8 *) buf;
2973        int i;
2974
2975        if (len <= 0 || (offset & 1) || (len & 1))
2976                return;
2977
2978        for (i = 0; i < len; i += 2) {
2979                v = brcms_b_read_objmem(wlc_hw, offset + i, sel);
2980                p[i] = v & 0xFF;
2981                p[i + 1] = (v >> 8) & 0xFF;
2982        }
2983}
2984
2985/* Copy a buffer to shared memory.
2986 * SHM 'offset' needs to be an even address and
2987 * Buffer length 'len' must be an even number of bytes
2988 */
2989static void brcms_c_copyto_shm(struct brcms_c_info *wlc, uint offset,
2990                        const void *buf, int len)
2991{
2992        brcms_b_copyto_objmem(wlc->hw, offset, buf, len, OBJADDR_SHM_SEL);
2993}
2994
2995static void brcms_b_retrylimit_upd(struct brcms_hardware *wlc_hw,
2996                                   u16 SRL, u16 LRL)
2997{
2998        wlc_hw->SRL = SRL;
2999        wlc_hw->LRL = LRL;
3000
3001        /* write retry limit to SCR, shouldn't need to suspend */
3002        if (wlc_hw->up) {
3003                bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
3004                             OBJADDR_SCR_SEL | S_DOT11_SRC_LMT);
3005                (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
3006                bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), wlc_hw->SRL);
3007                bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
3008                             OBJADDR_SCR_SEL | S_DOT11_LRC_LMT);
3009                (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
3010                bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), wlc_hw->LRL);
3011        }
3012}
3013
3014static void brcms_b_pllreq(struct brcms_hardware *wlc_hw, bool set, u32 req_bit)
3015{
3016        if (set) {
3017                if (mboolisset(wlc_hw->pllreq, req_bit))
3018                        return;
3019
3020                mboolset(wlc_hw->pllreq, req_bit);
3021
3022                if (mboolisset(wlc_hw->pllreq, BRCMS_PLLREQ_FLIP)) {
3023                        if (!wlc_hw->sbclk)
3024                                brcms_b_xtal(wlc_hw, ON);
3025                }
3026        } else {
3027                if (!mboolisset(wlc_hw->pllreq, req_bit))
3028                        return;
3029
3030                mboolclr(wlc_hw->pllreq, req_bit);
3031
3032                if (mboolisset(wlc_hw->pllreq, BRCMS_PLLREQ_FLIP)) {
3033                        if (wlc_hw->sbclk)
3034                                brcms_b_xtal(wlc_hw, OFF);
3035                }
3036        }
3037}
3038
3039static void brcms_b_antsel_set(struct brcms_hardware *wlc_hw, u32 antsel_avail)
3040{
3041        wlc_hw->antsel_avail = antsel_avail;
3042}
3043
3044/*
3045 * conditions under which the PM bit should be set in outgoing frames
3046 * and STAY_AWAKE is meaningful
3047 */
3048static bool brcms_c_ps_allowed(struct brcms_c_info *wlc)
3049{
3050        struct brcms_bss_cfg *cfg = wlc->bsscfg;
3051
3052        /* disallow PS when one of the following global conditions meets */
3053        if (!wlc->pub->associated)
3054                return false;
3055
3056        /* disallow PS when one of these meets when not scanning */
3057        if (wlc->filter_flags & FIF_PROMISC_IN_BSS)
3058                return false;
3059
3060        if (cfg->associated) {
3061                /*
3062                 * disallow PS when one of the following
3063                 * bsscfg specific conditions meets
3064                 */
3065                if (!cfg->BSS)
3066                        return false;
3067
3068                return false;
3069        }
3070
3071        return true;
3072}
3073
3074static void brcms_c_statsupd(struct brcms_c_info *wlc)
3075{
3076        int i;
3077        struct macstat macstats;
3078#ifdef BCMDBG
3079        u16 delta;
3080        u16 rxf0ovfl;
3081        u16 txfunfl[NFIFO];
3082#endif                          /* BCMDBG */
3083
3084        /* if driver down, make no sense to update stats */
3085        if (!wlc->pub->up)
3086                return;
3087
3088#ifdef BCMDBG
3089        /* save last rx fifo 0 overflow count */
3090        rxf0ovfl = wlc->core->macstat_snapshot->rxf0ovfl;
3091
3092        /* save last tx fifo  underflow count */
3093        for (i = 0; i < NFIFO; i++)
3094                txfunfl[i] = wlc->core->macstat_snapshot->txfunfl[i];
3095#endif                          /* BCMDBG */
3096
3097        /* Read mac stats from contiguous shared memory */
3098        brcms_b_copyfrom_objmem(wlc->hw, M_UCODE_MACSTAT, &macstats,
3099                                sizeof(struct macstat), OBJADDR_SHM_SEL);
3100
3101#ifdef BCMDBG
3102        /* check for rx fifo 0 overflow */
3103        delta = (u16) (wlc->core->macstat_snapshot->rxf0ovfl - rxf0ovfl);
3104        if (delta)
3105                wiphy_err(wlc->wiphy, "wl%d: %u rx fifo 0 overflows!\n",
3106                          wlc->pub->unit, delta);
3107
3108        /* check for tx fifo underflows */
3109        for (i = 0; i < NFIFO; i++) {
3110                delta =
3111                    (u16) (wlc->core->macstat_snapshot->txfunfl[i] -
3112                              txfunfl[i]);
3113                if (delta)
3114                        wiphy_err(wlc->wiphy, "wl%d: %u tx fifo %d underflows!"
3115                                  "\n", wlc->pub->unit, delta, i);
3116        }
3117#endif                          /* BCMDBG */
3118
3119        /* merge counters from dma module */
3120        for (i = 0; i < NFIFO; i++) {
3121                if (wlc->hw->di[i])
3122                        dma_counterreset(wlc->hw->di[i]);
3123        }
3124}
3125
3126static void brcms_b_reset(struct brcms_hardware *wlc_hw)
3127{
3128        BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
3129
3130        /* reset the core */
3131        if (!brcms_deviceremoved(wlc_hw->wlc))
3132                brcms_b_corereset(wlc_hw, BRCMS_USE_COREFLAGS);
3133
3134        /* purge the dma rings */
3135        brcms_c_flushqueues(wlc_hw->wlc);
3136}
3137
3138void brcms_c_reset(struct brcms_c_info *wlc)
3139{
3140        BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
3141
3142        /* slurp up hw mac counters before core reset */
3143        brcms_c_statsupd(wlc);
3144
3145        /* reset our snapshot of macstat counters */
3146        memset((char *)wlc->core->macstat_snapshot, 0,
3147                sizeof(struct macstat));
3148
3149        brcms_b_reset(wlc->hw);
3150}
3151
3152/* Return the channel the driver should initialize during brcms_c_init.
3153 * the channel may have to be changed from the currently configured channel
3154 * if other configurations are in conflict (bandlocked, 11n mode disabled,
3155 * invalid channel for current country, etc.)
3156 */
3157static u16 brcms_c_init_chanspec(struct brcms_c_info *wlc)
3158{
3159        u16 chanspec =
3160            1 | WL_CHANSPEC_BW_20 | WL_CHANSPEC_CTL_SB_NONE |
3161            WL_CHANSPEC_BAND_2G;
3162
3163        return chanspec;
3164}
3165
3166void brcms_c_init_scb(struct scb *scb)
3167{
3168        int i;
3169
3170        memset(scb, 0, sizeof(struct scb));
3171        scb->flags = SCB_WMECAP | SCB_HTCAP;
3172        for (i = 0; i < NUMPRIO; i++) {
3173                scb->seqnum[i] = 0;
3174                scb->seqctl[i] = 0xFFFF;
3175        }
3176
3177        scb->seqctl_nonqos = 0xFFFF;
3178        scb->magic = SCB_MAGIC;
3179}
3180
3181/* d11 core init
3182 *   reset PSM
3183 *   download ucode/PCM
3184 *   let ucode run to suspended
3185 *   download ucode inits
3186 *   config other core registers
3187 *   init dma
3188 */
3189static void brcms_b_coreinit(struct brcms_c_info *wlc)
3190{
3191        struct brcms_hardware *wlc_hw = wlc->hw;
3192        struct bcma_device *core = wlc_hw->d11core;
3193        u32 sflags;
3194        u32 bcnint_us;
3195        uint i = 0;
3196        bool fifosz_fixup = false;
3197        int err = 0;
3198        u16 buf[NFIFO];
3199        struct wiphy *wiphy = wlc->wiphy;
3200        struct brcms_ucode *ucode = &wlc_hw->wlc->wl->ucode;
3201
3202        BCMMSG(wlc->wiphy, "wl%d\n", wlc_hw->unit);
3203
3204        /* reset PSM */
3205        brcms_b_mctrl(wlc_hw, ~0, (MCTL_IHR_EN | MCTL_PSM_JMP_0 | MCTL_WAKE));
3206
3207        brcms_ucode_download(wlc_hw);
3208        /*
3209         * FIFOSZ fixup. driver wants to controls the fifo allocation.
3210         */
3211        fifosz_fixup = true;
3212
3213        /* let the PSM run to the suspended state, set mode to BSS STA */
3214        bcma_write32(core, D11REGOFFS(macintstatus), -1);
3215        brcms_b_mctrl(wlc_hw, ~0,
3216                       (MCTL_IHR_EN | MCTL_INFRA | MCTL_PSM_RUN | MCTL_WAKE));
3217
3218        /* wait for ucode to self-suspend after auto-init */
3219        SPINWAIT(((bcma_read32(core, D11REGOFFS(macintstatus)) &
3220                   MI_MACSSPNDD) == 0), 1000 * 1000);
3221        if ((bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD) == 0)
3222                wiphy_err(wiphy, "wl%d: wlc_coreinit: ucode did not self-"
3223                          "suspend!\n", wlc_hw->unit);
3224
3225        brcms_c_gpio_init(wlc);
3226
3227        sflags = bcma_aread32(core, BCMA_IOST);
3228
3229        if (D11REV_IS(wlc_hw->corerev, 23)) {
3230                if (BRCMS_ISNPHY(wlc_hw->band))
3231                        brcms_c_write_inits(wlc_hw, ucode->d11n0initvals16);
3232                else
3233                        wiphy_err(wiphy, "%s: wl%d: unsupported phy in corerev"
3234                                  " %d\n", __func__, wlc_hw->unit,
3235                                  wlc_hw->corerev);
3236        } else if (D11REV_IS(wlc_hw->corerev, 24)) {
3237                if (BRCMS_ISLCNPHY(wlc_hw->band))
3238                        brcms_c_write_inits(wlc_hw, ucode->d11lcn0initvals24);
3239                else
3240                        wiphy_err(wiphy, "%s: wl%d: unsupported phy in corerev"
3241                                  " %d\n", __func__, wlc_hw->unit,
3242                                  wlc_hw->corerev);
3243        } else {
3244                wiphy_err(wiphy, "%s: wl%d: unsupported corerev %d\n",
3245                          __func__, wlc_hw->unit, wlc_hw->corerev);
3246        }
3247
3248        /* For old ucode, txfifo sizes needs to be modified(increased) */
3249        if (fifosz_fixup == true)
3250                brcms_b_corerev_fifofixup(wlc_hw);
3251
3252        /* check txfifo allocations match between ucode and driver */
3253        buf[TX_AC_BE_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE0);
3254        if (buf[TX_AC_BE_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_BE_FIFO]) {
3255                i = TX_AC_BE_FIFO;
3256                err = -1;
3257        }
3258        buf[TX_AC_VI_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE1);
3259        if (buf[TX_AC_VI_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_VI_FIFO]) {
3260                i = TX_AC_VI_FIFO;
3261                err = -1;
3262        }
3263        buf[TX_AC_BK_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE2);
3264        buf[TX_AC_VO_FIFO] = (buf[TX_AC_BK_FIFO] >> 8) & 0xff;
3265        buf[TX_AC_BK_FIFO] &= 0xff;
3266        if (buf[TX_AC_BK_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_BK_FIFO]) {
3267                i = TX_AC_BK_FIFO;
3268                err = -1;
3269        }
3270        if (buf[TX_AC_VO_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_VO_FIFO]) {
3271                i = TX_AC_VO_FIFO;
3272                err = -1;
3273        }
3274        buf[TX_BCMC_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE3);
3275        buf[TX_ATIM_FIFO] = (buf[TX_BCMC_FIFO] >> 8) & 0xff;
3276        buf[TX_BCMC_FIFO] &= 0xff;
3277        if (buf[TX_BCMC_FIFO] != wlc_hw->xmtfifo_sz[TX_BCMC_FIFO]) {
3278                i = TX_BCMC_FIFO;
3279                err = -1;
3280        }
3281        if (buf[TX_ATIM_FIFO] != wlc_hw->xmtfifo_sz[TX_ATIM_FIFO]) {
3282                i = TX_ATIM_FIFO;
3283                err = -1;
3284        }
3285        if (err != 0)
3286                wiphy_err(wiphy, "wlc_coreinit: txfifo mismatch: ucode size %d"
3287                          " driver size %d index %d\n", buf[i],
3288                          wlc_hw->xmtfifo_sz[i], i);
3289
3290        /* make sure we can still talk to the mac */
3291        WARN_ON(bcma_read32(core, D11REGOFFS(maccontrol)) == 0xffffffff);
3292
3293        /* band-specific inits done by wlc_bsinit() */
3294
3295        /* Set up frame burst size and antenna swap threshold init values */
3296        brcms_b_write_shm(wlc_hw, M_MBURST_SIZE, MAXTXFRAMEBURST);
3297        brcms_b_write_shm(wlc_hw, M_MAX_ANTCNT, ANTCNT);
3298
3299        /* enable one rx interrupt per received frame */
3300        bcma_write32(core, D11REGOFFS(intrcvlazy[0]), (1 << IRL_FC_SHIFT));
3301
3302        /* set the station mode (BSS STA) */
3303        brcms_b_mctrl(wlc_hw,
3304                       (MCTL_INFRA | MCTL_DISCARD_PMQ | MCTL_AP),
3305                       (MCTL_INFRA | MCTL_DISCARD_PMQ));
3306
3307        /* set up Beacon interval */
3308        bcnint_us = 0x8000 << 10;
3309        bcma_write32(core, D11REGOFFS(tsf_cfprep),
3310                     (bcnint_us << CFPREP_CBI_SHIFT));
3311        bcma_write32(core, D11REGOFFS(tsf_cfpstart), bcnint_us);
3312        bcma_write32(core, D11REGOFFS(macintstatus), MI_GP1);
3313
3314        /* write interrupt mask */
3315        bcma_write32(core, D11REGOFFS(intctrlregs[RX_FIFO].intmask),
3316                     DEF_RXINTMASK);
3317
3318        /* allow the MAC to control the PHY clock (dynamic on/off) */
3319        brcms_b_macphyclk_set(wlc_hw, ON);
3320
3321        /* program dynamic clock control fast powerup delay register */
3322        wlc->fastpwrup_dly = ai_clkctl_fast_pwrup_delay(wlc_hw->sih);
3323        bcma_write16(core, D11REGOFFS(scc_fastpwrup_dly), wlc->fastpwrup_dly);
3324
3325        /* tell the ucode the corerev */
3326        brcms_b_write_shm(wlc_hw, M_MACHW_VER, (u16) wlc_hw->corerev);
3327
3328        /* tell the ucode MAC capabilities */
3329        brcms_b_write_shm(wlc_hw, M_MACHW_CAP_L,
3330                           (u16) (wlc_hw->machwcap & 0xffff));
3331        brcms_b_write_shm(wlc_hw, M_MACHW_CAP_H,
3332                           (u16) ((wlc_hw->
3333                                      machwcap >> 16) & 0xffff));
3334
3335        /* write retry limits to SCR, this done after PSM init */
3336        bcma_write32(core, D11REGOFFS(objaddr),
3337                     OBJADDR_SCR_SEL | S_DOT11_SRC_LMT);
3338        (void)bcma_read32(core, D11REGOFFS(objaddr));
3339        bcma_write32(core, D11REGOFFS(objdata), wlc_hw->SRL);
3340        bcma_write32(core, D11REGOFFS(objaddr),
3341                     OBJADDR_SCR_SEL | S_DOT11_LRC_LMT);
3342        (void)bcma_read32(core, D11REGOFFS(objaddr));
3343        bcma_write32(core, D11REGOFFS(objdata), wlc_hw->LRL);
3344
3345        /* write rate fallback retry limits */
3346        brcms_b_write_shm(wlc_hw, M_SFRMTXCNTFBRTHSD, wlc_hw->SFBL);
3347        brcms_b_write_shm(wlc_hw, M_LFRMTXCNTFBRTHSD, wlc_hw->LFBL);
3348
3349        bcma_mask16(core, D11REGOFFS(ifs_ctl), 0x0FFF);
3350        bcma_write16(core, D11REGOFFS(ifs_aifsn), EDCF_AIFSN_MIN);
3351
3352        /* init the tx dma engines */
3353        for (i = 0; i < NFIFO; i++) {
3354                if (wlc_hw->di[i])
3355                        dma_txinit(wlc_hw->di[i]);
3356        }
3357
3358        /* init the rx dma engine(s) and post receive buffers */
3359        dma_rxinit(wlc_hw->di[RX_FIFO]);
3360        dma_rxfill(wlc_hw->di[RX_FIFO]);
3361}
3362
3363void
3364static brcms_b_init(struct brcms_hardware *wlc_hw, u16 chanspec) {
3365        u32 macintmask;
3366        bool fastclk;
3367        struct brcms_c_info *wlc = wlc_hw->wlc;
3368
3369        BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
3370
3371        /* request FAST clock if not on */
3372        fastclk = wlc_hw->forcefastclk;
3373        if (!fastclk)
3374                brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
3375
3376        /* disable interrupts */
3377        macintmask = brcms_intrsoff(wlc->wl);
3378
3379        /* set up the specified band and chanspec */
3380        brcms_c_setxband(wlc_hw, chspec_bandunit(chanspec));
3381        wlc_phy_chanspec_radio_set(wlc_hw->band->pi, chanspec);
3382
3383        /* do one-time phy inits and calibration */
3384        wlc_phy_cal_init(wlc_hw->band->pi);
3385
3386        /* core-specific initialization */
3387        brcms_b_coreinit(wlc);
3388
3389        /* band-specific inits */
3390        brcms_b_bsinit(wlc, chanspec);
3391
3392        /* restore macintmask */
3393        brcms_intrsrestore(wlc->wl, macintmask);
3394
3395        /* seed wake_override with BRCMS_WAKE_OVERRIDE_MACSUSPEND since the mac
3396         * is suspended and brcms_c_enable_mac() will clear this override bit.
3397         */
3398        mboolset(wlc_hw->wake_override, BRCMS_WAKE_OVERRIDE_MACSUSPEND);
3399
3400        /*
3401         * initialize mac_suspend_depth to 1 to match ucode
3402         * initial suspended state
3403         */
3404        wlc_hw->mac_suspend_depth = 1;
3405
3406        /* restore the clk */
3407        if (!fastclk)
3408                brcms_b_clkctl_clk(wlc_hw, CLK_DYNAMIC);
3409}
3410
3411static void brcms_c_set_phy_chanspec(struct brcms_c_info *wlc,
3412                                     u16 chanspec)
3413{
3414        /* Save our copy of the chanspec */
3415        wlc->chanspec = chanspec;
3416
3417        /* Set the chanspec and power limits for this locale */
3418        brcms_c_channel_set_chanspec(wlc->cmi, chanspec, BRCMS_TXPWR_MAX);
3419
3420        if (wlc->stf->ss_algosel_auto)
3421                brcms_c_stf_ss_algo_channel_get(wlc, &wlc->stf->ss_algo_channel,
3422                                            chanspec);
3423
3424        brcms_c_stf_ss_update(wlc, wlc->band);
3425}
3426
3427static void
3428brcms_default_rateset(struct brcms_c_info *wlc, struct brcms_c_rateset *rs)
3429{
3430        brcms_c_rateset_default(rs, NULL, wlc->band->phytype,
3431                wlc->band->bandtype, false, BRCMS_RATE_MASK_FULL,
3432                (bool) (wlc->pub->_n_enab & SUPPORT_11N),
3433                brcms_chspec_bw(wlc->default_bss->chanspec),
3434                wlc->stf->txstreams);
3435}
3436
3437/* derive wlc->band->basic_rate[] table from 'rateset' */
3438static void brcms_c_rate_lookup_init(struct brcms_c_info *wlc,
3439                              struct brcms_c_rateset *rateset)
3440{
3441        u8 rate;
3442        u8 mandatory;
3443        u8 cck_basic = 0;
3444        u8 ofdm_basic = 0;
3445        u8 *br = wlc->band->basic_rate;
3446        uint i;
3447
3448        /* incoming rates are in 500kbps units as in 802.11 Supported Rates */
3449        memset(br, 0, BRCM_MAXRATE + 1);
3450
3451        /* For each basic rate in the rates list, make an entry in the
3452         * best basic lookup.
3453         */
3454        for (i = 0; i < rateset->count; i++) {
3455                /* only make an entry for a basic rate */
3456                if (!(rateset->rates[i] & BRCMS_RATE_FLAG))
3457                        continue;
3458
3459                /* mask off basic bit */
3460                rate = (rateset->rates[i] & BRCMS_RATE_MASK);
3461
3462                if (rate > BRCM_MAXRATE) {
3463                        wiphy_err(wlc->wiphy, "brcms_c_rate_lookup_init: "
3464                                  "invalid rate 0x%X in rate set\n",
3465                                  rateset->rates[i]);
3466                        continue;
3467                }
3468
3469                br[rate] = rate;
3470        }
3471
3472        /* The rate lookup table now has non-zero entries for each
3473         * basic rate, equal to the basic rate: br[basicN] = basicN
3474         *
3475         * To look up the best basic rate corresponding to any
3476         * particular rate, code can use the basic_rate table
3477         * like this
3478         *
3479         * basic_rate = wlc->band->basic_rate[tx_rate]
3480         *
3481         * Make sure there is a best basic rate entry for
3482         * every rate by walking up the table from low rates
3483         * to high, filling in holes in the lookup table
3484         */
3485
3486        for (i = 0; i < wlc->band->hw_rateset.count; i++) {
3487                rate = wlc->band->hw_rateset.rates[i];
3488
3489                if (br[rate] != 0) {
3490                        /* This rate is a basic rate.
3491                         * Keep track of the best basic rate so far by
3492                         * modulation type.
3493                         */
3494                        if (is_ofdm_rate(rate))
3495                                ofdm_basic = rate;
3496                        else
3497                                cck_basic = rate;
3498
3499                        continue;
3500                }
3501
3502                /* This rate is not a basic rate so figure out the
3503                 * best basic rate less than this rate and fill in
3504                 * the hole in the table
3505                 */
3506
3507                br[rate] = is_ofdm_rate(rate) ? ofdm_basic : cck_basic;
3508
3509                if (br[rate] != 0)
3510                        continue;
3511
3512                if (is_ofdm_rate(rate)) {
3513                        /*
3514                         * In 11g and 11a, the OFDM mandatory rates
3515                         * are 6, 12, and 24 Mbps
3516                         */
3517                        if (rate >= BRCM_RATE_24M)
3518                                mandatory = BRCM_RATE_24M;
3519                        else if (rate >= BRCM_RATE_12M)
3520                                mandatory = BRCM_RATE_12M;
3521                        else
3522                                mandatory = BRCM_RATE_6M;
3523                } else {
3524                        /* In 11b, all CCK rates are mandatory 1 - 11 Mbps */
3525                        mandatory = rate;
3526                }
3527
3528                br[rate] = mandatory;
3529        }
3530}
3531
3532static void brcms_c_bandinit_ordered(struct brcms_c_info *wlc,
3533                                     u16 chanspec)
3534{
3535        struct brcms_c_rateset default_rateset;
3536        uint parkband;
3537        uint i, band_order[2];
3538
3539        BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
3540        /*
3541         * We might have been bandlocked during down and the chip
3542         * power-cycled (hibernate). Figure out the right band to park on
3543         */
3544        if (wlc->bandlocked || wlc->pub->_nbands == 1) {
3545                /* updated in brcms_c_bandlock() */
3546                parkband = wlc->band->bandunit;
3547                band_order[0] = band_order[1] = parkband;
3548        } else {
3549                /* park on the band of the specified chanspec */
3550                parkband = chspec_bandunit(chanspec);
3551
3552                /* order so that parkband initialize last */
3553                band_order[0] = parkband ^ 1;
3554                band_order[1] = parkband;
3555        }
3556
3557        /* make each band operational, software state init */
3558        for (i = 0; i < wlc->pub->_nbands; i++) {
3559                uint j = band_order[i];
3560
3561                wlc->band = wlc->bandstate[j];
3562
3563                brcms_default_rateset(wlc, &default_rateset);
3564
3565                /* fill in hw_rate */
3566                brcms_c_rateset_filter(&default_rateset, &wlc->band->hw_rateset,
3567                                   false, BRCMS_RATES_CCK_OFDM, BRCMS_RATE_MASK,
3568                                   (bool) (wlc->pub->_n_enab & SUPPORT_11N));
3569
3570                /* init basic rate lookup */
3571                brcms_c_rate_lookup_init(wlc, &default_rateset);
3572        }
3573
3574        /* sync up phy/radio chanspec */
3575        brcms_c_set_phy_chanspec(wlc, chanspec);
3576}
3577
3578/*
3579 * Set or clear filtering related maccontrol bits based on
3580 * specified filter flags
3581 */
3582void brcms_c_mac_promisc(struct brcms_c_info *wlc, uint filter_flags)
3583{
3584        u32 promisc_bits = 0;
3585
3586        wlc->filter_flags = filter_flags;
3587
3588        if (filter_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS))
3589                promisc_bits |= MCTL_PROMISC;
3590
3591        if (filter_flags & FIF_BCN_PRBRESP_PROMISC)
3592                promisc_bits |= MCTL_BCNS_PROMISC;
3593
3594        if (filter_flags & FIF_FCSFAIL)
3595                promisc_bits |= MCTL_KEEPBADFCS;
3596
3597        if (filter_flags & (FIF_CONTROL | FIF_PSPOLL))
3598                promisc_bits |= MCTL_KEEPCONTROL;
3599
3600        brcms_b_mctrl(wlc->hw,
3601                MCTL_PROMISC | MCTL_BCNS_PROMISC |
3602                MCTL_KEEPCONTROL | MCTL_KEEPBADFCS,
3603                promisc_bits);
3604}
3605
3606/*
3607 * ucode, hwmac update
3608 *    Channel dependent updates for ucode and hw
3609 */
3610static void brcms_c_ucode_mac_upd(struct brcms_c_info *wlc)
3611{
3612        /* enable or disable any active IBSSs depending on whether or not
3613         * we are on the home channel
3614         */
3615        if (wlc->home_chanspec == wlc_phy_chanspec_get(wlc->band->pi)) {
3616                if (wlc->pub->associated) {
3617                        /*
3618                         * BMAC_NOTE: This is something that should be fixed
3619                         * in ucode inits. I think that the ucode inits set
3620                         * up the bcn templates and shm values with a bogus
3621                         * beacon. This should not be done in the inits. If
3622                         * ucode needs to set up a beacon for testing, the
3623                         * test routines should write it down, not expect the
3624                         * inits to populate a bogus beacon.
3625                         */
3626                        if (BRCMS_PHY_11N_CAP(wlc->band))
3627                                brcms_b_write_shm(wlc->hw,
3628                                                M_BCN_TXTSF_OFFSET, 0);
3629                }
3630        } else {
3631                /* disable an active IBSS if we are not on the home channel */
3632        }
3633}
3634
3635static void brcms_c_write_rate_shm(struct brcms_c_info *wlc, u8 rate,
3636                                   u8 basic_rate)
3637{
3638        u8 phy_rate, index;
3639        u8 basic_phy_rate, basic_index;
3640        u16 dir_table, basic_table;
3641        u16 basic_ptr;
3642
3643        /* Shared memory address for the table we are reading */
3644        dir_table = is_ofdm_rate(basic_rate) ? M_RT_DIRMAP_A : M_RT_DIRMAP_B;
3645
3646        /* Shared memory address for the table we are writing */
3647        basic_table = is_ofdm_rate(rate) ? M_RT_BBRSMAP_A : M_RT_BBRSMAP_B;
3648
3649        /*
3650         * for a given rate, the LS-nibble of the PLCP SIGNAL field is
3651         * the index into the rate table.
3652         */
3653        phy_rate = rate_info[rate] & BRCMS_RATE_MASK;
3654        basic_phy_rate = rate_info[basic_rate] & BRCMS_RATE_MASK;
3655        index = phy_rate & 0xf;
3656        basic_index = basic_phy_rate & 0xf;
3657
3658        /* Find the SHM pointer to the ACK rate entry by looking in the
3659         * Direct-map Table
3660         */
3661        basic_ptr = brcms_b_read_shm(wlc->hw, (dir_table + basic_index * 2));
3662
3663        /* Update the SHM BSS-basic-rate-set mapping table with the pointer
3664         * to the correct basic rate for the given incoming rate
3665         */
3666        brcms_b_write_shm(wlc->hw, (basic_table + index * 2), basic_ptr);
3667}
3668
3669static const struct brcms_c_rateset *
3670brcms_c_rateset_get_hwrs(struct brcms_c_info *wlc)
3671{
3672        const struct brcms_c_rateset *rs_dflt;
3673
3674        if (BRCMS_PHY_11N_CAP(wlc->band)) {
3675                if (wlc->band->bandtype == BRCM_BAND_5G)
3676                        rs_dflt = &ofdm_mimo_rates;
3677                else
3678                        rs_dflt = &cck_ofdm_mimo_rates;
3679        } else if (wlc->band->gmode)
3680                rs_dflt = &cck_ofdm_rates;
3681        else
3682                rs_dflt = &cck_rates;
3683
3684        return rs_dflt;
3685}
3686
3687static void brcms_c_set_ratetable(struct brcms_c_info *wlc)
3688{
3689        const struct brcms_c_rateset *rs_dflt;
3690        struct brcms_c_rateset rs;
3691        u8 rate, basic_rate;
3692        uint i;
3693
3694        rs_dflt = brcms_c_rateset_get_hwrs(wlc);
3695
3696        brcms_c_rateset_copy(rs_dflt, &rs);
3697        brcms_c_rateset_mcs_upd(&rs, wlc->stf->txstreams);
3698
3699        /* walk the phy rate table and update SHM basic rate lookup table */
3700        for (i = 0; i < rs.count; i++) {
3701                rate = rs.rates[i] & BRCMS_RATE_MASK;
3702
3703                /* for a given rate brcms_basic_rate returns the rate at
3704                 * which a response ACK/CTS should be sent.
3705                 */
3706                basic_rate = brcms_basic_rate(wlc, rate);
3707                if (basic_rate == 0)
3708                        /* This should only happen if we are using a
3709                         * restricted rateset.
3710                         */
3711                        basic_rate = rs.rates[0] & BRCMS_RATE_MASK;
3712
3713                brcms_c_write_rate_shm(wlc, rate, basic_rate);
3714        }
3715}
3716
3717/* band-specific init */
3718static void brcms_c_bsinit(struct brcms_c_info *wlc)
3719{
3720        BCMMSG(wlc->wiphy, "wl%d: bandunit %d\n",
3721                 wlc->pub->unit, wlc->band->bandunit);
3722
3723        /* write ucode ACK/CTS rate table */
3724        brcms_c_set_ratetable(wlc);
3725
3726        /* update some band specific mac configuration */
3727        brcms_c_ucode_mac_upd(wlc);
3728
3729        /* init antenna selection */
3730        brcms_c_antsel_init(wlc->asi);
3731
3732}
3733
3734/* formula:  IDLE_BUSY_RATIO_X_16 = (100-duty_cycle)/duty_cycle*16 */
3735static int
3736brcms_c_duty_cycle_set(struct brcms_c_info *wlc, int duty_cycle, bool isOFDM,
3737                   bool writeToShm)
3738{
3739        int idle_busy_ratio_x_16 = 0;
3740        uint offset =
3741            isOFDM ? M_TX_IDLE_BUSY_RATIO_X_16_OFDM :
3742            M_TX_IDLE_BUSY_RATIO_X_16_CCK;
3743        if (duty_cycle > 100 || duty_cycle < 0) {
3744                wiphy_err(wlc->wiphy, "wl%d:  duty cycle value off limit\n",
3745                          wlc->pub->unit);
3746                return -EINVAL;
3747        }
3748        if (duty_cycle)
3749                idle_busy_ratio_x_16 = (100 - duty_cycle) * 16 / duty_cycle;
3750        /* Only write to shared memory  when wl is up */
3751        if (writeToShm)
3752                brcms_b_write_shm(wlc->hw, offset, (u16) idle_busy_ratio_x_16);
3753
3754        if (isOFDM)
3755                wlc->tx_duty_cycle_ofdm = (u16) duty_cycle;
3756        else
3757                wlc->tx_duty_cycle_cck = (u16) duty_cycle;
3758
3759        return 0;
3760}
3761
3762/*
3763 * Initialize the base precedence map for dequeueing
3764 * from txq based on WME settings
3765 */
3766static void brcms_c_tx_prec_map_init(struct brcms_c_info *wlc)
3767{
3768        wlc->tx_prec_map = BRCMS_PREC_BMP_ALL;
3769        memset(wlc->fifo2prec_map, 0, NFIFO * sizeof(u16));
3770
3771        wlc->fifo2prec_map[TX_AC_BK_FIFO] = BRCMS_PREC_BMP_AC_BK;
3772        wlc->fifo2prec_map[TX_AC_BE_FIFO] = BRCMS_PREC_BMP_AC_BE;
3773        wlc->fifo2prec_map[TX_AC_VI_FIFO] = BRCMS_PREC_BMP_AC_VI;
3774        wlc->fifo2prec_map[TX_AC_VO_FIFO] = BRCMS_PREC_BMP_AC_VO;
3775}
3776
3777static void
3778brcms_c_txflowcontrol_signal(struct brcms_c_info *wlc,
3779                             struct brcms_txq_info *qi, bool on, int prio)
3780{
3781        /* transmit flowcontrol is not yet implemented */
3782}
3783
3784static void brcms_c_txflowcontrol_reset(struct brcms_c_info *wlc)
3785{
3786        struct brcms_txq_info *qi;
3787
3788        for (qi = wlc->tx_queues; qi != NULL; qi = qi->next) {
3789                if (qi->stopped) {
3790                        brcms_c_txflowcontrol_signal(wlc, qi, OFF, ALLPRIO);
3791                        qi->stopped = 0;
3792                }
3793        }
3794}
3795
3796/* push sw hps and wake state through hardware */
3797static void brcms_c_set_ps_ctrl(struct brcms_c_info *wlc)
3798{
3799        u32 v1, v2;
3800        bool hps;
3801        bool awake_before;
3802
3803        hps = brcms_c_ps_allowed(wlc);
3804
3805        BCMMSG(wlc->wiphy, "wl%d: hps %d\n", wlc->pub->unit, hps);
3806
3807        v1 = bcma_read32(wlc->hw->d11core, D11REGOFFS(maccontrol));
3808        v2 = MCTL_WAKE;
3809        if (hps)
3810                v2 |= MCTL_HPS;
3811
3812        brcms_b_mctrl(wlc->hw, MCTL_WAKE | MCTL_HPS, v2);
3813
3814        awake_before = ((v1 & MCTL_WAKE) || ((v1 & MCTL_HPS) == 0));
3815
3816        if (!awake_before)
3817                brcms_b_wait_for_wake(wlc->hw);
3818}
3819
3820/*
3821 * Write this BSS config's MAC address to core.
3822 * Updates RXE match engine.
3823 */
3824static int brcms_c_set_mac(struct brcms_bss_cfg *bsscfg)
3825{
3826        int err = 0;
3827        struct brcms_c_info *wlc = bsscfg->wlc;
3828
3829        /* enter the MAC addr into the RXE match registers */
3830        brcms_c_set_addrmatch(wlc, RCM_MAC_OFFSET, bsscfg->cur_etheraddr);
3831
3832        brcms_c_ampdu_macaddr_upd(wlc);
3833
3834        return err;
3835}
3836
3837/* Write the BSS config's BSSID address to core (set_bssid in d11procs.tcl).
3838 * Updates RXE match engine.
3839 */
3840static void brcms_c_set_bssid(struct brcms_bss_cfg *bsscfg)
3841{
3842        /* we need to update BSSID in RXE match registers */
3843        brcms_c_set_addrmatch(bsscfg->wlc, RCM_BSSID_OFFSET, bsscfg->BSSID);
3844}
3845
3846static void brcms_b_set_shortslot(struct brcms_hardware *wlc_hw, bool shortslot)
3847{
3848        wlc_hw->shortslot = shortslot;
3849
3850        if (wlc_hw->band->bandtype == BRCM_BAND_2G && wlc_hw->up) {
3851                brcms_c_suspend_mac_and_wait(wlc_hw->wlc);
3852                brcms_b_update_slot_timing(wlc_hw, shortslot);
3853                brcms_c_enable_mac(wlc_hw->wlc);
3854        }
3855}
3856
3857/*
3858 * Suspend the the MAC and update the slot timing
3859 * for standard 11b/g (20us slots) or shortslot 11g (9us slots).
3860 */
3861static void brcms_c_switch_shortslot(struct brcms_c_info *wlc, bool shortslot)
3862{
3863        /* use the override if it is set */
3864        if (wlc->shortslot_override != BRCMS_SHORTSLOT_AUTO)
3865                shortslot = (wlc->shortslot_override == BRCMS_SHORTSLOT_ON);
3866
3867        if (wlc->shortslot == shortslot)
3868                return;
3869
3870        wlc->shortslot = shortslot;
3871
3872        brcms_b_set_shortslot(wlc->hw, shortslot);
3873}
3874
3875static void brcms_c_set_home_chanspec(struct brcms_c_info *wlc, u16 chanspec)
3876{
3877        if (wlc->home_chanspec != chanspec) {
3878                wlc->home_chanspec = chanspec;
3879
3880                if (wlc->bsscfg->associated)
3881                        wlc->bsscfg->current_bss->chanspec = chanspec;
3882        }
3883}
3884
3885void
3886brcms_b_set_chanspec(struct brcms_hardware *wlc_hw, u16 chanspec,
3887                      bool mute_tx, struct txpwr_limits *txpwr)
3888{
3889        uint bandunit;
3890
3891        BCMMSG(wlc_hw->wlc->wiphy, "wl%d: 0x%x\n", wlc_hw->unit, chanspec);
3892
3893        wlc_hw->chanspec = chanspec;
3894
3895        /* Switch bands if necessary */
3896        if (wlc_hw->_nbands > 1) {
3897                bandunit = chspec_bandunit(chanspec);
3898                if (wlc_hw->band->bandunit != bandunit) {
3899                        /* brcms_b_setband disables other bandunit,
3900                         *  use light band switch if not up yet
3901                         */
3902                        if (wlc_hw->up) {
3903                                wlc_phy_chanspec_radio_set(wlc_hw->
3904                                                           bandstate[bandunit]->
3905                                                           pi, chanspec);
3906                                brcms_b_setband(wlc_hw, bandunit, chanspec);
3907                        } else {
3908                                brcms_c_setxband(wlc_hw, bandunit);
3909                        }
3910                }
3911        }
3912
3913        wlc_phy_initcal_enable(wlc_hw->band->pi, !mute_tx);
3914
3915        if (!wlc_hw->up) {
3916                if (wlc_hw->clk)
3917                        wlc_phy_txpower_limit_set(wlc_hw->band->pi, txpwr,
3918                                                  chanspec);
3919                wlc_phy_chanspec_radio_set(wlc_hw->band->pi, chanspec);
3920        } else {
3921                wlc_phy_chanspec_set(wlc_hw->band->pi, chanspec);
3922                wlc_phy_txpower_limit_set(wlc_hw->band->pi, txpwr, chanspec);
3923
3924                /* Update muting of the channel */
3925                brcms_b_mute(wlc_hw, mute_tx);
3926        }
3927}
3928
3929/* switch to and initialize new band */
3930static void brcms_c_setband(struct brcms_c_info *wlc,
3931                                           uint bandunit)
3932{
3933        wlc->band = wlc->bandstate[bandunit];
3934
3935        if (!wlc->pub->up)
3936                return;
3937
3938        /* wait for at least one beacon before entering sleeping state */
3939        brcms_c_set_ps_ctrl(wlc);
3940
3941        /* band-specific initializations */
3942        brcms_c_bsinit(wlc);
3943}
3944
3945static void brcms_c_set_chanspec(struct brcms_c_info *wlc, u16 chanspec)
3946{
3947        uint bandunit;
3948        bool switchband = false;
3949        u16 old_chanspec = wlc->chanspec;
3950
3951        if (!brcms_c_valid_chanspec_db(wlc->cmi, chanspec)) {
3952                wiphy_err(wlc->wiphy, "wl%d: %s: Bad channel %d\n",
3953                          wlc->pub->unit, __func__, CHSPEC_CHANNEL(chanspec));
3954                return;
3955        }
3956
3957        /* Switch bands if necessary */
3958        if (wlc->pub->_nbands > 1) {
3959                bandunit = chspec_bandunit(chanspec);
3960                if (wlc->band->bandunit != bandunit || wlc->bandinit_pending) {
3961                        switchband = true;
3962                        if (wlc->bandlocked) {
3963                                wiphy_err(wlc->wiphy, "wl%d: %s: chspec %d "
3964                                          "band is locked!\n",
3965                                          wlc->pub->unit, __func__,
3966                                          CHSPEC_CHANNEL(chanspec));
3967                                return;
3968                        }
3969                        /*
3970                         * should the setband call come after the
3971                         * brcms_b_chanspec() ? if the setband updates
3972                         * (brcms_c_bsinit) use low level calls to inspect and
3973                         * set state, the state inspected may be from the wrong
3974                         * band, or the following brcms_b_set_chanspec() may
3975                         * undo the work.
3976                         */
3977                        brcms_c_setband(wlc, bandunit);
3978                }
3979        }
3980
3981        /* sync up phy/radio chanspec */
3982        brcms_c_set_phy_chanspec(wlc, chanspec);
3983
3984        /* init antenna selection */
3985        if (brcms_chspec_bw(old_chanspec) != brcms_chspec_bw(chanspec)) {
3986                brcms_c_antsel_init(wlc->asi);
3987
3988                /* Fix the hardware rateset based on bw.
3989                 * Mainly add MCS32 for 40Mhz, remove MCS 32 for 20Mhz
3990                 */
3991                brcms_c_rateset_bw_mcs_filter(&wlc->band->hw_rateset,
3992                        wlc->band->mimo_cap_40 ? brcms_chspec_bw(chanspec) : 0);
3993        }
3994
3995        /* update some mac configuration since chanspec changed */
3996        brcms_c_ucode_mac_upd(wlc);
3997}
3998
3999/*
4000 * This function changes the phytxctl for beacon based on current
4001 * beacon ratespec AND txant setting as per this table:
4002 *  ratespec     CCK            ant = wlc->stf->txant
4003 *              OFDM            ant = 3
4004 */
4005void brcms_c_beacon_phytxctl_txant_upd(struct brcms_c_info *wlc,
4006                                       u32 bcn_rspec)
4007{
4008        u16 phyctl;
4009        u16 phytxant = wlc->stf->phytxant;
4010        u16 mask = PHY_TXC_ANT_MASK;
4011
4012        /* for non-siso rates or default setting, use the available chains */
4013        if (BRCMS_PHY_11N_CAP(wlc->band))
4014                phytxant = brcms_c_stf_phytxchain_sel(wlc, bcn_rspec);
4015
4016        phyctl = brcms_b_read_shm(wlc->hw, M_BCN_PCTLWD);
4017        phyctl = (phyctl & ~mask) | phytxant;
4018        brcms_b_write_shm(wlc->hw, M_BCN_PCTLWD, phyctl);
4019}
4020
4021/*
4022 * centralized protection config change function to simplify debugging, no
4023 * consistency checking this should be called only on changes to avoid overhead
4024 * in periodic function
4025 */
4026void brcms_c_protection_upd(struct brcms_c_info *wlc, uint idx, int val)
4027{
4028        BCMMSG(wlc->wiphy, "idx %d, val %d\n", idx, val);
4029
4030        switch (idx) {
4031        case BRCMS_PROT_G_SPEC:
4032                wlc->protection->_g = (bool) val;
4033                break;
4034        case BRCMS_PROT_G_OVR:
4035                wlc->protection->g_override = (s8) val;
4036                break;
4037        case BRCMS_PROT_G_USER:
4038                wlc->protection->gmode_user = (u8) val;
4039                break;
4040        case BRCMS_PROT_OVERLAP:
4041                wlc->protection->overlap = (s8) val;
4042                break;
4043        case BRCMS_PROT_N_USER:
4044                wlc->protection->nmode_user = (s8) val;
4045                break;
4046        case BRCMS_PROT_N_CFG:
4047                wlc->protection->n_cfg = (s8) val;
4048                break;
4049        case BRCMS_PROT_N_CFG_OVR:
4050                wlc->protection->n_cfg_override = (s8) val;
4051                break;
4052        case BRCMS_PROT_N_NONGF:
4053                wlc->protection->nongf = (bool) val;
4054                break;
4055        case BRCMS_PROT_N_NONGF_OVR:
4056                wlc->protection->nongf_override = (s8) val;
4057                break;
4058        case BRCMS_PROT_N_PAM_OVR:
4059                wlc->protection->n_pam_override = (s8) val;
4060                break;
4061        case BRCMS_PROT_N_OBSS:
4062                wlc->protection->n_obss = (bool) val;
4063                break;
4064
4065        default:
4066                break;
4067        }
4068
4069}
4070
4071static void brcms_c_ht_update_sgi_rx(struct brcms_c_info *wlc, int val)
4072{
4073        if (wlc->pub->up) {
4074                brcms_c_update_beacon(wlc);
4075                brcms_c_update_probe_resp(wlc, true);
4076        }
4077}
4078
4079static void brcms_c_ht_update_ldpc(struct brcms_c_info *wlc, s8 val)
4080{
4081        wlc->stf->ldpc = val;
4082
4083        if (wlc->pub->up) {
4084                brcms_c_update_beacon(wlc);
4085                brcms_c_update_probe_resp(wlc, true);
4086                wlc_phy_ldpc_override_set(wlc->band->pi, (val ? true : false));
4087        }
4088}
4089
4090void brcms_c_wme_setparams(struct brcms_c_info *wlc, u16 aci,
4091                       const struct ieee80211_tx_queue_params *params,
4092                       bool suspend)
4093{
4094        int i;
4095        struct shm_acparams acp_shm;
4096        u16 *shm_entry;
4097
4098        /* Only apply params if the core is out of reset and has clocks */
4099        if (!wlc->clk) {
4100                wiphy_err(wlc->wiphy, "wl%d: %s : no-clock\n", wlc->pub->unit,
4101                          __func__);
4102                return;
4103        }
4104
4105        memset((char *)&acp_shm, 0, sizeof(struct shm_acparams));
4106        /* fill in shm ac params struct */
4107        acp_shm.txop = params->txop;
4108        /* convert from units of 32us to us for ucode */
4109        wlc->edcf_txop[aci & 0x3] = acp_shm.txop =
4110            EDCF_TXOP2USEC(acp_shm.txop);
4111        acp_shm.aifs = (params->aifs & EDCF_AIFSN_MASK);
4112
4113        if (aci == IEEE80211_AC_VI && acp_shm.txop == 0
4114            && acp_shm.aifs < EDCF_AIFSN_MAX)
4115                acp_shm.aifs++;
4116
4117        if (acp_shm.aifs < EDCF_AIFSN_MIN
4118            || acp_shm.aifs > EDCF_AIFSN_MAX) {
4119                wiphy_err(wlc->wiphy, "wl%d: edcf_setparams: bad "
4120                          "aifs %d\n", wlc->pub->unit, acp_shm.aifs);
4121        } else {
4122                acp_shm.cwmin = params->cw_min;
4123                acp_shm.cwmax = params->cw_max;
4124                acp_shm.cwcur = acp_shm.cwmin;
4125                acp_shm.bslots =
4126                        bcma_read16(wlc->hw->d11core, D11REGOFFS(tsf_random)) &
4127                        acp_shm.cwcur;
4128                acp_shm.reggap = acp_shm.bslots + acp_shm.aifs;
4129                /* Indicate the new params to the ucode */
4130                acp_shm.status = brcms_b_read_shm(wlc->hw, (M_EDCF_QINFO +
4131                                                  wme_ac2fifo[aci] *
4132                                                  M_EDCF_QLEN +
4133                                                  M_EDCF_STATUS_OFF));
4134                acp_shm.status |= WME_STATUS_NEWAC;
4135
4136                /* Fill in shm acparam table */
4137                shm_entry = (u16 *) &acp_shm;
4138                for (i = 0; i < (int)sizeof(struct shm_acparams); i += 2)
4139                        brcms_b_write_shm(wlc->hw,
4140                                          M_EDCF_QINFO +
4141                                          wme_ac2fifo[aci] * M_EDCF_QLEN + i,
4142                                          *shm_entry++);
4143        }
4144
4145        if (suspend) {
4146                brcms_c_suspend_mac_and_wait(wlc);
4147                brcms_c_enable_mac(wlc);
4148        }
4149}
4150
4151static void brcms_c_edcf_setparams(struct brcms_c_info *wlc, bool suspend)
4152{
4153        u16 aci;
4154        int i_ac;
4155        struct ieee80211_tx_queue_params txq_pars;
4156        static const struct edcf_acparam default_edcf_acparams[] = {
4157                 {EDCF_AC_BE_ACI_STA, EDCF_AC_BE_ECW_STA, EDCF_AC_BE_TXOP_STA},
4158                 {EDCF_AC_BK_ACI_STA, EDCF_AC_BK_ECW_STA, EDCF_AC_BK_TXOP_STA},
4159                 {EDCF_AC_VI_ACI_STA, EDCF_AC_VI_ECW_STA, EDCF_AC_VI_TXOP_STA},
4160                 {EDCF_AC_VO_ACI_STA, EDCF_AC_VO_ECW_STA, EDCF_AC_VO_TXOP_STA}
4161        }; /* ucode needs these parameters during its initialization */
4162        const struct edcf_acparam *edcf_acp = &default_edcf_acparams[0];
4163
4164        for (i_ac = 0; i_ac < IEEE80211_NUM_ACS; i_ac++, edcf_acp++) {
4165                /* find out which ac this set of params applies to */
4166                aci = (edcf_acp->ACI & EDCF_ACI_MASK) >> EDCF_ACI_SHIFT;
4167
4168                /* fill in shm ac params struct */
4169                txq_pars.txop = edcf_acp->TXOP;
4170                txq_pars.aifs = edcf_acp->ACI;
4171
4172                /* CWmin = 2^(ECWmin) - 1 */
4173                txq_pars.cw_min = EDCF_ECW2CW(edcf_acp->ECW & EDCF_ECWMIN_MASK);
4174                /* CWmax = 2^(ECWmax) - 1 */
4175                txq_pars.cw_max = EDCF_ECW2CW((edcf_acp->ECW & EDCF_ECWMAX_MASK)
4176                                            >> EDCF_ECWMAX_SHIFT);
4177                brcms_c_wme_setparams(wlc, aci, &txq_pars, suspend);
4178        }
4179
4180        if (suspend) {
4181                brcms_c_suspend_mac_and_wait(wlc);
4182                brcms_c_enable_mac(wlc);
4183        }
4184}
4185
4186static void brcms_c_radio_monitor_start(struct brcms_c_info *wlc)
4187{
4188        /* Don't start the timer if HWRADIO feature is disabled */
4189        if (wlc->radio_monitor)
4190                return;
4191
4192        wlc->radio_monitor = true;
4193        brcms_b_pllreq(wlc->hw, true, BRCMS_PLLREQ_RADIO_MON);
4194        brcms_add_timer(wlc->radio_timer, TIMER_INTERVAL_RADIOCHK, true);
4195}
4196
4197static bool brcms_c_radio_monitor_stop(struct brcms_c_info *wlc)
4198{
4199        if (!wlc->radio_monitor)
4200                return true;
4201
4202        wlc->radio_monitor = false;
4203        brcms_b_pllreq(wlc->hw, false, BRCMS_PLLREQ_RADIO_MON);
4204        return brcms_del_timer(wlc->radio_timer);
4205}
4206
4207/* read hwdisable state and propagate to wlc flag */
4208static void brcms_c_radio_hwdisable_upd(struct brcms_c_info *wlc)
4209{
4210        if (wlc->pub->hw_off)
4211                return;
4212
4213        if (brcms_b_radio_read_hwdisabled(wlc->hw))
4214                mboolset(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE);
4215        else
4216                mboolclr(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE);
4217}
4218
4219/* update hwradio status and return it */
4220bool brcms_c_check_radio_disabled(struct brcms_c_info *wlc)
4221{
4222        brcms_c_radio_hwdisable_upd(wlc);
4223
4224        return mboolisset(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE) ?
4225                        true : false;
4226}
4227
4228/* periodical query hw radio button while driver is "down" */
4229static void brcms_c_radio_timer(void *arg)
4230{
4231        struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
4232
4233        if (brcms_deviceremoved(wlc)) {
4234                wiphy_err(wlc->wiphy, "wl%d: %s: dead chip\n", wlc->pub->unit,
4235                        __func__);
4236                brcms_down(wlc->wl);
4237                return;
4238        }
4239
4240        brcms_c_radio_hwdisable_upd(wlc);
4241}
4242
4243/* common low-level watchdog code */
4244static void brcms_b_watchdog(void *arg)
4245{
4246        struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
4247        struct brcms_hardware *wlc_hw = wlc->hw;
4248
4249        BCMMSG(wlc->wiphy, "wl%d\n", wlc_hw->unit);
4250
4251        if (!wlc_hw->up)
4252                return;
4253
4254        /* increment second count */
4255        wlc_hw->now++;
4256
4257        /* Check for FIFO error interrupts */
4258        brcms_b_fifoerrors(wlc_hw);
4259
4260        /* make sure RX dma has buffers */
4261        dma_rxfill(wlc->hw->di[RX_FIFO]);
4262
4263        wlc_phy_watchdog(wlc_hw->band->pi);
4264}
4265
4266/* common watchdog code */
4267static void brcms_c_watchdog(void *arg)
4268{
4269        struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
4270
4271        BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
4272
4273        if (!wlc->pub->up)
4274                return;
4275
4276        if (brcms_deviceremoved(wlc)) {
4277                wiphy_err(wlc->wiphy, "wl%d: %s: dead chip\n", wlc->pub->unit,
4278                          __func__);
4279                brcms_down(wlc->wl);
4280                return;
4281        }
4282
4283        /* increment second count */
4284        wlc->pub->now++;
4285
4286        brcms_c_radio_hwdisable_upd(wlc);
4287        /* if radio is disable, driver may be down, quit here */
4288        if (wlc->pub->radio_disabled)
4289                return;
4290
4291        brcms_b_watchdog(wlc);
4292
4293        /*
4294         * occasionally sample mac stat counters to
4295         * detect 16-bit counter wrap
4296         */
4297        if ((wlc->pub->now % SW_TIMER_MAC_STAT_UPD) == 0)
4298                brcms_c_statsupd(wlc);
4299
4300        if (BRCMS_ISNPHY(wlc->band) &&
4301            ((wlc->pub->now - wlc->tempsense_lasttime) >=
4302             BRCMS_TEMPSENSE_PERIOD)) {
4303                wlc->tempsense_lasttime = wlc->pub->now;
4304                brcms_c_tempsense_upd(wlc);
4305        }
4306}
4307
4308static void brcms_c_watchdog_by_timer(void *arg)
4309{
4310        brcms_c_watchdog(arg);
4311}
4312
4313static bool brcms_c_timers_init(struct brcms_c_info *wlc, int unit)
4314{
4315        wlc->wdtimer = brcms_init_timer(wlc->wl, brcms_c_watchdog_by_timer,
4316                wlc, "watchdog");
4317        if (!wlc->wdtimer) {
4318                wiphy_err(wlc->wiphy, "wl%d:  wl_init_timer for wdtimer "
4319                          "failed\n", unit);
4320                goto fail;
4321        }
4322
4323        wlc->radio_timer = brcms_init_timer(wlc->wl, brcms_c_radio_timer,
4324                wlc, "radio");
4325        if (!wlc->radio_timer) {
4326                wiphy_err(wlc->wiphy, "wl%d:  wl_init_timer for radio_timer "
4327                          "failed\n", unit);
4328                goto fail;
4329        }
4330
4331        return true;
4332
4333 fail:
4334        return false;
4335}
4336
4337/*
4338 * Initialize brcms_c_info default values ...
4339 * may get overrides later in this function
4340 */
4341static void brcms_c_info_init(struct brcms_c_info *wlc, int unit)
4342{
4343        int i;
4344
4345        /* Save our copy of the chanspec */
4346        wlc->chanspec = ch20mhz_chspec(1);
4347
4348        /* various 802.11g modes */
4349        wlc->shortslot = false;
4350        wlc->shortslot_override = BRCMS_SHORTSLOT_AUTO;
4351
4352        brcms_c_protection_upd(wlc, BRCMS_PROT_G_OVR, BRCMS_PROTECTION_AUTO);
4353        brcms_c_protection_upd(wlc, BRCMS_PROT_G_SPEC, false);
4354
4355        brcms_c_protection_upd(wlc, BRCMS_PROT_N_CFG_OVR,
4356                               BRCMS_PROTECTION_AUTO);
4357        brcms_c_protection_upd(wlc, BRCMS_PROT_N_CFG, BRCMS_N_PROTECTION_OFF);
4358        brcms_c_protection_upd(wlc, BRCMS_PROT_N_NONGF_OVR,
4359                               BRCMS_PROTECTION_AUTO);
4360        brcms_c_protection_upd(wlc, BRCMS_PROT_N_NONGF, false);
4361        brcms_c_protection_upd(wlc, BRCMS_PROT_N_PAM_OVR, AUTO);
4362
4363        brcms_c_protection_upd(wlc, BRCMS_PROT_OVERLAP,
4364                               BRCMS_PROTECTION_CTL_OVERLAP);
4365
4366        /* 802.11g draft 4.0 NonERP elt advertisement */
4367        wlc->include_legacy_erp = true;
4368
4369        wlc->stf->ant_rx_ovr = ANT_RX_DIV_DEF;
4370        wlc->stf->txant = ANT_TX_DEF;
4371
4372        wlc->prb_resp_timeout = BRCMS_PRB_RESP_TIMEOUT;
4373
4374        wlc->usr_fragthresh = DOT11_DEFAULT_FRAG_LEN;
4375        for (i = 0; i < NFIFO; i++)
4376                wlc->fragthresh[i] = DOT11_DEFAULT_FRAG_LEN;
4377        wlc->RTSThresh = DOT11_DEFAULT_RTS_LEN;
4378
4379        /* default rate fallback retry limits */
4380        wlc->SFBL = RETRY_SHORT_FB;
4381        wlc->LFBL = RETRY_LONG_FB;
4382
4383        /* default mac retry limits */
4384        wlc->SRL = RETRY_SHORT_DEF;
4385        wlc->LRL = RETRY_LONG_DEF;
4386
4387        /* WME QoS mode is Auto by default */
4388        wlc->pub->_ampdu = AMPDU_AGG_HOST;
4389        wlc->pub->bcmerror = 0;
4390}
4391
4392static uint brcms_c_attach_module(struct brcms_c_info *wlc)
4393{
4394        uint err = 0;
4395        uint unit;
4396        unit = wlc->pub->unit;
4397
4398        wlc->asi = brcms_c_antsel_attach(wlc);
4399        if (wlc->asi == NULL) {
4400                wiphy_err(wlc->wiphy, "wl%d: attach: antsel_attach "
4401                          "failed\n", unit);
4402                err = 44;
4403                goto fail;
4404        }
4405
4406        wlc->ampdu = brcms_c_ampdu_attach(wlc);
4407        if (wlc->ampdu == NULL) {
4408                wiphy_err(wlc->wiphy, "wl%d: attach: ampdu_attach "
4409                          "failed\n", unit);
4410                err = 50;
4411                goto fail;
4412        }
4413
4414        if ((brcms_c_stf_attach(wlc) != 0)) {
4415                wiphy_err(wlc->wiphy, "wl%d: attach: stf_attach "
4416                          "failed\n", unit);
4417                err = 68;
4418                goto fail;
4419        }
4420 fail:
4421        return err;
4422}
4423
4424struct brcms_pub *brcms_c_pub(struct brcms_c_info *wlc)
4425{
4426        return wlc->pub;
4427}
4428
4429/* low level attach
4430 *    run backplane attach, init nvram
4431 *    run phy attach
4432 *    initialize software state for each core and band
4433 *    put the whole chip in reset(driver down state), no clock
4434 */
4435static int brcms_b_attach(struct brcms_c_info *wlc, struct bcma_device *core,
4436                          uint unit, bool piomode)
4437{
4438        struct brcms_hardware *wlc_hw;
4439        char *macaddr = NULL;
4440        uint err = 0;
4441        uint j;
4442        bool wme = false;
4443        struct shared_phy_params sha_params;
4444        struct wiphy *wiphy = wlc->wiphy;
4445        struct pci_dev *pcidev = core->bus->host_pci;
4446
4447        BCMMSG(wlc->wiphy, "wl%d: vendor 0x%x device 0x%x\n", unit,
4448               pcidev->vendor,
4449               pcidev->device);
4450
4451        wme = true;
4452
4453        wlc_hw = wlc->hw;
4454        wlc_hw->wlc = wlc;
4455        wlc_hw->unit = unit;
4456        wlc_hw->band = wlc_hw->bandstate[0];
4457        wlc_hw->_piomode = piomode;
4458
4459        /* populate struct brcms_hardware with default values  */
4460        brcms_b_info_init(wlc_hw);
4461
4462        /*
4463         * Do the hardware portion of the attach. Also initialize software
4464         * state that depends on the particular hardware we are running.
4465         */
4466        wlc_hw->sih = ai_attach(core->bus);
4467        if (wlc_hw->sih == NULL) {
4468                wiphy_err(wiphy, "wl%d: brcms_b_attach: si_attach failed\n",
4469                          unit);
4470                err = 11;
4471                goto fail;
4472        }
4473
4474        /* verify again the device is supported */
4475        if (!brcms_c_chipmatch(pcidev->vendor, pcidev->device)) {
4476                wiphy_err(wiphy, "wl%d: brcms_b_attach: Unsupported "
4477                        "vendor/device (0x%x/0x%x)\n",
4478                         unit, pcidev->vendor, pcidev->device);
4479                err = 12;
4480                goto fail;
4481        }
4482
4483        wlc_hw->vendorid = pcidev->vendor;
4484        wlc_hw->deviceid = pcidev->device;
4485
4486        wlc_hw->d11core = core;
4487        wlc_hw->corerev = core->id.rev;
4488
4489        /* validate chip, chiprev and corerev */
4490        if (!brcms_c_isgoodchip(wlc_hw)) {
4491                err = 13;
4492                goto fail;
4493        }
4494
4495        /* initialize power control registers */
4496        ai_clkctl_init(wlc_hw->sih);
4497
4498        /* request fastclock and force fastclock for the rest of attach
4499         * bring the d11 core out of reset.
4500         *   For PMU chips, the first wlc_clkctl_clk is no-op since core-clk
4501         *   is still false; But it will be called again inside wlc_corereset,
4502         *   after d11 is out of reset.
4503         */
4504        brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
4505        brcms_b_corereset(wlc_hw, BRCMS_USE_COREFLAGS);
4506
4507        if (!brcms_b_validate_chip_access(wlc_hw)) {
4508                wiphy_err(wiphy, "wl%d: brcms_b_attach: validate_chip_access "
4509                        "failed\n", unit);
4510                err = 14;
4511                goto fail;
4512        }
4513
4514        /* get the board rev, used just below */
4515        j = getintvar(wlc_hw->sih, BRCMS_SROM_BOARDREV);
4516        /* promote srom boardrev of 0xFF to 1 */
4517        if (j == BOARDREV_PROMOTABLE)
4518                j = BOARDREV_PROMOTED;
4519        wlc_hw->boardrev = (u16) j;
4520        if (!brcms_c_validboardtype(wlc_hw)) {
4521                wiphy_err(wiphy, "wl%d: brcms_b_attach: Unsupported Broadcom "
4522                          "board type (0x%x)" " or revision level (0x%x)\n",
4523                          unit, ai_get_boardtype(wlc_hw->sih),
4524                          wlc_hw->boardrev);
4525                err = 15;
4526                goto fail;
4527        }
4528        wlc_hw->sromrev = (u8) getintvar(wlc_hw->sih, BRCMS_SROM_REV);
4529        wlc_hw->boardflags = (u32) getintvar(wlc_hw->sih,
4530                                             BRCMS_SROM_BOARDFLAGS);
4531        wlc_hw->boardflags2 = (u32) getintvar(wlc_hw->sih,
4532                                              BRCMS_SROM_BOARDFLAGS2);
4533
4534        if (wlc_hw->boardflags & BFL_NOPLLDOWN)
4535                brcms_b_pllreq(wlc_hw, true, BRCMS_PLLREQ_SHARED);
4536
4537        /* check device id(srom, nvram etc.) to set bands */
4538        if (wlc_hw->deviceid == BCM43224_D11N_ID ||
4539            wlc_hw->deviceid == BCM43224_D11N_ID_VEN1)
4540                /* Dualband boards */
4541                wlc_hw->_nbands = 2;
4542        else
4543                wlc_hw->_nbands = 1;
4544
4545        if ((ai_get_chip_id(wlc_hw->sih) == BCM43225_CHIP_ID))
4546                wlc_hw->_nbands = 1;
4547
4548        /* BMAC_NOTE: remove init of pub values when brcms_c_attach()
4549         * unconditionally does the init of these values
4550         */
4551        wlc->vendorid = wlc_hw->vendorid;
4552        wlc->deviceid = wlc_hw->deviceid;
4553        wlc->pub->sih = wlc_hw->sih;
4554        wlc->pub->corerev = wlc_hw->corerev;
4555        wlc->pub->sromrev = wlc_hw->sromrev;
4556        wlc->pub->boardrev = wlc_hw->boardrev;
4557        wlc->pub->boardflags = wlc_hw->boardflags;
4558        wlc->pub->boardflags2 = wlc_hw->boardflags2;
4559        wlc->pub->_nbands = wlc_hw->_nbands;
4560
4561        wlc_hw->physhim = wlc_phy_shim_attach(wlc_hw, wlc->wl, wlc);
4562
4563        if (wlc_hw->physhim == NULL) {
4564                wiphy_err(wiphy, "wl%d: brcms_b_attach: wlc_phy_shim_attach "
4565                        "failed\n", unit);
4566                err = 25;
4567                goto fail;
4568        }
4569
4570        /* pass all the parameters to wlc_phy_shared_attach in one struct */
4571        sha_params.sih = wlc_hw->sih;
4572        sha_params.physhim = wlc_hw->physhim;
4573        sha_params.unit = unit;
4574        sha_params.corerev = wlc_hw->corerev;
4575        sha_params.vid = wlc_hw->vendorid;
4576        sha_params.did = wlc_hw->deviceid;
4577        sha_params.chip = ai_get_chip_id(wlc_hw->sih);
4578        sha_params.chiprev = ai_get_chiprev(wlc_hw->sih);
4579        sha_params.chippkg = ai_get_chippkg(wlc_hw->sih);
4580        sha_params.sromrev = wlc_hw->sromrev;
4581        sha_params.boardtype = ai_get_boardtype(wlc_hw->sih);
4582        sha_params.boardrev = wlc_hw->boardrev;
4583        sha_params.boardflags = wlc_hw->boardflags;
4584        sha_params.boardflags2 = wlc_hw->boardflags2;
4585
4586        /* alloc and save pointer to shared phy state area */
4587        wlc_hw->phy_sh = wlc_phy_shared_attach(&sha_params);
4588        if (!wlc_hw->phy_sh) {
4589                err = 16;
4590                goto fail;
4591        }
4592
4593        /* initialize software state for each core and band */
4594        for (j = 0; j < wlc_hw->_nbands; j++) {
4595                /*
4596                 * band0 is always 2.4Ghz
4597                 * band1, if present, is 5Ghz
4598                 */
4599
4600                brcms_c_setxband(wlc_hw, j);
4601
4602                wlc_hw->band->bandunit = j;
4603                wlc_hw->band->bandtype = j ? BRCM_BAND_5G : BRCM_BAND_2G;
4604                wlc->band->bandunit = j;
4605                wlc->band->bandtype = j ? BRCM_BAND_5G : BRCM_BAND_2G;
4606                wlc->core->coreidx = core->core_index;
4607
4608                wlc_hw->machwcap = bcma_read32(core, D11REGOFFS(machwcap));
4609                wlc_hw->machwcap_backup = wlc_hw->machwcap;
4610
4611                /* init tx fifo size */
4612                wlc_hw->xmtfifo_sz =
4613                    xmtfifo_sz[(wlc_hw->corerev - XMTFIFOTBL_STARTREV)];
4614
4615                /* Get a phy for this band */
4616                wlc_hw->band->pi =
4617                        wlc_phy_attach(wlc_hw->phy_sh, core,
4618                                       wlc_hw->band->bandtype,
4619                                       wlc->wiphy);
4620                if (wlc_hw->band->pi == NULL) {
4621                        wiphy_err(wiphy, "wl%d: brcms_b_attach: wlc_phy_"
4622                                  "attach failed\n", unit);
4623                        err = 17;
4624                        goto fail;
4625                }
4626
4627                wlc_phy_machwcap_set(wlc_hw->band->pi, wlc_hw->machwcap);
4628
4629                wlc_phy_get_phyversion(wlc_hw->band->pi, &wlc_hw->band->phytype,
4630                                       &wlc_hw->band->phyrev,
4631                                       &wlc_hw->band->radioid,
4632                                       &wlc_hw->band->radiorev);
4633                wlc_hw->band->abgphy_encore =
4634                    wlc_phy_get_encore(wlc_hw->band->pi);
4635                wlc->band->abgphy_encore = wlc_phy_get_encore(wlc_hw->band->pi);
4636                wlc_hw->band->core_flags =
4637                    wlc_phy_get_coreflags(wlc_hw->band->pi);
4638
4639                /* verify good phy_type & supported phy revision */
4640                if (BRCMS_ISNPHY(wlc_hw->band)) {
4641                        if (NCONF_HAS(wlc_hw->band->phyrev))
4642                                goto good_phy;
4643                        else
4644                                goto bad_phy;
4645                } else if (BRCMS_ISLCNPHY(wlc_hw->band)) {
4646                        if (LCNCONF_HAS(wlc_hw->band->phyrev))
4647                                goto good_phy;
4648                        else
4649                                goto bad_phy;
4650                } else {
4651 bad_phy:
4652                        wiphy_err(wiphy, "wl%d: brcms_b_attach: unsupported "
4653                                  "phy type/rev (%d/%d)\n", unit,
4654                                  wlc_hw->band->phytype, wlc_hw->band->phyrev);
4655                        err = 18;
4656                        goto fail;
4657                }
4658
4659 good_phy:
4660                /*
4661                 * BMAC_NOTE: wlc->band->pi should not be set below and should
4662                 * be done in the high level attach. However we can not make
4663                 * that change until all low level access is changed to
4664                 * wlc_hw->band->pi. Instead do the wlc->band->pi init below,
4665                 * keeping wlc_hw->band->pi as well for inc