]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mtd: Add flash_node in struct mtd_info
authorPatrice Chotard <patrice.chotard@foss.st.com>
Mon, 21 Mar 2022 08:13:36 +0000 (09:13 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 11 Apr 2022 15:39:19 +0000 (11:39 -0400)
Currently, add_mtd_partitions_of() can be used only if dev field of
mtd_info struct is populated. It's the case, for example, for a spi nor
flash, which has a DT compatible "jedec,spi-nor" and an associated
device. mtd->dev is populated in spi_nor_scan().

But in case of a raw nand node, mtd_info's dev field can't be populated
as flash node has no compatible, so no associated device.
add_mtd_partitions_of() can't be used to parse "partitions" subnode.

To remove this constraint, add an ofnode field in mtd_info struct
which reference the DT flash node. This new field is populated by
nand_scan_tail(). This new field will be used by add_mtd_partitions_of()
to parse the flash node for "partitions" defined in DT.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Cc: Farhan Ali <farhan.ali@broadcom.com>
Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
Cc: Jagan Teki <jagan@amarulasolutions.com>
Cc: Marek Behun <marek.behun@nic.cz>
Cc: Miquel Raynal <miquel.raynal@bootlin.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Wolfgang Denk <wd@denx.de>
drivers/mtd/nand/raw/nand_base.c
include/linux/mtd/mtd.h

index f7616985d95e44e33acc6e6f6b8e744e28b02ee2..a007603df14b46cb850e949c66f5e840a51ae10d 100644 (file)
@@ -5257,6 +5257,7 @@ int nand_scan_tail(struct mtd_info *mtd)
                break;
        }
 
+       mtd->flash_node = chip->flash_node;
        /* Fill in remaining MTD driver data */
        mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
        mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
index 7455400981503b3d616d0b9f6d83b958f1278403..af45e63bf9c1202299485b43b7489498433e5943 100644 (file)
@@ -305,6 +305,7 @@ struct mtd_info {
        struct device dev;
 #else
        struct udevice *dev;
+       ofnode flash_node;
 #endif
        int usecount;