All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michal Simek <michal.simek@xilinx.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 11/27] arm64: zynqmp: Fix m-a2197-01 DT based on latest schematics
Date: Mon, 14 Oct 2019 12:16:14 +0200	[thread overview]
Message-ID: <d083588bb6ae58bf0a5888e28aadfb307e47e3ba.1571048173.git.michal.simek@xilinx.com> (raw)
In-Reply-To: <cover.1571048173.git.michal.simek@xilinx.com>

Remove some FIXMEs and align it with latest schematics.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

 arch/arm/dts/zynqmp-m-a2197-01-revA.dts | 23 +++++++++--------------
 1 file changed, 9 insertions(+), 14 deletions(-)

diff --git a/arch/arm/dts/zynqmp-m-a2197-01-revA.dts b/arch/arm/dts/zynqmp-m-a2197-01-revA.dts
index 9bb4da6d9920..e295bac128cb 100644
--- a/arch/arm/dts/zynqmp-m-a2197-01-revA.dts
+++ b/arch/arm/dts/zynqmp-m-a2197-01-revA.dts
@@ -326,7 +326,7 @@
 		reg = <0x51>;
 	};
 
-	i2c-mux at 74 { /* u35 */
+	i2c-mux at 74 { /* u47 */
 		compatible = "nxp,pca9548";
 		#address-cells = <1>;
 		#size-cells = <0>;
@@ -391,19 +391,14 @@
 				};
 			};
 		};
-		i2c at 1 { /* UTIL_PMBUS - FIXME incorrect schematics */
-			#address-cells = <1>;
-			#size-cells = <0>;
-			/* reg = <1>; */
-		};
 		i2c at 2 { /* C0_LP4 */
 			#address-cells = <1>;
 			#size-cells = <0>;
 			reg = <2>;
-			si570_c0_lp4: clock-generator at 5d { /* u10 */
+			si570_c0_lp4: clock-generator at 55 { /* u10 */
 				#clock-cells = <0>;
 				compatible = "silabs,si570";
-				reg = <0x5d>; /* FIXME addr */
+				reg = <0x55>;
 				temperature-stability = <50>;
 				factory-fout = <30000000>;
 				clock-frequency = <30000000>;
@@ -428,10 +423,10 @@
 			#address-cells = <1>;
 			#size-cells = <0>;
 			reg = <4>;
-			si570_c2_lp4: clock-generator at 5d { /* u10 */
+			si570_c2_lp4: clock-generator at 55 { /* u10 */
 				#clock-cells = <0>;
 				compatible = "silabs,si570";
-				reg = <0x5d>; /* FIXME addr */
+				reg = <0x55>;
 				temperature-stability = <50>;
 				factory-fout = <30000000>;
 				clock-frequency = <30000000>;
@@ -442,10 +437,10 @@
 			#address-cells = <1>;
 			#size-cells = <0>;
 			reg = <5>;
-			si570_c3_lp4: clock-generator at 5d { /* u15 */
+			si570_c3_lp4: clock-generator at 55 { /* u15 */
 				#clock-cells = <0>;
 				compatible = "silabs,si570";
-				reg = <0x5d>; /* FIXME addr */
+				reg = <0x55>;
 				temperature-stability = <50>;
 				factory-fout = <30000000>;
 				clock-frequency = <30000000>;
@@ -461,8 +456,8 @@
 				compatible = "silabs,si570";
 				reg = <0x5d>; /* FIXME addr */
 				temperature-stability = <50>;
-				factory-fout = <156250000>; /* FIXME every chip can be different - 10MHZ_TO_810MHZ */
-				clock-frequency = <33333333>;
+				factory-fout = <156250000>;
+				clock-frequency = <156250000>;
 				clock-output-names = "HSDP_SI570";
 			};
 		};
-- 
2.17.1

  parent reply	other threads:[~2019-10-14 10:16 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-14 10:16 [U-Boot] [PATCH 00/27] arm64: zynqmp: Update DT files Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 01/27] arm64: zynqmp: Sync names for SC with Versal Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 02/27] arm64: zynqmp: Use ethernet-phy as node name for ethernet phys Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 03/27] arm64: zynqmp: Enable iio-hwmon for ina226 on g-a2197-00 Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 04/27] arm64: zynqmp: Add label property to all " Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 05/27] arm64: zynqmp: Fix i2c address of u70 on p-a2197-00 board Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 06/27] arm64: zynqmp: Added new tps53679 compatible string for a2197-0x boards Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 07/27] arm64: zynqmp: Fix typo in zynqmp-p-a2197-00-revA Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 08/27] arm64: zynqmp: Enable iio-hwmon for ina226 on m-a2197-01 Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 09/27] arm64: zynqmp: Add label property to all " Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 10/27] arm64: zynqmp: Switch spi-flash to jedec, spi-nor on m-a2197 Michal Simek
2019-10-14 10:16 ` Michal Simek [this message]
2019-10-14 10:16 ` [U-Boot] [PATCH 12/27] arm64: zynqmp: Sync si570 setup and clock names Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 13/27] arm64: zynqmp: Remove fixme about memory size on zynqmp-p-a2197 Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 14/27] arm64: zynqmp: dt: Delete no-1-8-v property from zcu102-rev1.0 Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 15/27] arm64: zynqmp: Enable iio-hwmon for ina226 on zcu111 Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 16/27] arm64: zynqmp: Add label property to all " Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 17/27] arm64: zynqmp: Fix the si570 clock frequency " Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 18/27] arm64: zynqmp: Enable iio-hwmon for ina226 on zcu106 Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 19/27] arm64: zynqmp: Add label property to all " Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 20/27] arm64: zynqmp: Enable iio-hwmon for ina226 on zcu104 Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 21/27] arm64: zynqmp: Enable fpd_dma for zcu104 platforms Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 22/27] arm64: zynqmp: dt: Add missing DP83867 quirk Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 23/27] arm64: zynqmp: dt: Add optional gpio phy reset properties Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 24/27] arm64: zynqmp: Enable iio-hwmon for ina226 on zcu102 Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 25/27] arm64: zynqmp: Add label property to all " Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 26/27] arm64: zynqmp: Turn comment to gpio-line-names Michal Simek
2019-10-14 10:16 ` [U-Boot] [PATCH 27/27] arm64: zynqmp: Enable iio-hwmon for ina226 on zcu100 Michal Simek
2019-10-24 11:19 ` [U-Boot] [PATCH 00/27] arm64: zynqmp: Update DT files Michal Simek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d083588bb6ae58bf0a5888e28aadfb307e47e3ba.1571048173.git.michal.simek@xilinx.com \
    --to=michal.simek@xilinx.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.