xref: /rk3399_rockchip-uboot/drivers/mtd/nand/spi/gigadevice.c (revision 2a3fb7bb049d69d96f3bc7dae8caa756fdc8a613)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2018 Stefan Roese <sr@denx.de>
4  *
5  * Derived from drivers/mtd/nand/spi/micron.c
6  *   Copyright (c) 2016-2017 Micron Technology, Inc.
7  */
8 
9 #ifndef __UBOOT__
10 #include <linux/device.h>
11 #include <linux/kernel.h>
12 #endif
13 #include <linux/mtd/spinand.h>
14 
15 #define SPINAND_MFR_GIGADEVICE			0xC8
16 #define GD5FXGQ4XA_STATUS_ECC_BELOW_BITFLIPS	(1 << 4)
17 #define GD5FXGQ4XA_STATUS_ECC_MAX_BITFLIPS	(3 << 4)
18 
19 #define GD5FXGQ4XEXXG_REG_STATUS2		0xf0
20 
21 static SPINAND_OP_VARIANTS(read_cache_variants,
22 		SPINAND_PAGE_READ_FROM_CACHE_QUADIO_OP(0, 2, NULL, 0),
23 		SPINAND_PAGE_READ_FROM_CACHE_X4_OP(0, 1, NULL, 0),
24 		SPINAND_PAGE_READ_FROM_CACHE_DUALIO_OP(0, 1, NULL, 0),
25 		SPINAND_PAGE_READ_FROM_CACHE_X2_OP(0, 1, NULL, 0),
26 		SPINAND_PAGE_READ_FROM_CACHE_OP(true, 0, 1, NULL, 0),
27 		SPINAND_PAGE_READ_FROM_CACHE_OP(false, 0, 1, NULL, 0));
28 
29 static SPINAND_OP_VARIANTS(write_cache_variants,
30 		SPINAND_PROG_LOAD_X4(true, 0, NULL, 0),
31 		SPINAND_PROG_LOAD(true, 0, NULL, 0));
32 
33 static SPINAND_OP_VARIANTS(update_cache_variants,
34 		SPINAND_PROG_LOAD_X4(false, 0, NULL, 0),
35 		SPINAND_PROG_LOAD(false, 0, NULL, 0));
36 
37 static int gd5fxgq4xexxg_ooblayout_ecc(struct mtd_info *mtd, int section,
38 				       struct mtd_oob_region *region)
39 {
40 	if (section)
41 		return -ERANGE;
42 
43 	region->offset = 64;
44 	region->length = 64;
45 
46 	return 0;
47 }
48 
49 static int gd5fxgq4xexxg_ooblayout_free(struct mtd_info *mtd, int section,
50 					struct mtd_oob_region *region)
51 {
52 	if (section)
53 		return -ERANGE;
54 
55 	/* Reserve 1 bytes for the BBM. */
56 	region->offset = 1;
57 	region->length = 63;
58 
59 	return 0;
60 }
61 
62 static int gd5f1gq4xexxg_ecc_get_status(struct spinand_device *spinand,
63 					u8 status)
64 {
65 	u8 status2;
66 	struct spi_mem_op op = SPINAND_GET_FEATURE_OP(GD5FXGQ4XEXXG_REG_STATUS2,
67 						      &status2);
68 	int ret;
69 
70 	switch (status & STATUS_ECC_MASK) {
71 	case STATUS_ECC_NO_BITFLIPS:
72 		return 0;
73 
74 	case GD5FXGQ4XA_STATUS_ECC_BELOW_BITFLIPS:
75 		/*
76 		 * Read status2 register to determine a more fine grained
77 		 * bit error status
78 		 */
79 		ret = spi_mem_exec_op(spinand->slave, &op);
80 		if (ret)
81 			return ret;
82 
83 		/*
84 		 * 4 ... 7 bits are flipped (1..4 can't be detected, so
85 		 * report the maximum of 4 in this case
86 		 */
87 		/* bits sorted this way (3...0): ECCS1,ECCS0,ECCSE1,ECCSE0 */
88 		return ((status & STATUS_ECC_MASK) >> 2) |
89 			((status2 & STATUS_ECC_MASK) >> 4);
90 
91 	case GD5FXGQ4XA_STATUS_ECC_MAX_BITFLIPS:
92 		return 8;
93 
94 	case STATUS_ECC_UNCOR_ERROR:
95 		return -EBADMSG;
96 
97 	default:
98 		break;
99 	}
100 
101 	return -EINVAL;
102 }
103 
104 static int gd5fxgq5xexxg_ecc_get_status(struct spinand_device *spinand,
105 					u8 status)
106 {
107 	u8 status2;
108 	struct spi_mem_op op = SPINAND_GET_FEATURE_OP(GD5FXGQ4XEXXG_REG_STATUS2,
109 						      &status2);
110 	int ret;
111 
112 	switch (status & STATUS_ECC_MASK) {
113 	case STATUS_ECC_NO_BITFLIPS:
114 		return 0;
115 
116 	case GD5FXGQ4XA_STATUS_ECC_BELOW_BITFLIPS:
117 		/*
118 		 * Read status2 register to determine a more fine grained
119 		 * bit error status
120 		 */
121 		ret = spi_mem_exec_op(spinand->slave, &op);
122 		if (ret)
123 			return ret;
124 
125 		/*
126 		 * 4 ... 7 bits are flipped (1..4 can't be detected, so
127 		 * report the maximum of 4 in this case
128 		 */
129 		/* bits sorted this way (3...0): ECCS1,ECCS0,ECCSE1,ECCSE0 */
130 		return (((status & STATUS_ECC_MASK) >> 2) |
131 			((status2 & STATUS_ECC_MASK) >> 4)) - 3;
132 
133 	case GD5FXGQ4XA_STATUS_ECC_MAX_BITFLIPS:
134 		return -EBADMSG;
135 
136 	case STATUS_ECC_UNCOR_ERROR:
137 		return -EBADMSG;
138 
139 	default:
140 		break;
141 	}
142 
143 	return -EINVAL;
144 }
145 
146 static const struct mtd_ooblayout_ops gd5fxgq4xexxg_ooblayout = {
147 	.ecc = gd5fxgq4xexxg_ooblayout_ecc,
148 	.rfree = gd5fxgq4xexxg_ooblayout_free,
149 };
150 
151 static const struct spinand_info gigadevice_spinand_table[] = {
152 	SPINAND_INFO("GD5F1GQ4UExxG", 0xd1,
153 		     NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
154 		     NAND_ECCREQ(8, 512),
155 		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
156 					      &write_cache_variants,
157 					      &update_cache_variants),
158 		     SPINAND_HAS_QE_BIT,
159 		     SPINAND_ECCINFO(&gd5fxgq4xexxg_ooblayout,
160 				     gd5f1gq4xexxg_ecc_get_status)),
161 	SPINAND_INFO("GD5F1GQ5UExxG", 0x51,
162 		     NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
163 		     NAND_ECCREQ(4, 512),
164 		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
165 					      &write_cache_variants,
166 					      &update_cache_variants),
167 		     SPINAND_HAS_QE_BIT,
168 		     SPINAND_ECCINFO(&gd5fxgq4xexxg_ooblayout,
169 				     gd5fxgq5xexxg_ecc_get_status)),
170 	SPINAND_INFO("GD5F2GQ5UExxG", 0x52,
171 		     NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
172 		     NAND_ECCREQ(4, 512),
173 		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
174 					      &write_cache_variants,
175 					      &update_cache_variants),
176 		     SPINAND_HAS_QE_BIT,
177 		     SPINAND_ECCINFO(&gd5fxgq4xexxg_ooblayout,
178 				     gd5fxgq5xexxg_ecc_get_status)),
179 	SPINAND_INFO("GD5F2GQ4UBExxG", 0xd2,
180 		     NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
181 		     NAND_ECCREQ(8, 512),
182 		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
183 					      &write_cache_variants,
184 					      &update_cache_variants),
185 		     SPINAND_HAS_QE_BIT,
186 		     SPINAND_ECCINFO(&gd5fxgq4xexxg_ooblayout,
187 				     gd5f1gq4xexxg_ecc_get_status)),
188 };
189 
190 static int gigadevice_spinand_detect(struct spinand_device *spinand)
191 {
192 	u8 *id = spinand->id.data;
193 	int ret;
194 
195 	/*
196 	 * For GD NANDs, There is an address byte needed to shift in before IDs
197 	 * are read out, so the first byte in raw_id is dummy.
198 	 */
199 	if (id[1] != SPINAND_MFR_GIGADEVICE)
200 		return 0;
201 
202 	ret = spinand_match_and_init(spinand, gigadevice_spinand_table,
203 				     ARRAY_SIZE(gigadevice_spinand_table),
204 				     id[2]);
205 	/* Not Only GD Nands MFR equals C8h */
206 	if (ret)
207 		return 0;
208 
209 	return 1;
210 }
211 
212 static const struct spinand_manufacturer_ops gigadevice_spinand_manuf_ops = {
213 	.detect = gigadevice_spinand_detect,
214 };
215 
216 const struct spinand_manufacturer gigadevice_spinand_manufacturer = {
217 	.id = SPINAND_MFR_GIGADEVICE,
218 	.name = "GigaDevice",
219 	.ops = &gigadevice_spinand_manuf_ops,
220 };
221