All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] ARM64: zynqmp: Fix i2c node's compatible string
@ 2016-12-22 17:19 ` mdf
  0 siblings, 0 replies; 8+ messages in thread
From: mdf at kernel.org @ 2016-12-22 17:19 UTC (permalink / raw)
  To: linux-arm-kernel

From: Moritz Fischer <mdf@kernel.org>

The Zynq Ultrascale MP uses version 1.4 of the Cadence IP core
which fixes some silicon bugs that needed software workarounds
in Version 1.0 that was used on Zynq systems.

Signed-off-by: Moritz Fischer <mdf@kernel.org>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: S?ren Brinkmann <soren.brinkmann@xilinx.com>
Cc: Rob Herring <robh+dt@kernel.org>
---
Changes from v1:

- Added fall through case to cdns,i2c-r1p10

Cheers,

Moritz

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

diff --git a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi b/arch/arm64/boot/dts/xilinx/zynqmp.dtsi
index 68a90833..ee86d02 100644
--- a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi
+++ b/arch/arm64/boot/dts/xilinx/zynqmp.dtsi
@@ -175,7 +175,7 @@
 		};
 
 		i2c0: i2c at ff020000 {
-			compatible = "cdns,i2c-r1p10";
+			compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
 			status = "disabled";
 			interrupt-parent = <&gic>;
 			interrupts = <0 17 4>;
@@ -185,7 +185,7 @@
 		};
 
 		i2c1: i2c at ff030000 {
-			compatible = "cdns,i2c-r1p10";
+			compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
 			status = "disabled";
 			interrupt-parent = <&gic>;
 			interrupts = <0 18 4>;
-- 
2.7.4

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

* [PATCH v2] ARM64: zynqmp: Fix i2c node's compatible string
@ 2016-12-22 17:19 ` mdf
  0 siblings, 0 replies; 8+ messages in thread
From: mdf @ 2016-12-22 17:19 UTC (permalink / raw)
  To: devicetree
  Cc: linux-kernel, linux-arm-kernel, Moritz Fischer, Michal Simek,
	Sören Brinkmann, Rob Herring

From: Moritz Fischer <mdf@kernel.org>

The Zynq Ultrascale MP uses version 1.4 of the Cadence IP core
which fixes some silicon bugs that needed software workarounds
in Version 1.0 that was used on Zynq systems.

Signed-off-by: Moritz Fischer <mdf@kernel.org>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: Sören Brinkmann <soren.brinkmann@xilinx.com>
Cc: Rob Herring <robh+dt@kernel.org>
---
Changes from v1:

- Added fall through case to cdns,i2c-r1p10

Cheers,

Moritz

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

