From patchwork Thu Apr 13 16:35:18 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vikas Katariya X-Patchwork-Id: 22611 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 128FFC77B71 for ; Thu, 13 Apr 2023 16:35:34 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.18678.1681403728737922886 for ; Thu, 13 Apr 2023 09:35:28 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: vikas.katariya@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 5ACBF1424; Thu, 13 Apr 2023 09:36:12 -0700 (PDT) Received: from e125904.cambridge.arm.com (e125904.cambridge.arm.com [10.1.194.51]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 387DD3F6C4; Thu, 13 Apr 2023 09:35:27 -0700 (PDT) From: vikas.katariya@arm.com To: meta-arm@lists.yoctoproject.org, Ross.Burton@arm.com Cc: nd@arm.com, Vikas Katariya Subject: [PATCH kirkstone 1/1] arm-bsp/linux-yocto: Fix N1SDP PCI quirk patch Date: Thu, 13 Apr 2023 17:35:18 +0100 Message-Id: <20230413163518.5012-2-vikas.katariya@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20230413163518.5012-1-vikas.katariya@arm.com> References: <20230413163518.5012-1-vikas.katariya@arm.com> List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 13 Apr 2023 16:35:34 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/4575 From: Vikas Katariya The poky commit 74f086529911bdaf07a8414d50de411e20739541 updates the kernel to v5.15.103 which breaks the PCI quirk patch for the N1SDP. Signed-off-by: Vikas Katariya --- ...002-n1sdp-pci_quirk-add-acs-override-for-PCI-devices.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arm-bsp/recipes-kernel/linux/linux-yocto-5.15/n1sdp/0002-n1sdp-pci_quirk-add-acs-override-for-PCI-devices.patch b/meta-arm-bsp/recipes-kernel/linux/linux-yocto-5.15/n1sdp/0002-n1sdp-pci_quirk-add-acs-override-for-PCI-devices.patch index b4e2a8c5..c8d242b4 100644 --- a/meta-arm-bsp/recipes-kernel/linux/linux-yocto-5.15/n1sdp/0002-n1sdp-pci_quirk-add-acs-override-for-PCI-devices.patch +++ b/meta-arm-bsp/recipes-kernel/linux/linux-yocto-5.15/n1sdp/0002-n1sdp-pci_quirk-add-acs-override-for-PCI-devices.patch @@ -148,9 +148,9 @@ index a531064233f9..ebe192134a97 100644 * Some NVIDIA GPU devices do not work with bus reset, SBR needs to be * prevented for those affected devices. @@ -4968,6 +5069,7 @@ static const struct pci_dev_acs_enabled { - { PCI_VENDOR_ID_NXP, 0x8d9b, pci_quirk_nxp_rp_acs }, - /* Zhaoxin Root/Downstream Ports */ { PCI_VENDOR_ID_ZHAOXIN, PCI_ANY_ID, pci_quirk_zhaoxin_pcie_ports_acs }, + /* Wangxun nics */ + { PCI_VENDOR_ID_WANGXUN, PCI_ANY_ID, pci_quirk_wangxun_nic_acs }, + { PCI_ANY_ID, PCI_ANY_ID, pcie_acs_overrides }, { 0 } };