From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4536B3074A2; Tue, 11 Nov 2025 01:08:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762823299; cv=none; b=ciQm8ixV82Vkv5wAPjZAzJf2LW2oHGKNhSKVkF+MS40DXrrDIvuI+TcAZMRCpIipcqgC1ZBxRJj9+mwnjzSA6mfwWN6y6qeyi1NjXAmARZ2Ojj5+1CEfnQ5AC90L7QJ21H/Ugyui1dnhVi3VrpLUErMtQ0fp2B4HQV0fgOVNq3Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762823299; c=relaxed/simple; bh=Nma1QI/5U6GF9sKhC5ELUFQDn5HgwO5ZoXnedbIGZBY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pHOBoHu8bzEg3jeDI1IyDsxaCCf3SMujaHjz50dcinjlGdzHDu0otKVAPAUDOIXOTmLpagl9o+or+jpjRJZz6yzdhbbtsT5ySXn0YJmLVWm4og6abVZC/UE74qWWtBYo+1b63K/oNOslE79eiME3yYztkIC7Y/OYDCLsAJ6pcEM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=uuUP1WkS; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="uuUP1WkS" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D86C5C16AAE; Tue, 11 Nov 2025 01:08:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1762823299; bh=Nma1QI/5U6GF9sKhC5ELUFQDn5HgwO5ZoXnedbIGZBY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=uuUP1WkSkVYLvt4491V3JCcwmaalETKrAvJysoMZpx8MSRqah7NPqB2ZlAUYHNogg U4wCCnF1Gb4w2VUUOw1+NxFiEqR26vkURgfRJqELiXYdWBmKKoB5wHhXyIXbj8GG1h Tl3jLfyjq3c4nLKH70qzB+tqq+1aDudd+P4J4JAM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Marcos Del Sol Vives , Bjorn Helgaas , Sasha Levin Subject: [PATCH 6.17 271/849] PCI: Disable MSI on RDC PCI to PCIe bridges Date: Tue, 11 Nov 2025 09:37:21 +0900 Message-ID: <20251111004542.979816858@linuxfoundation.org> X-Mailer: git-send-email 2.51.2 In-Reply-To: <20251111004536.460310036@linuxfoundation.org> References: <20251111004536.460310036@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.17-stable review patch. If anyone has any objections, please let me know. ------------------ From: Marcos Del Sol Vives [ Upstream commit ebc7086b39e5e4f3d3ca82caaea20538c9b62d42 ] RDC PCI to PCIe bridges, present on Vortex86DX3 and Vortex86EX2 SoCs, do not support MSIs. If enabled, interrupts generated by PCIe devices never reach the processor. I have contacted the manufacturer (DM&P) and they confirmed that PCI MSIs need to be disabled for them. Signed-off-by: Marcos Del Sol Vives Signed-off-by: Bjorn Helgaas Link: https://patch.msgid.link/20250705233209.721507-1-marcos@orca.pet Signed-off-by: Sasha Levin --- drivers/pci/quirks.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index d97335a401930..6eb3d20386e95 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -2717,6 +2717,7 @@ static void quirk_disable_msi(struct pci_dev *dev) DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE, quirk_disable_msi); DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, 0xa238, quirk_disable_msi); DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x5a3f, quirk_disable_msi); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_RDC, 0x1031, quirk_disable_msi); /* * The APC bridge device in AMD 780 family northbridges has some random -- 2.51.0