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 F0259315D36; Wed, 3 Dec 2025 16:24:28 +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=1764779069; cv=none; b=i/rKRFA+/gdOpWItxAh3mCV4Dk+1AGU+4dSeqYoJ5TdW364AbfRRJ2fGv/+GeAWApkf2ke4BN/qO6xTwHE3NSouqVgkPN2LCaookwWl+S4jm9ji9h6v/RndB9ddQOq4FkKiITKJ/5RhwAue6pKT4BvpUmu9bJf3o8PfLCwrCeZQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764779069; c=relaxed/simple; bh=vU239JGvbXPP3L1oM3sST/fm9bh1KHdcCUBRVICXfB4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=BCHO1leDIRhJvdIPyi9fhL38w54jVhdTvSBzxhBTd5mDhnp7hSIY7BBXGNs8BZR7xevN8/IbY+LLEQ/07UIl9J/nZRIVrGERzecACSjAYjxdUsB42w8142t/Bj4l9bC9hZf8LhR8Sk4FPfMRM7qbtcoafDDw1dVHnMyJREVvBvY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ZTr1Zrg/; 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="ZTr1Zrg/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 02800C4CEF5; Wed, 3 Dec 2025 16:24:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1764779068; bh=vU239JGvbXPP3L1oM3sST/fm9bh1KHdcCUBRVICXfB4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZTr1Zrg/zh4jo5WQ2BbTNsReuto3b6UBUEfTkMkYqRuxKsPWz55v8FCe9tkIktO0y ukMp7apJ5L8zgie24iyCi+Ukz6DBakLSLqWooFqqn+ttzh/EFL1Qi6syL2O+V/P42q qs2/J3C9UqOGNEUo1nRsCVr63274TD5x8uo6/dpc= 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.1 138/568] PCI: Disable MSI on RDC PCI to PCIe bridges Date: Wed, 3 Dec 2025 16:22:20 +0100 Message-ID: <20251203152445.780264492@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251203152440.645416925@linuxfoundation.org> References: <20251203152440.645416925@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.1-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 f4932d2f9f973..0772ce28cba41 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -2604,6 +2604,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