All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] i2c: cdns: Add additional compatible string for r1p14 of the IP.
@ 2016-12-22 17:36 Moritz Fischer
  2016-12-22 17:36 ` [U-Boot] [PATCH 2/2] ARM64: zynqmp: Fix i2c node's compatible string Moritz Fischer
  0 siblings, 1 reply; 3+ messages in thread
From: Moritz Fischer @ 2016-12-22 17:36 UTC (permalink / raw)
  To: u-boot

Adding additional compatible string for version 1.4 of the IP block.

Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: Heiko Schocher <hs@denx.de>
---
 drivers/i2c/i2c-cdns.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/i2c/i2c-cdns.c b/drivers/i2c/i2c-cdns.c
index f49f60b..ef85a70 100644
--- a/drivers/i2c/i2c-cdns.c
+++ b/drivers/i2c/i2c-cdns.c
@@ -366,6 +366,7 @@ static const struct dm_i2c_ops cdns_i2c_ops = {
 
 static const struct udevice_id cdns_i2c_of_match[] = {
 	{ .compatible = "cdns,i2c-r1p10" },
+	{ .compatible = "cdns,i2c-r1p14" },
 	{ /* end of table */ }
 };
 
-- 
2.7.4

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

* [U-Boot] [PATCH 2/2] ARM64: zynqmp: Fix i2c node's compatible string
  2016-12-22 17:36 [U-Boot] [PATCH 1/2] i2c: cdns: Add additional compatible string for r1p14 of the IP Moritz Fischer
@ 2016-12-22 17:36 ` Moritz Fischer
  2017-01-02 12:26   ` Michal Simek
  0 siblings, 1 reply; 3+ messages in thread
From: Moritz Fischer @ 2016-12-22 17:36 UTC (permalink / raw)
  To: u-boot

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 <moritz.fischer@ettus.com>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: Heiko Schocher <hs@denx.de>
---
 arch/arm/dts/zynqmp.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/dts/zynqmp.dtsi b/arch/arm/dts/zynqmp.dtsi
index ab5c243..20c5efc 100644
--- a/arch/arm/dts/zynqmp.dtsi
+++ b/arch/arm/dts/zynqmp.dtsi
@@ -619,7 +619,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>;
@@ -630,7 +630,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] 3+ messages in thread

* [U-Boot] [PATCH 2/2] ARM64: zynqmp: Fix i2c node's compatible string
  2016-12-22 17:36 ` [U-Boot] [PATCH 2/2] ARM64: zynqmp: Fix i2c node's compatible string Moritz Fischer
@ 2017-01-02 12:26   ` Michal Simek
  0 siblings, 0 replies; 3+ messages in thread
From: Michal Simek @ 2017-01-02 12:26 UTC (permalink / raw)
  To: u-boot

On 22.12.2016 18:36, Moritz Fischer wrote:
> 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 <moritz.fischer@ettus.com>
> Cc: Michal Simek <michal.simek@xilinx.com>
> Cc: Heiko Schocher <hs@denx.de>
> ---
>  arch/arm/dts/zynqmp.dtsi | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/dts/zynqmp.dtsi b/arch/arm/dts/zynqmp.dtsi
> index ab5c243..20c5efc 100644
> --- a/arch/arm/dts/zynqmp.dtsi
> +++ b/arch/arm/dts/zynqmp.dtsi
> @@ -619,7 +619,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>;
> @@ -630,7 +630,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>;
> 


Applied both.

Thanks,
Michal

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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-22 17:36 [U-Boot] [PATCH 1/2] i2c: cdns: Add additional compatible string for r1p14 of the IP Moritz Fischer
2016-12-22 17:36 ` [U-Boot] [PATCH 2/2] ARM64: zynqmp: Fix i2c node's compatible string Moritz Fischer
2017-01-02 12:26   ` 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.