diff options
Diffstat (limited to 'drivers/pci/quirks.c')
| -rw-r--r-- | drivers/pci/quirks.c | 31 | 
1 files changed, 25 insertions, 6 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 51553179e96..7a451ff56ec 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -3081,17 +3081,36 @@ static int reset_intel_generic_dev(struct pci_dev *dev, int probe)  static int reset_intel_82599_sfp_virtfn(struct pci_dev *dev, int probe)  { -	int pos; +	int i; +	u16 status; -	pos = pci_find_capability(dev, PCI_CAP_ID_EXP); -	if (!pos) -		return -ENOTTY; +	/* +	 * http://www.intel.com/content/dam/doc/datasheet/82599-10-gbe-controller-datasheet.pdf +	 * +	 * The 82599 supports FLR on VFs, but FLR support is reported only +	 * in the PF DEVCAP (sec 9.3.10.4), not in the VF DEVCAP (sec 9.5). +	 * Therefore, we can't use pcie_flr(), which checks the VF DEVCAP. +	 */  	if (probe)  		return 0; -	pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, -				PCI_EXP_DEVCTL_BCR_FLR); +	/* Wait for Transaction Pending bit clean */ +	for (i = 0; i < 4; i++) { +		if (i) +			msleep((1 << (i - 1)) * 100); + +		pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &status); +		if (!(status & PCI_EXP_DEVSTA_TRPND)) +			goto clear; +	} + +	dev_err(&dev->dev, "transaction is not cleared; " +			"proceeding with reset anyway\n"); + +clear: +	pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_BCR_FLR); +  	msleep(100);  	return 0;  |