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 9D10A402B80; Wed, 20 May 2026 18:41:20 +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=1779302481; cv=none; b=bLiWp8LHZUqh9fnHpt5JyazPT+elIpgUJkPpUyHChiA/GBJtuVOkDujr+l/KCO4lFfLzdRMsDF4SixPltteuea+wM+SEA82XoeYnA9x/YbeYKsLeNe8fgRlLJgPN0p7y34o2tNNopy9bAzn52BMlX5Tjw4ExT2f/Lp8I9hTygcc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779302481; c=relaxed/simple; bh=mbSoBsCu/luRbdCWZRHBu8bu0FlM5XVFdpzM+drvxYY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=LmeqoLGji0AmIC+FzBy99vHayxNecg/xBixGJCbM4csP5z+tb/jjfWaqigbNX1/+WR1a8cKKFQ7TjQ+epDdQKVXAs5RHBKr9McaDcGGU9KKJnxY3Vr84UahILxu6ag4RZLc8/GjppEyqyRuFfNk89DUnsyXzUQ9zKhi5Bf2bMqY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ZROB00E/; 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="ZROB00E/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B66411F00893; Wed, 20 May 2026 18:41:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779302480; bh=+upanwZqFMl40aPOxqjBOANVvDumPUZxKpsWIJSpVXk=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=ZROB00E/U5yhln1kzJUP6n5zz/gVbjPhVFL0BzK3GHqNbLTXfzvO/dcAQJNJJyD4q AlsqnT46ogTbw5vprIOAQv7e2/ORdE7gr05A487GEzAxboJ178fTzONmE4aHwspZVl 0I+b77VaNES+WJjiLYasZ1G3rklePgVtSUl1xBTM= 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.6 283/508] clk: qcom: dispcc-sm8250: Enable parents for pixel clocks Date: Wed, 20 May 2026 18:21:46 +0200 Message-ID: <20260520162104.775529101@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162058.573354582@linuxfoundation.org> References: <20260520162058.573354582@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.6-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 cd6df240953fd..7aa84c341f598 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