From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 CCA6A1779B1; Tue, 8 Oct 2024 12:35:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728390902; cv=none; b=S+3erMtYQB3quJ+MOoQl8ayAuT838RwEi+Xp02JtR6UXmcOerrzRTAvOlBLlfjlwob5ZlB8sD0TsiKf1nySPLL887CqAQ7aW7DfArC0n8ATUHujwxLt7KBAJSDdQ//Qs1irEVLA+texh8cCESMmnl13Wnd09LHv+M0+ZWeBz0Io= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728390902; c=relaxed/simple; bh=E/uci8butSiKTtKw4F1yzhIP5OD3ZETWIobQPQh4sUk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Ul/+wB1hFQIY8rhDLnwZ+MQL1hDMQD4F5CFnHgzIpi3vvQ4F/LsKkV60nM5U6KbhgD+H6F2ycBvm/cBx2XgLhjY14LBfFemEs9oKhb3/DuNYBypL74+JWcyeK9NwX+VZ10FPUNGkLH6p5RzcWIYykjoaRCAR9QadtR+rZ80rpio= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=V1wRSZhE; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="V1wRSZhE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 51F88C4CEC7; Tue, 8 Oct 2024 12:35:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1728390902; bh=E/uci8butSiKTtKw4F1yzhIP5OD3ZETWIobQPQh4sUk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=V1wRSZhEAuPMwmOGctb/sMhH6Rc1J0rwF12AgrR2Cc+hMH4N/KUM33Cf6ipqt2sMD UGnWwR4Pho6ZyTCUaVsGcrBjLWuOQtog7CyzRIbDlxOGrRTIcGgMDtUt5pIRJea0sB HoqQ7d3dT3t75J6JVqLUE/rSZziVXIh8Zu93v6+s= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Dmitry Baryshkov , Satya Priya Kakitapalli , Bjorn Andersson Subject: [PATCH 6.10 396/482] clk: qcom: gcc-sc8180x: Add GPLL9 support Date: Tue, 8 Oct 2024 14:07:39 +0200 Message-ID: <20241008115703.994524638@linuxfoundation.org> X-Mailer: git-send-email 2.46.2 In-Reply-To: <20241008115648.280954295@linuxfoundation.org> References: <20241008115648.280954295@linuxfoundation.org> User-Agent: quilt/0.67 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.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Satya Priya Kakitapalli commit 818a2f8d5e4ad2c1e39a4290158fe8e39a744c70 upstream. Add the missing GPLL9 pll and fix the gcc_parents_7 data to use the correct pll hw. Fixes: 4433594bbe5d ("clk: qcom: gcc: Add global clock controller driver for SC8180x") Cc: stable@vger.kernel.org Reviewed-by: Dmitry Baryshkov Signed-off-by: Satya Priya Kakitapalli Link: https://lore.kernel.org/r/20240812-gcc-sc8180x-fixes-v2-3-8b3eaa5fb856@quicinc.com Signed-off-by: Bjorn Andersson Signed-off-by: Greg Kroah-Hartman --- drivers/clk/qcom/gcc-sc8180x.c | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) --- a/drivers/clk/qcom/gcc-sc8180x.c +++ b/drivers/clk/qcom/gcc-sc8180x.c @@ -142,6 +142,23 @@ static struct clk_alpha_pll gpll7 = { }, }; +static struct clk_alpha_pll gpll9 = { + .offset = 0x1c000, + .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_TRION], + .clkr = { + .enable_reg = 0x52000, + .enable_mask = BIT(9), + .hw.init = &(const struct clk_init_data) { + .name = "gpll9", + .parent_data = &(const struct clk_parent_data) { + .fw_name = "bi_tcxo", + }, + .num_parents = 1, + .ops = &clk_alpha_pll_fixed_trion_ops, + }, + }, +}; + static const struct parent_map gcc_parent_map_0[] = { { P_BI_TCXO, 0 }, { P_GPLL0_OUT_MAIN, 1 }, @@ -241,7 +258,7 @@ static const struct parent_map gcc_paren static const struct clk_parent_data gcc_parents_7[] = { { .fw_name = "bi_tcxo", }, { .hw = &gpll0.clkr.hw }, - { .name = "gppl9" }, + { .hw = &gpll9.clkr.hw }, { .hw = &gpll4.clkr.hw }, { .hw = &gpll0_out_even.clkr.hw }, }; @@ -4448,6 +4465,7 @@ static struct clk_regmap *gcc_sc8180x_cl [GPLL1] = &gpll1.clkr, [GPLL4] = &gpll4.clkr, [GPLL7] = &gpll7.clkr, + [GPLL9] = &gpll9.clkr, }; static const struct qcom_reset_map gcc_sc8180x_resets[] = {