The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH v3 0/3] SM8450 QoL changes (dispcc)
@ 2026-07-14  3:28 Esteban Urrutia via B4 Relay
  2026-07-14  3:28 ` [PATCH v3 1/3] clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops Esteban Urrutia via B4 Relay
                   ` (4 more replies)
  0 siblings, 5 replies; 14+ messages in thread
From: Esteban Urrutia via B4 Relay @ 2026-07-14  3:28 UTC (permalink / raw)
  To: Bjorn Andersson, Michael Turquette, Stephen Boyd, Brian Masney,
	Dmitry Baryshkov, Jagadeesh Kona
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel,
	Esteban Urrutia, Konrad Dybcio

These patches are mainly focused on getting a flickerless boot process
on SM8475 based devices.

Signed-off-by: Esteban Urrutia <esteuwu@proton.me>
---
Changes in v3:
- Apply suggestions from Konrad
- Link to v2: https://patch.msgid.link/20260711-sm8450-qol-dispcc-v2-0-fc1a07ac5601@proton.me

Changes in v2:
- Split series in subseries (dispcc, dts, qmp, smmu)
- Migrate to qcom_cc_driver_data (Konrad)
- Split mdss patch into 3 patches
- Use Fixes tag where applicable (Krzysztof)
- Link to v1: https://patch.msgid.link/20260622-sm8450-qol-v1-0-37e2ee8df9da@proton.me

---
Esteban Urrutia (3):
      clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops
      clk: qcom: dispcc-sm8450: Migrate to qcom_cc_driver_data
      clk: qcom: alpha-pll: Check Lucid Ole PLL status before configuring

 drivers/clk/qcom/clk-alpha-pll.c |  9 +++++++++
 drivers/clk/qcom/dispcc-sm8450.c | 40 +++++++++++++++++++++++++++++-----------
 2 files changed, 38 insertions(+), 11 deletions(-)
---
base-commit: bee763d5f341b99cf472afeb508d4988f62a6ca1
change-id: 20260711-sm8450-qol-dispcc-09b2951d25b0

Best regards,
--  
Esteban Urrutia <esteuwu@proton.me>



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH v3 1/3] clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops
  2026-07-14  3:28 [PATCH v3 0/3] SM8450 QoL changes (dispcc) Esteban Urrutia via B4 Relay
@ 2026-07-14  3:28 ` Esteban Urrutia via B4 Relay
  2026-07-17 21:02   ` David Heidelberg
  2026-07-14  3:28 ` [PATCH v3 2/3] clk: qcom: dispcc-sm8450: Migrate to qcom_cc_driver_data Esteban Urrutia via B4 Relay
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 14+ messages in thread
From: Esteban Urrutia via B4 Relay @ 2026-07-14  3:28 UTC (permalink / raw)
  To: Bjorn Andersson, Michael Turquette, Stephen Boyd, Brian Masney,
	Dmitry Baryshkov, Jagadeesh Kona
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel,
	Esteban Urrutia, Konrad Dybcio

From: Esteban Urrutia <esteuwu@proton.me>

If the clock frequency is changed at registration time, a flicker will be
visible at boot.
Switching to clk_rcg2_shared_no_init_park_ops fixes this.

Fixes: 16fb89f92ec4 ("clk: qcom: Add support for Display Clock Controller on SM8450")
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Signed-off-by: Esteban Urrutia <esteuwu@proton.me>
---
 drivers/clk/qcom/dispcc-sm8450.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/qcom/dispcc-sm8450.c b/drivers/clk/qcom/dispcc-sm8450.c
index 3af120e54cdd..c7e04bd315d5 100644
--- a/drivers/clk/qcom/dispcc-sm8450.c
+++ b/drivers/clk/qcom/dispcc-sm8450.c
@@ -613,7 +613,7 @@ static struct clk_rcg2 disp_cc_mdss_mdp_clk_src = {
 		.parent_data = disp_cc_parent_data_5,
 		.num_parents = ARRAY_SIZE(disp_cc_parent_data_5),
 		.flags = CLK_SET_RATE_PARENT,
-		.ops = &clk_rcg2_shared_ops,
+		.ops = &clk_rcg2_shared_no_init_park_ops,
 	},
 };
 

-- 
2.55.0



^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [PATCH v3 2/3] clk: qcom: dispcc-sm8450: Migrate to qcom_cc_driver_data
  2026-07-14  3:28 [PATCH v3 0/3] SM8450 QoL changes (dispcc) Esteban Urrutia via B4 Relay
  2026-07-14  3:28 ` [PATCH v3 1/3] clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops Esteban Urrutia via B4 Relay
