staging: brcm80211: remove chip simulation specific code
authorArend van Spriel <arend@broadcom.com>
Wed, 29 Jun 2011 23:46:39 +0000 (16:46 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 5 Jul 2011 16:57:11 +0000 (09:57 -0700)
The driver contained several code paths specific to running the
driver against a simulated chip. This is not needed and removed.

Signed-off-by: Arend van Spriel <arend@broadcom.com>
Reviewed-by: Roland Vossen <rvossen@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/brcm80211/brcmsmac/aiutils.h
drivers/staging/brcm80211/brcmsmac/main.c
drivers/staging/brcm80211/brcmsmac/nicpci.c
drivers/staging/brcm80211/brcmsmac/phy/phy_cmn.c
drivers/staging/brcm80211/brcmsmac/phy/phy_n.c
drivers/staging/brcm80211/brcmsmac/pmu.c
drivers/staging/brcm80211/brcmsmac/srom.c

index 965eb94a66dc3ebfcd312c89a56f58620fbcd827..b00780dac1cd0bdc9809b2df39fbccd2fc851aa7 100644 (file)
@@ -409,8 +409,6 @@ struct si_pub {
 #define SI_PCIDOWN     2
 #define SI_PCIUP       3
 
-#define        ISSIM_ENAB(sih) 0
-
 /* PMU clock/power control */
 #if defined(BCMPMUCTL)
 #define PMUCTL_ENAB(sih)       (BCMPMUCTL)
index ca9f1957d7aab90648847007b1eae9d371ce6745..093f3bf2453724c1b2b04428515dcbda26a74577 100644 (file)
@@ -5480,10 +5480,8 @@ static void brcms_c_bss_default_init(struct brcms_c_info *wlc)
 
        /* init default and target BSS with some sane initial values */
        memset((char *)(bi), 0, sizeof(wlc_bss_info_t));
-       bi->beacon_period = ISSIM_ENAB(wlc->pub->sih) ? BEACON_INTERVAL_DEF_QT :
-           BEACON_INTERVAL_DEFAULT;
-       bi->dtim_period = ISSIM_ENAB(wlc->pub->sih) ? DTIM_INTERVAL_DEF_QT :
-           DTIM_INTERVAL_DEFAULT;
+       bi->beacon_period = BEACON_INTERVAL_DEFAULT;
+       bi->dtim_period = DTIM_INTERVAL_DEFAULT;
 
        /* fill the default channel as the first valid channel
         * starting from the 2G channels
index 5a19182abdd3aa832d5b2e40e22212af71306c6d..70d41735c0a1d96206933fa02b0087efc8795c02 100644 (file)
@@ -596,28 +596,23 @@ static void pcie_war_aspm_clkreq(pcicore_info_t *pi)
                return;
 
        /* bypass this on QT or VSIM */
-       if (!ISSIM_ENAB(sih)) {
-
-               reg16 = &pcieregs->sprom[SRSH_ASPM_OFFSET];
-               val16 = R_REG(reg16);
+       reg16 = &pcieregs->sprom[SRSH_ASPM_OFFSET];
+       val16 = R_REG(reg16);
 
-               val16 &= ~SRSH_ASPM_ENB;
-               if (pi->pcie_war_aspm_ovr == PCIE_ASPM_ENAB)
-                       val16 |= SRSH_ASPM_ENB;
-               else if (pi->pcie_war_aspm_ovr == PCIE_ASPM_L1_ENAB)
-                       val16 |= SRSH_ASPM_L1_ENB;
-               else if (pi->pcie_war_aspm_ovr == PCIE_ASPM_L0s_ENAB)
-                       val16 |= SRSH_ASPM_L0s_ENB;
+       val16 &= ~SRSH_ASPM_ENB;
+       if (pi->pcie_war_aspm_ovr == PCIE_ASPM_ENAB)
+               val16 |= SRSH_ASPM_ENB;
+       else if (pi->pcie_war_aspm_ovr == PCIE_ASPM_L1_ENAB)
+               val16 |= SRSH_ASPM_L1_ENB;
+       else if (pi->pcie_war_aspm_ovr == PCIE_ASPM_L0s_ENAB)
+               val16 |= SRSH_ASPM_L0s_ENB;
 
-               W_REG(reg16, val16);
+       W_REG(reg16, val16);
 
-               pci_read_config_dword(pi->dev, pi->pciecap_lcreg_offset,
-                                       &w);
-               w &= ~PCIE_ASPM_ENAB;
-               w |= pi->pcie_war_aspm_ovr;
-               pci_write_config_dword(pi->dev,
-                                       pi->pciecap_lcreg_offset, w);
-       }
+       pci_read_config_dword(pi->dev, pi->pciecap_lcreg_offset, &w);
+       w &= ~PCIE_ASPM_ENAB;
+       w |= pi->pcie_war_aspm_ovr;
+       pci_write_config_dword(pi->dev, pi->pciecap_lcreg_offset, w);
 
        reg16 = &pcieregs->sprom[SRSH_CLKREQ_OFFSET_REV5];
        val16 = R_REG(reg16);
index dd56f10a67e624babaed6234d50295733cf9af5c..a15c14581304ba2a63fa5a20d70cb454b018e50f 100644 (file)
@@ -519,6 +519,7 @@ wlc_phy_t *wlc_phy_attach(shared_phy_t *sh, void *regs, int bandtype,
        phy_info_t *pi;
        u32 sflags = 0;
        uint phyversion;
+       u32 idcode;
        int i;
 
        if (D11REV_IS(sh->corerev, 4))
@@ -589,27 +590,19 @@ wlc_phy_t *wlc_phy_attach(shared_phy_t *sh, void *regs, int bandtype,
                }
        }
 
-       if (ISSIM_ENAB(pi->sh->sih)) {
-               pi->pubpi.radioid = NORADIO_ID;
-               pi->pubpi.radiorev = 5;
-       } else {
-               u32 idcode;
-
-               wlc_phy_anacore((wlc_phy_t *) pi, ON);
-
-               idcode = wlc_phy_get_radio_ver(pi);
-               pi->pubpi.radioid =
-                   (idcode & IDCODE_ID_MASK) >> IDCODE_ID_SHIFT;
-               pi->pubpi.radiorev =
-                   (idcode & IDCODE_REV_MASK) >> IDCODE_REV_SHIFT;
-               pi->pubpi.radiover =
-                   (idcode & IDCODE_VER_MASK) >> IDCODE_VER_SHIFT;
-               if (!VALID_RADIO(pi, pi->pubpi.radioid)) {
-                       goto err;
-               }
+       wlc_phy_anacore((wlc_phy_t *) pi, ON);
 
-               wlc_phy_switch_radio((wlc_phy_t *) pi, OFF);
-       }
+       idcode = wlc_phy_get_radio_ver(pi);
+       pi->pubpi.radioid =
+           (idcode & IDCODE_ID_MASK) >> IDCODE_ID_SHIFT;
+       pi->pubpi.radiorev =
+           (idcode & IDCODE_REV_MASK) >> IDCODE_REV_SHIFT;
+       pi->pubpi.radiover =
+           (idcode & IDCODE_VER_MASK) >> IDCODE_VER_SHIFT;
+       if (!VALID_RADIO(pi, pi->pubpi.radioid))
+               goto err;
+
+       wlc_phy_switch_radio((wlc_phy_t *) pi, OFF);
 
        wlc_set_phy_uninitted(pi);
 
@@ -1195,11 +1188,6 @@ void wlc_phy_do_dummy_tx(phy_info_t *pi, bool ofdm, bool pa_on)
 
        i = 0;
        count = ofdm ? 30 : 250;
-
-       if (ISSIM_ENAB(pi->sh->sih)) {
-               count *= 100;
-       }
-
        while ((i++ < count)
               && (R_REG(&regs->txe_status) & (1 << 7))) {
                udelay(10);
index ff0eb22ddee8d7ffe227b418e14dbce061fedd16..57fff0f1fa98fd8ff892d4b5972ebffa68c18ebe 100644 (file)
@@ -15369,9 +15369,7 @@ static void wlc_phy_workarounds_nphy(phy_info_t *pi)
        if (pi->phyhang_avoid)
                wlc_phy_stay_in_carriersearch_nphy(pi, true);
 
-       if (!ISSIM_ENAB(pi->sh->sih)) {
-               or_phy_reg(pi, 0xb1, NPHY_IQFlip_ADC1 | NPHY_IQFlip_ADC2);
-       }
+       or_phy_reg(pi, 0xb1, NPHY_IQFlip_ADC1 | NPHY_IQFlip_ADC2);
 
        if (NREV_GE(pi->pubpi.phy_rev, 7)) {
 
index 65082437c6c65170db559837fab22a368f0ae167..e8b2b81d2d040faad9ad1459b1e9791017bf322f 100644 (file)
@@ -203,7 +203,7 @@ u32 si_pmu_ilp_clock(struct si_pub *sih)
 {
        static u32 ilpcycles_per_sec;
 
-       if (ISSIM_ENAB(sih) || !PMUCTL_ENAB(sih))
+       if (!PMUCTL_ENAB(sih))
                return ILP_CLOCK;
 
        if (ilpcycles_per_sec == 0) {
@@ -225,21 +225,15 @@ u16 si_pmu_fast_pwrup_delay(struct si_pub *sih)
 {
        uint delay = PMU_MAX_TRANSITION_DLY;
 
-       /* Remember original core before switch to chipc */
-       origidx = ai_coreidx(sih);
-       cc = ai_setcoreidx(sih, SI_CC_IDX);
-
        switch (sih->chip) {
        case BCM43224_CHIP_ID:
        case BCM43225_CHIP_ID:
        case BCM4313_CHIP_ID:
-               delay = ISSIM_ENAB(sih) ? 70 : 3700;
+               delay = 3700;
                break;
        default:
                break;
        }
-       /* Return to original core */
-       ai_setcoreidx(sih, origidx);
 
        return (u16) delay;
 }
index 34c19ef3c58da04a9e1e420ef6bb107e0df72d16..de3e7035bd17f25301114fecd874c1a02485a3f3 100644 (file)
@@ -783,8 +783,6 @@ static int sprom_read_pci(struct si_pub *sih, u16 *sprom,
 #if defined(BCMNVRAMR)
 static int otp_read_pci(struct si_pub *sih, u16 *buf, uint bufsz);
 #endif
-static u16 srom_cc_cmd(struct si_pub *sih, void *ccregs, u32 cmd,
-                         uint wordoff, u16 data);
 
 static int initvars_table(char *start, char *end,
                          char **vars, uint *count);
@@ -873,38 +871,6 @@ int srom_var_init(struct si_pub *sih, uint bustype, void *curmap,
        return -EINVAL;
 }
 
-/* In chips with chipcommon rev 32 and later, the srom is in chipcommon,
- * not in the bus cores.
- */
-static u16
-srom_cc_cmd(struct si_pub *sih, void *ccregs, u32 cmd,
-           uint wordoff, u16 data)
-{
-       chipcregs_t *cc = (chipcregs_t *) ccregs;
-       uint wait_cnt = 1000;
-
-       if ((cmd == SRC_OP_READ) || (cmd == SRC_OP_WRITE)) {
-               W_REG(&cc->sromaddress, wordoff * 2);
-               if (cmd == SRC_OP_WRITE)
-                       W_REG(&cc->sromdata, data);
-       }
-
-       W_REG(&cc->sromcontrol, SRC_START | cmd);
-
-       while (wait_cnt--) {
-               if ((R_REG(&cc->sromcontrol) & SRC_BUSY) == 0)
-                       break;
-       }
-
-       if (!wait_cnt) {
-               return 0xffff;
-       }
-       if (cmd == SRC_OP_READ)
-               return (u16) R_REG(&cc->sromdata);
-       else
-               return 0xffff;
-}
-
 static inline void ltoh16_buf(u16 *buf, unsigned int size)
 {
        for (size /= 2; size; size--)
@@ -927,33 +893,10 @@ sprom_read_pci(struct si_pub *sih, u16 *sprom, uint wordoff,
 {
        int err = 0;
        uint i;
-       void *ccregs = NULL;
 
        /* read the sprom */
-       for (i = 0; i < nwords; i++) {
-
-               if (sih->ccrev > 31 && ISSIM_ENAB(sih)) {
-                       /* use indirect since direct is too slow on QT */
-                       if ((sih->cccaps & CC_CAP_SROM) == 0)
-                               return -ENODEV;
-
-                       ccregs = (void *)((u8 *) sprom - CC_SROM_OTP);
-                       buf[i] =
-                           srom_cc_cmd(sih, ccregs, SRC_OP_READ,
-                                       wordoff + i, 0);
-
-               } else {
-                       if (ISSIM_ENAB(sih))
-                               buf[i] = R_REG(&sprom[wordoff + i]);
-
-                       buf[i] = R_REG(&sprom[wordoff + i]);
-               }
-
-       }
-
-       /* bypass crc checking for simulation to allow srom hack */
-       if (ISSIM_ENAB(sih))
-               return 0;
+       for (i = 0; i < nwords; i++)
+               buf[i] = R_REG(&sprom[wordoff + i]);
 
        if (check_crc) {
 
This page took 0.043176 seconds and 5 git commands to generate.