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 886C934889F; Tue, 16 Jun 2026 15:24:31 +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=1781623472; cv=none; b=GM8DiJUdsSALiRSi1wsOTnvFK5xaxF9QSbnC6IF7ktZgDfDgn+O2NLcdVap97lNhqKGhYEsEJM99e0SkeMs60YIVc72NBkUGqOjrs37RUTh5DeKB6zbc/hHbaeXN1Ct6qpkM3IA1bX/9mluM/7eMXIBQj5xz4C3VerSHw2hbDqQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781623472; c=relaxed/simple; bh=ByHqWkuFRjSLjzMZofxIjRPekGdynBwGCcr3RbhWg4o=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ZLtcaRgIRcRjfdNVNt+7YlioGS6d1iUVfVJ1x0/MpWVUWpusta3G3InZw10MpmTkw3n1tuoSmQ+KfbJe1Lfp8Qea3xZJ/oZROIhdOcQ3wrRGmE7J57RKadbgJGAdHZ85//bj1V4F84XLRDR4TfYHR8UGA9Qq/O4BmT+POepSsRE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=en5opRh/; 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="en5opRh/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 30FF41F000E9; Tue, 16 Jun 2026 15:24:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1781623471; bh=b1Mg1AbJqZEfjIrE3qloEK5J9eRDwr25EL+wqHG4Lnk=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=en5opRh/cD+GubPtIenO94Qedfx/uQ0sCdBj/kpsu2LqGbfm8qPLRc45sUKrmlSz0 3/ovJBN53XdQGS4iWOzo6g0SHjemt1aj71mlmyptrZXynhSdv3tJda/s1c3FwNv3kR FvhP0wt3UFQcrFDocEJASVjoTBTcGbVAegQiL1h0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Dmitry Baryshkov , Hans de Goede , Bjorn Andersson , Sasha Levin Subject: [PATCH 7.0 155/378] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked Date: Tue, 16 Jun 2026 20:26:26 +0530 Message-ID: <20260616145118.409211072@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260616145109.744539446@linuxfoundation.org> References: <20260616145109.744539446@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 7.0-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hans de Goede [ Upstream commit bc27dbefae6ed11376d991a2921eff806ffef67c ] Parking disp_cc_mdss_mdp_clk_src at 19.2MHz causing the EFI GOP framebuffer to stop functioning. The EFI GOP framebuffer should keep working until the msm display driver loads, to help with boot debugging and to ensure display output when the msm module is not in the initramfs. Switch disp_cc_mdss_mdp_clk_src over to clk_rcg2_shared_no_init_park_ops to keep the EFI GOP working after binding the x1e80100-dispcc driver. Suggested-by: Dmitry Baryshkov Signed-off-by: Hans de Goede Reviewed-by: Dmitry Baryshkov Fixes: 01a0a6cc8cfd ("clk: qcom: Park shared RCGs upon registration") Link: https://lore.kernel.org/r/20260425123351.6292-1-johannes.goede@oss.qualcomm.com Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- drivers/clk/qcom/dispcc-x1e80100.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/qcom/dispcc-x1e80100.c b/drivers/clk/qcom/dispcc-x1e80100.c index aa7fd43969f9c8..cd45bedf26494c 100644 --- a/drivers/clk/qcom/dispcc-x1e80100.c +++ b/drivers/clk/qcom/dispcc-x1e80100.c @@ -580,7 +580,7 @@ static struct clk_rcg2 disp_cc_mdss_mdp_clk_src = { .parent_data = disp_cc_parent_data_6, .num_parents = ARRAY_SIZE(disp_cc_parent_data_6), .flags = CLK_SET_RATE_PARENT, - .ops = &clk_rcg2_shared_ops, + .ops = &clk_rcg2_shared_no_init_park_ops, }, }; -- 2.53.0