@ 2026-07-14  3:28 ` Esteban Urrutia via B4 Relay
  2026-07-22 13:24   ` Dmitry Baryshkov
  2026-07-14  3:28 ` [PATCH v3 3/3] clk: qcom: alpha-pll: Check Lucid Ole PLL status before configuring Esteban Urrutia via B4 Relay
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 14+ messages in thread
From: Esteban Urrutia via B4 Relay @ 2026-07-14  3:28 UTC (permalink / raw)
  To: Bjorn Andersson, Michael Turquette, Stephen Boyd, Brian Masney,
	Dmitry Baryshkov, Jagadeesh Kona
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel,
	Esteban Urrutia, Konrad Dybcio

From: Esteban Urrutia <esteuwu@proton.me>

Migrate to qcom_cc_driver_data, which is used by other clock controller
drivers.

Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Signed-off-by: Esteban Urrutia <esteuwu@proton.me>
---
 drivers/clk/qcom/dispcc-sm8450.c | 38 ++++++++++++++++++++++++++++----------
 1 file changed, 28 insertions(+), 10 deletions(-)

diff --git a/drivers/clk/qcom/dispcc-sm8450.c b/drivers/clk/qcom/dispcc-sm8450.c
index c7e04bd315d5..facbf040ab9a 100644
--- a/drivers/clk/qcom/dispcc-sm8450.c
+++ b/drivers/clk/qcom/dispcc-sm8450.c
@@ -1778,6 +1778,29 @@ static const struct regmap_config disp_cc_sm8450_regmap_config = {
 	.fast_io = true,
 };
 
+static struct clk_alpha_pll *disp_cc_sm8450_plls[] = {
+	&disp_cc_pll0,
+	&disp_cc_pll1,
+};
+
+static const u32 disp_cc_sm8450_critical_cbcrs[] = {
+	0xe05c, /* DISP_CC_XO_CLK */
+};
+
+static void disp_cc_sm8450_clk_regs_configure(struct device *dev, struct regmap *regmap)
+{
+	/* Enable clock gating for MDP clocks */
+	regmap_set_bits(regmap, DISP_CC_MISC_CMD, BIT(4));
+}
+
+static const struct qcom_cc_driver_data disp_cc_sm8450_driver_data = {
+	.alpha_plls = disp_cc_sm8450_plls,
+	.num_alpha_plls = ARRAY_SIZE(disp_cc_sm8450_plls),
+	.clk_cbcrs = disp_cc_sm8450_critical_cbcrs,
+	.num_clk_cbcrs = ARRAY_SIZE(disp_cc_sm8450_critical_cbcrs),
+	.clk_regs_configure = disp_cc_sm8450_clk_regs_configure,
+};
+
 static const struct qcom_cc_desc disp_cc_sm8450_desc = {
 	.config = &disp_cc_sm8450_regmap_config,
 	.clks = disp_cc_sm8450_clocks,
@@ -1786,6 +1809,7 @@ static const struct qcom_cc_desc disp_cc_sm8450_desc = {
 	.num_resets = ARRAY_SIZE(disp_cc_sm8450_resets),
 	.gdscs = disp_cc_sm8450_gdscs,
 	.num_gdscs = ARRAY_SIZE(disp_cc_sm8450_gdscs),
+	.driver_data = &disp_cc_sm8450_driver_data,
 };
 
 static const struct of_device_id disp_cc_sm8450_match_table[] = {
@@ -1823,19 +1847,13 @@ static int disp_cc_sm8450_probe(struct platform_device *pdev)
 		disp_cc_pll1.regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE];
 		disp_cc_pll1.clkr.hw.init = &sm8475_disp_cc_pll1_init;
 
-		clk_lucid_ole_pll_configure(&disp_cc_pll0, regmap, &sm8475_disp_cc_pll0_config);
-		clk_lucid_ole_pll_configure(&disp_cc_pll1, regmap, &sm8475_disp_cc_pll1_config);
+		disp_cc_pll0.config = &sm8475_disp_cc_pll0_config;
+		disp_cc_pll1.config = &sm8475_disp_cc_pll1_config;
 	} else {
-		clk_lucid_evo_pll_configure(&disp_cc_pll0, regmap, &disp_cc_pll0_config);
-		clk_lucid_evo_pll_configure(&disp_cc_pll1, regmap, &disp_cc_pll1_config);
+		disp_cc_pll0.config = &disp_cc_pll0_config;
+		disp_cc_pll1.config = &disp_cc_pll1_config;
 	}
 
-	/* Enable clock gating for MDP clocks */
-	regmap_update_bits(regmap, DISP_CC_MISC_CMD, 0x10, 0x10);
-
-	/* Keep some clocks always-on */
-	qcom_branch_set_clk_en(regmap, 0xe05c); /* DISP_CC_XO_CLK */
-
 	ret = qcom_cc_really_probe(&pdev->dev, &disp_cc_sm8450_desc, regmap);
 	if (ret)
 		goto err_put_rpm;

-- 
2.55.0



^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [PATCH v3 3/3] clk: qcom: alpha-pll: Check Lucid Ole PLL status before configuring
  2026-07-14  3:28 [PATCH v3 0/3] SM8450 QoL changes (dispcc) Esteban Urrutia via B4 Relay
  2026-07-14  3:28 ` [PATCH v3 1/3] clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops Esteban Urrutia via B4 Relay
  2026-07-14  3:28 ` [PATCH v3 2/3] clk: qcom: dispcc-sm8450: Migrate to qcom_cc_driver_data Esteban Urrutia via B4 Relay
@ 2026-07-14  3:28 ` Esteban Urrutia via B4 Relay
  2026-07-15  9:31   ` Konrad Dybcio
  2026-08-10 16:31 ` [PATCH v3 0/3] SM8450 QoL changes (dispcc) Esteban Urrutia
  2026-08-10 18:45 ` Bjorn Andersson
  4 siblings, 1 reply; 14+ messages in thread
From: Esteban Urrutia via B4 Relay @ 2026-07-14  3:28 UTC (permalink / raw)
  To: Bjorn Andersson, Michael Turquette, Stephen Boyd, Brian Masney,
	Dmitry Baryshkov, Jagadeesh Kona
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel,
	Esteban Urrutia

From: Esteban Urrutia <esteuwu@proton.me>

On some platforms such as SM8475, not doing this may result in graphical
glitches when the mdss driver takes over.
This fixes the aforementioned issue.

Fixes: 3132a9a11e57 ("clk: qcom: clk-alpha-pll: Add support for lucid ole pll configure")
Signed-off-by: Esteban Urrutia <esteuwu@proton.me>
---
 drivers/clk/qcom/clk-alpha-pll.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/drivers/clk/qcom/clk-alpha-pll.c b/drivers/clk/qcom/clk-alpha-pll.c
index f8313f9d0e30..60173b076cc5 100644
--- a/drivers/clk/qcom/clk-alpha-pll.c
+++ b/drivers/clk/qcom/clk-alpha-pll.c
@@ -2373,6 +2373,15 @@ void clk_lucid_ole_pll_configure(struct clk_alpha_pll *pll, struct regmap *regma
 {
 	u32 lval = config->l;
 
+	/*
+	 * If the bootloader left the PLL enabled it's likely that there are
+	 * RCGs that will lock up if we disable the PLL below.
+	 */
+	if (trion_pll_is_enabled(pll, regmap)) {
+		pr_debug("Lucid Ole PLL is already enabled, skipping configuration\n");
+		return;
+	}
+
 	lval |= TRION_PLL_CAL_VAL << LUCID_EVO_PLL_CAL_L_VAL_SHIFT;
 	lval |= TRION_PLL_CAL_VAL << LUCID_OLE_PLL_RINGOSC_CAL_L_VAL_SHIFT;
 	clk_alpha_pll_write_config(regmap, PLL_L_VAL(pll), lval);

-- 
2.55.0



^ permalink raw reply related	[flat|nested] 14+ messages in thread

* Re: [PATCH v3 3/3] clk: qcom: alpha-pll: Check Lucid Ole PLL status before configuring
  2026-07-14  3:28 ` [PATCH v3 3/3] clk: qcom: alpha-pll: Check Lucid Ole PLL status before configuring Esteban Urrutia via B4 Relay
