]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
spl: fit: nand: fix fit loading in case of bad blocks
authorDario Binacchi <dariobin@libero.it>
Wed, 27 May 2020 11:56:20 +0000 (13:56 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 8 Jul 2020 21:21:46 +0000 (17:21 -0400)
The offset at which the image to be loaded from NAND is located is
retrieved from the itb header. The presence of bad blocks in the area
of the NAND where the itb image is located could invalidate the offset
which must therefore be adjusted taking into account the state of the
sectors concerned.

cc: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Dario Binacchi <dariobin@libero.it>
Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com>
common/spl/spl_nand.c
drivers/mtd/nand/raw/nand_spl_loaders.c
include/nand.h

index 48c97549eb90609a9ae2cccb1c1dade96ba3a9a1..1e6f2dce5698498e8df110188bf0b21654988485 100644 (file)
@@ -42,8 +42,11 @@ static int spl_nand_load_image(struct spl_image_info *spl_image,
 static ulong spl_nand_fit_read(struct spl_load_info *load, ulong offs,
                               ulong size, void *dst)
 {
+       ulong sector;
        int ret;
 
+       sector = *(int *)load->priv;
+       offs = sector + nand_spl_adjust_offset(sector, offs - sector);
        ret = nand_spl_load_image(offs, size, dst);
        if (!ret)
                return size;
@@ -66,7 +69,7 @@ static int spl_nand_load_element(struct spl_image_info *spl_image,
 
                debug("Found FIT\n");
                load.dev = NULL;
-               load.priv = NULL;
+               load.priv = &offset;
                load.filename = NULL;
                load.bl_len = 1;
                load.read = spl_nand_fit_read;
index 177c12b581563dd08826cb8de07e1db2f9cac503..4befc75c047ef6cc567c2a3959c3f480a0127173 100644 (file)
@@ -41,6 +41,34 @@ int nand_spl_load_image(uint32_t offs, unsigned int size, void *dst)
        return 0;
 }
 
+/**
+ * nand_spl_adjust_offset - Adjust offset from a starting sector
+ * @sector:    Address of the sector
+ * @offs:      Offset starting from @sector
+ *
+ * If one or more bad blocks are in the address space between @sector
+ * and @sector + @offs, @offs is increased by the NAND block size for
+ * each bad block found.
+ */
+u32 nand_spl_adjust_offset(u32 sector, u32 offs)
+{
+       unsigned int block, lastblock;
+
+       block = sector / CONFIG_SYS_NAND_BLOCK_SIZE;
+       lastblock = (sector + offs) / CONFIG_SYS_NAND_BLOCK_SIZE;
+
+       while (block <= lastblock) {
+               if (nand_is_bad_block(block)) {
+                       offs += CONFIG_SYS_NAND_BLOCK_SIZE;
+                       lastblock++;
+               }
+
+               block++;
+       }
+
+       return offs;
+}
+
 #ifdef CONFIG_SPL_UBI
 /*
  * Temporary storage for non NAND page aligned and non NAND page sized
index 93cbe1e25db9eb2bf3e1a8c7ec7dececd971d7e4..80dd6469bc0547bca97ed52969d49b9f2124fea0 100644 (file)
@@ -120,6 +120,7 @@ int nand_unlock(struct mtd_info *mtd, loff_t start, size_t length,
                int allexcept);
 int nand_get_lock_status(struct mtd_info *mtd, loff_t offset);
 
+u32 nand_spl_adjust_offset(u32 sector, u32 offs);
 int nand_spl_load_image(uint32_t offs, unsigned int size, void *dst);
 int nand_spl_read_block(int block, int offset, int len, void *dst);
 void nand_deselect(void);