HID: intel-ish-hid: Prevent loading of driver on Mehlow
authorSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Wed, 18 Jul 2018 19:32:00 +0000 (12:32 -0700)
committerJiri Kosina <jkosina@suse.cz>
Thu, 2 Aug 2018 11:25:49 +0000 (13:25 +0200)
On Mehlow Xeon-E workstation, ISH PCI device is enabled but without ISH
firmware. Here the ISH device PCI device id was reused for some non Linux
storage drivers. So this was not done for enabling ISH. But this has a
undesirable side effect for Linux.

Here the ISH driver will be loaded via PCI enumeration and will try to do
reset sequence. But reset sequence will wait till timeout as there is no
real ISH firmware is present to take action. This delay will add to boot
time of Linux (This platform will still continue to boot after this
timeout).

To avoid this boot delay we need to prevent loading of ISH drivers on
this platform. So we need to have hack to avoid treating this device as
ISH on this platform. To identify this workstation, we need some runtime
method. Luckily there are special PCI id on this workstation to
distinguish from the client version of this platform. On client version,
the ISH is supported using same PCI device id. So this change look for
the presence of PCI device IDs A309 and A30A and exit.

Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/intel-ish-hid/ipc/pci-ish.c

index a2c53ea3b5edfce82eeb2ef4b4e2392f5c7fb98f..4a55eab39b88bd8902fee7edf69898220b1a0cb7 100644 (file)
@@ -95,6 +95,13 @@ static int ish_init(struct ishtp_device *dev)
        return 0;
 }
 
+static const struct pci_device_id ish_invalid_pci_ids[] = {
+       /* Mehlow platform special pci ids */
+       {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xA309)},
+       {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xA30A)},
+       {}
+};
+
 /**
  * ish_probe() - PCI driver probe callback
  * @pdev:      pci device
@@ -110,6 +117,10 @@ static int ish_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
        struct ish_hw *hw;
        int     ret;
 
+       /* Check for invalid platforms for ISH support */
+       if (pci_dev_present(ish_invalid_pci_ids))
+               return -ENODEV;
+
        /* enable pci dev */
        ret = pci_enable_device(pdev);
        if (ret) {