]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
PCI/DPC: Fix control register setting
authorKeith Busch <keith.busch@intel.com>
Fri, 28 Apr 2017 16:02:49 +0000 (12:02 -0400)
committerBjorn Helgaas <bhelgaas@google.com>
Mon, 22 May 2017 23:42:44 +0000 (18:42 -0500)
This driver was OR'ing desired bits from the existing control setting.
That could create an invalid DPC Trigger Enabled configuration if the
platform previously set this to "ERR_FATAL", 01b.  The driver currently
wants to set this to ERR_NONFATAL/ERR_FATAL, 10b, and the logical OR of
this gets 11b, which is reserved.  Fix that by masking off the fields it is
setting.

Signed-off-by: Keith Busch <keith.busch@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/pcie/pcie-dpc.c

index 0bf08435723757289abbb26ff61130c0de888b03..c39f32e42b4da0bab16102ea621f8db5c52bb689 100644 (file)
@@ -144,7 +144,7 @@ static int dpc_probe(struct pcie_device *dev)
 
        dpc->rp = (cap & PCI_EXP_DPC_CAP_RP_EXT);
 
-       ctl |= PCI_EXP_DPC_CTL_EN_NONFATAL | PCI_EXP_DPC_CTL_INT_EN;
+       ctl = (ctl & 0xfff4) | PCI_EXP_DPC_CTL_EN_NONFATAL | PCI_EXP_DPC_CTL_INT_EN;
        pci_write_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, ctl);
 
        dev_info(&dev->device, "DPC error containment capabilities: Int Msg #%d, RPExt%c PoisonedTLP%c SwTrigger%c RP PIO Log %d, DL_ActiveErr%c\n",