From: John Crispin <john@phrozen.org>
To: Ansuel Smith <ansuelsmth@gmail.com>
Cc: Andy Gross <agross@kernel.org>,
Bjorn Andersson <bjorn.andersson@linaro.org>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh+dt@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] clk: qcom: clk-rpm: add missing rpm clk for ipq806x
Date: Wed, 19 Feb 2020 19:58:38 +0100 [thread overview]
Message-ID: <3c2bdeaf-c54b-142b-367e-6573de700803@phrozen.org> (raw)
In-Reply-To: <20200219185226.1236-1-ansuelsmth@gmail.com>
On 19/02/2020 19:52, Ansuel Smith wrote:
> Add missing definition of rpm clk for ipq806x soc
>
> Signed-off-by: John Crispin <john@phrozen.org>
> Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Thanks for sending this upstream,
Acked-by: John Crispin <john@phrozen.org>
> ---
> .../devicetree/bindings/clock/qcom,rpmcc.txt | 1 +
> drivers/clk/qcom/clk-rpm.c | 35 +++++++++++++++++++
> include/dt-bindings/clock/qcom,rpmcc.h | 4 +++
> 3 files changed, 40 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/clock/qcom,rpmcc.txt b/Documentation/devicetree/bindings/clock/qcom,rpmcc.txt
> index 944719bd586f..dd0def465c79 100644
> --- a/Documentation/devicetree/bindings/clock/qcom,rpmcc.txt
> +++ b/Documentation/devicetree/bindings/clock/qcom,rpmcc.txt
> @@ -16,6 +16,7 @@ Required properties :
> "qcom,rpmcc-msm8974", "qcom,rpmcc"
> "qcom,rpmcc-apq8064", "qcom,rpmcc"
> "qcom,rpmcc-msm8996", "qcom,rpmcc"
> + "qcom,rpmcc-ipq806x", "qcom,rpmcc"
> "qcom,rpmcc-msm8998", "qcom,rpmcc"
> "qcom,rpmcc-qcs404", "qcom,rpmcc"
>
> diff --git a/drivers/clk/qcom/clk-rpm.c b/drivers/clk/qcom/clk-rpm.c
> index 9e3110a71f12..f71d228fd6bd 100644
> --- a/drivers/clk/qcom/clk-rpm.c
> +++ b/drivers/clk/qcom/clk-rpm.c
> @@ -543,10 +543,45 @@ static const struct rpm_clk_desc rpm_clk_apq8064 = {
> .num_clks = ARRAY_SIZE(apq8064_clks),
> };
>
> +/* ipq806x */
> +DEFINE_CLK_RPM(ipq806x, afab_clk, afab_a_clk, QCOM_RPM_APPS_FABRIC_CLK);
> +DEFINE_CLK_RPM(ipq806x, cfpb_clk, cfpb_a_clk, QCOM_RPM_CFPB_CLK);
> +DEFINE_CLK_RPM(ipq806x, daytona_clk, daytona_a_clk, QCOM_RPM_DAYTONA_FABRIC_CLK);
> +DEFINE_CLK_RPM(ipq806x, ebi1_clk, ebi1_a_clk, QCOM_RPM_EBI1_CLK);
> +DEFINE_CLK_RPM(ipq806x, sfab_clk, sfab_a_clk, QCOM_RPM_SYS_FABRIC_CLK);
> +DEFINE_CLK_RPM(ipq806x, sfpb_clk, sfpb_a_clk, QCOM_RPM_SFPB_CLK);
> +DEFINE_CLK_RPM(ipq806x, nss_fabric_0_clk, nss_fabric_0_a_clk, QCOM_RPM_NSS_FABRIC_0_CLK);
> +DEFINE_CLK_RPM(ipq806x, nss_fabric_1_clk, nss_fabric_1_a_clk, QCOM_RPM_NSS_FABRIC_1_CLK);
> +
> +static struct clk_rpm *ipq806x_clks[] = {
> + [RPM_APPS_FABRIC_CLK] = &ipq806x_afab_clk,
> + [RPM_APPS_FABRIC_A_CLK] = &ipq806x_afab_a_clk,
> + [RPM_CFPB_CLK] = &ipq806x_cfpb_clk,
> + [RPM_CFPB_A_CLK] = &ipq806x_cfpb_a_clk,
> + [RPM_DAYTONA_FABRIC_CLK] = &ipq806x_daytona_clk,
> + [RPM_DAYTONA_FABRIC_A_CLK] = &ipq806x_daytona_a_clk,
> + [RPM_EBI1_CLK] = &ipq806x_ebi1_clk,
> + [RPM_EBI1_A_CLK] = &ipq806x_ebi1_a_clk,
> + [RPM_SYS_FABRIC_CLK] = &ipq806x_sfab_clk,
> + [RPM_SYS_FABRIC_A_CLK] = &ipq806x_sfab_a_clk,
> + [RPM_SFPB_CLK] = &ipq806x_sfpb_clk,
> + [RPM_SFPB_A_CLK] = &ipq806x_sfpb_a_clk,
> + [RPM_NSS_FABRIC_0_CLK] = &ipq806x_nss_fabric_0_clk,
> + [RPM_NSS_FABRIC_0_A_CLK] = &ipq806x_nss_fabric_0_a_clk,
> + [RPM_NSS_FABRIC_1_CLK] = &ipq806x_nss_fabric_1_clk,
> + [RPM_NSS_FABRIC_1_A_CLK] = &ipq806x_nss_fabric_1_a_clk,
> +};
> +
> +static const struct rpm_clk_desc rpm_clk_ipq806x = {
> + .clks = ipq806x_clks,
> + .num_clks = ARRAY_SIZE(ipq806x_clks),
> +};
> +
> static const struct of_device_id rpm_clk_match_table[] = {
> { .compatible = "qcom,rpmcc-msm8660", .data = &rpm_clk_msm8660 },
> { .compatible = "qcom,rpmcc-apq8060", .data = &rpm_clk_msm8660 },
> { .compatible = "qcom,rpmcc-apq8064", .data = &rpm_clk_apq8064 },
> + { .compatible = "qcom,rpmcc-ipq806x", .data = &rpm_clk_ipq806x },
> { }
> };
> MODULE_DEVICE_TABLE(of, rpm_clk_match_table);
> diff --git a/include/dt-bindings/clock/qcom,rpmcc.h b/include/dt-bindings/clock/qcom,rpmcc.h
> index 8e3095720552..ae74c43c485d 100644
> --- a/include/dt-bindings/clock/qcom,rpmcc.h
> +++ b/include/dt-bindings/clock/qcom,rpmcc.h
> @@ -37,6 +37,10 @@
> #define RPM_XO_A0 27
> #define RPM_XO_A1 28
> #define RPM_XO_A2 29
> +#define RPM_NSS_FABRIC_0_CLK 30
> +#define RPM_NSS_FABRIC_0_A_CLK 31
> +#define RPM_NSS_FABRIC_1_CLK 32
> +#define RPM_NSS_FABRIC_1_A_CLK 33
>
> /* SMD RPM clocks */
> #define RPM_SMD_XO_CLK_SRC 0
>
next prev parent reply other threads:[~2020-02-19 18:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-19 18:52 [PATCH] clk: qcom: clk-rpm: add missing rpm clk for ipq806x Ansuel Smith
2020-02-19 18:58 ` John Crispin [this message]
2020-02-26 15:40 ` Rob Herring
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=3c2bdeaf-c54b-142b-367e-6573de700803@phrozen.org \
--to=john@phrozen.org \
--cc=agross@kernel.org \
--cc=ansuelsmth@gmail.com \
--cc=bjorn.andersson@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mturquette@baylibre.com \
--cc=robh+dt@kernel.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox