linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 0/2] meson: saradc: drop the sana clock
@ 2017-11-16  9:01 Yixun Lan
  2017-11-16  9:01 ` [PATCH v5 1/2] ARM64: dts: meson: drop "sana" clock from SAR ADC Yixun Lan
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Yixun Lan @ 2017-11-16  9:01 UTC (permalink / raw)
  To: linux-arm-kernel

This is a rework for the patch [v4 4/4] of previous series,
which mean this will make the patch [1] obsolete.

Changes since v4:
 * separate DTS for ARM(32bit) vs ARM64
 * add ACK from Martin

[1] [PATCH v4 4/4] ARM64: dts: meson: drop "sana" clock from SAR ADC
http://lists.infradead.org/pipermail/linux-amlogic/2017-November/005266.html

Xingyu Chen (2):
  ARM64: dts: meson: drop "sana" clock from SAR ADC
  ARM: dts: meson: drop "sana" clock from SAR ADC

 arch/arm/boot/dts/meson8.dtsi               | 5 ++---
 arch/arm/boot/dts/meson8b.dtsi              | 5 ++---
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 3 +--
 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi  | 3 +--
 4 files changed, 6 insertions(+), 10 deletions(-)

-- 
2.14.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v5 1/2] ARM64: dts: meson: drop "sana" clock from SAR ADC
  2017-11-16  9:01 [PATCH v5 0/2] meson: saradc: drop the sana clock Yixun Lan
@ 2017-11-16  9:01 ` Yixun Lan
  2017-11-16  9:01 ` [PATCH v5 2/2] ARM: " Yixun Lan
  2017-12-06 19:52 ` [PATCH v5 0/2] meson: saradc: drop the sana clock Kevin Hilman
  2 siblings, 0 replies; 4+ messages in thread
From: Yixun Lan @ 2017-11-16  9:01 UTC (permalink / raw)
  To: linux-arm-kernel

From: Xingyu Chen <xingyu.chen@amlogic.com>

The SAR ADC modules doesn't require The "sana" clock.

Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Singed-off-by: Xingyu Chen <xingyu.chen@amlogic.com>
Signed-off-by: Yixun Lan <yixun.lan@amlogic.com>
---
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 3 +--
 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi  | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
index af834cdbba79..b77f2593cdc3 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
@@ -686,10 +686,9 @@
 	compatible = "amlogic,meson-gxbb-saradc", "amlogic,meson-saradc";
 	clocks = <&xtal>,
 		 <&clkc CLKID_SAR_ADC>,
-		 <&clkc CLKID_SANA>,
 		 <&clkc CLKID_SAR_ADC_CLK>,
 		 <&clkc CLKID_SAR_ADC_SEL>;