@ 2026-07-15  9:31   ` Konrad Dybcio
  2026-07-29  2:44     ` Esteban Urrutia
  0 siblings, 1 reply; 14+ messages in thread
From: Konrad Dybcio @ 2026-07-15  9:31 UTC (permalink / raw)
  To: esteuwu, Bjorn Andersson, Michael Turquette, Stephen Boyd,
	Brian Masney, Dmitry Baryshkov, Jagadeesh Kona
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel

On 7/14/26 5:28 AM, Esteban Urrutia via B4 Relay wrote:
> From: Esteban Urrutia <esteuwu@proton.me>
> 
> On some platforms such as SM8475, not doing this may result in graphical
> glitches when the mdss driver takes over.
> This fixes the aforementioned issue.
> 
> Fixes: 3132a9a11e57 ("clk: qcom: clk-alpha-pll: Add support for lucid ole pll configure")
> Signed-off-by: Esteban Urrutia <esteuwu@proton.me>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>

Konrad

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH v3 1/3] clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops
  2026-07-14  3:28 ` [PATCH v3 1/3] clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops Esteban Urrutia via B4 Relay
@ 2026-07-17 21:02   ` David Heidelberg
  2026-07-18 23:28     ` Esteban Urrutia
  2026-07-22 13:23     ` Dmitry Baryshkov
  0 siblings, 2 replies; 14+ messages in thread
