From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 D07CD36D9EA; Wed, 20 May 2026 17:41:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779298862; cv=none; b=UFQTYoLJwTZsLLgpJuUmkM5fTUf9+K5xlrcX4eOiEW05SEu/E+m5nEF1vIsYJuvc3muyXCiUeVHKVDw0jVzd+0Y/zBlWC8QRyqWqAgDPN4rosl1RQ4xbc4OVQaCdHHra34FVaRfgBM8QdjWjRjJMB5riVJ/0OQSygFCcmLx7ITI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779298862; c=relaxed/simple; bh=jCVQzeLAB1ykizvcXZEtdqoI8w0Yd0cR/Dlh71ys7hI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=PRC1wZKAKEfRtz9IH7MWCZZHBjZMqnqBluwetJHHcDYsvVYxIja1znOo1qtfAP5boj8GQ83qpLVi+jRTNCIH29PJI3o0j1HClOEf2MUasYiFvtmKiBs045X+3Y6ho36H7xeqFe3X1YdewZPuUDvYFtBdsNvUG2PhuzUaVq/P0Tg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=aHjLL0Ai; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="aHjLL0Ai" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 40B1D1F000E9; Wed, 20 May 2026 17:41:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779298861; bh=bIMSjoAHSLaRAss0VhQ/bNjhlc39YkRYy+Tf51PEspI=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=aHjLL0Ai8tdJjTLjYeK6IcPa0az+AsrU0k5XYCWRTeiCRv4AHDn7VHr/UYLvVWOC3 W32XO0Y/OGBm39eTExV5SvnECL9IEypzTSQaXFkfTCZ+QVL1mXp0/HXviJp3S0rpTZ 6qLcqdUiVcOr9wOtV1TFp4OensbcWSnamUKOIFVQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Val Packett , Dmitry Baryshkov , Bjorn Andersson , Sasha Levin Subject: [PATCH 6.18 570/957] clk: qcom: dispcc-sm8250: Enable parents for pixel clocks Date: Wed, 20 May 2026 18:17:33 +0200 Message-ID: <20260520162146.892462004@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162134.554764788@linuxfoundation.org> References: <20260520162134.554764788@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Val Packett [ Upstream commit acf7a91d0b0e9e3ef374944021de62062125b7e4 ] 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 Reviewed-by: Dmitry Baryshkov Link: https://lore.kernel.org/r/20260312112321.370983-9-val@packett.cool Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- drivers/clk/qcom/dispcc-sm8250.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/clk/qcom/dispcc-sm8250.c b/drivers/clk/qcom/dispcc-sm8250.c index cdfdb2cfb02b2..e59cdadd56479 100644 --- a/drivers/clk/qcom/dispcc-sm8250.c +++ b/drivers/clk/qcom/dispcc-sm8250.c @@ -578,7 +578,7 @@ static struct clk_rcg2 disp_cc_mdss_pclk0_clk_src = { .name = "disp_cc_mdss_pclk0_clk_src", .parent_data = disp_cc_parent_data_6, .num_parents = ARRAY_SIZE(disp_cc_parent_data_6), - .flags = CLK_SET_RATE_PARENT, + .flags = CLK_SET_RATE_PARENT | CLK_OPS_PARENT_ENABLE, .ops = &clk_pixel_ops, }, }; @@ -592,7 +592,7 @@ static struct clk_rcg2 disp_cc_mdss_pclk1_clk_src = { .name = "disp_cc_mdss_pclk1_clk_src", .parent_data = disp_cc_parent_data_6, .num_parents = ARRAY_SIZE(disp_cc_parent_data_6), - .flags = CLK_SET_RATE_PARENT, + .flags = CLK_SET_RATE_PARENT | CLK_OPS_PARENT_ENABLE, .ops = &clk_pixel_ops, }, }; -- 2.53.0