]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mt76x0: do not overwrite other MT_BBP(AGC, 8) fields
authorStanislaw Gruszka <sgruszka@redhat.com>
Wed, 31 Oct 2018 07:32:58 +0000 (08:32 +0100)
committerFelix Fietkau <nbd@nbd.name>
Fri, 30 Nov 2018 11:21:42 +0000 (12:21 +0100)
MT_BBP(AGC, 8) register has values depend on band in
mt76x0_bbp_switch_tab, so we should not overwrite other fields
than MT_BBP_AGC_GAIN when setting gain.

This can fix performance issues when connecting to 2.4GHz AP.

Fixes: 4636a2544c3b ("mt76x0: phy: align channel gain logic to mt76x2 one")
Acked-by: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt76x0/phy.c

index c734987a344c4d7ca8e31552b5a4aec8ad8583b1..ec9b2a2a403f63227e06c5dfff9cf999b7a76673 100644 (file)
@@ -715,10 +715,8 @@ static void mt76x0_phy_temp_sensor(struct mt76x02_dev *dev)
 static void mt76x0_phy_set_gain_val(struct mt76x02_dev *dev)
 {
        u8 gain = dev->cal.agc_gain_cur[0] - dev->cal.agc_gain_adjust;
-       u32 val = 0x122c << 16 | 0xf2;
 
-       mt76_wr(dev, MT_BBP(AGC, 8),
-               val | FIELD_PREP(MT_BBP_AGC_GAIN, gain));
+       mt76_rmw_field(dev, MT_BBP(AGC, 8), MT_BBP_AGC_GAIN, gain);
 
        if ((dev->mt76.chandef.chan->flags & IEEE80211_CHAN_RADAR) &&
            !is_mt7630(dev))