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 4EC5C31A56C for ; Fri, 15 May 2026 08:41:50 +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=1778834510; cv=none; b=lKmUbm1k5do0rwrXMN42hV0iRilxuX70gGvqfEx7AgCsASG5Lg+tQpJivnYMwEn1QEqpDRMTxDszz1SAi4zCqKzDXOIEJfE+D5uPrVfloCA90F2aqSgbudgra7M6ARtcrbMudFZqqG2TFMsdVR0gSMht75Nrwp1UhhSuXMOdGPg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778834510; c=relaxed/simple; bh=01N0mIdS+vQBvyl4/FgsPmMa0ktbX5kVeP5lgnZDbnY=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=t4wlN6Udl4/ggBNncjPGMUd9odqIN32tF1YQnLrvlX/JK10mTKwGb7KggW2stktgoV2Ee4XaIcx875l53fZMBAATzZSJsBpbReltSQBFfeUmry2dU9hLGfzYlJzmGAcxSaG/scQBoW9sqFzb88dakOr3nZfOfdajFQj61Jy4zwI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=r3R2VTxL; 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="r3R2VTxL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C761CC2BCB0; Fri, 15 May 2026 08:41:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778834510; bh=01N0mIdS+vQBvyl4/FgsPmMa0ktbX5kVeP5lgnZDbnY=; h=Subject:To:Cc:From:Date:From; b=r3R2VTxLCOWdX66nX+EKSk4dhMR952UNfWBVLywb8J1LTdV4OWWpCifNvCEHe7vOv DTlFeD/0moX/CeKRUga/C9ZW+GKbcRXYw6W5p/y5GyBCsvM7ntTikD8VvjHFqZgxPU H4WYwMc8RkzpnOsLcTYL7s9nCH/rbKINEguAEc2Y= Subject: FAILED: patch "[PATCH] arm64: dts: qcom: kodiak: Fix PCIe1 PHY ref clock voting" failed to apply to 6.6-stable tree To: krishna.chundru@oss.qualcomm.com,andersson@kernel.org,dmitry.baryshkov@oss.qualcomm.com,konrad.dybcio@oss.qualcomm.com Cc: From: Date: Fri, 15 May 2026 10:41:46 +0200 Message-ID: <2026051546-zipfile-maternity-3347@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 6.6-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.6.y git checkout FETCH_HEAD git cherry-pick -x 30e8b6d42e8988eaaf0c2efd8c3797cb3884faea # git commit -s git send-email --to '' --in-reply-to '2026051546-zipfile-maternity-3347@gregkh' --subject-prefix 'PATCH 6.6.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From 30e8b6d42e8988eaaf0c2efd8c3797cb3884faea Mon Sep 17 00:00:00 2001 From: Krishna Chaitanya Chundru Date: Fri, 23 Jan 2026 17:42:27 +0530 Subject: [PATCH] arm64: dts: qcom: kodiak: Fix PCIe1 PHY ref clock voting GCC_PCIE_CLKREF_EN controls a repeater that provides the reference clock only to the PCIe0 PHY. PCIe1 PHY receives its refclk directly from the CXO source. If the PCIe1 driver in HLOS votes for or against GCC_PCIE_CLKREF_EN, it will inadvertently modify the refclk to PCIe0 as well. Since PCIe0 is managed by WPSS while PCIe1 is managed in HLOS, there is no mechanism to coordinate these votes. As a result, HLOS may disable this repeater during suspend and cut off the PCIe0 PHY refclk while PCIe0 is still active. Replace the unused GCC_PCIE_CLKREF_EN clock entry with RPMH_CXO_CLK to reflect the actual hardware wiring and prevent unintended changes to PCIe0 clocking. Fixes: 92e0ee9f83b3 ("arm64: dts: qcom: sc7280: Add PCIe and PHY related nodes") Cc: stable@vger.kernel.org Signed-off-by: Krishna Chaitanya Chundru Reviewed-by: Dmitry Baryshkov Reviewed-by: Konrad Dybcio Link: https://lore.kernel.org/r/20260123-fix_pcie1_phy_clk-v1-1-38f82ea01792@oss.qualcomm.com Signed-off-by: Bjorn Andersson diff --git a/arch/arm64/boot/dts/qcom/kodiak.dtsi b/arch/arm64/boot/dts/qcom/kodiak.dtsi index 6079e67ea829..ba0f7e5c89a0 100644 --- a/arch/arm64/boot/dts/qcom/kodiak.dtsi +++ b/arch/arm64/boot/dts/qcom/kodiak.dtsi @@ -2445,7 +2445,7 @@ pcie1_phy: phy@1c0e000 { reg = <0 0x01c0e000 0 0x1000>; clocks = <&gcc GCC_PCIE_1_AUX_CLK>, <&gcc GCC_PCIE_1_CFG_AHB_CLK>, - <&gcc GCC_PCIE_CLKREF_EN>, + <&rpmhcc RPMH_CXO_CLK>, <&gcc GCC_PCIE1_PHY_RCHNG_CLK>, <&gcc GCC_PCIE_1_PIPE_CLK>; clock-names = "aux",