On Fri, Jul 3, 2020 at 10:43 PM Daniel Gutson <daniel@xxxxxxxxxxxxx> wrote: > After analyzing the intel-spi driver, I came up to these observations that led me conclude that it is not what I need to use: > > * Some SPI Controllers have 0xFFFF as their VID DID bytes in the PCI config space. This causes that the PCI devices enumeration doesn't include them, > and thus a PCI device driver won't be probed even despite listing the DID that the datasheet specifies. I effectively confirmed this by doing a PCI device driver and > trying the intel-spi in systems with this characteristic. In short, the intel-spi driver doesn't work with these systems. Maybe this part can be handled with a fixup in drivers/pci that changes the effective PCI device ID on the systems that do need to access the device. Adding the PCI mailing list for other ideas. Basically it sounds like the BIOS has intentionally configured the SPI-NOR device to be hidden from PCI probing to prevent operating systems from accessing it, but you want to ignore that and access it anyway, correct? Arnd