blob: 9f48d4a176a42862c379403e9e538d8253f9be86 [file] [log] [blame]
developer41370d52022-03-16 16:01:59 +08001From 75b049bb7f89a58a25592f17baf91d703f0f548e Mon Sep 17 00:00:00 2001
2From: YouChing Lin <ycllin@mxic.com.tw>
3Date: Wed, 22 Jul 2020 16:02:58 +0800
4Subject: [PATCH] mtd: spinand: macronix: Add support for MX31UF1GE4BC
5
6The Macronix MX31UF1GE4BC is a 1.8V, 1Gbit (128MB) serial
7NAND flash device.
8
9Validated by read, erase, read back, write and read back
10on Xilinx Zynq PicoZed FPGA board which included
11Macronix SPI Host (driver/spi/spi-mxic.c).
12
13Signed-off-by: YouChing Lin <ycllin@mxic.com.tw>
14Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
15Link: https://lore.kernel.org/linux-mtd/1595404978-31079-3-git-send-email-ycllin@mxic.com.tw
16---
17 drivers/mtd/nand/spi/macronix.c | 10 ++++++++++
18 1 file changed, 10 insertions(+)
19
20diff --git a/drivers/mtd/nand/spi/macronix.c b/drivers/mtd/nand/spi/macronix.c
21index 9ae48ce1c46f91..8e801e4c3a006f 100644
22--- a/drivers/mtd/nand/spi/macronix.c
23+++ b/drivers/mtd/nand/spi/macronix.c
24@@ -129,6 +129,16 @@ static const struct spinand_info macronix_spinand_table[] = {
25 0 /*SPINAND_HAS_QE_BIT*/,
26 SPINAND_ECCINFO(&mx35lfxge4ab_ooblayout,
27 mx35lf1ge4ab_ecc_get_status)),
28+ SPINAND_INFO("MX31UF1GE4BC",
29+ SPINAND_ID(SPINAND_READID_METHOD_OPCODE_DUMMY, 0x9e),
30+ NAND_MEMORG(1, 2048, 64, 64, 1024, 20, 1, 1, 1),
31+ NAND_ECCREQ(8, 512),
32+ SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
33+ &write_cache_variants,
34+ &update_cache_variants),
35+ 0 /*SPINAND_HAS_QE_BIT*/,
36+ SPINAND_ECCINFO(&mx35lfxge4ab_ooblayout,
37+ mx35lf1ge4ab_ecc_get_status)),
38 };
39
40 static const struct spinand_manufacturer_ops macronix_spinand_manuf_ops = {