On Wed, Jun 07, 2023 at 06:24:34PM +0200, Damien Dejean wrote: > You'll find the results of the two commands in attachment. I ran them > without the pci=nomsi option set just in case. Thanks! The kernel does check the ACPI table [1] to see whether MSI is supported, and I don't see the "system doesn't support MSI" message [2] in your dmesg log, so I don't think that's the problem. It is possible that the chipset doesn't support MSI but the BIOS neglected to set the ACPI_FADT_NO_MSI bit in ACPI, although Windows looks at the same table and should be similarly broken in that case. I poked around on the web for similar reports of needing "pci=nomsi" for Asus X73SL or Asus F70SL, but I really didn't find anything. The linux-hardware database [3] claims this chipset is used in quite a few systems, so I would think we'd see some reports of problems if the chipset were broken. Unfortunately that database doesn't have enough information to see whether systems use MSI (no "lspci -vv" output) and I don't see a way to contact the reporters to find out. We do have an existing quirk [4] that disables MSI for the [1039:0761] chipset, and maybe we could add an entry for the [1039:0671] that you have. The fact that I couldn't find any reports makes me worry that doing that would make it work for you, but unnecessarily disable MSI for others. It's also conceivable that MSI used to work in older kernels, but we broke something by v5.10. Do you know whether any old kernels ever worked without "pci=nomsi"? What exactly is the symptom you see without "pci=nomsi"? I know we turned on more AER reporting recently, which exposed issues on some machines. I think using "pci=nomsi" basically disables the AER reporting, too. If the problem you see is related to AER, you can turn that off with "pci=noaer", and you may not need "pci=nomsi". Obviously my goal is that you should not need either one! Bjorn [1] https://uefi.org/specs/ACPI/6.5/05_ACPI_Software_Programming_Model.html?highlight=fadt#ia-pc-boot-architecture-flags [2] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/pci/pci-acpi.c?id=v6.3#n1475 [3] https://linux-hardware.org/?view=search&vendorid=1039&deviceid=0671#list [4] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/pci/quirks.c?id=v6.3#n2557