linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: ahci-fsl-qoriq: add ls1088a chip name to the list
@ 2017-06-07  6:32 Yuantian Tang
  2017-06-07  6:32 ` [PATCH 2/2 v2] arm64: dts: ls1088a: update sata node Yuantian Tang
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Yuantian Tang @ 2017-06-07  6:32 UTC (permalink / raw)
  To: shawnguo
  Cc: tj, robh+dt, mark.rutland, catalin.marinas, will.deacon,
	linux-ide, devicetree, linux-kernel, linux-arm-kernel,
	Yuantian Tang

Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
---
 Documentation/devicetree/bindings/ata/ahci-fsl-qoriq.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/ata/ahci-fsl-qoriq.txt b/Documentation/devicetree/bindings/ata/ahci-fsl-qoriq.txt
index fc33ca0..7c3ca0e 100644
--- a/Documentation/devicetree/bindings/ata/ahci-fsl-qoriq.txt
+++ b/Documentation/devicetree/bindings/ata/ahci-fsl-qoriq.txt
@@ -3,7 +3,7 @@ Binding for Freescale QorIQ AHCI SATA Controller
 Required properties:
   - reg: Physical base address and size of the controller's register area.
   - compatible: Compatibility string. Must be 'fsl,<chip>-ahci', where
-    chip could be ls1021a, ls1043a, ls1046a, ls2080a etc.
+    chip could be ls1021a, ls1043a, ls1046a, ls1088a, ls2080a etc.
   - clocks: Input clock specifier. Refer to common clock bindings.
   - interrupts: Interrupt specifier. Refer to interrupt binding.
 
-- 
2.1.0.27.g96db324

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

* [PATCH 2/2 v2] arm64: dts: ls1088a: update sata node
  2017-06-07  6:32 [PATCH 1/2] dt-bindings: ahci-fsl-qoriq: add ls1088a chip name to the list Yuantian Tang
@ 2017-06-07  6:32 ` Yuantian Tang
  2017-06-09 13:51 ` [PATCH 1/2] dt-bindings: ahci-fsl-qoriq: add ls1088a chip name to the list Rob Herring
  2017-06-14 14:43 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Yuantian Tang @ 2017-06-07  6:32 UTC (permalink / raw)
  To: shawnguo
  Cc: tj, robh+dt, mark.rutland, catalin.marinas, will.deacon,
	linux-ide, devicetree, linux-kernel, linux-arm-kernel,
	Yuantian Tang

1. Remove ls1043a compatible string from node
2. Fix the sata ecc register address error

Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
---
v2:
	- no change, resend it with binding update

 arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
index df16284..c144d06 100644
--- a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
+++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
@@ -360,9 +360,9 @@
 		};
 
 		sata: sata@3200000 {
-			compatible = "fsl,ls1088a-ahci", "fsl,ls1043a-ahci";
+			compatible = "fsl,ls1088a-ahci";
 			reg = <0x0 0x3200000 0x0 0x10000>,
-				<0x0 0x20140520 0x0 0x4>;
+				<0x7 0x100520 0x0 0x4>;
 			reg-names = "ahci", "sata-ecc";
 			interrupts = <0 133 IRQ_TYPE_LEVEL_HIGH>;
 			clocks = <&clockgen 4 3>;
-- 
2.1.0.27.g96db324

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

* Re: [PATCH 1/2] dt-bindings: ahci-fsl-qoriq: add ls1088a chip name to the list
  2017-06-07  6:32 [PATCH 1/2] dt-bindings: ahci-fsl-qoriq: add ls1088a chip name to the list Yuantian Tang
  2017-06-07  6:32 ` [PATCH 2/2 v2] arm64: dts: ls1088a: update sata node Yuantian Tang
@ 2017-06-09 13:51 ` Rob Herring
  2017-06-14 14:43 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2017-06-09 13:51 UTC (permalink / raw)
  To: Yuantian Tang
  Cc: shawnguo, tj, mark.rutland, catalin.marinas, will.deacon,
	linux-ide, devicetree, linux-kernel, linux-arm-kernel

On Wed, Jun 07, 2017 at 02:32:47PM +0800, Yuantian Tang wrote:
> Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
> ---
>  Documentation/devicetree/bindings/ata/ahci-fsl-qoriq.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Rob Herring <robh@kernel.org>

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

* Re: [PATCH 1/2] dt-bindings: ahci-fsl-qoriq: add ls1088a chip name to the list
  2017-06-07  6:32 [PATCH 1/2] dt-bindings: ahci-fsl-qoriq: add ls1088a chip name to the list Yuantian Tang
  2017-06-07  6:32 ` [PATCH 2/2 v2] arm64: dts: ls1088a: update sata node Yuantian Tang
  2017-06-09 13:51 ` [PATCH 1/2] dt-bindings: ahci-fsl-qoriq: add ls1088a chip name to the list Rob Herring
@ 2017-06-14 14:43 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2017-06-14 14:43 UTC (permalink / raw)
  To: Yuantian Tang
  Cc: tj, robh+dt, mark.rutland, catalin.marinas, will.deacon,
	linux-ide, devicetree, linux-kernel, linux-arm-kernel

On Wed, Jun 07, 2017 at 02:32:47PM +0800, Yuantian Tang wrote:
> Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
> ---
>  Documentation/devicetree/bindings/ata/ahci-fsl-qoriq.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied both, thanks.

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

end of thread, other threads:[~2017-06-14 14:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-07  6:32 [PATCH 1/2] dt-bindings: ahci-fsl-qoriq: add ls1088a chip name to the list Yuantian Tang
2017-06-07  6:32 ` [PATCH 2/2 v2] arm64: dts: ls1088a: update sata node Yuantian Tang
2017-06-09 13:51 ` [PATCH 1/2] dt-bindings: ahci-fsl-qoriq: add ls1088a chip name to the list Rob Herring
2017-06-14 14:43 ` Shawn Guo

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