This is a note to let you know that I've just added the patch titled mtd: spinand: macronix: Fix MX35LFxGE4AD page size to the 5.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: mtd-spinand-macronix-fix-mx35lfxge4ad-page-size.patch and it can be found in the queue-5.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From jaimeliao.tw@xxxxxxxxx Fri Jan 26 16:34:34 2024 From: Jaime Liao <jaimeliao.tw@xxxxxxxxx> Date: Thu, 25 Jan 2024 10:48:16 +0800 Subject: mtd: spinand: macronix: Fix MX35LFxGE4AD page size To: miquel.raynal@xxxxxxxxxxx Cc: jaimeliao@xxxxxxxxxxx, stable@xxxxxxxxxxxxxxx Message-ID: <20240125024816.222554-1-jaimeliao.tw@xxxxxxxxx> From: JaimeLiao <jaimeliao@xxxxxxxxxxx> Support for MX35LF{2,4}GE4AD chips was added in mainline through upstream commit 5ece78de88739b4c68263e9f2582380c1fd8314f. The patch was later adapted to 5.4.y and backported through stable commit 85258ae3070848d9d0f6fbee385be2db80e8cf26. Fix the backport mentioned right above as it is wrong: the bigger chip features 4kiB pages and not 2kiB pages. Fixes: 85258ae30708 ("mtd: spinand: macronix: Add support for MX35LFxGE4AD") Cc: stable@xxxxxxxxxxxxxxx # v5.4.y Cc: Miquel Raynal <miquel.raynal@xxxxxxxxxxx> Signed-off-by: JaimeLiao <jaimeliao@xxxxxxxxxxx> Acked-by: Miquel Raynal <miquel.raynal@xxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/mtd/nand/spi/macronix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/mtd/nand/spi/macronix.c +++ b/drivers/mtd/nand/spi/macronix.c @@ -125,7 +125,7 @@ static const struct spinand_info macroni SPINAND_HAS_QE_BIT, SPINAND_ECCINFO(&mx35lfxge4ab_ooblayout, NULL)), SPINAND_INFO("MX35LF4GE4AD", 0x37, - NAND_MEMORG(1, 2048, 128, 64, 2048, 40, 1, 1, 1), + NAND_MEMORG(1, 4096, 128, 64, 2048, 40, 1, 1, 1), NAND_ECCREQ(8, 512), SPINAND_INFO_OP_VARIANTS(&read_cache_variants, &write_cache_variants, Patches currently in stable-queue which might be from jaimeliao.tw@xxxxxxxxx are queue-5.4/mtd-spinand-macronix-fix-mx35lfxge4ad-page-size.patch