Linux clock framework development
 help / color / mirror / Atom feed
From: Marek Szyprowski <m.szyprowski@samsung.com>
To: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>,
	Val Packett <val@packett.cool>,
	Bjorn Andersson <andersson@kernel.org>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>,
	Jonathan Marek <jonathan@marek.ca>
Cc: Konrad Dybcio <konradybcio@kernel.org>,
	Johan Hovold <johan+linaro@kernel.org>,
	Manivannan Sadhasivam <mani@kernel.org>,
	Dmitry Baryshkov <lumag@kernel.org>,
	Maximilian Luz <luzmaximilian@gmail.com>,
	linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 08/11] clk: qcom: dispcc-sm8250: Enable parents for pixel clocks
Date: Thu, 18 Jun 2026 13:37:13 +0200	[thread overview]
Message-ID: <d4c1e329-78de-4d02-99e5-3e4887bdecf8@samsung.com> (raw)
In-Reply-To: <6e0d6119-c7ef-40d8-bf0f-6a5b6f6b00cf@samsung.com>

On 16.06.2026 16:31, Marek Szyprowski wrote:
> On 16.06.2026 13:33, Konrad Dybcio wrote:
>> On 3/20/26 12:32 PM, Marek Szyprowski wrote:
>>> On 12.03.2026 12:12, Val Packett wrote:
>>>> Add CLK_OPS_PARENT_ENABLE to MDSS pixel clock sources to ensure parent
>>>> clocks are enabled during clock operations, preventing potential
>>>> stability issues during display configuration.
>>>>
>>>> Fixes: 80a18f4a8567 ("clk: qcom: Add display clock controller driver for SM8150 and SM8250")
>>>> Signed-off-by: Val Packett <val@packett.cool>
>>> This patch landed in yesterday's linux-next as commit. In my tests I 
>>> found that it triggers the following warning on RB5 board:
>> Hi, I was clearing out my inbox.. Is this still happening on the latest
>> next?
> Yes, still happens here with next-20260615.


I've just played a bit with that code and RB5 board and found that this issue
happens, because enabling the DSI PLL clock fails for unknown reason.


Here is what happens just before the warnings (I've missed that in the initial
report):

DSI PLL(0) lock failed, status=0x00000000
PLL(0) lock failed

It looks that the generic clock code doesn't take care to properly balance
enable/disable in __clk_set_parent_after() when enabling one of the parent
clock fails in __clk_set_parent_before().


With the following hack the issue is gone:

diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c
index 8cb0db3a9880..c59326d4877e 100644
--- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c
+++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c
@@ -510,7 +510,7 @@ static int dsi_pll_7nm_vco_prepare(struct clk_hw *hw)
        rc = dsi_pll_7nm_lock_status(pll_7nm);
        if (rc) {
                pr_err("PLL(%d) lock failed\n", pll_7nm->phy->id);
-               goto error;
+               rc = 0;
        }

        pll_7nm->phy->pll_on = true;

Best regards
-- 
Marek Szyprowski, PhD
Samsung R&D Institute Poland


  reply	other threads:[~2026-06-18 11:37 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-12 11:12 [PATCH v2 00/11] clk: qcom: sc8180x: PM-related fixes (and refactoring) Val Packett
2026-03-12 11:12 ` [PATCH v2 01/11] dt-bindings: clock: qcom,gcc-sc8180x: Add missing GDSCs Val Packett
2026-03-13 10:09   ` Krzysztof Kozlowski
2026-03-12 11:12 ` [PATCH v2 02/11] clk: qcom: gcc-sc8180x: " Val Packett
2026-03-12 11:12 ` [PATCH v2 03/11] clk: qcom: gcc-sc8180x: Use retention for USB power domains Val Packett
2026-03-12 11:12 ` [PATCH v2 04/11] clk: qcom: gcc-sc8180x: Use retention for PCIe " Val Packett
2026-03-17  3:13   ` Manivannan Sadhasivam
2026-03-18  9:31   ` Konrad Dybcio
2026-03-12 11:12 ` [PATCH v2 05/11] clk: qcom: gcc-sc8180x: Enable runtime PM support Val Packett
2026-03-12 12:39   ` Dmitry Baryshkov
2026-03-12 11:12 ` [PATCH v2 06/11] clk: qcom: gcc-sc8180x: Refactor to use qcom_cc_driver_data Val Packett
2026-03-12 13:03   ` Dmitry Baryshkov
2026-03-13 10:45   ` Konrad Dybcio
2026-03-12 11:12 ` [PATCH v2 07/11] clk: qcom: dispcc-sm8250: Use shared ops on the mdss vsync clk Val Packett
2026-03-12 13:05   ` Dmitry Baryshkov
2026-03-12 11:12 ` [PATCH v2 08/11] clk: qcom: dispcc-sm8250: Enable parents for pixel clocks Val Packett
2026-03-12 13:14   ` Dmitry Baryshkov
2026-03-20 11:32   ` Marek Szyprowski
2026-06-16 11:33     ` Konrad Dybcio
2026-06-16 14:31       ` Marek Szyprowski
2026-06-18 11:37         ` Marek Szyprowski [this message]
2026-06-19 14:31           ` Konrad Dybcio
2026-03-12 11:12 ` [PATCH v2 09/11] clk: qcom: camcc-sc8180x: Remove wait_val for Titan GDSC Val Packett
2026-03-13 10:50   ` Konrad Dybcio
2026-03-13 16:10     ` Dmitry Baryshkov
2026-03-12 11:12 ` [PATCH v2 10/11] clk: qcom: camcc-sc8180x: Add missing HW_CTRL GDSC flag Val Packett
2026-03-13 10:53   ` Konrad Dybcio
2026-03-14  0:13     ` Val Packett
2026-03-16  9:24       ` Konrad Dybcio
2026-03-12 11:12 ` [PATCH v2 11/11] clk: qcom: camcc-sc8180x: Refactor to use qcom_cc_driver_data Val Packett
2026-03-12 13:14   ` Dmitry Baryshkov
2026-03-13 10:46   ` Konrad Dybcio
2026-03-19  2:46 ` (subset) [PATCH v2 00/11] clk: qcom: sc8180x: PM-related fixes (and refactoring) Bjorn Andersson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d4c1e329-78de-4d02-99e5-3e4887bdecf8@samsung.com \
    --to=m.szyprowski@samsung.com \
    --cc=andersson@kernel.org \
    --cc=johan+linaro@kernel.org \
    --cc=jonathan@marek.ca \
    --cc=konrad.dybcio@oss.qualcomm.com \
    --cc=konradybcio@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lumag@kernel.org \
    --cc=luzmaximilian@gmail.com \
    --cc=mani@kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=sboyd@kernel.org \
    --cc=val@packett.cool \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox