aboutsummaryrefslogtreecommitdiff
path: root/drivers/mtd/nand
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2022-03-28 17:14:07 +0800
committerStefano Babic <sbabic@denx.de>2022-04-12 17:33:55 +0200
commit34793598c83b58b990103f7a6bc906372fe81fa2 (patch)
tree420af57847127f1c34eaef768538f041ecc0e492 /drivers/mtd/nand
parentf399a8d38f0040fb1c1e2d8af01871206a6b647a (diff)
downloadu-boot-34793598c83b58b990103f7a6bc906372fe81fa2.zip
u-boot-34793598c83b58b990103f7a6bc906372fe81fa2.tar.gz
u-boot-34793598c83b58b990103f7a6bc906372fe81fa2.tar.bz2
mtd: nand: mxs_nand_spl: Remove the page aligned access
The mxs_nand_spl driver can support to read from page unaligned offset, so don't need to set bl_len to ask spl_load_simple_fit to handle the page unaligned access. Actually spl_load_simple_fit has two parts of reading: spl_simple_fit_read and spl_load_fit_image. The spl_load_fit_image can handle the page unaligned offset, but the spl_simple_fit_read can't do it. spl_simple_fit_read requires the FIT location at page aligned offset. Hence, remove the nand_get_mtd overwrite function from mxs_nand_spl to use page unaligned read by driver. Signed-off-by: Ye Li <ye.li@nxp.com> Tested-by: Tim Harvey <tharvey@gateworks.com> #gw_ventana
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r--drivers/mtd/nand/raw/mxs_nand_spl.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/mtd/nand/raw/mxs_nand_spl.c b/drivers/mtd/nand/raw/mxs_nand_spl.c
index 9e0b8afb..59a67ee 100644
--- a/drivers/mtd/nand/raw/mxs_nand_spl.c
+++ b/drivers/mtd/nand/raw/mxs_nand_spl.c
@@ -283,11 +283,6 @@ int nand_spl_load_image(uint32_t offs, unsigned int size, void *buf)
return 0;
}
-struct mtd_info *nand_get_mtd(void)
-{
- return mtd;
-}
-
int nand_default_bbt(struct mtd_info *mtd)
{
return 0;