1 // SPDX-License-Identifier: GPL-2.0
4 * Chuanhong Guo <gch981213@gmail.com> - the main driver logic
5 * Martin Kurbanov <mmkurbanov@sberdevices.ru> - OOB layout
8 #include <linux/device.h>
9 #include <linux/kernel.h>
10 #include <linux/mtd/spinand.h>
12 /* ESMT uses GigaDevice 0xc8 JECDEC ID on some SPI NANDs */
13 #define SPINAND_MFR_ESMT_C8 0xc8
15 static SPINAND_OP_VARIANTS(read_cache_variants
,
16 SPINAND_PAGE_READ_FROM_CACHE_X4_OP(0, 1, NULL
, 0),
17 SPINAND_PAGE_READ_FROM_CACHE_X2_OP(0, 1, NULL
, 0),
18 SPINAND_PAGE_READ_FROM_CACHE_OP(true, 0, 1, NULL
, 0),
19 SPINAND_PAGE_READ_FROM_CACHE_OP(false, 0, 1, NULL
, 0));
21 static SPINAND_OP_VARIANTS(write_cache_variants
,
22 SPINAND_PROG_LOAD_X4(true, 0, NULL
, 0),
23 SPINAND_PROG_LOAD(true, 0, NULL
, 0));
25 static SPINAND_OP_VARIANTS(update_cache_variants
,
26 SPINAND_PROG_LOAD_X4(false, 0, NULL
, 0),
27 SPINAND_PROG_LOAD(false, 0, NULL
, 0));
30 * OOB spare area map (64 bytes)
33 * filled by HW and kernel Reserved
34 * | +-----------------------+-----------------------+
36 * | | OOB free data Area |non ECC protected |
37 * | +-------------|-----+-----------------|-----+-----------------|-----+
39 * +-|---|----------+--|-----|--------------+--|-----|--------------+--|-----|--------------+
40 * | | | section0 | | | section1 | | | section2 | | | section3 |
41 * +-v-+-v-+---+----+--v--+--v--+-----+-----+--v--+--v--+-----+-----+--v--+--v--+-----+-----+
42 * | | | | | | | | | | | | | | | | |
43 * |0:1|2:3|4:7|8:15|16:17|18:19|20:23|24:31|32:33|34:35|36:39|40:47|48:49|50:51|52:55|56:63|
44 * | | | | | | | | | | | | | | | | |
45 * +---+---+-^-+--^-+-----+-----+--^--+--^--+-----+-----+--^--+--^--+-----+-----+--^--+--^--+
47 * | +----------------|-----+-----------------|-----+-----------------|-----+
48 * | ECC Area|(Main + Spare) - filled|by ESMT NAND HW |
50 * +---------------------+-----------------------+-----------------------+
51 * OOB ECC protected Area - not used due to
52 * partial programming from some filesystems
53 * (like JFFS2 with cleanmarkers)
56 #define ESMT_OOB_SECTION_COUNT 4
57 #define ESMT_OOB_SECTION_SIZE(nand) \
58 (nanddev_per_page_oobsize(nand) / ESMT_OOB_SECTION_COUNT)
59 #define ESMT_OOB_FREE_SIZE(nand) \
60 (ESMT_OOB_SECTION_SIZE(nand) / 2)
61 #define ESMT_OOB_ECC_SIZE(nand) \
62 (ESMT_OOB_SECTION_SIZE(nand) - ESMT_OOB_FREE_SIZE(nand))
63 #define ESMT_OOB_BBM_SIZE 2
65 static int f50l1g41lb_ooblayout_ecc(struct mtd_info
*mtd
, int section
,
66 struct mtd_oob_region
*region
)
68 struct nand_device
*nand
= mtd_to_nanddev(mtd
);
70 if (section
>= ESMT_OOB_SECTION_COUNT
)
73 region
->offset
= section
* ESMT_OOB_SECTION_SIZE(nand
) +
74 ESMT_OOB_FREE_SIZE(nand
);
75 region
->length
= ESMT_OOB_ECC_SIZE(nand
);
80 static int f50l1g41lb_ooblayout_free(struct mtd_info
*mtd
, int section
,
81 struct mtd_oob_region
*region
)
83 struct nand_device
*nand
= mtd_to_nanddev(mtd
);
85 if (section
>= ESMT_OOB_SECTION_COUNT
)
89 * Reserve space for bad blocks markers (section0) and
90 * reserved bytes (sections 1-3)
92 region
->offset
= section
* ESMT_OOB_SECTION_SIZE(nand
) + 2;
94 /* Use only 2 non-protected ECC bytes per each OOB section */
100 static const struct mtd_ooblayout_ops f50l1g41lb_ooblayout
= {
101 .ecc
= f50l1g41lb_ooblayout_ecc
,
102 .free
= f50l1g41lb_ooblayout_free
,
105 static const struct spinand_info esmt_c8_spinand_table
[] = {
106 SPINAND_INFO("F50L1G41LB",
107 SPINAND_ID(SPINAND_READID_METHOD_OPCODE_ADDR
, 0x01, 0x7f,
109 NAND_MEMORG(1, 2048, 64, 64, 1024, 20, 1, 1, 1),
111 SPINAND_INFO_OP_VARIANTS(&read_cache_variants
,
112 &write_cache_variants
,
113 &update_cache_variants
),
115 SPINAND_ECCINFO(&f50l1g41lb_ooblayout
, NULL
)),
116 SPINAND_INFO("F50D1G41LB",
117 SPINAND_ID(SPINAND_READID_METHOD_OPCODE_ADDR
, 0x11, 0x7f,
119 NAND_MEMORG(1, 2048, 64, 64, 1024, 20, 1, 1, 1),
121 SPINAND_INFO_OP_VARIANTS(&read_cache_variants
,
122 &write_cache_variants
,
123 &update_cache_variants
),
125 SPINAND_ECCINFO(&f50l1g41lb_ooblayout
, NULL
)),
126 SPINAND_INFO("F50D2G41KA",
127 SPINAND_ID(SPINAND_READID_METHOD_OPCODE_ADDR
, 0x51, 0x7f,
129 NAND_MEMORG(1, 2048, 128, 64, 2048, 40, 1, 1, 1),
131 SPINAND_INFO_OP_VARIANTS(&read_cache_variants
,
132 &write_cache_variants
,
133 &update_cache_variants
),
135 SPINAND_ECCINFO(&f50l1g41lb_ooblayout
, NULL
)),
138 static const struct spinand_manufacturer_ops esmt_spinand_manuf_ops
= {
141 const struct spinand_manufacturer esmt_c8_spinand_manufacturer
= {
142 .id
= SPINAND_MFR_ESMT_C8
,
144 .chips
= esmt_c8_spinand_table
,
145 .nchips
= ARRAY_SIZE(esmt_c8_spinand_table
),
146 .ops
= &esmt_spinand_manuf_ops
,