From: David Heidelberg @ 2026-07-17 21:02 UTC (permalink / raw)
  To: esteuwu, Bjorn Andersson, Michael Turquette, Stephen Boyd,
	Brian Masney, Dmitry Baryshkov, Jagadeesh Kona, Konrad Dybcio
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel

On 14/07/2026 05:28, Esteban Urrutia via B4 Relay wrote:
> From: Esteban Urrutia <esteuwu@proton.me>
> 
> If the clock frequency is changed at registration time, a flicker will be
> visible at boot.
> Switching to clk_rcg2_shared_no_init_park_ops fixes this.
> 
> Fixes: 16fb89f92ec4 ("clk: qcom: Add support for Display Clock Controller on SM8450")
> Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> Signed-off-by: Esteban Urrutia <esteuwu@proton.me>
> ---
>   drivers/clk/qcom/dispcc-sm8450.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
Heya,

it's likely this change will be safe for older sdm845 too? Comma.AI people have 
it applied downstream on top of 6.18/7.1 [1], so I'm wondering if it's something 
after testing on available targets could be enabled for 845 too.

David

[1] 
https://github.com/commaai/vamOS/blob/master/kernel/patches/0004-clk-qcom-dispcc-sdm845-use-no_init_park-ops-for-disp.patch
[...]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH v3 1/3] clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops
  2026-07-17 21:02   ` David Heidelberg
@ 2026-07-18 23:28     ` Esteban Urrutia
  2026-07-20  8:14       ` Konrad Dybcio
  2026-07-22 13:23     ` Dmitry Baryshkov
  1 sibling, 1 reply; 14+ messages in thread