-	clock-names = "clkin", "core", "sana", "adc_clk", "adc_sel";
+	clock-names = "clkin", "core", "adc_clk", "adc_sel";
 };
 
 &sd_emmc_a {
diff --git a/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
index d8dd3298b15c..07805a3b4db0 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
@@ -628,10 +628,9 @@
 	compatible = "amlogic,meson-gxl-saradc", "amlogic,meson-saradc";
 	clocks = <&xtal>,
 		 <&clkc CLKID_SAR_ADC>,
-		 <&clkc CLKID_SANA>,
 		 <&clkc CLKID_SAR_ADC_CLK>,
 		 <&clkc CLKID_SAR_ADC_SEL>;
-	clock-names = "clkin", "core", "sana", "adc_clk", "adc_sel";
+	clock-names = "clkin", "core", "adc_clk", "adc_sel";
 };
 
 &sd_emmc_a {
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH v5 2/2] ARM: dts: meson: drop "sana" clock from SAR ADC
  2017-11-16  9:01 [PATCH v5 0/2] meson: saradc: drop the sana clock Yixun Lan
  2017-11-16  9:01 ` [PATCH v5 1/2] ARM64: dts: meson: drop "sana" clock from SAR ADC Yixun Lan
@ 2017-11-16  9:01 ` Yixun Lan
  2017-12-06 19:52 ` [PATCH v5 0/2] meson: saradc: drop the sana clock Kevin Hilman
  2 siblings, 0 replies; 4+ messages in thread
From: Yixun Lan @ 2017-11-16  9:01 UTC (permalink / raw)
  To: linux-arm-kernel

From: Xingyu Chen <xingyu.chen@amlogic.com>

The SAR ADC modules doesn't require The "sana" clock.

Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Xingyu Chen <xingyu.chen@amlogic.com>
Signed-off-by: Yixun Lan <yixun.lan@amlogic.com>
---
 arch/arm/boot/dts/meson8.dtsi  | 5 ++---
 arch/arm/boot/dts/meson8b.dtsi | 5 ++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/arch/arm/boot/dts/meson8.dtsi b/arch/arm/boot/dts/meson8.dtsi
index b98d44fde6b6..f93d6cf6e094 100644
--- a/arch/arm/boot/dts/meson8.dtsi
+++ b/arch/arm/boot/dts/meson8.dtsi
@@ -289,9 +289,8 @@
 &saradc {
 	compatible = "amlogic,meson8-saradc", "amlogic,meson-saradc";
 	clocks = <&clkc CLKID_XTAL>,
-		<&clkc CLKID_SAR_ADC>,
-		<&clkc CLKID_SANA>;
-	clock-names = "clkin", "core", "sana";
+		<&clkc CLKID_SAR_ADC>;
+	clock-names = "clkin", "core";
 };
 
 &spifc {
diff --git a/arch/arm/boot/dts/meson8b.dtsi b/arch/arm/boot/dts/meson8b.dtsi
index bc278da7df0d..4aa444284f0c 100644
--- a/arch/arm/boot/dts/meson8b.dtsi
+++ b/arch/arm/boot/dts/meson8b.dtsi
@@ -185,9 +185,8 @@
 &saradc {
 	compatible = "amlogic,meson8b-saradc", "amlogic,meson-saradc";
 	clocks = <&clkc CLKID_XTAL>,
-		<&clkc CLKID_SAR_ADC>,
-		<&clkc CLKID_SANA>;
-	clock-names = "clkin", "core", "sana";
+		<&clkc CLKID_SAR_ADC>;
+	clock-names = "clkin", "core";
 };
 
 &uart_AO {
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH v5 0/2] meson: saradc: drop the sana clock
  2017-11-16  9:01 [PATCH v5 0/2] meson: saradc: drop the sana clock Yixun Lan
  2017-11-16  9:01 ` [PATCH v5 1/2] ARM64: dts: meson: drop "sana" clock from SAR ADC Yixun Lan
  2017-11-16  9:01 ` [PATCH v5 2/2] ARM: " Yixun Lan
@ 2017-12-06 19:52 ` Kevin Hilman
  2 siblings, 0 replies; 4+ messages in thread
From: Kevin Hilman @ 2017-12-06 19:52 UTC (permalink / raw)
  To: linux-arm-kernel

Yixun Lan <yixun.lan@amlogic.com> writes:

> This is a rework for the patch [v4 4/4] of previous series,
> which mean this will make the patch [1] obsolete.
>
> Changes since v4:
>  * separate DTS for ARM(32bit) vs ARM64
>  * add ACK from Martin

Thanks for splitting it up.

> [1] [PATCH v4 4/4] ARM64: dts: meson: drop "sana" clock from SAR ADC
> http://lists.infradead.org/pipermail/linux-amlogic/2017-November/005266.html
>
> Xingyu Chen (2):
>   ARM64: dts: meson: drop "sana" clock from SAR ADC

Applied to v4.16/dt64

>   ARM: dts: meson: drop "sana" clock from SAR ADC

Applied to v4.16/dt

Thanks,

Kevin

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-12-06 19:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-16  9:01 [PATCH v5 0/2] meson: saradc: drop the sana clock Yixun Lan
2017-11-16  9:01 ` [PATCH v5 1/2] ARM64: dts: meson: drop "sana" clock from SAR ADC Yixun Lan
2017-11-16  9:01 ` [PATCH v5 2/2] ARM: " Yixun Lan
2017-12-06 19:52 ` [PATCH v5 0/2] meson: saradc: drop the sana clock Kevin Hilman

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).