PCI: check for pci bar restore completion and retry
authorKay, Allen M <[email protected]>
Thu, 26 Jan 2012 18:25:53 +0000 (10:25 -0800)
committerJesse Barnes <[email protected]>
Tue, 14 Feb 2012 16:45:02 +0000 (08:45 -0800)
On some OEM systems, pci_restore_state() is called while FLR has not yet
completed.  As a result, PCI BAR register restore is not successful.  This fix
reads back the restored value and compares it with saved value and re-tries 10
times before giving up.

Signed-off-by: Jean Guyader <[email protected]>
Signed-off-by: Eric Chanudet <[email protected]>
Signed-off-by: Allen Kay <[email protected]>
Signed-off-by: Jesse Barnes <[email protected]>
drivers/pci/pci.c

index 053670e09e2b93bafa15e3662c8672fdebd8ef34..9c89447e7b212cbe50613913adced9c74537c3a5 100644 (file)
@@ -959,6 +959,7 @@ void pci_restore_state(struct pci_dev *dev)
 {
        int i;
        u32 val;
+       int tries;
 
        if (!dev->state_saved)
                return;
@@ -973,12 +974,16 @@ void pci_restore_state(struct pci_dev *dev)
         */
        for (i = 15; i >= 0; i--) {
                pci_read_config_dword(dev, i * 4, &val);
-               if (val != dev->saved_config_space[i]) {
+               tries = 10;             
+               while (tries && val != dev->saved_config_space[i]) {
                        dev_dbg(&dev->dev, "restoring config "
                                "space at offset %#x (was %#x, writing %#x)\n",
                                i, val, (int)dev->saved_config_space[i]);
                        pci_write_config_dword(dev,i * 4,
                                dev->saved_config_space[i]);
+                       pci_read_config_dword(dev, i * 4, &val);
+                       mdelay(10);
+                       tries--;
                }
        }
        pci_restore_pcix_state(dev);