]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
soc: xilinx: versal-net: Add soc_xilinx_versal_net driver
authorMichal Simek <michal.simek@amd.com>
Wed, 16 Nov 2022 15:36:35 +0000 (16:36 +0100)
committerMichal Simek <michal.simek@amd.com>
Tue, 22 Nov 2022 14:02:07 +0000 (15:02 +0100)
Add soc_xilinx_versal_net driver to identify the family & revision of
versal-net SoC. Add Kconfig option CONFIG_SOC_XILINX_VERSAL_NET to
enable/disable this driver. To enable this driver by default, add this
config to xilinx_versal_net_virt_defconfig file. This driver will be
probed using platdata U_BOOT_DEVICE structure which is specified in
mach-versal-net/cpu.c.

Signed-off-by: Michal Simek <michal.simek@amd.com>
Signed-off-by: Ashok Reddy Soma <ashok.reddy.soma@amd.com>
Link: https://lore.kernel.org/r/613d6bcffd9070f62cf348079ed16c120f8fc56f.1668612993.git.michal.simek@amd.com
MAINTAINERS
arch/arm/mach-versal-net/cpu.c
configs/xilinx_versal_net_virt_defconfig
drivers/soc/Kconfig
drivers/soc/Makefile
drivers/soc/soc_xilinx_versal_net.c [new file with mode: 0644]

index 97b2f69f65914ef5edf58d0a905a6de4e9cc73e1..bc9081b62a9e4efbc10d4aac049fac74fd698d0e 100644 (file)
@@ -664,6 +664,7 @@ M:  Michal Simek <michal.simek@amd.com>
 S:     Maintained
 T:     git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
 F:     arch/arm/mach-versal-net/
+F:     drivers/soc/soc_xilinx_versal_net.c
 N:     (?<!uni)versal-net
 
 ARM VERSAL
index 4c9b15411df2ca5bcb626105a6a265c2a5e4368d..a82741e70fc88c65fc0cf740651917b0c5662511 100644 (file)
@@ -15,6 +15,7 @@
 #include <asm/arch/hardware.h>
 #include <asm/arch/sys_proto.h>
 #include <asm/cache.h>
+#include <dm/platdata.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -87,3 +88,7 @@ u64 get_page_table_size(void)
 {
        return 0x14000;
 }
+
+U_BOOT_DRVINFO(soc_xilinx_versal_net) = {
+       .name = "soc_xilinx_versal_net",
+};
index 8a53490ba87da54dedc1fc361d5f12754815ff38..431a8de9fcf21de5f315149ca0ef3981e5bf6491 100644 (file)
@@ -108,6 +108,8 @@ CONFIG_RESET_ZYNQMP=y
 CONFIG_ARM_DCC=y
 CONFIG_PL01X_SERIAL=y
 CONFIG_XILINX_UARTLITE=y
+CONFIG_SOC_DEVICE=y
+CONFIG_SOC_XILINX_VERSAL_NET=y
 CONFIG_SPI=y
 CONFIG_DM_SPI=y
 CONFIG_CADENCE_QSPI=y
index 292dc41b6fa26c0aaa42ef2f3b652ef4651a01f2..acf555baaec214ae812ba4e6b890fcd761e22286 100644 (file)
@@ -32,6 +32,14 @@ config SOC_XILINX_VERSAL
          This allows other drivers to verify the SoC familiy & revision using
          matching SoC attributes.
 
+config SOC_XILINX_VERSAL_NET
+       bool "Enable SoC Device ID driver for Xilinx Versal NET"
+       depends on SOC_DEVICE && ARCH_VERSAL_NET
+       help
+         Enable this option to select SoC device id driver for Xilinx Versal NET.
+         This allows other drivers to verify the SoC familiy & revision using
+         matching SoC attributes.
+
 source "drivers/soc/ti/Kconfig"
 
 endmenu
index 031fa7612f485a64245bb480389f1b7d32cd914c..84385650d46dc27b5a76b1e9641b67c4dfd6908a 100644 (file)
@@ -8,3 +8,4 @@ obj-$(CONFIG_SOC_DEVICE_TI_K3) += soc_ti_k3.o
 obj-$(CONFIG_SANDBOX) += soc_sandbox.o
 obj-$(CONFIG_SOC_XILINX_ZYNQMP) += soc_xilinx_zynqmp.o
 obj-$(CONFIG_SOC_XILINX_VERSAL) += soc_xilinx_versal.o
+obj-$(CONFIG_SOC_XILINX_VERSAL_NET) += soc_xilinx_versal_net.o
diff --git a/drivers/soc/soc_xilinx_versal_net.c b/drivers/soc/soc_xilinx_versal_net.c
new file mode 100644 (file)
index 0000000..146d068
--- /dev/null
@@ -0,0 +1,78 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Xilinx Versal NET SOC driver
+ *
+ * Copyright (C) 2022, Advanced Micro Devices, Inc.
+ */
+
+#include <common.h>
+#include <dm.h>
+#include <soc.h>
+#include <zynqmp_firmware.h>
+#include <asm/io.h>
+#include <asm/arch/hardware.h>
+
+#include <linux/bitfield.h>
+
+/*
+ * v1 -> 0x10 - ES1
+ * v2 -> 0x20 - Production
+ */
+static const char versal_family[] = "Versal NET";
+
+struct soc_xilinx_versal_net_priv {
+       const char *family;
+       char revision;
+};
+
+static int soc_xilinx_versal_net_get_family(struct udevice *dev, char *buf, int size)
+{
+       struct soc_xilinx_versal_net_priv *priv = dev_get_priv(dev);
+
+       return snprintf(buf, size, "%s", priv->family);
+}
+
+static int soc_xilinx_versal_net_get_revision(struct udevice *dev, char *buf, int size)
+{
+       struct soc_xilinx_versal_net_priv *priv = dev_get_priv(dev);
+
+       return snprintf(buf, size, "v%d", priv->revision);
+}
+
+static const struct soc_ops soc_xilinx_versal_net_ops = {
+       .get_family = soc_xilinx_versal_net_get_family,
+       .get_revision = soc_xilinx_versal_net_get_revision,
+};
+
+static int soc_xilinx_versal_net_probe(struct udevice *dev)
+{
+       struct soc_xilinx_versal_net_priv *priv = dev_get_priv(dev);
+       u32 ret_payload[PAYLOAD_ARG_CNT];
+       int ret;
+
+       priv->family = versal_family;
+
+       if (IS_ENABLED(CONFIG_ZYNQMP_FIRMWARE)) {
+               ret = xilinx_pm_request(PM_GET_CHIPID, 0, 0, 0, 0,
+                                       ret_payload);
+               if (ret)
+                       return ret;
+       } else {
+               ret_payload[2] = readl(PMC_TAP_VERSION);
+               if (!ret_payload[2])
+                       return -EINVAL;
+       }
+
+       priv->revision = FIELD_GET(PS_VERSION_MASK, ret_payload[2]);
+
+       return 0;
+}
+
+U_BOOT_DRIVER(soc_xilinx_versal_net) = {
+       .name           = "soc_xilinx_versal_net",
+       .id             = UCLASS_SOC,
+       .ops            = &soc_xilinx_versal_net_ops,
+       .probe          = soc_xilinx_versal_net_probe,
+       .priv_auto      = sizeof(struct soc_xilinx_versal_net_priv),
+       .flags          = DM_FLAG_PRE_RELOC,
+};