cxl: Remove racy attempt to force EEH invocation in reset
authorDaniel Axtens <dja@axtens.net>
Fri, 21 Aug 2015 07:25:15 +0000 (17:25 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 27 Aug 2015 03:51:36 +0000 (13:51 +1000)
cxl_reset currently PERSTs the slot, and then repeatedly tries to
read MMIO space in order to kick off EEH.

There are 2 problems with this: it's unnecessary, and it's racy.

It's unnecessary because the PERST will bring down the PHB link.
That will be picked up by the CAPP, which will send out an HMI.
Skiboot, noticing an HMI from the CAPP, will send an OPAL
notification to the kernel, which will trigger EEH recovery.

It's also racy: the EEH recovery triggered by the CAPP will
eventually cause the MMIO space to have its mapping invalidated
and the pointer NULLed out. This races with our attempt to read
the MMIO space. This is causing OOPSes in testing.

Simply drop all the attempts to force EEH detection, and trust
that Skiboot will send the notification and that we'll act on it.
The Skiboot code to send the EEH notification has been in Skiboot
for as long as CAPP recovery has been supported, so we don't need
to worry about breaking obscure setups with ancient firmware.

Cc: Ryan Grimm <grimm@linux.vnet.ibm.com>
Cc: stable@vger.kernel.org
Fixes: 62fa19d4b4fd ("cxl: Add ability to reset the card")
Signed-off-by: Daniel Axtens <dja@axtens.net>
Acked-by: Ian Munsie <imunsie@au1.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
drivers/misc/cxl/pci.c

index 273374c507f7ab7e9483fa5ad67a904651f4d020..6ca7c3d0ef9b49570120125a752d7867f83f4f98 100644 (file)
@@ -876,8 +876,6 @@ int cxl_reset(struct cxl *adapter)
 {
        struct pci_dev *dev = to_pci_dev(adapter->dev.parent);
        int rc;
-       int i;
-       u32 val;
 
        if (adapter->perst_same_image) {
                dev_warn(&dev->dev,
@@ -895,20 +893,6 @@ int cxl_reset(struct cxl *adapter)
                return rc;
        }
 
-       /* the PERST done above fences the PHB.  So, reset depends on EEH
-        * to unbind the driver, tell Sapphire to reinit the PHB, and rebind
-        * the driver.  Do an mmio read explictly to ensure EEH notices the
-        * fenced PHB.  Retry for a few seconds before giving up. */
-       i = 0;
-       while (((val = mmio_read32be(adapter->p1_mmio)) != 0xffffffff) &&
-               (i < 5)) {
-               msleep(500);
-               i++;
-       }
-
-       if (val != 0xffffffff)
-               dev_err(&dev->dev, "cxl: PERST failed to trigger EEH\n");
-
        return rc;
 }