linux-samsung-soc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: ata: drop unused Exynos SATA bindings
@ 2021-08-11  8:38 Krzysztof Kozlowski
  2021-08-11  8:38 ` [PATCH 2/2] ARM: dts: exynos: drop undocumented samsung,sata-freq property in Exynos5250 Krzysztof Kozlowski
  2021-08-17 21:11 ` [PATCH 1/2] dt-bindings: ata: drop unused Exynos SATA bindings Rob Herring
  0 siblings, 2 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2021-08-11  8:38 UTC (permalink / raw)
  To: Jens Axboe, Rob Herring, Krzysztof Kozlowski, linux-ide,
	devicetree, linux-arm-kernel, linux-samsung-soc, linux-kernel

The Samsung Exynos SoC SATA bindings are not implemented in the kernel,
not used and superseded by generic
Documentation/devicetree/bindings/ata/ahci-platform.txt bindings.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 .../devicetree/bindings/ata/exynos-sata.txt   | 30 -------------------
 1 file changed, 30 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/ata/exynos-sata.txt

diff --git a/Documentation/devicetree/bindings/ata/exynos-sata.txt b/Documentation/devicetree/bindings/ata/exynos-sata.txt
deleted file mode 100644
index cb48448247ea..000000000000
--- a/Documentation/devicetree/bindings/ata/exynos-sata.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-* Samsung AHCI SATA Controller
-
-SATA nodes are defined to describe on-chip Serial ATA controllers.
-Each SATA controller should have its own node.
-
-Required properties:
-- compatible		: compatible list, contains "samsung,exynos5-sata"
-- interrupts		: <interrupt mapping for SATA IRQ>
-- reg			: <registers mapping>
-- samsung,sata-freq	: <frequency in MHz>
-- phys			: Must contain exactly one entry as specified
-			  in phy-bindings.txt
-- phy-names		: Must be "sata-phy"
-
-Optional properties:
-- clocks		: Must contain an entry for each entry in clock-names.
-- clock-names		: Shall be "sata" for the external SATA bus clock,
-			  and "sclk_sata" for the internal controller clock.
-
-Example:
-	sata@122f0000 {
-		compatible = "snps,dwc-ahci";
-		samsung,sata-freq = <66>;
-		reg = <0x122f0000 0x1ff>;
-		interrupts = <0 115 0>;
-		clocks = <&clock 277>, <&clock 143>;
-		clock-names = "sata", "sclk_sata";
-		phys = <&sata_phy>;
-		phy-names = "sata-phy";
-	};
-- 
2.30.2


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

* [PATCH 2/2] ARM: dts: exynos: drop undocumented samsung,sata-freq property in Exynos5250
  2021-08-11  8:38 [PATCH 1/2] dt-bindings: ata: drop unused Exynos SATA bindings Krzysztof Kozlowski
@ 2021-08-11  8:38 ` Krzysztof Kozlowski
  2021-09-15  7:50   ` (subset) " Krzysztof Kozlowski
  2021-08-17 21:11 ` [PATCH 1/2] dt-bindings: ata: drop unused Exynos SATA bindings Rob Herring
  1 sibling, 1 reply; 4+ messages in thread
From: Krzysztof Kozlowski @ 2021-08-11  8:38 UTC (permalink / raw)
  To: Jens Axboe, Rob Herring, Krzysztof Kozlowski, linux-ide,
	devicetree, linux-arm-kernel, linux-samsung-soc, linux-kernel

The samsung,sata-freq property is not used (and not documented by
generic AHCI platform bindings), so can be safely dropped.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 arch/arm/boot/dts/exynos5250.dtsi | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts/exynos5250.dtsi
index 2ea2caaca4e2..c8c41657988b 100644
--- a/arch/arm/boot/dts/exynos5250.dtsi
+++ b/arch/arm/boot/dts/exynos5250.dtsi
@@ -375,7 +375,6 @@ tmu: tmu@10060000 {
 
 		sata: sata@122f0000 {
 			compatible = "snps,dwc-ahci";
-			samsung,sata-freq = <66>;
 			reg = <0x122F0000 0x1ff>;
 			interrupts = <GIC_SPI 115 IRQ_TYPE_LEVEL_HIGH>;
 			clocks = <&clock CLK_SATA>, <&clock CLK_SCLK_SATA>;
-- 
2.30.2


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

* Re: [PATCH 1/2] dt-bindings: ata: drop unused Exynos SATA bindings
  2021-08-11  8:38 [PATCH 1/2] dt-bindings: ata: drop unused Exynos SATA bindings Krzysztof Kozlowski
  2021-08-11  8:38 ` [PATCH 2/2] ARM: dts: exynos: drop undocumented samsung,sata-freq property in Exynos5250 Krzysztof Kozlowski
@ 2021-08-17 21:11 ` Rob Herring
  1 sibling, 0 replies; 4+ messages in thread
From: Rob Herring @ 2021-08-17 21:11 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: linux-samsung-soc, devicetree, Jens Axboe, linux-arm-kernel,
	linux-kernel, Rob Herring, linux-ide

On Wed, 11 Aug 2021 10:38:58 +0200, Krzysztof Kozlowski wrote:
> The Samsung Exynos SoC SATA bindings are not implemented in the kernel,
> not used and superseded by generic
> Documentation/devicetree/bindings/ata/ahci-platform.txt bindings.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
> ---
>  .../devicetree/bindings/ata/exynos-sata.txt   | 30 -------------------
>  1 file changed, 30 deletions(-)
>  delete mode 100644 Documentation/devicetree/bindings/ata/exynos-sata.txt
> 

Applied, thanks!

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

* Re: (subset) [PATCH 2/2] ARM: dts: exynos: drop undocumented samsung,sata-freq property in Exynos5250
  2021-08-11  8:38 ` [PATCH 2/2] ARM: dts: exynos: drop undocumented samsung,sata-freq property in Exynos5250 Krzysztof Kozlowski
@ 2021-09-15  7:50   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2021-09-15  7:50 UTC (permalink / raw)
  To: linux-samsung-soc, Rob Herring, Jens Axboe, Krzysztof Kozlowski,
	devicetree, linux-arm-kernel, linux-ide, linux-kernel

On Wed, 11 Aug 2021 10:38:59 +0200, Krzysztof Kozlowski wrote:
> The samsung,sata-freq property is not used (and not documented by
> generic AHCI platform bindings), so can be safely dropped.
> 
> 

Applied, thanks!

[2/2] ARM: dts: exynos: drop undocumented samsung,sata-freq property in Exynos5250
      commit: 06cf9e0b1aae8ff4f4cee39126a415b2b173b986

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

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

end of thread, other threads:[~2021-09-15  7:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-11  8:38 [PATCH 1/2] dt-bindings: ata: drop unused Exynos SATA bindings Krzysztof Kozlowski
2021-08-11  8:38 ` [PATCH 2/2] ARM: dts: exynos: drop undocumented samsung,sata-freq property in Exynos5250 Krzysztof Kozlowski
2021-09-15  7:50   ` (subset) " Krzysztof Kozlowski
2021-08-17 21:11 ` [PATCH 1/2] dt-bindings: ata: drop unused Exynos SATA bindings Rob Herring

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