]> git.baikalelectronics.ru Git - uboot.git/commitdiff
arm: mvebu: clearfog: Detect MMC vs SDHC and fixup fdt
authorMartin Rowe <martin.p.rowe@gmail.com>
Mon, 27 Mar 2023 11:24:09 +0000 (21:24 +1000)
committerStefan Roese <sr@denx.de>
Thu, 30 Mar 2023 05:05:20 +0000 (07:05 +0200)
[upstream of vendor commit 19a96f7c40a8fc1d0a6546ac2418d966e5840a99]

The Clearfog devices have only one SDHC device. This is either eMMC if
it is populated on the SOM or SDHC if not. The Linux device tree assumes
the SDHC case. Detect if the device is an eMMC and fixup the device-tree
so it will be detected by Linux.

Ported from vendor repo at https://github.com/SolidRun/u-boot

Signed-off-by: Martin Rowe <martin.p.rowe@gmail.com>
Reviewed-by: Stefan Roese <sr@denx.de>
arch/arm/mach-mvebu/Kconfig
board/solidrun/clearfog/clearfog.c

index 1f0dbef1c68a48908d141488513e393ff6b0be08..b1f2e97ae7314abc35cb684df43079e0ed67480a 100644 (file)
@@ -107,6 +107,7 @@ config TARGET_CLEARFOG
        bool "Support ClearFog"
        select 88F6820
        select BOARD_LATE_INIT
+       select OF_BOARD_SETUP
 
 config TARGET_HELIOS4
        bool "Support Helios4"
index 03adb591d82682e847932c8bd10f93fe826ad08b..6edb4221551143bb201321d2caa8eab922cccfe7 100644 (file)
@@ -10,6 +10,7 @@
 #include <miiphy.h>
 #include <net.h>
 #include <netdev.h>
+#include <mmc.h>
 #include <asm/global_data.h>
 #include <asm/io.h>
 #include <asm/arch/cpu.h>
@@ -261,3 +262,35 @@ int board_late_init(void)
 
        return 0;
 }
+
+static bool has_emmc(void)
+{
+       struct mmc *mmc;
+
+       mmc = find_mmc_device(0);
+       if (!mmc)
+               return 0;
+       return (!mmc_init(mmc) && IS_MMC(mmc)) ? true : false;
+}
+
+/*
+ * The Clearfog devices have only one SDHC device. This is either eMMC
+ * if it is populated on the SOM or SDHC if not. The Linux device tree
+ * assumes the SDHC case. Detect if the device is an eMMC and fixup the
+ * device-tree, so that it will be detected by Linux.
+ */
+int ft_board_setup(void *blob, struct bd_info *bd)
+{
+       int node;
+
+       if (has_emmc()) {
+               node = fdt_node_offset_by_compatible(blob, -1, "marvell,armada-380-sdhci");
+               if (node < 0)
+                       return 0; /* Unexpected eMMC device; patching not supported */
+
+               puts("Patching FDT so that eMMC is detected by OS\n");
+               return fdt_setprop_empty(blob, node, "non-removable");
+       }
+
+       return 0;
+}