Intel AHCI controllers that also hide NVMe devices in their bar
can't use MSI interrupts, so disable them.
Reported-by: John Loy <john.robert.loy@gmail.com>
Tested-by: John Loy <john.robert.loy@gmail.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Fixes: d684a90d38e2 ("ahci: per-port msix support")
Cc: stable@vger.kernel.org # v4.5+
Signed-off-by: Tejun Heo <tj@kernel.org>
                return;
 
        dev_warn(&pdev->dev, "Found %d remapped NVMe devices.\n", count);
-       dev_warn(&pdev->dev, "Switch your BIOS from RAID to AHCI mode to use them.\n");
+       dev_warn(&pdev->dev,
+                "Switch your BIOS from RAID to AHCI mode to use them.\n");
+
+       /*
+        * Don't rely on the msi-x capability in the remap case,
+        * share the legacy interrupt across ahci and remapped devices.
+        */
+       hpriv->flags |= AHCI_HFLAG_NO_MSI;
 }
 
 static int ahci_get_irq_vector(struct ata_host *host, int port)