Loading drivers/net/wireless/ath5k/ath5k.h +2 −9 Original line number Diff line number Diff line Loading @@ -142,6 +142,7 @@ enum ath5k_radio { AR5K_RF5112 = 2, AR5K_RF2413 = 3, AR5K_RF5413 = 4, AR5K_RF2425 = 5, }; /* Loading Loading @@ -449,14 +450,6 @@ struct ath5k_rx_status { #define AR5K_RXKEYIX_INVALID ((u8) - 1) #define AR5K_TXKEYIX_INVALID ((u32) - 1) struct ath5k_mib_stats { u32 ackrcv_bad; u32 rts_bad; u32 rts_good; u32 fcs_bad; u32 beacons; }; /**************************\ BEACON TIMERS DEFINITIONS Loading Loading @@ -1069,6 +1062,7 @@ extern int ath5k_hw_update_tx_triglevel(struct ath5k_hw *ah, bool increase); extern bool ath5k_hw_is_intr_pending(struct ath5k_hw *ah); extern int ath5k_hw_get_isr(struct ath5k_hw *ah, enum ath5k_int *interrupt_mask); extern enum ath5k_int ath5k_hw_set_intr(struct ath5k_hw *ah, enum ath5k_int new_mask); extern void ath5k_hw_update_mib_counters(struct ath5k_hw *ah, struct ieee80211_low_level_stats *stats); /* EEPROM access functions */ extern int ath5k_hw_set_regdomain(struct ath5k_hw *ah, u16 regdomain); /* Protocol Control Unit Functions */ Loading Loading @@ -1097,7 +1091,6 @@ extern int ath5k_hw_set_beacon_timers(struct ath5k_hw *ah, const struct ath5k_be extern void ath5k_hw_reset_beacon(struct ath5k_hw *ah); extern int ath5k_hw_beaconq_finish(struct ath5k_hw *ah, unsigned long phys_addr); #endif extern void ath5k_hw_update_mib_counters(struct ath5k_hw *ah, struct ath5k_mib_stats *statistics); /* ACK bit rate */ void ath5k_hw_set_ack_bitrate_high(struct ath5k_hw *ah, bool high); /* ACK/CTS Timeouts */ Loading drivers/net/wireless/ath5k/base.c +12 −2 Original line number Diff line number Diff line Loading @@ -126,6 +126,7 @@ static struct ath5k_srev_name srev_names[] = { { "5414", AR5K_VERSION_VER, AR5K_SREV_VER_AR5414 }, { "5416", AR5K_VERSION_VER, AR5K_SREV_VER_AR5416 }, { "5418", AR5K_VERSION_VER, AR5K_SREV_VER_AR5418 }, { "2425", AR5K_VERSION_VER, AR5K_SREV_VER_AR2425 }, { "xxxxx", AR5K_VERSION_VER, AR5K_SREV_UNKNOWN }, { "5110", AR5K_VERSION_RAD, AR5K_SREV_RAD_5110 }, { "5111", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111 }, Loading Loading @@ -2341,7 +2342,8 @@ ath5k_init(struct ath5k_softc *sc) * Enable interrupts. */ sc->imask = AR5K_INT_RX | AR5K_INT_TX | AR5K_INT_RXEOL | AR5K_INT_RXORN | AR5K_INT_FATAL | AR5K_INT_GLOBAL; AR5K_INT_RXORN | AR5K_INT_FATAL | AR5K_INT_GLOBAL | AR5K_INT_MIB; ath5k_hw_set_intr(sc->ah, sc->imask); /* Set ack to be sent at low bit-rates */ Loading Loading @@ -2521,7 +2523,11 @@ ath5k_intr(int irq, void *dev_id) if (status & AR5K_INT_BMISS) { } if (status & AR5K_INT_MIB) { /* TODO */ /* * These stats are also used for ANI i think * so how about updating them more often ? */ ath5k_hw_update_mib_counters(ah, &sc->ll_stats); } } } while (ath5k_hw_is_intr_pending(ah) && counter-- > 0); Loading Loading @@ -3014,6 +3020,10 @@ ath5k_get_stats(struct ieee80211_hw *hw, struct ieee80211_low_level_stats *stats) { struct ath5k_softc *sc = hw->priv; struct ath5k_hw *ah = sc->ah; /* Force update */ ath5k_hw_update_mib_counters(ah, &sc->ll_stats); memcpy(stats, &sc->ll_stats, sizeof(sc->ll_stats)); Loading drivers/net/wireless/ath5k/hw.c +135 −17 Original line number Diff line number Diff line Loading @@ -119,12 +119,70 @@ int ath5k_hw_register_timeout(struct ath5k_hw *ah, u32 reg, u32 flag, u32 val, Attach/Detach Functions \***************************************/ /* * Power On Self Test helper function */ static int ath5k_hw_post(struct ath5k_hw *ah) { int i, c; u16 cur_reg; u16 regs[2] = {AR5K_STA_ID0, AR5K_PHY(8)}; u32 var_pattern; u32 static_pattern[4] = { 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999 }; u32 init_val; u32 cur_val; for (c = 0; c < 2; c++) { cur_reg = regs[c]; init_val = ath5k_hw_reg_read(ah, cur_reg); for (i = 0; i < 256; i++) { var_pattern = i << 16 | i; ath5k_hw_reg_write(ah, var_pattern, cur_reg); cur_val = ath5k_hw_reg_read(ah, cur_reg); if (cur_val != var_pattern) { ATH5K_ERR(ah->ah_sc, "POST Failed !!!\n"); return -EAGAIN; } /* Found on ndiswrapper dumps */ var_pattern = 0x0039080f; ath5k_hw_reg_write(ah, var_pattern, cur_reg); } for (i = 0; i < 4; i++) { var_pattern = static_pattern[i]; ath5k_hw_reg_write(ah, var_pattern, cur_reg); cur_val = ath5k_hw_reg_read(ah, cur_reg); if (cur_val != var_pattern) { ATH5K_ERR(ah->ah_sc, "POST Failed !!!\n"); return -EAGAIN; } /* Found on ndiswrapper dumps */ var_pattern = 0x003b080f; ath5k_hw_reg_write(ah, var_pattern, cur_reg); } } return 0; } /* * Check if the device is supported and initialize the needed structs */ struct ath5k_hw *ath5k_hw_attach(struct ath5k_softc *sc, u8 mac_version) { struct ath5k_hw *ah; struct pci_dev *pdev = sc->pdev; u8 mac[ETH_ALEN]; int ret; u32 srev; Loading Loading @@ -204,15 +262,19 @@ struct ath5k_hw *ath5k_hw_attach(struct ath5k_softc *sc, u8 mac_version) CHANNEL_2GHZ); /* Return on unsuported chips (unsupported eeprom etc) */ if(srev >= AR5K_SREV_VER_AR5416){ if ((srev >= AR5K_SREV_VER_AR5416) && (srev < AR5K_SREV_VER_AR2425)) { ATH5K_ERR(sc, "Device not yet supported.\n"); ret = -ENODEV; goto err_free; } else if (srev == AR5K_SREV_VER_AR2425) { ATH5K_WARN(sc, "Support for RF2425 is under development.\n"); } /* Identify single chip solutions */ if((srev <= AR5K_SREV_VER_AR5414) && (srev >= AR5K_SREV_VER_AR2413)) { if (((srev <= AR5K_SREV_VER_AR5414) && (srev >= AR5K_SREV_VER_AR2413)) || (srev == AR5K_SREV_VER_AR2425)) { ah->ah_single_chip = true; } else { ah->ah_single_chip = false; Loading Loading @@ -241,22 +303,65 @@ struct ath5k_hw *ath5k_hw_attach(struct ath5k_softc *sc, u8 mac_version) } else if (ah->ah_radio_5ghz_revision < AR5K_SREV_RAD_SC1) { ah->ah_radio = AR5K_RF2413; ah->ah_phy_spending = AR5K_PHY_SPENDING_RF5112A; } else { } else if (ah->ah_radio_5ghz_revision < AR5K_SREV_RAD_SC2) { ah->ah_radio = AR5K_RF5413; if (ah->ah_mac_srev <= AR5K_SREV_VER_AR5424 && ah->ah_mac_srev >= AR5K_SREV_VER_AR2424) ah->ah_phy_spending = AR5K_PHY_SPENDING_RF5424; else if (ah->ah_mac_srev >= AR5K_SREV_VER_AR2425) ah->ah_phy_spending = AR5K_PHY_SPENDING_RF5112; else ah->ah_phy_spending = AR5K_PHY_SPENDING_RF5112A; /* * Register returns 0x4 for radio revision * so ath5k_hw_radio_revision doesn't parse the value * correctly. For now we are based on mac's srev to * identify RF2425 radio. */ } else if (srev == AR5K_SREV_VER_AR2425) { ah->ah_radio = AR5K_RF2425; ah->ah_phy_spending = AR5K_PHY_SPENDING_RF5112; } ah->ah_phy = AR5K_PHY(0); /* * Identify AR5212-based PCI-E cards * And write some initial settings. * * (doing a "strings" on ndis driver * -ar5211.sys- reveals the following * pci-e related functions: * * pcieClockReq * pcieRxErrNotify * pcieL1SKPEnable * pcieAspm * pcieDisableAspmOnRfWake * pciePowerSaveEnable * * I guess these point to ClockReq but * i'm not sure.) */ if ((ah->ah_version == AR5K_AR5212) && (pdev->is_pcie)) { ath5k_hw_reg_write(ah, 0x9248fc00, 0x4080); ath5k_hw_reg_write(ah, 0x24924924, 0x4080); ath5k_hw_reg_write(ah, 0x28000039, 0x4080); ath5k_hw_reg_write(ah, 0x53160824, 0x4080); ath5k_hw_reg_write(ah, 0xe5980579, 0x4080); ath5k_hw_reg_write(ah, 0x001defff, 0x4080); ath5k_hw_reg_write(ah, 0x1aaabe40, 0x4080); ath5k_hw_reg_write(ah, 0xbe105554, 0x4080); ath5k_hw_reg_write(ah, 0x000e3007, 0x4080); ath5k_hw_reg_write(ah, 0x00000000, 0x4084); } ah->ah_phy = AR5K_PHY(0); /* * POST */ ret = ath5k_hw_post(ah); if (ret) goto err_free; /* * Get card capabilities, values, ... Loading Loading @@ -391,7 +496,7 @@ static int ath5k_hw_nic_wakeup(struct ath5k_hw *ah, int flags, bool initial) ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_BASEBAND | bus_flags); if (ret) { ATH5K_ERR(ah->ah_sc, "failed to reset the MAC Chip + PCI\n"); ATH5K_ERR(ah->ah_sc, "failed to reset the MAC Chip\n"); return -EIO; } Loading Loading @@ -655,7 +760,8 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum ieee80211_if_types op_mode, if (ah->ah_radio != AR5K_RF5111 && ah->ah_radio != AR5K_RF5112 && ah->ah_radio != AR5K_RF5413 && ah->ah_radio != AR5K_RF2413) { ah->ah_radio != AR5K_RF2413 && ah->ah_radio != AR5K_RF2425) { ATH5K_ERR(ah->ah_sc, "invalid phy radio: %u\n", ah->ah_radio); return -EINVAL; Loading Loading @@ -2849,15 +2955,19 @@ int ath5k_hw_beaconq_finish(struct ath5k_hw *ah, unsigned long phys_addr) * Update mib counters (statistics) */ void ath5k_hw_update_mib_counters(struct ath5k_hw *ah, struct ath5k_mib_stats *statistics) struct ieee80211_low_level_stats *stats) { ATH5K_TRACE(ah->ah_sc); /* Read-And-Clear */ statistics->ackrcv_bad += ath5k_hw_reg_read(ah, AR5K_ACK_FAIL); statistics->rts_bad += ath5k_hw_reg_read(ah, AR5K_RTS_FAIL); statistics->rts_good += ath5k_hw_reg_read(ah, AR5K_RTS_OK); statistics->fcs_bad += ath5k_hw_reg_read(ah, AR5K_FCS_FAIL); statistics->beacons += ath5k_hw_reg_read(ah, AR5K_BEACON_CNT); stats->dot11ACKFailureCount += ath5k_hw_reg_read(ah, AR5K_ACK_FAIL); stats->dot11RTSFailureCount += ath5k_hw_reg_read(ah, AR5K_RTS_FAIL); stats->dot11RTSSuccessCount += ath5k_hw_reg_read(ah, AR5K_RTS_OK); stats->dot11FCSErrorCount += ath5k_hw_reg_read(ah, AR5K_FCS_FAIL); /* XXX: Should we use this to track beacon count ? * -we read it anyway to clear the register */ ath5k_hw_reg_read(ah, AR5K_BEACON_CNT); /* Reset profile count registers on 5212*/ if (ah->ah_version == AR5K_AR5212) { Loading Loading @@ -2958,8 +3068,16 @@ int ath5k_hw_reset_key(struct ath5k_hw *ah, u16 entry) for (i = 0; i < AR5K_KEYCACHE_SIZE; i++) ath5k_hw_reg_write(ah, 0, AR5K_KEYTABLE_OFF(entry, i)); /* Set NULL encryption on non-5210*/ if (ah->ah_version != AR5K_AR5210) /* * Set NULL encryption on AR5212+ * * Note: AR5K_KEYTABLE_TYPE -> AR5K_KEYTABLE_OFF(entry, 5) * AR5K_KEYTABLE_TYPE_NULL -> 0x00000007 * * Note2: Windows driver (ndiswrapper) sets this to * 0x00000714 instead of 0x00000007 */ if (ah->ah_version > AR5K_AR5211) ath5k_hw_reg_write(ah, AR5K_KEYTABLE_TYPE_NULL, AR5K_KEYTABLE_TYPE(entry)); Loading drivers/net/wireless/ath5k/initvals.c +234 −0 Original line number Diff line number Diff line Loading @@ -1282,6 +1282,213 @@ static const struct ath5k_ini_mode rf2413_ini_mode_end[] = { { 0xf3307ff0, 0xf3307ff0, 0xf3307ff0 } }, }; /* Initial mode-specific settings for RF2425 (Written after ar5212_ini) */ /* XXX: No dumps for turbog yet, so turbog is the same with g here with some * minor tweaking based on dumps from other chips */ static const struct ath5k_ini_mode rf2425_ini_mode_end[] = { { AR5K_TXCFG, /* g gTurbo */ { 0x00000015, 0x00000015 } }, { AR5K_USEC_5211, { 0x12e013ab, 0x098813cf } }, { AR5K_PHY_TURBO, { 0x00000000, 0x00000003 } }, { AR5K_PHY(10), { 0x0a020001, 0x0a020001 } }, { AR5K_PHY(13), { 0x00000e0e, 0x00000e0e } }, { AR5K_PHY(14), { 0x0000000b, 0x0000000b } }, { AR5K_PHY(17), { 0x13721422, 0x13721422 } }, { AR5K_PHY(18), { 0x00199a65, 0x00199a65 } }, { AR5K_PHY(20), { 0x0c98b0da, 0x0c98b0da } }, { AR5K_PHY_SIG, { 0x7ec80d2e, 0x7ec80d2e } }, { AR5K_PHY_AGCCOARSE, { 0x3139605e, 0x3139605e } }, { AR5K_PHY(27), { 0x050cb081, 0x050cb081 } }, { AR5K_PHY_RX_DELAY, { 0x00000898, 0x000007d0 } }, { AR5K_PHY_FRAME_CTL_5211, { 0xf7b81000, 0xf7b81000 } }, { AR5K_PHY_CCKTXCTL, { 0x00000000, 0x00000000 } }, { AR5K_PHY(642), { 0xd03e6788, 0xd03e6788 } }, { AR5K_PHY_GAIN_2GHZ, { 0x0052c140, 0x0052c140 } }, { 0xa21c, { 0x1883800a, 0x1883800a } }, { 0xa324, { 0xa7cfa7cf, 0xa7cfa7cf } }, { 0xa328, { 0xa7cfa7cf, 0xa7cfa7cf } }, { 0xa32c, { 0xa7cfa7cf, 0xa7cfa7cf } }, { 0xa330, { 0xa7cfa7cf, 0xa7cfa7cf } }, { 0xa334, { 0xa7cfa7cf, 0xa7cfa7cf } }, { AR5K_DCU_FP, { 0x000003e0, 0x000003e0 } }, { 0x8060, { 0x0000000f, 0x0000000f } }, { 0x809c, { 0x00000000, 0x00000000 } }, { 0x80a0, { 0x00000000, 0x00000000 } }, { 0x8118, { 0x00000000, 0x00000000 } }, { 0x811c, { 0x00000000, 0x00000000 } }, { 0x8120, { 0x00000000, 0x00000000 } }, { 0x8124, { 0x00000000, 0x00000000 } }, { 0x8128, { 0x00000000, 0x00000000 } }, { 0x812c, { 0x00000000, 0x00000000 } }, { 0x8130, { 0x00000000, 0x00000000 } }, { 0x8134, { 0x00000000, 0x00000000 } }, { 0x8138, { 0x00000000, 0x00000000 } }, { 0x813c, { 0x00000000, 0x00000000 } }, { 0x8140, { 0x800003f9, 0x800003f9 } }, { 0x8144, { 0x00000000, 0x00000000 } }, { AR5K_PHY_AGC, { 0x00000000, 0x00000000 } }, { AR5K_PHY(11), { 0x0000a000, 0x0000a000 } }, { AR5K_PHY(15), { 0x00200400, 0x00200400 } }, { AR5K_PHY(19), { 0x1284233c, 0x1284233c } }, { AR5K_PHY_SCR, { 0x0000001f, 0x0000001f } }, { AR5K_PHY_SLMT, { 0x00000080, 0x00000080 } }, { AR5K_PHY_SCAL, { 0x0000000e, 0x0000000e } }, { AR5K_PHY(86), { 0x00081fff, 0x00081fff } }, { AR5K_PHY(96), { 0x00000000, 0x00000000 } }, { AR5K_PHY(97), { 0x02800000, 0x02800000 } }, { AR5K_PHY(104), { 0x00000000, 0x00000000 } }, { AR5K_PHY(119), { 0xfebadbe8, 0xfebadbe8 } }, { AR5K_PHY(120), { 0x00000000, 0x00000000 } }, { AR5K_PHY(121), { 0xaaaaaaaa, 0xaaaaaaaa } }, { AR5K_PHY(122), { 0x3c466478, 0x3c466478 } }, { AR5K_PHY(123), { 0x000000aa, 0x000000aa } }, { AR5K_PHY_SCLOCK, { 0x0000000c, 0x0000000c } }, { AR5K_PHY_SDELAY, { 0x000000ff, 0x000000ff } }, { AR5K_PHY_SPENDING, { 0x00000014, 0x00000014 } }, { 0xa228, { 0x000009b5, 0x000009b5 } }, { AR5K_PHY_TXPOWER_RATE3, { 0x20202020, 0x20202020 } }, { AR5K_PHY_TXPOWER_RATE4, { 0x20202020, 0x20202020 } }, { 0xa23c, { 0x93c889af, 0x93c889af } }, { 0xa24c, { 0x00000001, 0x00000001 } }, { 0xa250, { 0x0000a000, 0x0000a000 } }, { 0xa254, { 0x00000000, 0x00000000 } }, { 0xa258, { 0x0cc75380, 0x0cc75380 } }, { 0xa25c, { 0x0f0f0f01, 0x0f0f0f01 } }, { 0xa260, { 0x5f690f01, 0x5f690f01 } }, { 0xa264, { 0x00418a11, 0x00418a11 } }, { 0xa268, { 0x00000000, 0x00000000 } }, { 0xa26c, { 0x0c30c166, 0x0c30c166 } }, { 0xa270, { 0x00820820, 0x00820820 } }, { 0xa274, { 0x081a3caa, 0x081a3caa } }, { 0xa278, { 0x1ce739ce, 0x1ce739ce } }, { 0xa27c, { 0x051701ce, 0x051701ce } }, { 0xa300, { 0x16010000, 0x16010000 } }, { 0xa304, { 0x2c032402, 0x2c032402 } }, { 0xa308, { 0x48433e42, 0x48433e42 } }, { 0xa30c, { 0x5a0f500b, 0x5a0f500b } }, { 0xa310, { 0x6c4b624a, 0x6c4b624a } }, { 0xa314, { 0x7e8b748a, 0x7e8b748a } }, { 0xa318, { 0x96cf8ccb, 0x96cf8ccb } }, { 0xa31c, { 0xa34f9d0f, 0xa34f9d0f } }, { 0xa320, { 0xa7cfa58f, 0xa7cfa58f } }, { 0xa348, { 0x3fffffff, 0x3fffffff } }, { 0xa34c, { 0x3fffffff, 0x3fffffff } }, { 0xa350, { 0x3fffffff, 0x3fffffff } }, { 0xa354, { 0x0003ffff, 0x0003ffff } }, { 0xa358, { 0x79a8aa1f, 0x79a8aa1f } }, { 0xa35c, { 0x066c420f, 0x066c420f } }, { 0xa360, { 0x0f282207, 0x0f282207 } }, { 0xa364, { 0x17601685, 0x17601685 } }, { 0xa368, { 0x1f801104, 0x1f801104 } }, { 0xa36c, { 0x37a00c03, 0x37a00c03 } }, { 0xa370, { 0x3fc40883, 0x3fc40883 } }, { 0xa374, { 0x57c00803, 0x57c00803 } }, { 0xa378, { 0x5fd80682, 0x5fd80682 } }, { 0xa37c, { 0x7fe00482, 0x7fe00482 } }, { 0xa380, { 0x7f3c7bba, 0x7f3c7bba } }, { 0xa384, { 0xf3307ff0, 0xf3307ff0 } }, }; /* * Initial BaseBand Gain settings for RF5111/5112 (AR5210 comes with * RF5110 only so initial BB Gain settings are included in AR5K_AR5210_INI) Loading Loading @@ -1542,7 +1749,34 @@ int ath5k_hw_write_initvals(struct ath5k_hw *ah, u8 mode, bool change_channel) ARRAY_SIZE(rf5112_ini_bbgain), rf5112_ini_bbgain, change_channel); } else if (ah->ah_radio == AR5K_RF2425) { if (mode < 2) { ATH5K_ERR(ah->ah_sc, "unsupported channel mode: %d\n", mode); return -EINVAL; } /* Map b to g */ if (mode == 2) mode = 0; else mode = mode - 3; /* Override a setting from ar5212_ini */ ath5k_hw_reg_write(ah, 0x018830c6, AR5K_PHY(648)); ath5k_hw_ini_mode_registers(ah, ARRAY_SIZE(rf2425_ini_mode_end), rf2425_ini_mode_end, mode); /* Baseband gain table */ ath5k_hw_ini_registers(ah, ARRAY_SIZE(rf5112_ini_bbgain), rf5112_ini_bbgain, change_channel); } /* For AR5211 */ } else if (ah->ah_version == AR5K_AR5211) { Loading drivers/net/wireless/ath5k/phy.c +118 −5 Original line number Diff line number Diff line Loading @@ -669,6 +669,7 @@ static const struct ath5k_ini_rf rfregs_5413[] = { /* RF2413/2414 mode-specific init registers */ static const struct ath5k_ini_rf rfregs_2413[] = { { 1, AR5K_RF_BUFFER_CONTROL_4, /* mode b mode g mode gTurbo */ { 0x00000020, 0x00000020, 0x00000020 } }, { 2, AR5K_RF_BUFFER_CONTROL_3, { 0x02001408, 0x02001408, 0x02001408 } }, Loading Loading @@ -736,6 +737,83 @@ static const struct ath5k_ini_rf rfregs_2413[] = { { 0x0000000e, 0x0000000e, 0x0000000e } }, }; /* RF2425 mode-specific init registers */ static const struct ath5k_ini_rf rfregs_2425[] = { { 1, AR5K_RF_BUFFER_CONTROL_4, /* mode g mode gTurbo */ { 0x00000020, 0x00000020 } }, { 2, AR5K_RF_BUFFER_CONTROL_3, { 0x02001408, 0x02001408 } }, { 3, AR5K_RF_BUFFER_CONTROL_6, { 0x00e020c0, 0x00e020c0 } }, { 6, AR5K_RF_BUFFER, { 0x10000000, 0x10000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x002a0000, 0x002a0000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00100000, 0x00100000 } }, { 6, AR5K_RF_BUFFER, { 0x00020000, 0x00020000 } }, { 6, AR5K_RF_BUFFER, { 0x00730000, 0x00730000 } }, { 6, AR5K_RF_BUFFER, { 0x00f80000, 0x00f80000 } }, { 6, AR5K_RF_BUFFER, { 0x00e70000, 0x00e70000 } }, { 6, AR5K_RF_BUFFER, { 0x00140000, 0x00140000 } }, { 6, AR5K_RF_BUFFER, { 0x00910040, 0x00910040 } }, { 6, AR5K_RF_BUFFER, { 0x0007001a, 0x0007001a } }, { 6, AR5K_RF_BUFFER, { 0x00410000, 0x00410000 } }, { 6, AR5K_RF_BUFFER, { 0x00810060, 0x00810060 } }, { 6, AR5K_RF_BUFFER, { 0x00020803, 0x00020803 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00001660, 0x00001660 } }, { 6, AR5K_RF_BUFFER, { 0x00001688, 0x00001688 } }, { 6, AR5K_RF_BUFFER_CONTROL_1, { 0x00000001, 0x00000001 } }, { 7, AR5K_RF_BUFFER, { 0x00006400, 0x00006400 } }, { 7, AR5K_RF_BUFFER, { 0x00000800, 0x00000800 } }, { 7, AR5K_RF_BUFFER_CONTROL_2, { 0x0000000e, 0x0000000e } }, }; /* Initial RF Gain settings for RF5112 */ static const struct ath5k_ini_rfgain rfgain_5112[] = { /* 5Ghz 2Ghz */ Loading Loading @@ -1348,7 +1426,8 @@ static int ath5k_hw_rf5112_rfregs(struct ath5k_hw *ah, } /* * Initialize RF5413/5414 * Initialize RF5413/5414 and future chips * (until we come up with a better solution) */ static int ath5k_hw_rf5413_rfregs(struct ath5k_hw *ah, struct ieee80211_channel *channel, unsigned int mode) Loading @@ -1362,19 +1441,41 @@ static int ath5k_hw_rf5413_rfregs(struct ath5k_hw *ah, rf = ah->ah_rf_banks; if (ah->ah_radio == AR5K_RF5413) { switch (ah->ah_radio) { case AR5K_RF5413: rf_ini = rfregs_5413; rf_size = ARRAY_SIZE(rfregs_5413); } else if (ah->ah_radio == AR5K_RF2413) { break; case AR5K_RF2413: rf_ini = rfregs_2413; rf_size = ARRAY_SIZE(rfregs_2413); if (mode < 2) { ATH5K_ERR(ah->ah_sc, "invalid channel mode: %i\n", mode); return -EINVAL; } mode = mode - 2; } else { break; case AR5K_RF2425: rf_ini = rfregs_2425; rf_size = ARRAY_SIZE(rfregs_2425); if (mode < 2) { ATH5K_ERR(ah->ah_sc, "invalid channel mode: %i\n", mode); return -EINVAL; } /* Map b to g */ if (mode == 2) mode = 0; else mode = mode - 3; break; default: return -EINVAL; } Loading Loading @@ -1439,6 +1540,10 @@ int ath5k_hw_rfregs(struct ath5k_hw *ah, struct ieee80211_channel *channel, ah->ah_rf_banks_size = sizeof(rfregs_2413); func = ath5k_hw_rf5413_rfregs; break; case AR5K_RF2425: ah->ah_rf_banks_size = sizeof(rfregs_2425); func = ath5k_hw_rf5413_rfregs; break; default: return -EINVAL; } Loading Loading @@ -1482,6 +1587,11 @@ int ath5k_hw_rfgain(struct ath5k_hw *ah, unsigned int freq) size = ARRAY_SIZE(rfgain_2413); freq = 0; /* only 2Ghz */ break; case AR5K_RF2425: ath5k_rfg = rfgain_2413; size = ARRAY_SIZE(rfgain_2413); freq = 0; /* only 2Ghz */ break; default: return -EINVAL; } Loading Loading @@ -2181,8 +2291,11 @@ ath5k_hw_txpower(struct ath5k_hw *ah, struct ieee80211_channel *channel, * transmit anything if we call * this funtion, so we skip it * until we fix txpower. * * XXX: Assume same for RF2425 * to be safe. */ if (ah->ah_radio == AR5K_RF2413) if ((ah->ah_radio == AR5K_RF2413) || (ah->ah_radio == AR5K_RF2425)) return 0; /* Reset TX power values */ Loading Loading
drivers/net/wireless/ath5k/ath5k.h +2 −9 Original line number Diff line number Diff line Loading @@ -142,6 +142,7 @@ enum ath5k_radio { AR5K_RF5112 = 2, AR5K_RF2413 = 3, AR5K_RF5413 = 4, AR5K_RF2425 = 5, }; /* Loading Loading @@ -449,14 +450,6 @@ struct ath5k_rx_status { #define AR5K_RXKEYIX_INVALID ((u8) - 1) #define AR5K_TXKEYIX_INVALID ((u32) - 1) struct ath5k_mib_stats { u32 ackrcv_bad; u32 rts_bad; u32 rts_good; u32 fcs_bad; u32 beacons; }; /**************************\ BEACON TIMERS DEFINITIONS Loading Loading @@ -1069,6 +1062,7 @@ extern int ath5k_hw_update_tx_triglevel(struct ath5k_hw *ah, bool increase); extern bool ath5k_hw_is_intr_pending(struct ath5k_hw *ah); extern int ath5k_hw_get_isr(struct ath5k_hw *ah, enum ath5k_int *interrupt_mask); extern enum ath5k_int ath5k_hw_set_intr(struct ath5k_hw *ah, enum ath5k_int new_mask); extern void ath5k_hw_update_mib_counters(struct ath5k_hw *ah, struct ieee80211_low_level_stats *stats); /* EEPROM access functions */ extern int ath5k_hw_set_regdomain(struct ath5k_hw *ah, u16 regdomain); /* Protocol Control Unit Functions */ Loading Loading @@ -1097,7 +1091,6 @@ extern int ath5k_hw_set_beacon_timers(struct ath5k_hw *ah, const struct ath5k_be extern void ath5k_hw_reset_beacon(struct ath5k_hw *ah); extern int ath5k_hw_beaconq_finish(struct ath5k_hw *ah, unsigned long phys_addr); #endif extern void ath5k_hw_update_mib_counters(struct ath5k_hw *ah, struct ath5k_mib_stats *statistics); /* ACK bit rate */ void ath5k_hw_set_ack_bitrate_high(struct ath5k_hw *ah, bool high); /* ACK/CTS Timeouts */ Loading
drivers/net/wireless/ath5k/base.c +12 −2 Original line number Diff line number Diff line Loading @@ -126,6 +126,7 @@ static struct ath5k_srev_name srev_names[] = { { "5414", AR5K_VERSION_VER, AR5K_SREV_VER_AR5414 }, { "5416", AR5K_VERSION_VER, AR5K_SREV_VER_AR5416 }, { "5418", AR5K_VERSION_VER, AR5K_SREV_VER_AR5418 }, { "2425", AR5K_VERSION_VER, AR5K_SREV_VER_AR2425 }, { "xxxxx", AR5K_VERSION_VER, AR5K_SREV_UNKNOWN }, { "5110", AR5K_VERSION_RAD, AR5K_SREV_RAD_5110 }, { "5111", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111 }, Loading Loading @@ -2341,7 +2342,8 @@ ath5k_init(struct ath5k_softc *sc) * Enable interrupts. */ sc->imask = AR5K_INT_RX | AR5K_INT_TX | AR5K_INT_RXEOL | AR5K_INT_RXORN | AR5K_INT_FATAL | AR5K_INT_GLOBAL; AR5K_INT_RXORN | AR5K_INT_FATAL | AR5K_INT_GLOBAL | AR5K_INT_MIB; ath5k_hw_set_intr(sc->ah, sc->imask); /* Set ack to be sent at low bit-rates */ Loading Loading @@ -2521,7 +2523,11 @@ ath5k_intr(int irq, void *dev_id) if (status & AR5K_INT_BMISS) { } if (status & AR5K_INT_MIB) { /* TODO */ /* * These stats are also used for ANI i think * so how about updating them more often ? */ ath5k_hw_update_mib_counters(ah, &sc->ll_stats); } } } while (ath5k_hw_is_intr_pending(ah) && counter-- > 0); Loading Loading @@ -3014,6 +3020,10 @@ ath5k_get_stats(struct ieee80211_hw *hw, struct ieee80211_low_level_stats *stats) { struct ath5k_softc *sc = hw->priv; struct ath5k_hw *ah = sc->ah; /* Force update */ ath5k_hw_update_mib_counters(ah, &sc->ll_stats); memcpy(stats, &sc->ll_stats, sizeof(sc->ll_stats)); Loading
drivers/net/wireless/ath5k/hw.c +135 −17 Original line number Diff line number Diff line Loading @@ -119,12 +119,70 @@ int ath5k_hw_register_timeout(struct ath5k_hw *ah, u32 reg, u32 flag, u32 val, Attach/Detach Functions \***************************************/ /* * Power On Self Test helper function */ static int ath5k_hw_post(struct ath5k_hw *ah) { int i, c; u16 cur_reg; u16 regs[2] = {AR5K_STA_ID0, AR5K_PHY(8)}; u32 var_pattern; u32 static_pattern[4] = { 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999 }; u32 init_val; u32 cur_val; for (c = 0; c < 2; c++) { cur_reg = regs[c]; init_val = ath5k_hw_reg_read(ah, cur_reg); for (i = 0; i < 256; i++) { var_pattern = i << 16 | i; ath5k_hw_reg_write(ah, var_pattern, cur_reg); cur_val = ath5k_hw_reg_read(ah, cur_reg); if (cur_val != var_pattern) { ATH5K_ERR(ah->ah_sc, "POST Failed !!!\n"); return -EAGAIN; } /* Found on ndiswrapper dumps */ var_pattern = 0x0039080f; ath5k_hw_reg_write(ah, var_pattern, cur_reg); } for (i = 0; i < 4; i++) { var_pattern = static_pattern[i]; ath5k_hw_reg_write(ah, var_pattern, cur_reg); cur_val = ath5k_hw_reg_read(ah, cur_reg); if (cur_val != var_pattern) { ATH5K_ERR(ah->ah_sc, "POST Failed !!!\n"); return -EAGAIN; } /* Found on ndiswrapper dumps */ var_pattern = 0x003b080f; ath5k_hw_reg_write(ah, var_pattern, cur_reg); } } return 0; } /* * Check if the device is supported and initialize the needed structs */ struct ath5k_hw *ath5k_hw_attach(struct ath5k_softc *sc, u8 mac_version) { struct ath5k_hw *ah; struct pci_dev *pdev = sc->pdev; u8 mac[ETH_ALEN]; int ret; u32 srev; Loading Loading @@ -204,15 +262,19 @@ struct ath5k_hw *ath5k_hw_attach(struct ath5k_softc *sc, u8 mac_version) CHANNEL_2GHZ); /* Return on unsuported chips (unsupported eeprom etc) */ if(srev >= AR5K_SREV_VER_AR5416){ if ((srev >= AR5K_SREV_VER_AR5416) && (srev < AR5K_SREV_VER_AR2425)) { ATH5K_ERR(sc, "Device not yet supported.\n"); ret = -ENODEV; goto err_free; } else if (srev == AR5K_SREV_VER_AR2425) { ATH5K_WARN(sc, "Support for RF2425 is under development.\n"); } /* Identify single chip solutions */ if((srev <= AR5K_SREV_VER_AR5414) && (srev >= AR5K_SREV_VER_AR2413)) { if (((srev <= AR5K_SREV_VER_AR5414) && (srev >= AR5K_SREV_VER_AR2413)) || (srev == AR5K_SREV_VER_AR2425)) { ah->ah_single_chip = true; } else { ah->ah_single_chip = false; Loading Loading @@ -241,22 +303,65 @@ struct ath5k_hw *ath5k_hw_attach(struct ath5k_softc *sc, u8 mac_version) } else if (ah->ah_radio_5ghz_revision < AR5K_SREV_RAD_SC1) { ah->ah_radio = AR5K_RF2413; ah->ah_phy_spending = AR5K_PHY_SPENDING_RF5112A; } else { } else if (ah->ah_radio_5ghz_revision < AR5K_SREV_RAD_SC2) { ah->ah_radio = AR5K_RF5413; if (ah->ah_mac_srev <= AR5K_SREV_VER_AR5424 && ah->ah_mac_srev >= AR5K_SREV_VER_AR2424) ah->ah_phy_spending = AR5K_PHY_SPENDING_RF5424; else if (ah->ah_mac_srev >= AR5K_SREV_VER_AR2425) ah->ah_phy_spending = AR5K_PHY_SPENDING_RF5112; else ah->ah_phy_spending = AR5K_PHY_SPENDING_RF5112A; /* * Register returns 0x4 for radio revision * so ath5k_hw_radio_revision doesn't parse the value * correctly. For now we are based on mac's srev to * identify RF2425 radio. */ } else if (srev == AR5K_SREV_VER_AR2425) { ah->ah_radio = AR5K_RF2425; ah->ah_phy_spending = AR5K_PHY_SPENDING_RF5112; } ah->ah_phy = AR5K_PHY(0); /* * Identify AR5212-based PCI-E cards * And write some initial settings. * * (doing a "strings" on ndis driver * -ar5211.sys- reveals the following * pci-e related functions: * * pcieClockReq * pcieRxErrNotify * pcieL1SKPEnable * pcieAspm * pcieDisableAspmOnRfWake * pciePowerSaveEnable * * I guess these point to ClockReq but * i'm not sure.) */ if ((ah->ah_version == AR5K_AR5212) && (pdev->is_pcie)) { ath5k_hw_reg_write(ah, 0x9248fc00, 0x4080); ath5k_hw_reg_write(ah, 0x24924924, 0x4080); ath5k_hw_reg_write(ah, 0x28000039, 0x4080); ath5k_hw_reg_write(ah, 0x53160824, 0x4080); ath5k_hw_reg_write(ah, 0xe5980579, 0x4080); ath5k_hw_reg_write(ah, 0x001defff, 0x4080); ath5k_hw_reg_write(ah, 0x1aaabe40, 0x4080); ath5k_hw_reg_write(ah, 0xbe105554, 0x4080); ath5k_hw_reg_write(ah, 0x000e3007, 0x4080); ath5k_hw_reg_write(ah, 0x00000000, 0x4084); } ah->ah_phy = AR5K_PHY(0); /* * POST */ ret = ath5k_hw_post(ah); if (ret) goto err_free; /* * Get card capabilities, values, ... Loading Loading @@ -391,7 +496,7 @@ static int ath5k_hw_nic_wakeup(struct ath5k_hw *ah, int flags, bool initial) ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_BASEBAND | bus_flags); if (ret) { ATH5K_ERR(ah->ah_sc, "failed to reset the MAC Chip + PCI\n"); ATH5K_ERR(ah->ah_sc, "failed to reset the MAC Chip\n"); return -EIO; } Loading Loading @@ -655,7 +760,8 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum ieee80211_if_types op_mode, if (ah->ah_radio != AR5K_RF5111 && ah->ah_radio != AR5K_RF5112 && ah->ah_radio != AR5K_RF5413 && ah->ah_radio != AR5K_RF2413) { ah->ah_radio != AR5K_RF2413 && ah->ah_radio != AR5K_RF2425) { ATH5K_ERR(ah->ah_sc, "invalid phy radio: %u\n", ah->ah_radio); return -EINVAL; Loading Loading @@ -2849,15 +2955,19 @@ int ath5k_hw_beaconq_finish(struct ath5k_hw *ah, unsigned long phys_addr) * Update mib counters (statistics) */ void ath5k_hw_update_mib_counters(struct ath5k_hw *ah, struct ath5k_mib_stats *statistics) struct ieee80211_low_level_stats *stats) { ATH5K_TRACE(ah->ah_sc); /* Read-And-Clear */ statistics->ackrcv_bad += ath5k_hw_reg_read(ah, AR5K_ACK_FAIL); statistics->rts_bad += ath5k_hw_reg_read(ah, AR5K_RTS_FAIL); statistics->rts_good += ath5k_hw_reg_read(ah, AR5K_RTS_OK); statistics->fcs_bad += ath5k_hw_reg_read(ah, AR5K_FCS_FAIL); statistics->beacons += ath5k_hw_reg_read(ah, AR5K_BEACON_CNT); stats->dot11ACKFailureCount += ath5k_hw_reg_read(ah, AR5K_ACK_FAIL); stats->dot11RTSFailureCount += ath5k_hw_reg_read(ah, AR5K_RTS_FAIL); stats->dot11RTSSuccessCount += ath5k_hw_reg_read(ah, AR5K_RTS_OK); stats->dot11FCSErrorCount += ath5k_hw_reg_read(ah, AR5K_FCS_FAIL); /* XXX: Should we use this to track beacon count ? * -we read it anyway to clear the register */ ath5k_hw_reg_read(ah, AR5K_BEACON_CNT); /* Reset profile count registers on 5212*/ if (ah->ah_version == AR5K_AR5212) { Loading Loading @@ -2958,8 +3068,16 @@ int ath5k_hw_reset_key(struct ath5k_hw *ah, u16 entry) for (i = 0; i < AR5K_KEYCACHE_SIZE; i++) ath5k_hw_reg_write(ah, 0, AR5K_KEYTABLE_OFF(entry, i)); /* Set NULL encryption on non-5210*/ if (ah->ah_version != AR5K_AR5210) /* * Set NULL encryption on AR5212+ * * Note: AR5K_KEYTABLE_TYPE -> AR5K_KEYTABLE_OFF(entry, 5) * AR5K_KEYTABLE_TYPE_NULL -> 0x00000007 * * Note2: Windows driver (ndiswrapper) sets this to * 0x00000714 instead of 0x00000007 */ if (ah->ah_version > AR5K_AR5211) ath5k_hw_reg_write(ah, AR5K_KEYTABLE_TYPE_NULL, AR5K_KEYTABLE_TYPE(entry)); Loading
drivers/net/wireless/ath5k/initvals.c +234 −0 Original line number Diff line number Diff line Loading @@ -1282,6 +1282,213 @@ static const struct ath5k_ini_mode rf2413_ini_mode_end[] = { { 0xf3307ff0, 0xf3307ff0, 0xf3307ff0 } }, }; /* Initial mode-specific settings for RF2425 (Written after ar5212_ini) */ /* XXX: No dumps for turbog yet, so turbog is the same with g here with some * minor tweaking based on dumps from other chips */ static const struct ath5k_ini_mode rf2425_ini_mode_end[] = { { AR5K_TXCFG, /* g gTurbo */ { 0x00000015, 0x00000015 } }, { AR5K_USEC_5211, { 0x12e013ab, 0x098813cf } }, { AR5K_PHY_TURBO, { 0x00000000, 0x00000003 } }, { AR5K_PHY(10), { 0x0a020001, 0x0a020001 } }, { AR5K_PHY(13), { 0x00000e0e, 0x00000e0e } }, { AR5K_PHY(14), { 0x0000000b, 0x0000000b } }, { AR5K_PHY(17), { 0x13721422, 0x13721422 } }, { AR5K_PHY(18), { 0x00199a65, 0x00199a65 } }, { AR5K_PHY(20), { 0x0c98b0da, 0x0c98b0da } }, { AR5K_PHY_SIG, { 0x7ec80d2e, 0x7ec80d2e } }, { AR5K_PHY_AGCCOARSE, { 0x3139605e, 0x3139605e } }, { AR5K_PHY(27), { 0x050cb081, 0x050cb081 } }, { AR5K_PHY_RX_DELAY, { 0x00000898, 0x000007d0 } }, { AR5K_PHY_FRAME_CTL_5211, { 0xf7b81000, 0xf7b81000 } }, { AR5K_PHY_CCKTXCTL, { 0x00000000, 0x00000000 } }, { AR5K_PHY(642), { 0xd03e6788, 0xd03e6788 } }, { AR5K_PHY_GAIN_2GHZ, { 0x0052c140, 0x0052c140 } }, { 0xa21c, { 0x1883800a, 0x1883800a } }, { 0xa324, { 0xa7cfa7cf, 0xa7cfa7cf } }, { 0xa328, { 0xa7cfa7cf, 0xa7cfa7cf } }, { 0xa32c, { 0xa7cfa7cf, 0xa7cfa7cf } }, { 0xa330, { 0xa7cfa7cf, 0xa7cfa7cf } }, { 0xa334, { 0xa7cfa7cf, 0xa7cfa7cf } }, { AR5K_DCU_FP, { 0x000003e0, 0x000003e0 } }, { 0x8060, { 0x0000000f, 0x0000000f } }, { 0x809c, { 0x00000000, 0x00000000 } }, { 0x80a0, { 0x00000000, 0x00000000 } }, { 0x8118, { 0x00000000, 0x00000000 } }, { 0x811c, { 0x00000000, 0x00000000 } }, { 0x8120, { 0x00000000, 0x00000000 } }, { 0x8124, { 0x00000000, 0x00000000 } }, { 0x8128, { 0x00000000, 0x00000000 } }, { 0x812c, { 0x00000000, 0x00000000 } }, { 0x8130, { 0x00000000, 0x00000000 } }, { 0x8134, { 0x00000000, 0x00000000 } }, { 0x8138, { 0x00000000, 0x00000000 } }, { 0x813c, { 0x00000000, 0x00000000 } }, { 0x8140, { 0x800003f9, 0x800003f9 } }, { 0x8144, { 0x00000000, 0x00000000 } }, { AR5K_PHY_AGC, { 0x00000000, 0x00000000 } }, { AR5K_PHY(11), { 0x0000a000, 0x0000a000 } }, { AR5K_PHY(15), { 0x00200400, 0x00200400 } }, { AR5K_PHY(19), { 0x1284233c, 0x1284233c } }, { AR5K_PHY_SCR, { 0x0000001f, 0x0000001f } }, { AR5K_PHY_SLMT, { 0x00000080, 0x00000080 } }, { AR5K_PHY_SCAL, { 0x0000000e, 0x0000000e } }, { AR5K_PHY(86), { 0x00081fff, 0x00081fff } }, { AR5K_PHY(96), { 0x00000000, 0x00000000 } }, { AR5K_PHY(97), { 0x02800000, 0x02800000 } }, { AR5K_PHY(104), { 0x00000000, 0x00000000 } }, { AR5K_PHY(119), { 0xfebadbe8, 0xfebadbe8 } }, { AR5K_PHY(120), { 0x00000000, 0x00000000 } }, { AR5K_PHY(121), { 0xaaaaaaaa, 0xaaaaaaaa } }, { AR5K_PHY(122), { 0x3c466478, 0x3c466478 } }, { AR5K_PHY(123), { 0x000000aa, 0x000000aa } }, { AR5K_PHY_SCLOCK, { 0x0000000c, 0x0000000c } }, { AR5K_PHY_SDELAY, { 0x000000ff, 0x000000ff } }, { AR5K_PHY_SPENDING, { 0x00000014, 0x00000014 } }, { 0xa228, { 0x000009b5, 0x000009b5 } }, { AR5K_PHY_TXPOWER_RATE3, { 0x20202020, 0x20202020 } }, { AR5K_PHY_TXPOWER_RATE4, { 0x20202020, 0x20202020 } }, { 0xa23c, { 0x93c889af, 0x93c889af } }, { 0xa24c, { 0x00000001, 0x00000001 } }, { 0xa250, { 0x0000a000, 0x0000a000 } }, { 0xa254, { 0x00000000, 0x00000000 } }, { 0xa258, { 0x0cc75380, 0x0cc75380 } }, { 0xa25c, { 0x0f0f0f01, 0x0f0f0f01 } }, { 0xa260, { 0x5f690f01, 0x5f690f01 } }, { 0xa264, { 0x00418a11, 0x00418a11 } }, { 0xa268, { 0x00000000, 0x00000000 } }, { 0xa26c, { 0x0c30c166, 0x0c30c166 } }, { 0xa270, { 0x00820820, 0x00820820 } }, { 0xa274, { 0x081a3caa, 0x081a3caa } }, { 0xa278, { 0x1ce739ce, 0x1ce739ce } }, { 0xa27c, { 0x051701ce, 0x051701ce } }, { 0xa300, { 0x16010000, 0x16010000 } }, { 0xa304, { 0x2c032402, 0x2c032402 } }, { 0xa308, { 0x48433e42, 0x48433e42 } }, { 0xa30c, { 0x5a0f500b, 0x5a0f500b } }, { 0xa310, { 0x6c4b624a, 0x6c4b624a } }, { 0xa314, { 0x7e8b748a, 0x7e8b748a } }, { 0xa318, { 0x96cf8ccb, 0x96cf8ccb } }, { 0xa31c, { 0xa34f9d0f, 0xa34f9d0f } }, { 0xa320, { 0xa7cfa58f, 0xa7cfa58f } }, { 0xa348, { 0x3fffffff, 0x3fffffff } }, { 0xa34c, { 0x3fffffff, 0x3fffffff } }, { 0xa350, { 0x3fffffff, 0x3fffffff } }, { 0xa354, { 0x0003ffff, 0x0003ffff } }, { 0xa358, { 0x79a8aa1f, 0x79a8aa1f } }, { 0xa35c, { 0x066c420f, 0x066c420f } }, { 0xa360, { 0x0f282207, 0x0f282207 } }, { 0xa364, { 0x17601685, 0x17601685 } }, { 0xa368, { 0x1f801104, 0x1f801104 } }, { 0xa36c, { 0x37a00c03, 0x37a00c03 } }, { 0xa370, { 0x3fc40883, 0x3fc40883 } }, { 0xa374, { 0x57c00803, 0x57c00803 } }, { 0xa378, { 0x5fd80682, 0x5fd80682 } }, { 0xa37c, { 0x7fe00482, 0x7fe00482 } }, { 0xa380, { 0x7f3c7bba, 0x7f3c7bba } }, { 0xa384, { 0xf3307ff0, 0xf3307ff0 } }, }; /* * Initial BaseBand Gain settings for RF5111/5112 (AR5210 comes with * RF5110 only so initial BB Gain settings are included in AR5K_AR5210_INI) Loading Loading @@ -1542,7 +1749,34 @@ int ath5k_hw_write_initvals(struct ath5k_hw *ah, u8 mode, bool change_channel) ARRAY_SIZE(rf5112_ini_bbgain), rf5112_ini_bbgain, change_channel); } else if (ah->ah_radio == AR5K_RF2425) { if (mode < 2) { ATH5K_ERR(ah->ah_sc, "unsupported channel mode: %d\n", mode); return -EINVAL; } /* Map b to g */ if (mode == 2) mode = 0; else mode = mode - 3; /* Override a setting from ar5212_ini */ ath5k_hw_reg_write(ah, 0x018830c6, AR5K_PHY(648)); ath5k_hw_ini_mode_registers(ah, ARRAY_SIZE(rf2425_ini_mode_end), rf2425_ini_mode_end, mode); /* Baseband gain table */ ath5k_hw_ini_registers(ah, ARRAY_SIZE(rf5112_ini_bbgain), rf5112_ini_bbgain, change_channel); } /* For AR5211 */ } else if (ah->ah_version == AR5K_AR5211) { Loading
drivers/net/wireless/ath5k/phy.c +118 −5 Original line number Diff line number Diff line Loading @@ -669,6 +669,7 @@ static const struct ath5k_ini_rf rfregs_5413[] = { /* RF2413/2414 mode-specific init registers */ static const struct ath5k_ini_rf rfregs_2413[] = { { 1, AR5K_RF_BUFFER_CONTROL_4, /* mode b mode g mode gTurbo */ { 0x00000020, 0x00000020, 0x00000020 } }, { 2, AR5K_RF_BUFFER_CONTROL_3, { 0x02001408, 0x02001408, 0x02001408 } }, Loading Loading @@ -736,6 +737,83 @@ static const struct ath5k_ini_rf rfregs_2413[] = { { 0x0000000e, 0x0000000e, 0x0000000e } }, }; /* RF2425 mode-specific init registers */ static const struct ath5k_ini_rf rfregs_2425[] = { { 1, AR5K_RF_BUFFER_CONTROL_4, /* mode g mode gTurbo */ { 0x00000020, 0x00000020 } }, { 2, AR5K_RF_BUFFER_CONTROL_3, { 0x02001408, 0x02001408 } }, { 3, AR5K_RF_BUFFER_CONTROL_6, { 0x00e020c0, 0x00e020c0 } }, { 6, AR5K_RF_BUFFER, { 0x10000000, 0x10000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x002a0000, 0x002a0000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00100000, 0x00100000 } }, { 6, AR5K_RF_BUFFER, { 0x00020000, 0x00020000 } }, { 6, AR5K_RF_BUFFER, { 0x00730000, 0x00730000 } }, { 6, AR5K_RF_BUFFER, { 0x00f80000, 0x00f80000 } }, { 6, AR5K_RF_BUFFER, { 0x00e70000, 0x00e70000 } }, { 6, AR5K_RF_BUFFER, { 0x00140000, 0x00140000 } }, { 6, AR5K_RF_BUFFER, { 0x00910040, 0x00910040 } }, { 6, AR5K_RF_BUFFER, { 0x0007001a, 0x0007001a } }, { 6, AR5K_RF_BUFFER, { 0x00410000, 0x00410000 } }, { 6, AR5K_RF_BUFFER, { 0x00810060, 0x00810060 } }, { 6, AR5K_RF_BUFFER, { 0x00020803, 0x00020803 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00000000, 0x00000000 } }, { 6, AR5K_RF_BUFFER, { 0x00001660, 0x00001660 } }, { 6, AR5K_RF_BUFFER, { 0x00001688, 0x00001688 } }, { 6, AR5K_RF_BUFFER_CONTROL_1, { 0x00000001, 0x00000001 } }, { 7, AR5K_RF_BUFFER, { 0x00006400, 0x00006400 } }, { 7, AR5K_RF_BUFFER, { 0x00000800, 0x00000800 } }, { 7, AR5K_RF_BUFFER_CONTROL_2, { 0x0000000e, 0x0000000e } }, }; /* Initial RF Gain settings for RF5112 */ static const struct ath5k_ini_rfgain rfgain_5112[] = { /* 5Ghz 2Ghz */ Loading Loading @@ -1348,7 +1426,8 @@ static int ath5k_hw_rf5112_rfregs(struct ath5k_hw *ah, } /* * Initialize RF5413/5414 * Initialize RF5413/5414 and future chips * (until we come up with a better solution) */ static int ath5k_hw_rf5413_rfregs(struct ath5k_hw *ah, struct ieee80211_channel *channel, unsigned int mode) Loading @@ -1362,19 +1441,41 @@ static int ath5k_hw_rf5413_rfregs(struct ath5k_hw *ah, rf = ah->ah_rf_banks; if (ah->ah_radio == AR5K_RF5413) { switch (ah->ah_radio) { case AR5K_RF5413: rf_ini = rfregs_5413; rf_size = ARRAY_SIZE(rfregs_5413); } else if (ah->ah_radio == AR5K_RF2413) { break; case AR5K_RF2413: rf_ini = rfregs_2413; rf_size = ARRAY_SIZE(rfregs_2413); if (mode < 2) { ATH5K_ERR(ah->ah_sc, "invalid channel mode: %i\n", mode); return -EINVAL; } mode = mode - 2; } else { break; case AR5K_RF2425: rf_ini = rfregs_2425; rf_size = ARRAY_SIZE(rfregs_2425); if (mode < 2) { ATH5K_ERR(ah->ah_sc, "invalid channel mode: %i\n", mode); return -EINVAL; } /* Map b to g */ if (mode == 2) mode = 0; else mode = mode - 3; break; default: return -EINVAL; } Loading Loading @@ -1439,6 +1540,10 @@ int ath5k_hw_rfregs(struct ath5k_hw *ah, struct ieee80211_channel *channel, ah->ah_rf_banks_size = sizeof(rfregs_2413); func = ath5k_hw_rf5413_rfregs; break; case AR5K_RF2425: ah->ah_rf_banks_size = sizeof(rfregs_2425); func = ath5k_hw_rf5413_rfregs; break; default: return -EINVAL; } Loading Loading @@ -1482,6 +1587,11 @@ int ath5k_hw_rfgain(struct ath5k_hw *ah, unsigned int freq) size = ARRAY_SIZE(rfgain_2413); freq = 0; /* only 2Ghz */ break; case AR5K_RF2425: ath5k_rfg = rfgain_2413; size = ARRAY_SIZE(rfgain_2413); freq = 0; /* only 2Ghz */ break; default: return -EINVAL; } Loading Loading @@ -2181,8 +2291,11 @@ ath5k_hw_txpower(struct ath5k_hw *ah, struct ieee80211_channel *channel, * transmit anything if we call * this funtion, so we skip it * until we fix txpower. * * XXX: Assume same for RF2425 * to be safe. */ if (ah->ah_radio == AR5K_RF2413) if ((ah->ah_radio == AR5K_RF2413) || (ah->ah_radio == AR5K_RF2425)) return 0; /* Reset TX power values */ Loading