Skip to content

Commit

Permalink
mt76: mt76x2e: disable pcie_aspm by default
Browse files Browse the repository at this point in the history
On same device (e.g. U7612E-H1) PCIE_ASPM causes continuous mcu hangs and
instability. Since mt76x2 series does not manage PCIE PS states, first we
try to disable ASPM using pci_disable_link_state. If it fails, we will
disable PCIE PS configuring PCI registers.
This patch has been successfully tested on U7612E-H1 mini-pice card

Tested-by: Oleksandr Natalenko <oleksandr@natalenko.name>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
  • Loading branch information
LorenzoBianconi authored and nbd168 committed Oct 28, 2019
1 parent 58e1e96 commit c14d656
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Expand Up @@ -13,6 +13,8 @@ mt76-y := \
mmio.o util.o trace.o dma.o mac80211.o debugfs.o eeprom.o \
tx.o agg-rx.o mcu.o airtime.o

mt76-$(CONFIG_PCI) += pci.o

mt76-usb-y := usb.o usb_trace.o

mt76x02-lib-y := mt76x02_util.o mt76x02_mac.o mt76x02_mcu.o \
Expand Down
1 change: 1 addition & 0 deletions mt76.h
Expand Up @@ -592,6 +592,7 @@ bool __mt76_poll_msec(struct mt76_dev *dev, u32 offset, u32 mask, u32 val,
#define mt76_poll_msec(dev, ...) __mt76_poll_msec(&((dev)->mt76), __VA_ARGS__)

void mt76_mmio_init(struct mt76_dev *dev, void __iomem *regs);
void mt76_pci_disable_aspm(struct pci_dev *pdev);

static inline u16 mt76_chip(struct mt76_dev *dev)
{
Expand Down
2 changes: 2 additions & 0 deletions mt76x2/pci.c
Expand Up @@ -83,6 +83,8 @@ mt76pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
/* RG_SSUSB_CDR_BR_PE1D = 0x3 */
mt76_rmw_field(dev, 0x15c58, 0x3 << 6, 0x3);

mt76_pci_disable_aspm(pdev);

return 0;

error:
Expand Down
46 changes: 46 additions & 0 deletions pci.c
@@ -0,0 +1,46 @@
// SPDX-License-Identifier: ISC
/*
* Copyright (C) 2019 Lorenzo Bianconi <lorenzo@kernel.org>
*/

#include <linux/pci.h>

void mt76_pci_disable_aspm(struct pci_dev *pdev)
{
struct pci_dev *parent = pdev->bus->self;
u16 aspm_conf, parent_aspm_conf = 0;

pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &aspm_conf);
aspm_conf &= PCI_EXP_LNKCTL_ASPMC;
if (parent) {
pcie_capability_read_word(parent, PCI_EXP_LNKCTL,
&parent_aspm_conf);
parent_aspm_conf &= PCI_EXP_LNKCTL_ASPMC;
}

if (!aspm_conf && (!parent || !parent_aspm_conf)) {
/* aspm already disabled */
return;
}

dev_info(&pdev->dev, "disabling ASPM %s %s\n",
(aspm_conf & PCI_EXP_LNKCTL_ASPM_L0S) ? "L0s" : "",
(aspm_conf & PCI_EXP_LNKCTL_ASPM_L1) ? "L1" : "");

if (IS_ENABLED(CONFIG_PCIEASPM)) {
int err;

err = pci_disable_link_state(pdev, aspm_conf);

This comment has been minimized.

Copy link
@dengqf6

dengqf6 Nov 1, 2019

pci.c:33:7: error: void value not ignored as it ought to be
err = pci_disable_link_state(pdev, aspm_conf);

This comment has been minimized.

Copy link
@Borromini

Borromini Dec 28, 2019

I just tried building this on OpenWrt 19.07, and I'm running into the same error as above.

target-mipsel_24kc_musl/linux-ramips_mt7621/mt76-2019-12-27-4cb1195a/pci.c:34:7: error: void value not ignored as it ought to be
   err = pci_disable_link_state(pdev, aspm_conf);

Had to add #include <linux/pci-aspm.h> as well but I suppose that's to do with using kernel 4.14.

Edit: @dengqf6 Felix pointed me to OpenWrt master commit d64daf7026ce47788f12130462a3107bdab8718f which fixes the void value error for me.

if (!err)
return;
}

/* both device and parent should have the same ASPM setting.
* disable ASPM in downstream component first and then upstream.
*/
pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL, aspm_conf);
if (parent)
pcie_capability_clear_word(parent, PCI_EXP_LNKCTL,
aspm_conf);
}
EXPORT_SYMBOL_GPL(mt76_pci_disable_aspm);

0 comments on commit c14d656

Please sign in to comment.