mt76x2: disable WLAN core before probe
authorFelix Fietkau <nbd@nbd.name>
Wed, 26 Sep 2018 19:37:38 +0000 (21:37 +0200)
committerFelix Fietkau <nbd@nbd.name>
Mon, 1 Oct 2018 10:34:16 +0000 (12:34 +0200)
If the WLAN core is still active during initialization, it might cause
the MCU or DMA to hang. This can happen during soft reboot, so disable
the core + clock early to avoid this issue.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt76x2_init_common.c
drivers/net/wireless/mediatek/mt76/mt76x2_pci.c

index d13da7ad86ee1c9a2428eb27ee363cb5c81c5e71..abf535da0c78ead1949f83025c634c9fef19cb7d 100644 (file)
@@ -39,6 +39,9 @@ void mt76x2_reset_wlan(struct mt76x2_dev *dev, bool enable)
 {
        u32 val;
 
+       if (!enable)
+               goto out;
+
        val = mt76_rr(dev, MT_WLAN_FUN_CTRL);
 
        val &= ~MT_WLAN_FUN_CTRL_FRC_WL_ANT_SEL;
@@ -54,6 +57,7 @@ void mt76x2_reset_wlan(struct mt76x2_dev *dev, bool enable)
        mt76_wr(dev, MT_WLAN_FUN_CTRL, val);
        udelay(20);
 
+out:
        mt76x2_set_wlan_state(dev, enable);
 }
 EXPORT_SYMBOL_GPL(mt76x2_reset_wlan);
index e66f047ea4481b2b4a13b670528360625e010a97..26cfda24ce0854c15ce3c535004449e22c2893cd 100644 (file)
@@ -53,6 +53,7 @@ mt76pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
                return -ENOMEM;
 
        mt76_mmio_init(&dev->mt76, pcim_iomap_table(pdev)[0]);
+       mt76x2_reset_wlan(dev, false);
 
        dev->mt76.rev = mt76_rr(dev, MT_ASIC_VERSION);
        dev_info(dev->mt76.dev, "ASIC revision: %08x\n", dev->mt76.rev);