* [PATCH 1/2] clk: mediatek: remove deprecated CLK_INFRA_CA57SEL for MT8173 SoC
@ 2021-03-26 3:12 Seiya Wang
2021-03-26 3:12 ` [PATCH 2/2] dt-bindings: cpufreq: update cpu type and clock name " Seiya Wang
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Seiya Wang @ 2021-03-26 3:12 UTC (permalink / raw)
To: Rafael J . Wysocki, Viresh Kumar, Rob Herring, Matthias Brugger
Cc: Seiya Wang, linux-pm, devicetree, linux-kernel, linux-arm-kernel,
linux-mediatek, srv_heupstream
Remove CLK_INFRA_CA57SEL for MT8173 since it's no longer used.
Signed-off-by: Seiya Wang <seiya.wang@mediatek.com>
---
include/dt-bindings/clock/mt8173-clk.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/include/dt-bindings/clock/mt8173-clk.h b/include/dt-bindings/clock/mt8173-clk.h
index 3acebe937bfc..3d00c98b9654 100644
--- a/include/dt-bindings/clock/mt8173-clk.h
+++ b/include/dt-bindings/clock/mt8173-clk.h
@@ -186,7 +186,6 @@
#define CLK_INFRA_PMICWRAP 11
#define CLK_INFRA_CLK_13M 12
#define CLK_INFRA_CA53SEL 13
-#define CLK_INFRA_CA57SEL 14 /* Deprecated. Don't use it. */
#define CLK_INFRA_CA72SEL 14
#define CLK_INFRA_NR_CLK 15
--
2.14.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 2/2] dt-bindings: cpufreq: update cpu type and clock name for MT8173 SoC 2021-03-26 3:12 [PATCH 1/2] clk: mediatek: remove deprecated CLK_INFRA_CA57SEL for MT8173 SoC Seiya Wang @ 2021-03-26 3:12 ` Seiya Wang 2021-03-26 5:27 ` Viresh Kumar ` (2 more replies) 2021-03-27 17:57 ` [PATCH 1/2] clk: mediatek: remove deprecated CLK_INFRA_CA57SEL " Rob Herring 2021-03-29 11:29 ` Matthias Brugger 2 siblings, 3 replies; 7+ messages in thread From: Seiya Wang @ 2021-03-26 3:12 UTC (permalink / raw) To: Rafael J . Wysocki, Viresh Kumar, Rob Herring, Matthias Brugger Cc: Seiya Wang, linux-pm, devicetree, linux-kernel, linux-arm-kernel, linux-mediatek, srv_heupstream Update the cpu type of cpu2 and cpu3 since MT8173 used Cortex-a72. Signed-off-by: Seiya Wang <seiya.wang@mediatek.com> --- Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt b/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt index ea4994b35207..ef68711716fb 100644 --- a/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt +++ b/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt @@ -202,11 +202,11 @@ Example 2 (MT8173 SoC): cpu2: cpu@100 { device_type = "cpu"; - compatible = "arm,cortex-a57"; + compatible = "arm,cortex-a72"; reg = <0x100>; enable-method = "psci"; cpu-idle-states = <&CPU_SLEEP_0>; - clocks = <&infracfg CLK_INFRA_CA57SEL>, + clocks = <&infracfg CLK_INFRA_CA72SEL>, <&apmixedsys CLK_APMIXED_MAINPLL>; clock-names = "cpu", "intermediate"; operating-points-v2 = <&cpu_opp_table_b>; @@ -214,11 +214,11 @@ Example 2 (MT8173 SoC): cpu3: cpu@101 { device_type = "cpu"; - compatible = "arm,cortex-a57"; + compatible = "arm,cortex-a72"; reg = <0x101>; enable-method = "psci"; cpu-idle-states = <&CPU_SLEEP_0>; - clocks = <&infracfg CLK_INFRA_CA57SEL>, + clocks = <&infracfg CLK_INFRA_CA72SEL>, <&apmixedsys CLK_APMIXED_MAINPLL>; clock-names = "cpu", "intermediate"; operating-points-v2 = <&cpu_opp_table_b>; -- 2.14.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] dt-bindings: cpufreq: update cpu type and clock name for MT8173 SoC 2021-03-26 3:12 ` [PATCH 2/2] dt-bindings: cpufreq: update cpu type and clock name " Seiya Wang @ 2021-03-26 5:27 ` Viresh Kumar 2021-03-27 17:58 ` Rob Herring 2021-03-29 11:29 ` Matthias Brugger 2 siblings, 0 replies; 7+ messages in thread From: Viresh Kumar @ 2021-03-26 5:27 UTC (permalink / raw) To: Seiya Wang Cc: Rafael J . Wysocki, Rob Herring, Matthias Brugger, linux-pm, devicetree, linux-kernel, linux-arm-kernel, linux-mediatek, srv_heupstream On 26-03-21, 11:12, Seiya Wang wrote: > Update the cpu type of cpu2 and cpu3 since MT8173 used Cortex-a72. > > Signed-off-by: Seiya Wang <seiya.wang@mediatek.com> > --- > Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt b/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt > index ea4994b35207..ef68711716fb 100644 > --- a/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt > +++ b/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt > @@ -202,11 +202,11 @@ Example 2 (MT8173 SoC): > > cpu2: cpu@100 { > device_type = "cpu"; > - compatible = "arm,cortex-a57"; > + compatible = "arm,cortex-a72"; > reg = <0x100>; > enable-method = "psci"; > cpu-idle-states = <&CPU_SLEEP_0>; > - clocks = <&infracfg CLK_INFRA_CA57SEL>, > + clocks = <&infracfg CLK_INFRA_CA72SEL>, > <&apmixedsys CLK_APMIXED_MAINPLL>; > clock-names = "cpu", "intermediate"; > operating-points-v2 = <&cpu_opp_table_b>; > @@ -214,11 +214,11 @@ Example 2 (MT8173 SoC): > > cpu3: cpu@101 { > device_type = "cpu"; > - compatible = "arm,cortex-a57"; > + compatible = "arm,cortex-a72"; > reg = <0x101>; > enable-method = "psci"; > cpu-idle-states = <&CPU_SLEEP_0>; > - clocks = <&infracfg CLK_INFRA_CA57SEL>, > + clocks = <&infracfg CLK_INFRA_CA72SEL>, > <&apmixedsys CLK_APMIXED_MAINPLL>; > clock-names = "cpu", "intermediate"; > operating-points-v2 = <&cpu_opp_table_b>; Acked-by: Viresh Kumar <viresh.kumar@linaro.org> -- viresh _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] dt-bindings: cpufreq: update cpu type and clock name for MT8173 SoC 2021-03-26 3:12 ` [PATCH 2/2] dt-bindings: cpufreq: update cpu type and clock name " Seiya Wang 2021-03-26 5:27 ` Viresh Kumar @ 2021-03-27 17:58 ` Rob Herring 2021-03-29 11:29 ` Matthias Brugger 2 siblings, 0 replies; 7+ messages in thread From: Rob Herring @ 2021-03-27 17:58 UTC (permalink / raw) To: Seiya Wang Cc: Matthias Brugger, srv_heupstream, linux-pm, linux-arm-kernel, Rafael J . Wysocki, linux-mediatek, Viresh Kumar, devicetree, linux-kernel, Rob Herring On Fri, 26 Mar 2021 11:12:27 +0800, Seiya Wang wrote: > Update the cpu type of cpu2 and cpu3 since MT8173 used Cortex-a72. > > Signed-off-by: Seiya Wang <seiya.wang@mediatek.com> > --- > Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > Acked-by: Rob Herring <robh@kernel.org> _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] dt-bindings: cpufreq: update cpu type and clock name for MT8173 SoC 2021-03-26 3:12 ` [PATCH 2/2] dt-bindings: cpufreq: update cpu type and clock name " Seiya Wang 2021-03-26 5:27 ` Viresh Kumar 2021-03-27 17:58 ` Rob Herring @ 2021-03-29 11:29 ` Matthias Brugger 2 siblings, 0 replies; 7+ messages in thread From: Matthias Brugger @ 2021-03-29 11:29 UTC (permalink / raw) To: Seiya Wang, Rafael J . Wysocki, Viresh Kumar, Rob Herring Cc: linux-pm, devicetree, linux-kernel, linux-arm-kernel, linux-mediatek, srv_heupstream On 26/03/2021 04:12, Seiya Wang wrote: > Update the cpu type of cpu2 and cpu3 since MT8173 used Cortex-a72. > > Signed-off-by: Seiya Wang <seiya.wang@mediatek.com> Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com> > --- > Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt b/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt > index ea4994b35207..ef68711716fb 100644 > --- a/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt > +++ b/Documentation/devicetree/bindings/cpufreq/cpufreq-mediatek.txt > @@ -202,11 +202,11 @@ Example 2 (MT8173 SoC): > > cpu2: cpu@100 { > device_type = "cpu"; > - compatible = "arm,cortex-a57"; > + compatible = "arm,cortex-a72"; > reg = <0x100>; > enable-method = "psci"; > cpu-idle-states = <&CPU_SLEEP_0>; > - clocks = <&infracfg CLK_INFRA_CA57SEL>, > + clocks = <&infracfg CLK_INFRA_CA72SEL>, > <&apmixedsys CLK_APMIXED_MAINPLL>; > clock-names = "cpu", "intermediate"; > operating-points-v2 = <&cpu_opp_table_b>; > @@ -214,11 +214,11 @@ Example 2 (MT8173 SoC): > > cpu3: cpu@101 { > device_type = "cpu"; > - compatible = "arm,cortex-a57"; > + compatible = "arm,cortex-a72"; > reg = <0x101>; > enable-method = "psci"; > cpu-idle-states = <&CPU_SLEEP_0>; > - clocks = <&infracfg CLK_INFRA_CA57SEL>, > + clocks = <&infracfg CLK_INFRA_CA72SEL>, > <&apmixedsys CLK_APMIXED_MAINPLL>; > clock-names = "cpu", "intermediate"; > operating-points-v2 = <&cpu_opp_table_b>; > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] clk: mediatek: remove deprecated CLK_INFRA_CA57SEL for MT8173 SoC 2021-03-26 3:12 [PATCH 1/2] clk: mediatek: remove deprecated CLK_INFRA_CA57SEL for MT8173 SoC Seiya Wang 2021-03-26 3:12 ` [PATCH 2/2] dt-bindings: cpufreq: update cpu type and clock name " Seiya Wang @ 2021-03-27 17:57 ` Rob Herring 2021-03-29 11:29 ` Matthias Brugger 2 siblings, 0 replies; 7+ messages in thread From: Rob Herring @ 2021-03-27 17:57 UTC (permalink / raw) To: Seiya Wang Cc: Rafael J . Wysocki, linux-arm-kernel, Viresh Kumar, Rob Herring, Matthias Brugger, linux-pm, srv_heupstream, linux-mediatek, linux-kernel, devicetree On Fri, 26 Mar 2021 11:12:26 +0800, Seiya Wang wrote: > Remove CLK_INFRA_CA57SEL for MT8173 since it's no longer used. > > Signed-off-by: Seiya Wang <seiya.wang@mediatek.com> > --- > include/dt-bindings/clock/mt8173-clk.h | 1 - > 1 file changed, 1 deletion(-) > Acked-by: Rob Herring <robh@kernel.org> _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] clk: mediatek: remove deprecated CLK_INFRA_CA57SEL for MT8173 SoC 2021-03-26 3:12 [PATCH 1/2] clk: mediatek: remove deprecated CLK_INFRA_CA57SEL for MT8173 SoC Seiya Wang 2021-03-26 3:12 ` [PATCH 2/2] dt-bindings: cpufreq: update cpu type and clock name " Seiya Wang 2021-03-27 17:57 ` [PATCH 1/2] clk: mediatek: remove deprecated CLK_INFRA_CA57SEL " Rob Herring @ 2021-03-29 11:29 ` Matthias Brugger 2 siblings, 0 replies; 7+ messages in thread From: Matthias Brugger @ 2021-03-29 11:29 UTC (permalink / raw) To: Seiya Wang, Rafael J . Wysocki, Viresh Kumar, Rob Herring Cc: linux-pm, devicetree, linux-kernel, linux-arm-kernel, linux-mediatek, srv_heupstream On 26/03/2021 04:12, Seiya Wang wrote: > Remove CLK_INFRA_CA57SEL for MT8173 since it's no longer used. > > Signed-off-by: Seiya Wang <seiya.wang@mediatek.com> Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com> > --- > include/dt-bindings/clock/mt8173-clk.h | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/include/dt-bindings/clock/mt8173-clk.h b/include/dt-bindings/clock/mt8173-clk.h > index 3acebe937bfc..3d00c98b9654 100644 > --- a/include/dt-bindings/clock/mt8173-clk.h > +++ b/include/dt-bindings/clock/mt8173-clk.h > @@ -186,7 +186,6 @@ > #define CLK_INFRA_PMICWRAP 11 > #define CLK_INFRA_CLK_13M 12 > #define CLK_INFRA_CA53SEL 13 > -#define CLK_INFRA_CA57SEL 14 /* Deprecated. Don't use it. */ > #define CLK_INFRA_CA72SEL 14 > #define CLK_INFRA_NR_CLK 15 > > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-03-29 19:18 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-03-26 3:12 [PATCH 1/2] clk: mediatek: remove deprecated CLK_INFRA_CA57SEL for MT8173 SoC Seiya Wang 2021-03-26 3:12 ` [PATCH 2/2] dt-bindings: cpufreq: update cpu type and clock name " Seiya Wang 2021-03-26 5:27 ` Viresh Kumar 2021-03-27 17:58 ` Rob Herring 2021-03-29 11:29 ` Matthias Brugger 2021-03-27 17:57 ` [PATCH 1/2] clk: mediatek: remove deprecated CLK_INFRA_CA57SEL " Rob Herring 2021-03-29 11:29 ` Matthias Brugger
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).