From: Esteban Urrutia @ 2026-07-18 23:28 UTC (permalink / raw)
  To: David Heidelberg, Bjorn Andersson, Michael Turquette,
	Stephen Boyd, Brian Masney, Dmitry Baryshkov, Jagadeesh Kona,
	Konrad Dybcio
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel

On 7/17/26 5:02 PM, David Heidelberg wrote:
> it's likely this change will be safe for older sdm845 too? Comma.AI people have
> it applied downstream on top of 6.18/7.1 [1], so I'm wondering if it's something
> after testing on available targets could be enabled for 845 too.

Hello.
I'm not sure, since the patch you linked modifies both mdp and rot clocks
while I only had to modify mdp for SM8450/8475.
Both clocks would have to be tested to get a verdict.

Regards,
Esteban


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH v3 1/3] clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops
  2026-07-18 23:28     ` Esteban Urrutia
@ 2026-07-20  8:14       ` Konrad Dybcio
  0 siblings, 0 replies; 14+ messages in thread
From: Konrad Dybcio @ 2026-07-20  8:14 UTC (permalink / raw)
  To: Esteban Urrutia, David Heidelberg, Bjorn Andersson,
	Michael Turquette, Stephen Boyd, Brian Masney, Dmitry Baryshkov,
	Jagadeesh Kona
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel

On 7/19/26 1:28 AM, Esteban Urrutia wrote:
> On 7/17/26 5:02 PM, David Heidelberg wrote:
>> it's likely this change will be safe for older sdm845 too? Comma.AI people have
>> it applied downstream on top of 6.18/7.1 [1], so I'm wondering if it's something
>> after testing on available targets could be enabled for 845 too.
> 
> Hello.
> I'm not sure, since the patch you linked modifies both mdp and rot clocks
> while I only had to modify mdp for SM8450/8475.
> Both clocks would have to be tested to get a verdict.

I think the 'rot' part should be unused - the hardware is not
driven by Linux today and I doubt the bootloader sets it up

Konrad

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH v3 1/3] clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops
  2026-07-17 21:02   ` David Heidelberg
  2026-07-18 23:28     ` Esteban Urrutia
@ 2026-07-22 13:23     ` Dmitry Baryshkov
  1 sibling, 0 replies; 14+ messages in thread
From: Dmitry Baryshkov @ 2026-07-22 13:23 UTC (permalink / raw)
  To: David Heidelberg
  Cc: esteuwu, Bjorn Andersson, Michael Turquette, Stephen Boyd,
	Brian Masney, Dmitry Baryshkov, Jagadeesh Kona, Konrad Dybcio,
	linux-arm-msm, linux-clk, linux-kernel, phone-devel

On Fri, Jul 17, 2026 at 11:02:11PM +0200, David Heidelberg wrote:
> On 14/07/2026 05:28, Esteban Urrutia via B4 Relay wrote:
> > From: Esteban Urrutia <esteuwu@proton.me>
> > 
> > If the clock frequency is changed at registration time, a flicker will be
> > visible at boot.
> > Switching to clk_rcg2_shared_no_init_park_ops fixes this.
> > 
> > Fixes: 16fb89f92ec4 ("clk: qcom: Add support for Display Clock Controller on SM8450")
> > Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> > Signed-off-by: Esteban Urrutia <esteuwu@proton.me>
> > ---
> >   drivers/clk/qcom/dispcc-sm8450.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> Heya,
> 
> it's likely this change will be safe for older sdm845 too? Comma.AI people
> have it applied downstream on top of 6.18/7.1 [1], so I'm wondering if it's
> something after testing on available targets could be enabled for 845 too.

Yes. Please send it (for sdm845 and at least other dispcc controllers).

> 
> David
> 
> [1] https://github.com/commaai/vamOS/blob/master/kernel/patches/0004-clk-qcom-dispcc-sdm845-use-no_init_park-ops-for-disp.patch
> [...]

-- 
With best wishes
Dmitry

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH v3 2/3] clk: qcom: dispcc-sm8450: Migrate to qcom_cc_driver_data
  2026-07-14  3:28 ` [PATCH v3 2/3] clk: qcom: dispcc-sm8450: Migrate to qcom_cc_driver_data Esteban Urrutia via B4 Relay
@ 2026-07-22 13:24   ` Dmitry Baryshkov
  0 siblings, 0 replies; 14+ messages in thread
From: Dmitry Baryshkov @ 2026-07-22 13:24 UTC (permalink / raw)
  To: esteuwu
  Cc: Bjorn Andersson, Michael Turquette, Stephen Boyd, Brian Masney,
	Dmitry Baryshkov, Jagadeesh Kona, linux-arm-msm, linux-clk,
	linux-kernel, phone-devel, Konrad Dybcio

On Mon, Jul 13, 2026 at 11:28:18PM -0400, Esteban Urrutia via B4 Relay wrote:
> From: Esteban Urrutia <esteuwu@proton.me>
> 
> Migrate to qcom_cc_driver_data, which is used by other clock controller
> drivers.
> 
> Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> Signed-off-by: Esteban Urrutia <esteuwu@proton.me>
> ---
>  drivers/clk/qcom/dispcc-sm8450.c | 38 ++++++++++++++++++++++++++++----------
>  1 file changed, 28 insertions(+), 10 deletions(-)
> 

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>


-- 
With best wishes
Dmitry

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH v3 3/3] clk: qcom: alpha-pll: Check Lucid Ole PLL status before configuring
  2026-07-15  9:31   ` Konrad Dybcio
@ 2026-07-29  2:44     ` Esteban Urrutia
  2026-07-29  9:24       ` Konrad Dybcio
  0 siblings, 1 reply; 14+ messages in thread
From: Esteban Urrutia @ 2026-07-29  2:44 UTC (permalink / raw)
  To: Konrad Dybcio, Bjorn Andersson, Michael Turquette, Stephen Boyd,
	Brian Masney, Dmitry Baryshkov, Jagadeesh Kona
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel

On 7/15/26 5:31 AM, Konrad Dybcio wrote:
> Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>


Konrad, since you pointed me in the right direction for this commit, can
I have your permission to add Suggested-by?
I should have asked this earlier. Sorry about that.

Regards,
Esteban


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH v3 3/3] clk: qcom: alpha-pll: Check Lucid Ole PLL status before configuring
  2026-07-29  2:44     ` Esteban Urrutia
@ 2026-07-29  9:24       ` Konrad Dybcio
  0 siblings, 0 replies; 14+ messages in thread
From: Konrad Dybcio @ 2026-07-29  9:24 UTC (permalink / raw)
  To: Esteban Urrutia, Bjorn Andersson, Michael Turquette, Stephen Boyd,
	Brian Masney, Dmitry Baryshkov, Jagadeesh Kona
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel

On 7/29/26 4:44 AM, Esteban Urrutia wrote:
> On 7/15/26 5:31 AM, Konrad Dybcio wrote:
>> Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> 
> 
> Konrad, since you pointed me in the right direction for this commit, can
> I have your permission to add Suggested-by?
> I should have asked this earlier. Sorry about that.

Might as well. I'll leave it here so that maintainer tooling picks it
up while applying (i.e. don't resend this series)

Suggested-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>

Konrad

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH v3 0/3] SM8450 QoL changes (dispcc)
  2026-07-14  3:28 [PATCH v3 0/3] SM8450 QoL changes (dispcc) Esteban Urrutia via B4 Relay
                   ` (2 preceding siblings ...)
  2026-07-14  3:28 ` [PATCH v3 3/3] clk: qcom: alpha-pll: Check Lucid Ole PLL status before configuring Esteban Urrutia via B4 Relay
