]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm64: zynqmp: Add support for SC revC
authorMichal Simek <michal.simek@amd.com>
Wed, 27 Sep 2023 09:53:33 +0000 (11:53 +0200)
committerMichal Simek <michal.simek@amd.com>
Mon, 9 Oct 2023 10:12:30 +0000 (12:12 +0200)
System controller revC is using ADI ethernet phy instead of TI because of
supply chain issues.
Describe reset assert and de-assert times to 10us and 5ms respectively
according to the datasheet. Also setup RGMII RX and TX delay values to
2400ps as per board bring up observations.

Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/2790f6cede7485556d581ab8270dda477fa21522.1695808407.git.michal.simek@amd.com
arch/arm/dts/Makefile
arch/arm/dts/zynqmp-sc-revC.dts [new file with mode: 0644]

index 29c40d1c3b66e37d1a4382b8cbd5103d0dd34db8..3cde86d9eb384b5c94dce5230b97a426e742ce03 100644 (file)
@@ -412,6 +412,7 @@ dtb-$(CONFIG_ARCH_ZYNQMP) += \
        zynqmp-mini-nand.dtb                    \
        zynqmp-mini-qspi.dtb                    \
        zynqmp-sc-revB.dtb                      \
+       zynqmp-sc-revC.dtb                      \
        zynqmp-sm-k24-revA.dtb                  \
        zynqmp-smk-k24-revA.dtb                 \
        zynqmp-sm-k26-revA.dtb                  \
diff --git a/arch/arm/dts/zynqmp-sc-revC.dts b/arch/arm/dts/zynqmp-sc-revC.dts
new file mode 100644 (file)
index 0000000..530a4a5
--- /dev/null
@@ -0,0 +1,37 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * dts file for Xilinx ZynqMP Generic System Controller
+ *
+ * Copyright (C) 2021 - 2022, Xilinx, Inc.
+ * Copyright (C) 2022 - 2023, Advanced Micro Devices, Inc.
+ *
+ * Michal Simek <michal.simek@amd.com>
+ */
+
+#include "zynqmp-sc-revB.dts"
+
+/ {
+       model = "ZynqMP Generic System Controller";
+       compatible = "xlnx,zynqmp-sc-revC", "xlnx,zynqmp-sc", "xlnx,zynqmp";
+};
+
+&gem1 { /* gem1 MIO38-49, MDIO MIO50/51 */
+       /delete-node/ mdio;
+
+       mdio: mdio {
+               #address-cells = <1>;
+               #size-cells = <0>;
+
+               phy0: ethernet-phy@1 { /* ADI1300 */
+                       #phy-cells = <1>;
+                       compatible = "ethernet-phy-id0283.bc30";
+                       reg = <1>;
+                       adi,rx-internal-delay-ps = <2400>;
+                       adi,tx-internal-delay-ps = <2400>;
+                       adi,fifo-depth-bits = <8>;
+                       reset-gpios = <&gpio 77 GPIO_ACTIVE_LOW>;
+                       reset-assert-us = <10>;
+                       reset-deassert-us = <5000>;
+               };
+       };
+};