All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
To: bjorn.andersson@linaro.org, agross@kernel.org,
	konrad.dybcio@somainline.org, mturquette@baylibre.com,
	sboyd@kernel.org
Cc: linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org,
	Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Subject: [PATCH 6/6] clk: qcom: gcc-msm8939: Add missing USB HS system clock frequencies
Date: Tue, 12 Jul 2022 13:59:22 +0100	[thread overview]
Message-ID: <20220712125922.3461675-7-bryan.odonoghue@linaro.org> (raw)
In-Reply-To: <20220712125922.3461675-1-bryan.odonoghue@linaro.org>

The shipped qcom driver defines:
static struct clk_freq_tbl ftbl_gcc_usb_hs_system_clk[] = {
        F(  57140000,      gpll0_out_main,  14,    0,    0),
        F(  80000000,      gpll0_out_main,  10,   0,    0),
        F( 100000000,      gpll0_out_main,   8,   0,    0),
        F_END
};
In the upstream code we omit 57.14 MHz and 100 MHz.

Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
---
 drivers/clk/qcom/gcc-msm8939.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/clk/qcom/gcc-msm8939.c b/drivers/clk/qcom/gcc-msm8939.c
index 7f71491d52c4b..754d5573b1df5 100644
--- a/drivers/clk/qcom/gcc-msm8939.c
+++ b/drivers/clk/qcom/gcc-msm8939.c
@@ -1468,7 +1468,9 @@ static struct clk_rcg2 bimc_gpu_clk_src = {
 };
 
 static const struct freq_tbl ftbl_gcc_usb_hs_system_clk[] = {
+	F(57140000, P_GPLL0, 14, 0, 0),
 	F(80000000, P_GPLL0, 10, 0, 0),
+	F(100000000, P_GPLL0, 8, 0, 0),
 	{ }
 };
 
-- 
2.36.1


  parent reply	other threads:[~2022-07-12 12:59 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-12 12:59 [PATCH 0/6] clk: qcom: gcc-msm8939: Align clock frequencies with downstream driver Bryan O'Donoghue
2022-07-12 12:59 ` [PATCH 1/6] clk: qcom: gcc-msm8939: Fix weird field spacing in ftbl_gcc_camss_cci_clk Bryan O'Donoghue
2022-07-12 16:11   ` Konrad Dybcio
2022-07-12 12:59 ` [PATCH 2/6] clk: qcom: gcc-msm8939: Add missing CAMSS CCI bus clock Bryan O'Donoghue
2022-07-12 16:12   ` Konrad Dybcio
2022-07-12 12:59 ` [PATCH 3/6] clk: qcom: gcc-msm8939: Fix venus0_vcodec0_clk frequency definitions Bryan O'Donoghue
2022-07-12 16:13   ` Konrad Dybcio
2022-07-12 12:59 ` [PATCH 4/6] clk: qcom: gcc-msm8939: Add missing CAMSS CPP clock frequencies Bryan O'Donoghue
2022-07-12 16:13   ` Konrad Dybcio
2022-07-12 16:17   ` Konrad Dybcio
2022-07-12 12:59 ` [PATCH 5/6] clk: qcom: gcc-msm8939: Add missing MDSS MDP " Bryan O'Donoghue
2022-07-12 16:17   ` Konrad Dybcio
2022-07-12 12:59 ` Bryan O'Donoghue [this message]
2022-07-12 16:18   ` [PATCH 6/6] clk: qcom: gcc-msm8939: Add missing USB HS system " Konrad Dybcio
2022-07-12 16:19     ` Bryan O'Donoghue
2022-07-19  4:48 ` [PATCH 0/6] clk: qcom: gcc-msm8939: Align clock frequencies with downstream driver Bjorn Andersson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220712125922.3461675-7-bryan.odonoghue@linaro.org \
    --to=bryan.odonoghue@linaro.org \
    --cc=agross@kernel.org \
    --cc=bjorn.andersson@linaro.org \
    --cc=konrad.dybcio@somainline.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=sboyd@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.