@ 2026-08-10 16:31 ` Esteban Urrutia
  2026-08-10 18:45 ` Bjorn Andersson
  4 siblings, 0 replies; 14+ messages in thread
From: Esteban Urrutia @ 2026-08-10 16:31 UTC (permalink / raw)
  To: Bjorn Andersson, Michael Turquette, Stephen Boyd, Brian Masney,
	Dmitry Baryshkov, Jagadeesh Kona
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel,
	Konrad Dybcio

On 7/13/26 11:28 PM, Esteban Urrutia via B4 Relay wrote:
> These patches are mainly focused on getting a flickerless boot process
> on SM8475 based devices.
Any update on when this series can be picked?

Regards,
Esteban


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH v3 0/3] SM8450 QoL changes (dispcc)
  2026-07-14  3:28 [PATCH v3 0/3] SM8450 QoL changes (dispcc) Esteban Urrutia via B4 Relay
                   ` (3 preceding siblings ...)
  2026-08-10 16:31 ` [PATCH v3 0/3] SM8450 QoL changes (dispcc) Esteban Urrutia
@ 2026-08-10 18:45 ` Bjorn Andersson
  4 siblings, 0 replies; 14+ messages in thread
From: Bjorn Andersson @ 2026-08-10 18:45 UTC (permalink / raw)
  To: Michael Turquette, Stephen Boyd, Brian Masney, Dmitry Baryshkov,
	Jagadeesh Kona, Esteban Urrutia
  Cc: linux-arm-msm, linux-clk, linux-kernel, phone-devel,
	Konrad Dybcio


On Mon, 13 Jul 2026 23:28:16 -0400, Esteban Urrutia wrote:
> These patches are mainly focused on getting a flickerless boot process
> on SM8475 based devices.
> 
> 

Applied, thanks!

[1/3] clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops
      commit: 60eb9e0879cfc66c997e233c8caa40a3447cad11
[2/3] clk: qcom: dispcc-sm8450: Migrate to qcom_cc_driver_data
      commit: ace1365aff94bbc00a5bb8c2f87fac2f13f1eb79
[3/3] clk: qcom: alpha-pll: Check Lucid Ole PLL status before configuring
      commit: 23fee7d2f1f1c600c190a950a421eee52772236e

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2026-08-10 18:46 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-14  3:28 [PATCH v3 0/3] SM8450 QoL changes (dispcc) Esteban Urrutia via B4 Relay
2026-07-14  3:28 ` [PATCH v3 1/3] clk: qcom: dispcc-sm8450: Fix disp_cc_mdss_mdp_clk_src ops Esteban Urrutia via B4 Relay
2026-07-17 21:02   ` David Heidelberg
2026-07-18 23:28     ` Esteban Urrutia
2026-07-20  8:14       ` Konrad Dybcio
2026-07-22 13:23     ` Dmitry Baryshkov
2026-07-14  3:28 ` [PATCH v3 2/3] clk: qcom: dispcc-sm8450: Migrate to qcom_cc_driver_data Esteban Urrutia via B4 Relay
2026-07-22 13:24   ` Dmitry Baryshkov
2026-07-14  3:28 ` [PATCH v3 3/3] clk: qcom: alpha-pll: Check Lucid Ole PLL status before configuring Esteban Urrutia via B4 Relay
2026-07-15  9:31   ` Konrad Dybcio
2026-07-29  2:44     ` Esteban Urrutia
2026-07-29  9:24       ` Konrad Dybcio
2026-08-10 16:31 ` [PATCH v3 0/3] SM8450 QoL changes (dispcc) Esteban Urrutia
2026-08-10 18:45 ` Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox