OSDN Git Service

mt76x2: set default values in TX_ALC_CFG_{1, 2} for tempetaure compensation
authorLorenzo Bianconi <lorenzo.bianconi@redhat.com>
Wed, 4 Apr 2018 08:38:32 +0000 (10:38 +0200)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 24 Apr 2018 17:32:40 +0000 (20:32 +0300)
Initialize default values for temperature compensation in TX_ALC_CFG_{1,2}
if tssi has been enabled

Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/mediatek/mt76/mt76x2_phy.c

index 79c698a..038d1fe 100644 (file)
@@ -677,6 +677,14 @@ int mt76x2_phy_set_channel(struct mt76x2_dev *dev,
        memcpy(dev->cal.agc_gain_cur, dev->cal.agc_gain_init,
               sizeof(dev->cal.agc_gain_cur));
 
+       /* init default values for temp compensation */
+       if (mt76x2_tssi_enabled(dev)) {
+               mt76_rmw_field(dev, MT_TX_ALC_CFG_1, MT_TX_ALC_CFG_1_TEMP_COMP,
+                              0x38);
+               mt76_rmw_field(dev, MT_TX_ALC_CFG_2, MT_TX_ALC_CFG_2_TEMP_COMP,
+                              0x38);
+       }
+
        ieee80211_queue_delayed_work(mt76_hw(dev), &dev->cal_work,
                                     MT_CALIBRATE_INTERVAL);