diff --git a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi b/arch/arm64/boot/dts/xilinx/zynqmp.dtsi
index 68a90833..ee86d02 100644
--- a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi
+++ b/arch/arm64/boot/dts/xilinx/zynqmp.dtsi
@@ -175,7 +175,7 @@
 		};
 
 		i2c0: i2c@ff020000 {
-			compatible = "cdns,i2c-r1p10";
+			compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
 			status = "disabled";
 			interrupt-parent = <&gic>;
 			interrupts = <0 17 4>;
@@ -185,7 +185,7 @@
 		};
 
 		i2c1: i2c@ff030000 {
-			compatible = "cdns,i2c-r1p10";
+			compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
 			status = "disabled";
 			interrupt-parent = <&gic>;
 			interrupts = <0 18 4>;
-- 
2.7.4

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

* [PATCH v2] ARM64: zynqmp: Fix i2c node's compatible string
  2016-12-22 17:19 ` mdf
  (?)
@ 2016-12-22 17:27   ` Sören Brinkmann
  -1 siblings, 0 replies; 8+ messages in thread
From: Sören Brinkmann @ 2016-12-22 17:27 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, 2016-12-22 at 09:19:25 -0800, mdf at kernel.org wrote:
> From: Moritz Fischer <mdf@kernel.org>
> 
> The Zynq Ultrascale MP uses version 1.4 of the Cadence IP core
> which fixes some silicon bugs that needed software workarounds
> in Version 1.0 that was used on Zynq systems.
> 
> Signed-off-by: Moritz Fischer <mdf@kernel.org>
> Cc: Michal Simek <michal.simek@xilinx.com>
> Cc: S?ren Brinkmann <soren.brinkmann@xilinx.com>
> Cc: Rob Herring <robh+dt@kernel.org>
Acked-by: S?ren Brinkmann <soren.brinkmann@xilinx.com>

	S?ren

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

* Re: [PATCH v2] ARM64: zynqmp: Fix i2c node's compatible string
@ 2016-12-22 17:27   ` Sören Brinkmann
  0 siblings, 0 replies; 8+ messages in thread
From: Sören Brinkmann @ 2016-12-22 17:27 UTC (permalink / raw)
  To: mdf; +Cc: devicetree, Rob Herring, linux-kernel, linux-arm-kernel,
	Michal Simek

On Thu, 2016-12-22 at 09:19:25 -0800, mdf@kernel.org wrote:
> From: Moritz Fischer <mdf@kernel.org>
> 
> The Zynq Ultrascale MP uses version 1.4 of the Cadence IP core
> which fixes some silicon bugs that needed software workarounds
> in Version 1.0 that was used on Zynq systems.
> 
> Signed-off-by: Moritz Fischer <mdf@kernel.org>
> Cc: Michal Simek <michal.simek@xilinx.com>
> Cc: Sören Brinkmann <soren.brinkmann@xilinx.com>
> Cc: Rob Herring <robh+dt@kernel.org>
Acked-by: Sören Brinkmann <soren.brinkmann@xilinx.com>

	Sören

_______________________________________________
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] 8+ messages in thread

* Re: [PATCH v2] ARM64: zynqmp: Fix i2c node's compatible string
@ 2016-12-22 17:27   ` Sören Brinkmann
  0 siblings, 0 replies; 8+ messages in thread
From: Sören Brinkmann @ 2016-12-22 17:27 UTC (permalink / raw)
  To: mdf; +Cc: devicetree, linux-kernel, linux-arm-kernel, Michal Simek,
	Rob Herring

On Thu, 2016-12-22 at 09:19:25 -0800, mdf@kernel.org wrote:
> From: Moritz Fischer <mdf@kernel.org>
> 
> The Zynq Ultrascale MP uses version 1.4 of the Cadence IP core
> which fixes some silicon bugs that needed software workarounds
> in Version 1.0 that was used on Zynq systems.
> 
> Signed-off-by: Moritz Fischer <mdf@kernel.org>
> Cc: Michal Simek <michal.simek@xilinx.com>
> Cc: Sören Brinkmann <soren.brinkmann@xilinx.com>
> Cc: Rob Herring <robh+dt@kernel.org>
Acked-by: Sören Brinkmann <soren.brinkmann@xilinx.com>

	Sören

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

* [PATCH v2] ARM64: zynqmp: Fix i2c node's compatible string
@ 2017-01-02 13:35     ` Michal Simek
  0 siblings, 0 replies; 8+ messages in thread
From: Michal Simek @ 2017-01-02 13:35 UTC (permalink / raw)
  To: linux-arm-kernel

On 22.12.2016 18:27, S?ren Brinkmann wrote:
> On Thu, 2016-12-22 at 09:19:25 -0800, mdf at kernel.org wrote:
>> From: Moritz Fischer <mdf@kernel.org>
>>
>> The Zynq Ultrascale MP uses version 1.4 of the Cadence IP core
>> which fixes some silicon bugs that needed software workarounds
>> in Version 1.0 that was used on Zynq systems.
>>
>> Signed-off-by: Moritz Fischer <mdf@kernel.org>
>> Cc: Michal Simek <michal.simek@xilinx.com>
>> Cc: S?ren Brinkmann <soren.brinkmann@xilinx.com>
>> Cc: Rob Herring <robh+dt@kernel.org>
> Acked-by: S?ren Brinkmann <soren.brinkmann@xilinx.com>
> 
> 	S?ren
> 

Applied and send as the part of PR to arm-soc guys.

Thanks,
Michal

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

* Re: [PATCH v2] ARM64: zynqmp: Fix i2c node's compatible string
@ 2017-01-02 13:35     ` Michal Simek
  0 siblings, 0 replies; 8+ messages in thread
From: Michal Simek @ 2017-01-02 13:35 UTC (permalink / raw)
  To: Sören Brinkmann, mdf-DgEjT+Ai2ygdnm+yROfE0A
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Michal Simek,
	Rob Herring

On 22.12.2016 18:27, Sören Brinkmann wrote:
> On Thu, 2016-12-22 at 09:19:25 -0800, mdf-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org wrote:
>> From: Moritz Fischer <mdf-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
>>
>> The Zynq Ultrascale MP uses version 1.4 of the Cadence IP core
>> which fixes some silicon bugs that needed software workarounds
>> in Version 1.0 that was used on Zynq systems.
>>
>> Signed-off-by: Moritz Fischer <mdf-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
>> Cc: Michal Simek <michal.simek-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
>> Cc: Sören Brinkmann <soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
>> Cc: Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
> Acked-by: Sören Brinkmann <soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
> 
> 	Sören
> 

Applied and send as the part of PR to arm-soc guys.

Thanks,
Michal
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH v2] ARM64: zynqmp: Fix i2c node's compatible string
@ 2017-01-02 13:35     ` Michal Simek
  0 siblings, 0 replies; 8+ messages in thread
From: Michal Simek @ 2017-01-02 13:35 UTC (permalink / raw)
  To: Sören Brinkmann, mdf
  Cc: devicetree, linux-kernel, linux-arm-kernel, Michal Simek,
	Rob Herring

On 22.12.2016 18:27, Sören Brinkmann wrote:
> On Thu, 2016-12-22 at 09:19:25 -0800, mdf@kernel.org wrote:
>> From: Moritz Fischer <mdf@kernel.org>
>>
>> The Zynq Ultrascale MP uses version 1.4 of the Cadence IP core
>> which fixes some silicon bugs that needed software workarounds
>> in Version 1.0 that was used on Zynq systems.
>>
>> Signed-off-by: Moritz Fischer <mdf@kernel.org>
>> Cc: Michal Simek <michal.simek@xilinx.com>
>> Cc: Sören Brinkmann <soren.brinkmann@xilinx.com>
>> Cc: Rob Herring <robh+dt@kernel.org>
> Acked-by: Sören Brinkmann <soren.brinkmann@xilinx.com>
> 
> 	Sören
> 

Applied and send as the part of PR to arm-soc guys.

Thanks,
Michal

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

end of thread, other threads:[~2017-01-02 13:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-22 17:19 [PATCH v2] ARM64: zynqmp: Fix i2c node's compatible string mdf at kernel.org
2016-12-22 17:19 ` mdf
2016-12-22 17:27 ` Sören Brinkmann
2016-12-22 17:27   ` Sören Brinkmann
2016-12-22 17:27   ` Sören Brinkmann
2017-01-02 13:35   ` Michal Simek
2017-01-02 13:35     ` Michal Simek
2017-01-02 13:35     ` Michal Simek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.