Skip to content

Commit a9180c2

Browse files
Kuwano-sanambarus
authored andcommitted
mtd: spi-nor: spansion: Enable JFFS2 write buffer for S25FS256T
Infineon(Cypress) SEMPER NOR flash family has on-die ECC and its program granularity is 16-byte ECC data unit size. JFFS2 supports write buffer mode for ECC'd NOR flash. Provide a way to clear the MTD_BIT_WRITEABLE flag in order to enable JFFS2 write buffer mode support. Drop the comment as the same info is now specified in cypress_nor_ecc_init(). Fixes: 6afcc84 ("mtd: spi-nor: spansion: Add support for Infineon S25FS256T") Suggested-by: Tudor Ambarus <tudor.ambarus@linaro.org> Signed-off-by: Takahiro Kuwano <Takahiro.Kuwano@infineon.com> Cc: stable@vger.kernel.org Link: https://lore.kernel.org/r/641bfb26c6e059915ae920117b7ec278df1a6f0a.1680760742.git.Takahiro.Kuwano@infineon.com Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
1 parent 4199c17 commit a9180c2

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

drivers/mtd/spi-nor/spansion.c

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -384,13 +384,7 @@ static void s25fs256t_post_sfdp_fixup(struct spi_nor *nor)
384384

385385
static void s25fs256t_late_init(struct spi_nor *nor)
386386
{
387-
/*
388-
* Programming is supported only in 16-byte ECC data unit granularity.
389-
* Byte-programming, bit-walking, or multiple program operations to the
390-
* same ECC data unit without an erase are not allowed. See chapter
391-
* 5.3.1 and 5.6 in the datasheet.
392-
*/
393-
nor->params->writesize = 16;
387+
cypress_nor_ecc_init(nor);
394388
}
395389

396390
static struct spi_nor_fixups s25fs256t_fixups = {

0 commit comments

Comments
 (0)