1 From c40c7a990a46e5102a1cc4190557bf315d32d80d Mon Sep 17 00:00:00 2001
2 From: Stefan Roese <sr@denx.de>
3 Date: Thu, 24 Jan 2019 13:48:06 +0100
4 Subject: [PATCH 8/8] mtd: spinand: Add support for GigaDevice GD5F1GQ4UExxG
6 Add support for GigaDevice GD5F1GQ4UExxG SPI NAND chip.
8 Signed-off-by: Stefan Roese <sr@denx.de>
9 Cc: Chuanhong Guo <gch981213@gmail.com>
10 Cc: Frieder Schrempf <frieder.schrempf@kontron.de>
11 Cc: Miquel Raynal <miquel.raynal@bootlin.com>
12 Cc: Boris Brezillon <bbrezillon@kernel.org>
13 Reviewed-by: Boris Brezillon <bbrezillon@kernel.org>
14 Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
16 drivers/mtd/nand/spi/gigadevice.c | 83 +++++++++++++++++++++++++++++++
17 1 file changed, 83 insertions(+)
19 --- a/drivers/mtd/nand/spi/gigadevice.c
20 +++ b/drivers/mtd/nand/spi/gigadevice.c
22 #define GD5FXGQ4XA_STATUS_ECC_1_7_BITFLIPS (1 << 4)
23 #define GD5FXGQ4XA_STATUS_ECC_8_BITFLIPS (3 << 4)
25 +#define GD5FXGQ4UEXXG_REG_STATUS2 0xf0
27 static SPINAND_OP_VARIANTS(read_cache_variants,
28 SPINAND_PAGE_READ_FROM_CACHE_QUADIO_OP(0, 2, NULL, 0),
29 SPINAND_PAGE_READ_FROM_CACHE_X4_OP(0, 1, NULL, 0),
30 @@ -81,11 +83,83 @@ static int gd5fxgq4xa_ecc_get_status(str
34 +static int gd5fxgq4uexxg_ooblayout_ecc(struct mtd_info *mtd, int section,
35 + struct mtd_oob_region *region)
40 + region->offset = 64;
41 + region->length = 64;
46 +static int gd5fxgq4uexxg_ooblayout_free(struct mtd_info *mtd, int section,
47 + struct mtd_oob_region *region)
52 + /* Reserve 1 bytes for the BBM. */
54 + region->length = 63;
59 +static int gd5fxgq4uexxg_ecc_get_status(struct spinand_device *spinand,
63 + struct spi_mem_op op = SPINAND_GET_FEATURE_OP(GD5FXGQ4UEXXG_REG_STATUS2,
67 + switch (status & STATUS_ECC_MASK) {
68 + case STATUS_ECC_NO_BITFLIPS:
71 + case GD5FXGQ4XA_STATUS_ECC_1_7_BITFLIPS:
73 + * Read status2 register to determine a more fine grained
76 + ret = spi_mem_exec_op(spinand->spimem, &op);
81 + * 4 ... 7 bits are flipped (1..4 can't be detected, so
82 + * report the maximum of 4 in this case
84 + /* bits sorted this way (3...0): ECCS1,ECCS0,ECCSE1,ECCSE0 */
85 + return ((status & STATUS_ECC_MASK) >> 2) |
86 + ((status2 & STATUS_ECC_MASK) >> 4);
88 + case GD5FXGQ4XA_STATUS_ECC_8_BITFLIPS:
91 + case STATUS_ECC_UNCOR_ERROR:
101 static const struct mtd_ooblayout_ops gd5fxgq4xa_ooblayout = {
102 .ecc = gd5fxgq4xa_ooblayout_ecc,
103 .free = gd5fxgq4xa_ooblayout_free,
106 +static const struct mtd_ooblayout_ops gd5fxgq4uexxg_ooblayout = {
107 + .ecc = gd5fxgq4uexxg_ooblayout_ecc,
108 + .free = gd5fxgq4uexxg_ooblayout_free,
111 static const struct spinand_info gigadevice_spinand_table[] = {
112 SPINAND_INFO("GD5F1GQ4xA", 0xF1,
113 NAND_MEMORG(1, 2048, 64, 64, 1024, 1, 1, 1),
114 @@ -114,6 +188,15 @@ static const struct spinand_info gigadev
116 SPINAND_ECCINFO(&gd5fxgq4xa_ooblayout,
117 gd5fxgq4xa_ecc_get_status)),
118 + SPINAND_INFO("GD5F1GQ4UExxG", 0xd1,
119 + NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
120 + NAND_ECCREQ(8, 512),
121 + SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
122 + &write_cache_variants,
123 + &update_cache_variants),
125 + SPINAND_ECCINFO(&gd5fxgq4uexxg_ooblayout,
126 + gd5fxgq4uexxg_ecc_get_status)),
129 static int gigadevice_spinand_detect(struct spinand_device *spinand)