]> git.baikalelectronics.ru Git - uboot.git/commit
mtd: nand: mxs_nand_spl: Remove the page aligned access
authorYe Li <ye.li@nxp.com>
Mon, 28 Mar 2022 09:14:07 +0000 (17:14 +0800)
committerStefano Babic <sbabic@denx.de>
Tue, 12 Apr 2022 15:33:55 +0000 (17:33 +0200)
commit88292d56b7bca5d46b28559fdb27ef5f0b61956f
tree420af57847127f1c34eaef768538f041ecc0e492
parent57fdee8fb20b6b5be38e3c6bb39f60b03de7989d
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
drivers/mtd/nand/raw/mxs_nand_spl.c