]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mtd: rawnand: omap_elm: u-boot driver model support
authorRoger Quadros <rogerq@kernel.org>
Tue, 20 Dec 2022 10:22:03 +0000 (12:22 +0200)
committerDario Binacchi <dario.binacchi@amarulasolutions.com>
Sun, 8 Jan 2023 09:38:50 +0000 (10:38 +0100)
Support u-boot driver model. We still retain
support legacy way of doing things if ELM_BASE
is defined in <asm/arch/hardware.h>

We could completely get rid of that if all
platforms defining ELM_BASE get rid of that definition
and enable CONFIG_SYS_NAND_SELF_INIT and are verified
to work.

Signed-off-by: Roger Quadros <rogerq@kernel.org>
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Link: https://lore.kernel.org/all/20221220102203.52398-9-rogerq@kernel.org
Link: https://lore.kernel.org/all/CABGWkvrvKiVA_yaDnHJcHEKwc+pEuLdz=i6HQEY0oJQvohCUsw@mail.gmail.com
drivers/mtd/nand/raw/omap_elm.c
drivers/mtd/nand/raw/omap_elm.h [moved from include/linux/mtd/omap_elm.h with 97% similarity]
drivers/mtd/nand/raw/omap_gpmc.c

index 35c6dd1f1bcc3a9dc45dcf568d42efcb2e85a798..56a2c39e4f63894b25c5dac3c82f1ccec82d5213 100644 (file)
 #include <common.h>
 #include <asm/io.h>
 #include <linux/errno.h>
-#include <linux/mtd/omap_elm.h>
 #include <asm/arch/hardware.h>
 
+#include <dm.h>
+#include <linux/ioport.h>
+#include <linux/io.h>
+
+#include "omap_elm.h"
+
 #define DRIVER_NAME            "omap-elm"
 #define ELM_DEFAULT_POLY (0)
 
@@ -180,6 +185,7 @@ void elm_reset(void)
                ;
 }
 
+#ifdef ELM_BASE
 /**
  * elm_init - Initialize ELM module
  *
@@ -191,3 +197,33 @@ void elm_init(void)
        elm_cfg = (struct elm *)ELM_BASE;
        elm_reset();
 }
+#endif
+
+#if CONFIG_IS_ENABLED(SYS_NAND_SELF_INIT)
+
+static int elm_probe(struct udevice *dev)
+{
+#ifndef ELM_BASE
+       struct resource res;
+
+       dev_read_resource(dev, 0, &res);
+       elm_cfg = devm_ioremap(dev, res.start, resource_size(&res));
+       elm_reset();
+#endif
+
+       return 0;
+}
+
+static const struct udevice_id elm_ids[] = {
+       { .compatible = "ti,am3352-elm" },
+       { .compatible = "ti,am64-elm" },
+       { }
+};
+
+U_BOOT_DRIVER(gpmc_elm) = {
+       .name           = DRIVER_NAME,
+       .id             = UCLASS_MTD,
+       .of_match       = elm_ids,
+       .probe          = elm_probe,
+};
+#endif /* CONFIG_SYS_NAND_SELF_INIT */
similarity index 97%
rename from include/linux/mtd/omap_elm.h
rename to drivers/mtd/nand/raw/omap_elm.h
index f3db00d55de30601aff0f07d89340d9fa0e4b0c2..a7f7bacb15488481d7c5105e7a2a57a93864b519 100644 (file)
@@ -74,6 +74,12 @@ int elm_check_error(u8 *syndrome, enum bch_level bch_type, u32 *error_count,
                u32 *error_locations);
 int elm_config(enum bch_level level);
 void elm_reset(void);
+#ifdef ELM_BASE
 void elm_init(void);
+#else
+static inline void elm_init(void)
+{
+}
+#endif
 #endif /* __ASSEMBLY__ */
 #endif /* __ASM_ARCH_ELM_H */
index 4d5f2455df3e247a9c9f4a3824ac988603a75c75..1a5ed0de31a9c1866943f89553fd00a5128149f4 100644 (file)
@@ -20,7 +20,8 @@
 #include <linux/bch.h>
 #include <linux/compiler.h>
 #include <nand.h>
-#include <linux/mtd/omap_elm.h>
+
+#include "omap_elm.h"
 
 #ifndef GPMC_MAX_CS
 #define GPMC_MAX_CS    4
@@ -1249,6 +1250,15 @@ void board_nand_init(void)
        struct udevice *dev;
        int ret;
 
+#ifdef CONFIG_NAND_OMAP_ELM
+       ret = uclass_get_device_by_driver(UCLASS_MTD,
+                                         DM_DRIVER_GET(gpmc_elm), &dev);
+       if (ret && ret != -ENODEV) {
+               pr_err("%s: Failed to get ELM device: %d\n", __func__, ret);
+               return;
+       }
+#endif
+
        ret = uclass_get_device_by_driver(UCLASS_MTD,
                                          DM_DRIVER_GET(gpmc_nand), &dev);
        if (ret && ret != -ENODEV)