blob: 5ec4c90a637d549a644441461ffc7717c623a4bc [file] [log] [blame]
Boris Brezillon10d4e752016-06-08 10:38:57 +02001/*
2 * Copyright (C) 2017 Free Electrons
3 * Copyright (C) 2017 NextThing Co
4 *
5 * Author: Boris Brezillon <boris.brezillon@free-electrons.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
Boris Brezillond4092d72017-08-04 17:29:10 +020018#include <linux/mtd/rawnand.h>
Boris Brezillon10d4e752016-06-08 10:38:57 +020019
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +020020/*
21 * Special Micron status bit that indicates when the block has been
22 * corrected by on-die ECC and should be rewritten
23 */
24#define NAND_STATUS_WRITE_RECOMMENDED BIT(3)
25
Boris Brezillon10d4e752016-06-08 10:38:57 +020026struct nand_onfi_vendor_micron {
27 u8 two_plane_read;
28 u8 read_cache;
29 u8 read_unique_id;
30 u8 dq_imped;
31 u8 dq_imped_num_settings;
32 u8 dq_imped_feat_addr;
33 u8 rb_pulldown_strength;
34 u8 rb_pulldown_strength_feat_addr;
35 u8 rb_pulldown_strength_num_settings;
36 u8 otp_mode;
37 u8 otp_page_start;
38 u8 otp_data_prot_addr;
39 u8 otp_num_pages;
40 u8 otp_feat_addr;
41 u8 read_retry_options;
42 u8 reserved[72];
43 u8 param_revision;
44} __packed;
45
46static int micron_nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
47{
48 struct nand_chip *chip = mtd_to_nand(mtd);
49 u8 feature[ONFI_SUBFEATURE_PARAM_LEN] = {retry_mode};
50
Miquel Raynal97baea12018-03-19 14:47:20 +010051 return nand_set_features(chip, ONFI_FEATURE_ADDR_READ_RETRY, feature);
Boris Brezillon10d4e752016-06-08 10:38:57 +020052}
53
54/*
55 * Configure chip properties from Micron vendor-specific ONFI table
56 */
57static int micron_nand_onfi_init(struct nand_chip *chip)
58{
Miquel Raynala97421c2018-03-19 14:47:27 +010059 struct nand_parameters *p = &chip->parameters;
60 struct nand_onfi_vendor_micron *micron = (void *)p->onfi.vendor;
Boris Brezillon10d4e752016-06-08 10:38:57 +020061
Miquel Raynala97421c2018-03-19 14:47:27 +010062 if (chip->parameters.onfi.version && p->onfi.vendor_revision) {
63 chip->read_retries = micron->read_retry_options;
64 chip->setup_read_retry = micron_nand_setup_read_retry;
65 }
Boris Brezillon10d4e752016-06-08 10:38:57 +020066
Miquel Raynal789157e2018-03-19 14:47:28 +010067 if (p->supports_set_get_features) {
68 set_bit(ONFI_FEATURE_ADDR_READ_RETRY, p->set_feature_list);
Chris Packham12baf772018-06-19 17:31:24 +120069 set_bit(ONFI_FEATURE_ON_DIE_ECC, p->set_feature_list);
Miquel Raynal789157e2018-03-19 14:47:28 +010070 set_bit(ONFI_FEATURE_ADDR_READ_RETRY, p->get_feature_list);
Chris Packham12baf772018-06-19 17:31:24 +120071 set_bit(ONFI_FEATURE_ON_DIE_ECC, p->get_feature_list);
Miquel Raynal789157e2018-03-19 14:47:28 +010072 }
Boris Brezillon10d4e752016-06-08 10:38:57 +020073
74 return 0;
75}
76
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +020077static int micron_nand_on_die_ooblayout_ecc(struct mtd_info *mtd, int section,
78 struct mtd_oob_region *oobregion)
79{
80 if (section >= 4)
81 return -ERANGE;
82
83 oobregion->offset = (section * 16) + 8;
84 oobregion->length = 8;
85
86 return 0;
87}
88
89static int micron_nand_on_die_ooblayout_free(struct mtd_info *mtd, int section,
90 struct mtd_oob_region *oobregion)
91{
92 if (section >= 4)
93 return -ERANGE;
94
95 oobregion->offset = (section * 16) + 2;
96 oobregion->length = 6;
97
98 return 0;
99}
100
101static const struct mtd_ooblayout_ops micron_nand_on_die_ooblayout_ops = {
102 .ecc = micron_nand_on_die_ooblayout_ecc,
103 .free = micron_nand_on_die_ooblayout_free,
104};
105
106static int micron_nand_on_die_ecc_setup(struct nand_chip *chip, bool enable)
107{
108 u8 feature[ONFI_SUBFEATURE_PARAM_LEN] = { 0, };
109
110 if (enable)
111 feature[0] |= ONFI_FEATURE_ON_DIE_ECC_EN;
112
Miquel Raynal97baea12018-03-19 14:47:20 +0100113 return nand_set_features(chip, ONFI_FEATURE_ON_DIE_ECC, feature);
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200114}
115
116static int
117micron_nand_read_page_on_die_ecc(struct mtd_info *mtd, struct nand_chip *chip,
118 uint8_t *buf, int oob_required,
119 int page)
120{
Boris Brezillon97d90da2017-11-30 18:01:29 +0100121 u8 status;
122 int ret, max_bitflips = 0;
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200123
Boris Brezillon97d90da2017-11-30 18:01:29 +0100124 ret = micron_nand_on_die_ecc_setup(chip, true);
125 if (ret)
126 return ret;
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200127
Boris Brezillon97d90da2017-11-30 18:01:29 +0100128 ret = nand_read_page_op(chip, page, 0, NULL, 0);
129 if (ret)
130 goto out;
131
132 ret = nand_status_op(chip, &status);
133 if (ret)
134 goto out;
135
136 ret = nand_exit_status_op(chip);
137 if (ret)
138 goto out;
139
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200140 if (status & NAND_STATUS_FAIL)
141 mtd->ecc_stats.failed++;
Boris Brezillon97d90da2017-11-30 18:01:29 +0100142
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200143 /*
144 * The internal ECC doesn't tell us the number of bitflips
145 * that have been corrected, but tells us if it recommends to
146 * rewrite the block. If it's the case, then we pretend we had
147 * a number of bitflips equal to the ECC strength, which will
148 * hint the NAND core to rewrite the block.
149 */
150 else if (status & NAND_STATUS_WRITE_RECOMMENDED)
151 max_bitflips = chip->ecc.strength;
152
Boris Brezillon25f815f2017-11-30 18:01:30 +0100153 ret = nand_read_data_op(chip, buf, mtd->writesize, false);
154 if (!ret && oob_required)
155 ret = nand_read_data_op(chip, chip->oob_poi, mtd->oobsize,
156 false);
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200157
Boris Brezillon97d90da2017-11-30 18:01:29 +0100158out:
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200159 micron_nand_on_die_ecc_setup(chip, false);
160
Boris Brezillon97d90da2017-11-30 18:01:29 +0100161 return ret ? ret : max_bitflips;
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200162}
163
164static int
165micron_nand_write_page_on_die_ecc(struct mtd_info *mtd, struct nand_chip *chip,
166 const uint8_t *buf, int oob_required,
167 int page)
168{
Boris Brezillon97d90da2017-11-30 18:01:29 +0100169 int ret;
Boris Brezillon41145642017-05-16 18:27:49 +0200170
Boris Brezillon97d90da2017-11-30 18:01:29 +0100171 ret = micron_nand_on_die_ecc_setup(chip, true);
172 if (ret)
173 return ret;
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200174
Boris Brezillon97d90da2017-11-30 18:01:29 +0100175 ret = nand_write_page_raw(mtd, chip, buf, oob_required, page);
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200176 micron_nand_on_die_ecc_setup(chip, false);
177
Boris Brezillon97d90da2017-11-30 18:01:29 +0100178 return ret;
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200179}
180
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200181enum {
182 /* The NAND flash doesn't support on-die ECC */
183 MICRON_ON_DIE_UNSUPPORTED,
184
185 /*
186 * The NAND flash supports on-die ECC and it can be
187 * enabled/disabled by a set features command.
188 */
189 MICRON_ON_DIE_SUPPORTED,
190
191 /*
192 * The NAND flash supports on-die ECC, and it cannot be
193 * disabled.
194 */
195 MICRON_ON_DIE_MANDATORY,
196};
197
198/*
199 * Try to detect if the NAND support on-die ECC. To do this, we enable
200 * the feature, and read back if it has been enabled as expected. We
201 * also check if it can be disabled, because some Micron NANDs do not
202 * allow disabling the on-die ECC and we don't support such NANDs for
203 * now.
204 *
205 * This function also has the side effect of disabling on-die ECC if
206 * it had been left enabled by the firmware/bootloader.
207 */
208static int micron_supports_on_die_ecc(struct nand_chip *chip)
209{
210 u8 feature[ONFI_SUBFEATURE_PARAM_LEN] = { 0, };
211 int ret;
212
Miquel Raynala97421c2018-03-19 14:47:27 +0100213 if (!chip->parameters.onfi.version)
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200214 return MICRON_ON_DIE_UNSUPPORTED;
215
216 if (chip->bits_per_cell != 1)
217 return MICRON_ON_DIE_UNSUPPORTED;
218
219 ret = micron_nand_on_die_ecc_setup(chip, true);
220 if (ret)
221 return MICRON_ON_DIE_UNSUPPORTED;
222
Miquel Raynal97baea12018-03-19 14:47:20 +0100223 ret = nand_get_features(chip, ONFI_FEATURE_ON_DIE_ECC, feature);
224 if (ret < 0)
225 return ret;
226
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200227 if ((feature[0] & ONFI_FEATURE_ON_DIE_ECC_EN) == 0)
228 return MICRON_ON_DIE_UNSUPPORTED;
229
230 ret = micron_nand_on_die_ecc_setup(chip, false);
231 if (ret)
232 return MICRON_ON_DIE_UNSUPPORTED;
233
Miquel Raynal97baea12018-03-19 14:47:20 +0100234 ret = nand_get_features(chip, ONFI_FEATURE_ON_DIE_ECC, feature);
235 if (ret < 0)
236 return ret;
237
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200238 if (feature[0] & ONFI_FEATURE_ON_DIE_ECC_EN)
239 return MICRON_ON_DIE_MANDATORY;
240
241 /*
242 * Some Micron NANDs have an on-die ECC of 4/512, some other
243 * 8/512. We only support the former.
244 */
Miquel Raynala97421c2018-03-19 14:47:27 +0100245 if (chip->ecc_strength_ds != 4)
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200246 return MICRON_ON_DIE_UNSUPPORTED;
247
248 return MICRON_ON_DIE_SUPPORTED;
249}
250
Boris Brezillon10d4e752016-06-08 10:38:57 +0200251static int micron_nand_init(struct nand_chip *chip)
252{
253 struct mtd_info *mtd = nand_to_mtd(chip);
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200254 int ondie;
Boris Brezillon10d4e752016-06-08 10:38:57 +0200255 int ret;
256
257 ret = micron_nand_onfi_init(chip);
258 if (ret)
259 return ret;
260
261 if (mtd->writesize == 2048)
262 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
263
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200264 ondie = micron_supports_on_die_ecc(chip);
265
266 if (ondie == MICRON_ON_DIE_MANDATORY) {
267 pr_err("On-die ECC forcefully enabled, not supported\n");
268 return -EINVAL;
269 }
270
271 if (chip->ecc.mode == NAND_ECC_ON_DIE) {
272 if (ondie == MICRON_ON_DIE_UNSUPPORTED) {
273 pr_err("On-die ECC selected but not supported\n");
274 return -EINVAL;
275 }
276
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200277 chip->ecc.bytes = 8;
278 chip->ecc.size = 512;
279 chip->ecc.strength = 4;
280 chip->ecc.algo = NAND_ECC_BCH;
281 chip->ecc.read_page = micron_nand_read_page_on_die_ecc;
282 chip->ecc.write_page = micron_nand_write_page_on_die_ecc;
Boris Brezillon25f815f2017-11-30 18:01:30 +0100283 chip->ecc.read_page_raw = nand_read_page_raw;
284 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200285
286 mtd_set_ooblayout(mtd, &micron_nand_on_die_ooblayout_ops);
287 }
288
Boris Brezillon10d4e752016-06-08 10:38:57 +0200289 return 0;
290}
291
292const struct nand_manufacturer_ops micron_nand_manuf_ops = {
293 .init = micron_nand_init,
294};