blob: 539132ef0095f4e3f346545f30e2699de7003124 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Overview:
3 * This is the generic MTD driver for NAND flash devices. It should be
4 * capable of working with almost all NAND chips currently available.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Additional technical information is available on
maximilian attems8b2b4032007-07-28 13:07:16 +02007 * http://www.linux-mtd.infradead.org/doc/nand.html
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020010 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020012 * Credits:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000013 * David Woodhouse for adding multichip support
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
16 * rework for 2K page size chips
17 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020018 * TODO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Enable cached programming for 2k page size chips
20 * Check, if mtd->ecctype should be set to MTD_ECC_HW
Brian Norris7854d3f2011-06-23 14:12:08 -070021 * if we have HW ECC support.
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +030022 * BBT table is not serialized, has to be fixed
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License version 2 as
26 * published by the Free Software Foundation.
27 *
28 */
29
Ezequiel Garcia20171642013-11-25 08:30:31 -030030#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
David Woodhouse552d9202006-05-14 01:20:46 +010032#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/delay.h>
34#include <linux/errno.h>
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +020035#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/sched.h>
37#include <linux/slab.h>
Kamal Dasu66507c72014-05-01 20:51:19 -040038#include <linux/mm.h>
Ingo Molnar38b8d202017-02-08 18:51:31 +010039#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/types.h>
41#include <linux/mtd/mtd.h>
Boris Brezillond4092d72017-08-04 17:29:10 +020042#include <linux/mtd/rawnand.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/mtd/nand_ecc.h>
Ivan Djelic193bd402011-03-11 11:05:33 +010044#include <linux/mtd/nand_bch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/interrupt.h>
46#include <linux/bitops.h>
Florian Fainelli7351d3a2010-09-07 13:23:45 +020047#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mtd/partitions.h>
Boris Brezillond48f62b2016-04-01 14:54:32 +020049#include <linux/of.h>
Thomas Gleixner81ec5362007-12-12 17:27:03 +010050
Huang Shijie6a8214a2012-11-19 14:43:30 +080051static int nand_get_device(struct mtd_info *mtd, int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Thomas Gleixner8593fbc2006-05-29 03:26:58 +020053static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
54 struct mtd_oob_ops *ops);
55
Boris Brezillon41b207a2016-02-03 19:06:15 +010056/* Define default oob placement schemes for large and small page devices */
57static int nand_ooblayout_ecc_sp(struct mtd_info *mtd, int section,
58 struct mtd_oob_region *oobregion)
59{
60 struct nand_chip *chip = mtd_to_nand(mtd);
61 struct nand_ecc_ctrl *ecc = &chip->ecc;
62
63 if (section > 1)
64 return -ERANGE;
65
66 if (!section) {
67 oobregion->offset = 0;
Miquel Raynalf7f8c172017-07-05 08:51:09 +020068 if (mtd->oobsize == 16)
69 oobregion->length = 4;
70 else
71 oobregion->length = 3;
Boris Brezillon41b207a2016-02-03 19:06:15 +010072 } else {
Miquel Raynalf7f8c172017-07-05 08:51:09 +020073 if (mtd->oobsize == 8)
74 return -ERANGE;
75
Boris Brezillon41b207a2016-02-03 19:06:15 +010076 oobregion->offset = 6;
77 oobregion->length = ecc->total - 4;
78 }
79
80 return 0;
81}
82
83static int nand_ooblayout_free_sp(struct mtd_info *mtd, int section,
84 struct mtd_oob_region *oobregion)
85{
86 if (section > 1)
87 return -ERANGE;
88
89 if (mtd->oobsize == 16) {
90 if (section)
91 return -ERANGE;
92
93 oobregion->length = 8;
94 oobregion->offset = 8;
95 } else {
96 oobregion->length = 2;
97 if (!section)
98 oobregion->offset = 3;
99 else
100 oobregion->offset = 6;
101 }
102
103 return 0;
104}
105
106const struct mtd_ooblayout_ops nand_ooblayout_sp_ops = {
107 .ecc = nand_ooblayout_ecc_sp,
108 .free = nand_ooblayout_free_sp,
109};
110EXPORT_SYMBOL_GPL(nand_ooblayout_sp_ops);
111
112static int nand_ooblayout_ecc_lp(struct mtd_info *mtd, int section,
113 struct mtd_oob_region *oobregion)
114{
115 struct nand_chip *chip = mtd_to_nand(mtd);
116 struct nand_ecc_ctrl *ecc = &chip->ecc;
117
Miquel Raynal882fd152017-08-26 17:19:15 +0200118 if (section || !ecc->total)
Boris Brezillon41b207a2016-02-03 19:06:15 +0100119 return -ERANGE;
120
121 oobregion->length = ecc->total;
122 oobregion->offset = mtd->oobsize - oobregion->length;
123
124 return 0;
125}
126
127static int nand_ooblayout_free_lp(struct mtd_info *mtd, int section,
128 struct mtd_oob_region *oobregion)
129{
130 struct nand_chip *chip = mtd_to_nand(mtd);
131 struct nand_ecc_ctrl *ecc = &chip->ecc;
132
133 if (section)
134 return -ERANGE;
135
136 oobregion->length = mtd->oobsize - ecc->total - 2;
137 oobregion->offset = 2;
138
139 return 0;
140}
141
142const struct mtd_ooblayout_ops nand_ooblayout_lp_ops = {
143 .ecc = nand_ooblayout_ecc_lp,
144 .free = nand_ooblayout_free_lp,
145};
146EXPORT_SYMBOL_GPL(nand_ooblayout_lp_ops);
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200147
Alexander Couzens6a623e02017-05-02 12:19:00 +0200148/*
149 * Support the old "large page" layout used for 1-bit Hamming ECC where ECC
150 * are placed at a fixed offset.
151 */
152static int nand_ooblayout_ecc_lp_hamming(struct mtd_info *mtd, int section,
153 struct mtd_oob_region *oobregion)
154{
155 struct nand_chip *chip = mtd_to_nand(mtd);
156 struct nand_ecc_ctrl *ecc = &chip->ecc;
157
158 if (section)
159 return -ERANGE;
160
161 switch (mtd->oobsize) {
162 case 64:
163 oobregion->offset = 40;
164 break;
165 case 128:
166 oobregion->offset = 80;
167 break;
168 default:
169 return -EINVAL;
170 }
171
172 oobregion->length = ecc->total;
173 if (oobregion->offset + oobregion->length > mtd->oobsize)
174 return -ERANGE;
175
176 return 0;
177}
178
179static int nand_ooblayout_free_lp_hamming(struct mtd_info *mtd, int section,
180 struct mtd_oob_region *oobregion)
181{
182 struct nand_chip *chip = mtd_to_nand(mtd);
183 struct nand_ecc_ctrl *ecc = &chip->ecc;
184 int ecc_offset = 0;
185
186 if (section < 0 || section > 1)
187 return -ERANGE;
188
189 switch (mtd->oobsize) {
190 case 64:
191 ecc_offset = 40;
192 break;
193 case 128:
194 ecc_offset = 80;
195 break;
196 default:
197 return -EINVAL;
198 }
199
200 if (section == 0) {
201 oobregion->offset = 2;
202 oobregion->length = ecc_offset - 2;
203 } else {
204 oobregion->offset = ecc_offset + ecc->total;
205 oobregion->length = mtd->oobsize - oobregion->offset;
206 }
207
208 return 0;
209}
210
Colin Ian Kingd4ed3b92017-05-04 13:11:00 +0100211static const struct mtd_ooblayout_ops nand_ooblayout_lp_hamming_ops = {
Alexander Couzens6a623e02017-05-02 12:19:00 +0200212 .ecc = nand_ooblayout_ecc_lp_hamming,
213 .free = nand_ooblayout_free_lp_hamming,
214};
215
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530216static int check_offs_len(struct mtd_info *mtd,
217 loff_t ofs, uint64_t len)
218{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100219 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530220 int ret = 0;
221
222 /* Start address must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300223 if (ofs & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700224 pr_debug("%s: unaligned address\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530225 ret = -EINVAL;
226 }
227
228 /* Length must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300229 if (len & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700230 pr_debug("%s: length not block aligned\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530231 ret = -EINVAL;
232 }
233
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530234 return ret;
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/**
238 * nand_release_device - [GENERIC] release chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700239 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000240 *
Huang Shijieb0bb6902012-11-19 14:43:29 +0800241 * Release chip lock and wake up anyone waiting on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100243static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100245 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200247 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200248 spin_lock(&chip->controller->lock);
249 chip->controller->active = NULL;
250 chip->state = FL_READY;
251 wake_up(&chip->controller->wq);
252 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255/**
256 * nand_read_byte - [DEFAULT] read one byte from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700257 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700259 * Default read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200261static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100263 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200264 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267/**
Masanari Iida064a7692012-11-09 23:20:58 +0900268 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700269 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700271 * Default read function for 16bit buswidth with endianness conversion.
272 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200274static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100276 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200277 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 * nand_read_word - [DEFAULT] read one word from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700282 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700284 * Default read function for 16bit buswidth without endianness conversion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 */
286static u16 nand_read_word(struct mtd_info *mtd)
287{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100288 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200289 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 * nand_select_chip - [DEFAULT] control CE line
Brian Norris8b6e50c2011-05-25 14:59:01 -0700294 * @mtd: MTD device structure
295 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 *
297 * Default select function for 1 chip devices.
298 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200299static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100301 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200302
303 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200305 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 break;
307 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 break;
309
310 default:
311 BUG();
312 }
313}
314
315/**
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100316 * nand_write_byte - [DEFAULT] write single byte to chip
317 * @mtd: MTD device structure
318 * @byte: value to write
319 *
320 * Default function to write a byte to I/O[7:0]
321 */
322static void nand_write_byte(struct mtd_info *mtd, uint8_t byte)
323{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100324 struct nand_chip *chip = mtd_to_nand(mtd);
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100325
326 chip->write_buf(mtd, &byte, 1);
327}
328
329/**
330 * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16
331 * @mtd: MTD device structure
332 * @byte: value to write
333 *
334 * Default function to write a byte to I/O[7:0] on a 16-bit wide chip.
335 */
336static void nand_write_byte16(struct mtd_info *mtd, uint8_t byte)
337{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100338 struct nand_chip *chip = mtd_to_nand(mtd);
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100339 uint16_t word = byte;
340
341 /*
342 * It's not entirely clear what should happen to I/O[15:8] when writing
343 * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads:
344 *
345 * When the host supports a 16-bit bus width, only data is
346 * transferred at the 16-bit width. All address and command line
347 * transfers shall use only the lower 8-bits of the data bus. During
348 * command transfers, the host may place any value on the upper
349 * 8-bits of the data bus. During address transfers, the host shall
350 * set the upper 8-bits of the data bus to 00h.
351 *
352 * One user of the write_byte callback is nand_onfi_set_features. The
353 * four parameters are specified to be written to I/O[7:0], but this is
354 * neither an address nor a command transfer. Let's assume a 0 on the
355 * upper I/O lines is OK.
356 */
357 chip->write_buf(mtd, (uint8_t *)&word, 2);
358}
359
360/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * nand_write_buf - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700362 * @mtd: MTD device structure
363 * @buf: data buffer
364 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700366 * Default write function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200368static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100370 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Alexander Shiyan76413832013-04-13 09:32:13 +0400372 iowrite8_rep(chip->IO_ADDR_W, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000376 * nand_read_buf - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700377 * @mtd: MTD device structure
378 * @buf: buffer to store date
379 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700381 * Default read function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200383static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100385 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Alexander Shiyan76413832013-04-13 09:32:13 +0400387 ioread8_rep(chip->IO_ADDR_R, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
390/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 * nand_write_buf16 - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700392 * @mtd: MTD device structure
393 * @buf: data buffer
394 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700396 * Default write function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200398static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100400 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 u16 *p = (u16 *) buf;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000402
Alexander Shiyan76413832013-04-13 09:32:13 +0400403 iowrite16_rep(chip->IO_ADDR_W, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000407 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700408 * @mtd: MTD device structure
409 * @buf: buffer to store date
410 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700412 * Default read function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200414static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100416 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 u16 *p = (u16 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Alexander Shiyan76413832013-04-13 09:32:13 +0400419 ioread16_rep(chip->IO_ADDR_R, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
422/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700424 * @mtd: MTD device structure
425 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000427 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 */
Archit Taneja9f3e0422016-02-03 14:29:49 +0530429static int nand_block_bad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Masahiro Yamadac120e752017-03-23 05:07:01 +0900431 int page, page_end, res;
Boris BREZILLON862eba52015-12-01 12:03:03 +0100432 struct nand_chip *chip = mtd_to_nand(mtd);
Masahiro Yamadac120e752017-03-23 05:07:01 +0900433 u8 bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Brian Norris5fb15492011-05-31 16:31:21 -0700435 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700436 ofs += mtd->erasesize - mtd->writesize;
437
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100438 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
Masahiro Yamadac120e752017-03-23 05:07:01 +0900439 page_end = page + (chip->bbt_options & NAND_BBT_SCAN2NDPAGE ? 2 : 1);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100440
Masahiro Yamadac120e752017-03-23 05:07:01 +0900441 for (; page < page_end; page++) {
442 res = chip->ecc.read_oob(mtd, chip, page);
443 if (res)
444 return res;
445
446 bad = chip->oob_poi[chip->badblockpos];
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000447
Brian Norriscdbec052012-01-13 18:11:48 -0800448 if (likely(chip->badblockbits == 8))
449 res = bad != 0xFF;
450 else
451 res = hweight8(bad) < chip->badblockbits;
Masahiro Yamadac120e752017-03-23 05:07:01 +0900452 if (res)
453 return res;
454 }
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200455
Masahiro Yamadac120e752017-03-23 05:07:01 +0900456 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
459/**
Brian Norris5a0edb22013-07-30 17:52:58 -0700460 * nand_default_block_markbad - [DEFAULT] mark a block bad via bad block marker
Brian Norris8b6e50c2011-05-25 14:59:01 -0700461 * @mtd: MTD device structure
462 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700464 * This is the default implementation, which can be overridden by a hardware
Brian Norris5a0edb22013-07-30 17:52:58 -0700465 * specific driver. It provides the details for writing a bad block marker to a
466 * block.
467 */
468static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
469{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100470 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris5a0edb22013-07-30 17:52:58 -0700471 struct mtd_oob_ops ops;
472 uint8_t buf[2] = { 0, 0 };
473 int ret = 0, res, i = 0;
474
Brian Norris0ec56dc2015-02-28 02:02:30 -0800475 memset(&ops, 0, sizeof(ops));
Brian Norris5a0edb22013-07-30 17:52:58 -0700476 ops.oobbuf = buf;
477 ops.ooboffs = chip->badblockpos;
478 if (chip->options & NAND_BUSWIDTH_16) {
479 ops.ooboffs &= ~0x01;
480 ops.len = ops.ooblen = 2;
481 } else {
482 ops.len = ops.ooblen = 1;
483 }
484 ops.mode = MTD_OPS_PLACE_OOB;
485
486 /* Write to first/last page(s) if necessary */
487 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
488 ofs += mtd->erasesize - mtd->writesize;
489 do {
490 res = nand_do_write_oob(mtd, ofs, &ops);
491 if (!ret)
492 ret = res;
493
494 i++;
495 ofs += mtd->writesize;
496 } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2);
497
498 return ret;
499}
500
501/**
502 * nand_block_markbad_lowlevel - mark a block bad
503 * @mtd: MTD device structure
504 * @ofs: offset from device start
505 *
506 * This function performs the generic NAND bad block marking steps (i.e., bad
507 * block table(s) and/or marker(s)). We only allow the hardware driver to
508 * specify how to write bad block markers to OOB (chip->block_markbad).
509 *
Brian Norrisb32843b2013-07-30 17:52:59 -0700510 * We try operations in the following order:
Mauro Carvalho Chehabb6f6c292017-05-13 07:40:36 -0300511 *
Brian Norrise2414f42012-02-06 13:44:00 -0800512 * (1) erase the affected block, to allow OOB marker to be written cleanly
Brian Norrisb32843b2013-07-30 17:52:59 -0700513 * (2) write bad block marker to OOB area of affected block (unless flag
514 * NAND_BBT_NO_OOB_BBM is present)
515 * (3) update the BBT
Mauro Carvalho Chehabb6f6c292017-05-13 07:40:36 -0300516 *
Brian Norrisb32843b2013-07-30 17:52:59 -0700517 * Note that we retain the first error encountered in (2) or (3), finish the
Brian Norrise2414f42012-02-06 13:44:00 -0800518 * procedures, and dump the error in the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519*/
Brian Norris5a0edb22013-07-30 17:52:58 -0700520static int nand_block_markbad_lowlevel(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100522 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norrisb32843b2013-07-30 17:52:59 -0700523 int res, ret = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000524
Brian Norrisb32843b2013-07-30 17:52:59 -0700525 if (!(chip->bbt_options & NAND_BBT_NO_OOB_BBM)) {
Brian Norris00918422012-01-13 18:11:47 -0800526 struct erase_info einfo;
527
528 /* Attempt erase before marking OOB */
529 memset(&einfo, 0, sizeof(einfo));
530 einfo.mtd = mtd;
531 einfo.addr = ofs;
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300532 einfo.len = 1ULL << chip->phys_erase_shift;
Brian Norris00918422012-01-13 18:11:47 -0800533 nand_erase_nand(mtd, &einfo, 0);
Brian Norris00918422012-01-13 18:11:47 -0800534
Brian Norrisb32843b2013-07-30 17:52:59 -0700535 /* Write bad block marker to OOB */
Huang Shijie6a8214a2012-11-19 14:43:30 +0800536 nand_get_device(mtd, FL_WRITING);
Brian Norris5a0edb22013-07-30 17:52:58 -0700537 ret = chip->block_markbad(mtd, ofs);
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300538 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200539 }
Brian Norrise2414f42012-02-06 13:44:00 -0800540
Brian Norrisb32843b2013-07-30 17:52:59 -0700541 /* Mark block bad in BBT */
542 if (chip->bbt) {
543 res = nand_markbad_bbt(mtd, ofs);
Brian Norrise2414f42012-02-06 13:44:00 -0800544 if (!ret)
545 ret = res;
546 }
547
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200548 if (!ret)
549 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300550
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200551 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000554/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700556 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700558 * Check, if the device is write protected. The function expects, that the
559 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100561static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100563 struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon97d90da2017-11-30 18:01:29 +0100564 u8 status;
565 int ret;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200566
Brian Norris8b6e50c2011-05-25 14:59:01 -0700567 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200568 if (chip->options & NAND_BROKEN_XD)
569 return 0;
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /* Check the WP bit */
Boris Brezillon97d90da2017-11-30 18:01:29 +0100572 ret = nand_status_op(chip, &status);
573 if (ret)
574 return ret;
575
576 return status & NAND_STATUS_WP ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
579/**
Gu Zhengc30e1f72014-09-03 17:49:10 +0800580 * nand_block_isreserved - [GENERIC] Check if a block is marked reserved.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700581 * @mtd: MTD device structure
582 * @ofs: offset from device start
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300583 *
Gu Zhengc30e1f72014-09-03 17:49:10 +0800584 * Check if the block is marked as reserved.
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300585 */
586static int nand_block_isreserved(struct mtd_info *mtd, loff_t ofs)
587{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100588 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300589
590 if (!chip->bbt)
591 return 0;
592 /* Return info from the table */
593 return nand_isreserved_bbt(mtd, ofs);
594}
595
596/**
597 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
598 * @mtd: MTD device structure
599 * @ofs: offset from device start
Brian Norris8b6e50c2011-05-25 14:59:01 -0700600 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 *
602 * Check, if the block is bad. Either by reading the bad block table or
603 * calling of the scan function.
604 */
Archit Taneja9f3e0422016-02-03 14:29:49 +0530605static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100607 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000608
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200609 if (!chip->bbt)
Archit Taneja9f3e0422016-02-03 14:29:49 +0530610 return chip->block_bad(mtd, ofs);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100613 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200616/**
617 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700618 * @mtd: MTD device structure
619 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200620 *
621 * Helper function for nand_wait_ready used when needing to wait in interrupt
622 * context.
623 */
624static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
625{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100626 struct nand_chip *chip = mtd_to_nand(mtd);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200627 int i;
628
629 /* Wait for the device to get ready */
630 for (i = 0; i < timeo; i++) {
631 if (chip->dev_ready(mtd))
632 break;
633 touch_softlockup_watchdog();
634 mdelay(1);
635 }
636}
637
Alex Smithb70af9b2015-10-06 14:52:07 +0100638/**
639 * nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
640 * @mtd: MTD device structure
641 *
642 * Wait for the ready pin after a command, and warn if a timeout occurs.
643 */
David Woodhouse4b648b02006-09-25 17:05:24 +0100644void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000645{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100646 struct nand_chip *chip = mtd_to_nand(mtd);
Alex Smithb70af9b2015-10-06 14:52:07 +0100647 unsigned long timeo = 400;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000648
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200649 if (in_interrupt() || oops_in_progress)
Alex Smithb70af9b2015-10-06 14:52:07 +0100650 return panic_nand_wait_ready(mtd, timeo);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200651
Brian Norris7854d3f2011-06-23 14:12:08 -0700652 /* Wait until command is processed or timeout occurs */
Alex Smithb70af9b2015-10-06 14:52:07 +0100653 timeo = jiffies + msecs_to_jiffies(timeo);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000654 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200655 if (chip->dev_ready(mtd))
Ezequiel Garcia4c7e0542016-04-12 17:46:41 -0300656 return;
Alex Smithb70af9b2015-10-06 14:52:07 +0100657 cond_resched();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000658 } while (time_before(jiffies, timeo));
Alex Smithb70af9b2015-10-06 14:52:07 +0100659
Brian Norris9ebfdf52016-03-04 17:19:23 -0800660 if (!chip->dev_ready(mtd))
661 pr_warn_ratelimited("timeout while waiting for chip to become ready\n");
Thomas Gleixner3b887752005-02-22 21:56:49 +0000662}
David Woodhouse4b648b02006-09-25 17:05:24 +0100663EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665/**
Roger Quadros60c70d62015-02-23 17:26:39 +0200666 * nand_wait_status_ready - [GENERIC] Wait for the ready status after commands.
667 * @mtd: MTD device structure
668 * @timeo: Timeout in ms
669 *
670 * Wait for status ready (i.e. command done) or timeout.
671 */
672static void nand_wait_status_ready(struct mtd_info *mtd, unsigned long timeo)
673{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100674 register struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon97d90da2017-11-30 18:01:29 +0100675 int ret;
Roger Quadros60c70d62015-02-23 17:26:39 +0200676
677 timeo = jiffies + msecs_to_jiffies(timeo);
678 do {
Boris Brezillon97d90da2017-11-30 18:01:29 +0100679 u8 status;
680
681 ret = nand_read_data_op(chip, &status, sizeof(status), true);
682 if (ret)
683 return;
684
685 if (status & NAND_STATUS_READY)
Roger Quadros60c70d62015-02-23 17:26:39 +0200686 break;
687 touch_softlockup_watchdog();
688 } while (time_before(jiffies, timeo));
689};
690
691/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700693 * @mtd: MTD device structure
694 * @command: the command to be sent
695 * @column: the column address for this command, -1 if none
696 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700698 * Send command to NAND device. This function is used for small page devices
Artem Bityutskiy51148f12013-03-05 15:00:51 +0200699 * (512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200701static void nand_command(struct mtd_info *mtd, unsigned int command,
702 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100704 register struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200705 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Brian Norris8b6e50c2011-05-25 14:59:01 -0700707 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (command == NAND_CMD_SEQIN) {
709 int readcmd;
710
Joern Engel28318772006-05-22 23:18:05 +0200711 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200713 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 readcmd = NAND_CMD_READOOB;
715 } else if (column < 256) {
716 /* First 256 bytes --> READ0 */
717 readcmd = NAND_CMD_READ0;
718 } else {
719 column -= 256;
720 readcmd = NAND_CMD_READ1;
721 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200722 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200723 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
Miquel Raynaldf467892017-11-08 17:00:27 +0100725 if (command != NAND_CMD_NONE)
726 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Brian Norris8b6e50c2011-05-25 14:59:01 -0700728 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200729 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
730 /* Serially input address */
731 if (column != -1) {
732 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800733 if (chip->options & NAND_BUSWIDTH_16 &&
734 !nand_opcode_8bits(command))
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200735 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200736 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200737 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200739 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200740 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200741 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200742 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Masahiro Yamada14157f82017-09-13 11:05:50 +0900743 if (chip->options & NAND_ROW_ADDR_3)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200744 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200745 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200746 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000747
748 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700749 * Program and erase have their own busy handlers status and sequential
750 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100751 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000753
Miquel Raynaldf467892017-11-08 17:00:27 +0100754 case NAND_CMD_NONE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 case NAND_CMD_PAGEPROG:
756 case NAND_CMD_ERASE1:
757 case NAND_CMD_ERASE2:
758 case NAND_CMD_SEQIN:
759 case NAND_CMD_STATUS:
Masahiro Yamada3158fa02017-03-23 09:17:49 +0900760 case NAND_CMD_READID:
Masahiro Yamadac5d664a2017-03-23 09:17:50 +0900761 case NAND_CMD_SET_FEATURES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return;
763
764 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200765 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200767 udelay(chip->chip_delay);
768 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200769 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200770 chip->cmd_ctrl(mtd,
771 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200772 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
773 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return;
775
David Woodhousee0c7d762006-05-13 18:07:53 +0100776 /* This applies to read commands */
Boris Brezillon2165c4a2017-05-16 18:35:45 +0200777 case NAND_CMD_READ0:
778 /*
779 * READ0 is sometimes used to exit GET STATUS mode. When this
780 * is the case no address cycles are requested, and we can use
781 * this information to detect that we should not wait for the
782 * device to be ready.
783 */
784 if (column == -1 && page_addr == -1)
785 return;
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000788 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 * If we don't have access to the busy pin, we apply the given
790 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100791 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200792 if (!chip->dev_ready) {
793 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700797 /*
798 * Apply this short delay always to ensure that we do wait tWB in
799 * any case on any machine.
800 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100801 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000802
803 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200806static void nand_ccs_delay(struct nand_chip *chip)
807{
808 /*
809 * The controller already takes care of waiting for tCCS when the RNDIN
810 * or RNDOUT command is sent, return directly.
811 */
812 if (!(chip->options & NAND_WAIT_TCCS))
813 return;
814
815 /*
816 * Wait tCCS_min if it is correctly defined, otherwise wait 500ns
817 * (which should be safe for all NANDs).
818 */
819 if (chip->data_interface && chip->data_interface->timings.sdr.tCCS_min)
820 ndelay(chip->data_interface->timings.sdr.tCCS_min / 1000);
821 else
822 ndelay(500);
823}
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825/**
826 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700827 * @mtd: MTD device structure
828 * @command: the command to be sent
829 * @column: the column address for this command, -1 if none
830 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200832 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700833 * devices. We don't have the separate regions as we have in the small page
834 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200836static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
837 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100839 register struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 /* Emulate NAND_CMD_READOOB */
842 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200843 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 command = NAND_CMD_READ0;
845 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000846
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200847 /* Command latch cycle */
Miquel Raynaldf467892017-11-08 17:00:27 +0100848 if (command != NAND_CMD_NONE)
849 chip->cmd_ctrl(mtd, command,
850 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200853 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 /* Serially input address */
856 if (column != -1) {
857 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800858 if (chip->options & NAND_BUSWIDTH_16 &&
859 !nand_opcode_8bits(command))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200861 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200862 ctrl &= ~NAND_CTRL_CHANGE;
Boris Brezillonfde85cf2016-06-15 13:09:51 +0200863
Brian Norrisf5b88de2016-10-03 09:49:35 -0700864 /* Only output a single addr cycle for 8bits opcodes. */
Boris Brezillonfde85cf2016-06-15 13:09:51 +0200865 if (!nand_opcode_8bits(command))
866 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200869 chip->cmd_ctrl(mtd, page_addr, ctrl);
870 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200871 NAND_NCE | NAND_ALE);
Masahiro Yamada14157f82017-09-13 11:05:50 +0900872 if (chip->options & NAND_ROW_ADDR_3)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200873 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200874 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200877 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000878
879 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700880 * Program and erase have their own busy handlers status, sequential
Gerhard Sittig7a442f12014-03-29 14:36:22 +0100881 * in and status need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000882 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000884
Miquel Raynaldf467892017-11-08 17:00:27 +0100885 case NAND_CMD_NONE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 case NAND_CMD_CACHEDPROG:
887 case NAND_CMD_PAGEPROG:
888 case NAND_CMD_ERASE1:
889 case NAND_CMD_ERASE2:
890 case NAND_CMD_SEQIN:
891 case NAND_CMD_STATUS:
Masahiro Yamada3158fa02017-03-23 09:17:49 +0900892 case NAND_CMD_READID:
Masahiro Yamadac5d664a2017-03-23 09:17:50 +0900893 case NAND_CMD_SET_FEATURES:
David A. Marlin30f464b2005-01-17 18:35:25 +0000894 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200896 case NAND_CMD_RNDIN:
897 nand_ccs_delay(chip);
898 return;
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200901 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200903 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200904 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
905 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
906 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
907 NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200908 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
909 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return;
911
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200912 case NAND_CMD_RNDOUT:
913 /* No ready / busy check necessary */
914 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
915 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
916 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
917 NAND_NCE | NAND_CTRL_CHANGE);
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200918
919 nand_ccs_delay(chip);
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200920 return;
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 case NAND_CMD_READ0:
Boris Brezillon2165c4a2017-05-16 18:35:45 +0200923 /*
924 * READ0 is sometimes used to exit GET STATUS mode. When this
925 * is the case no address cycles are requested, and we can use
926 * this information to detect that READSTART should not be
927 * issued.
928 */
929 if (column == -1 && page_addr == -1)
930 return;
931
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200932 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
933 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
934 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
935 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000936
David Woodhousee0c7d762006-05-13 18:07:53 +0100937 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000939 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700941 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100942 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200943 if (!chip->dev_ready) {
944 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000948
Brian Norris8b6e50c2011-05-25 14:59:01 -0700949 /*
950 * Apply this short delay always to ensure that we do wait tWB in
951 * any case on any machine.
952 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100953 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000954
955 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
958/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200959 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700960 * @chip: the nand chip descriptor
961 * @mtd: MTD device structure
962 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200963 *
964 * Used when in panic, no locks are taken.
965 */
966static void panic_nand_get_device(struct nand_chip *chip,
967 struct mtd_info *mtd, int new_state)
968{
Brian Norris7854d3f2011-06-23 14:12:08 -0700969 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200970 chip->controller->active = chip;
971 chip->state = new_state;
972}
973
974/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700976 * @mtd: MTD device structure
977 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 *
979 * Get the device and lock it for exclusive access
980 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200981static int
Huang Shijie6a8214a2012-11-19 14:43:30 +0800982nand_get_device(struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100984 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200985 spinlock_t *lock = &chip->controller->lock;
986 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100987 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200988retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100989 spin_lock(lock);
990
vimal singhb8b3ee92009-07-09 20:41:22 +0530991 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200992 if (!chip->controller->active)
993 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200994
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200995 if (chip->controller->active == chip && chip->state == FL_READY) {
996 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100997 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100998 return 0;
999 }
1000 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -08001001 if (chip->controller->active->state == FL_PM_SUSPENDED) {
1002 chip->state = FL_PM_SUSPENDED;
1003 spin_unlock(lock);
1004 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -08001005 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +01001006 }
1007 set_current_state(TASK_UNINTERRUPTIBLE);
1008 add_wait_queue(wq, &wait);
1009 spin_unlock(lock);
1010 schedule();
1011 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 goto retry;
1013}
1014
1015/**
Brian Norris8b6e50c2011-05-25 14:59:01 -07001016 * panic_nand_wait - [GENERIC] wait until the command is done
1017 * @mtd: MTD device structure
1018 * @chip: NAND chip structure
1019 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001020 *
1021 * Wait for command done. This is a helper function for nand_wait used when
1022 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001023 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001024 */
1025static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
1026 unsigned long timeo)
1027{
1028 int i;
1029 for (i = 0; i < timeo; i++) {
1030 if (chip->dev_ready) {
1031 if (chip->dev_ready(mtd))
1032 break;
1033 } else {
Boris Brezillon97d90da2017-11-30 18:01:29 +01001034 int ret;
1035 u8 status;
1036
1037 ret = nand_read_data_op(chip, &status, sizeof(status),
1038 true);
1039 if (ret)
1040 return;
1041
1042 if (status & NAND_STATUS_READY)
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001043 break;
1044 }
1045 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +02001046 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001047}
1048
1049/**
Brian Norris8b6e50c2011-05-25 14:59:01 -07001050 * nand_wait - [DEFAULT] wait until the command is done
1051 * @mtd: MTD device structure
1052 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 *
Alex Smithb70af9b2015-10-06 14:52:07 +01001054 * Wait for command done. This applies to erase and program only.
Randy Dunlap844d3b42006-06-28 21:48:27 -07001055 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001056static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058
Alex Smithb70af9b2015-10-06 14:52:07 +01001059 unsigned long timeo = 400;
Boris Brezillon97d90da2017-11-30 18:01:29 +01001060 u8 status;
1061 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Brian Norris8b6e50c2011-05-25 14:59:01 -07001063 /*
1064 * Apply this short delay always to ensure that we do wait tWB in any
1065 * case on any machine.
1066 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001067 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Boris Brezillon97d90da2017-11-30 18:01:29 +01001069 ret = nand_status_op(chip, NULL);
1070 if (ret)
1071 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001073 if (in_interrupt() || oops_in_progress)
1074 panic_nand_wait(mtd, chip, timeo);
1075 else {
Huang Shijie6d2559f2013-01-30 10:03:56 +08001076 timeo = jiffies + msecs_to_jiffies(timeo);
Alex Smithb70af9b2015-10-06 14:52:07 +01001077 do {
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001078 if (chip->dev_ready) {
1079 if (chip->dev_ready(mtd))
1080 break;
1081 } else {
Boris Brezillon97d90da2017-11-30 18:01:29 +01001082 ret = nand_read_data_op(chip, &status,
1083 sizeof(status), true);
1084 if (ret)
1085 return ret;
1086
1087 if (status & NAND_STATUS_READY)
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001088 break;
1089 }
1090 cond_resched();
Alex Smithb70af9b2015-10-06 14:52:07 +01001091 } while (time_before(jiffies, timeo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
Richard Purdie8fe833c2006-03-31 02:31:14 -08001093
Boris Brezillon97d90da2017-11-30 18:01:29 +01001094 ret = nand_read_data_op(chip, &status, sizeof(status), true);
1095 if (ret)
1096 return ret;
1097
Matthieu CASTETf251b8d2012-11-05 15:00:44 +01001098 /* This can happen if in case of timeout or buggy dev_ready */
1099 WARN_ON(!(status & NAND_STATUS_READY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return status;
1101}
1102
1103/**
Boris Brezillond8e725d2016-09-15 10:32:50 +02001104 * nand_reset_data_interface - Reset data interface and timings
1105 * @chip: The NAND chip
Boris Brezillon104e4422017-03-16 09:35:58 +01001106 * @chipnr: Internal die id
Boris Brezillond8e725d2016-09-15 10:32:50 +02001107 *
1108 * Reset the Data interface and timings to ONFI mode 0.
1109 *
1110 * Returns 0 for success or negative error code otherwise.
1111 */
Boris Brezillon104e4422017-03-16 09:35:58 +01001112static int nand_reset_data_interface(struct nand_chip *chip, int chipnr)
Boris Brezillond8e725d2016-09-15 10:32:50 +02001113{
1114 struct mtd_info *mtd = nand_to_mtd(chip);
1115 const struct nand_data_interface *conf;
1116 int ret;
1117
1118 if (!chip->setup_data_interface)
1119 return 0;
1120
1121 /*
1122 * The ONFI specification says:
1123 * "
1124 * To transition from NV-DDR or NV-DDR2 to the SDR data
1125 * interface, the host shall use the Reset (FFh) command
1126 * using SDR timing mode 0. A device in any timing mode is
1127 * required to recognize Reset (FFh) command issued in SDR
1128 * timing mode 0.
1129 * "
1130 *
1131 * Configure the data interface in SDR mode and set the
1132 * timings to timing mode 0.
1133 */
1134
1135 conf = nand_get_default_data_interface();
Boris Brezillon104e4422017-03-16 09:35:58 +01001136 ret = chip->setup_data_interface(mtd, chipnr, conf);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001137 if (ret)
1138 pr_err("Failed to configure data interface to SDR timing mode 0\n");
1139
1140 return ret;
1141}
1142
1143/**
1144 * nand_setup_data_interface - Setup the best data interface and timings
1145 * @chip: The NAND chip
Boris Brezillon104e4422017-03-16 09:35:58 +01001146 * @chipnr: Internal die id
Boris Brezillond8e725d2016-09-15 10:32:50 +02001147 *
1148 * Find and configure the best data interface and NAND timings supported by
1149 * the chip and the driver.
1150 * First tries to retrieve supported timing modes from ONFI information,
1151 * and if the NAND chip does not support ONFI, relies on the
1152 * ->onfi_timing_mode_default specified in the nand_ids table.
1153 *
1154 * Returns 0 for success or negative error code otherwise.
1155 */
Boris Brezillon104e4422017-03-16 09:35:58 +01001156static int nand_setup_data_interface(struct nand_chip *chip, int chipnr)
Boris Brezillond8e725d2016-09-15 10:32:50 +02001157{
1158 struct mtd_info *mtd = nand_to_mtd(chip);
1159 int ret;
1160
1161 if (!chip->setup_data_interface || !chip->data_interface)
1162 return 0;
1163
1164 /*
1165 * Ensure the timing mode has been changed on the chip side
1166 * before changing timings on the controller side.
1167 */
Boris Brezillona11bf5e2017-07-31 10:29:56 +02001168 if (chip->onfi_version &&
1169 (le16_to_cpu(chip->onfi_params.opt_cmd) &
1170 ONFI_OPT_CMD_SET_GET_FEATURES)) {
Boris Brezillond8e725d2016-09-15 10:32:50 +02001171 u8 tmode_param[ONFI_SUBFEATURE_PARAM_LEN] = {
1172 chip->onfi_timing_mode_default,
1173 };
1174
1175 ret = chip->onfi_set_features(mtd, chip,
1176 ONFI_FEATURE_ADDR_TIMING_MODE,
1177 tmode_param);
1178 if (ret)
1179 goto err;
1180 }
1181
Boris Brezillon104e4422017-03-16 09:35:58 +01001182 ret = chip->setup_data_interface(mtd, chipnr, chip->data_interface);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001183err:
1184 return ret;
1185}
1186
1187/**
1188 * nand_init_data_interface - find the best data interface and timings
1189 * @chip: The NAND chip
1190 *
1191 * Find the best data interface and NAND timings supported by the chip
1192 * and the driver.
1193 * First tries to retrieve supported timing modes from ONFI information,
1194 * and if the NAND chip does not support ONFI, relies on the
1195 * ->onfi_timing_mode_default specified in the nand_ids table. After this
1196 * function nand_chip->data_interface is initialized with the best timing mode
1197 * available.
1198 *
1199 * Returns 0 for success or negative error code otherwise.
1200 */
1201static int nand_init_data_interface(struct nand_chip *chip)
1202{
1203 struct mtd_info *mtd = nand_to_mtd(chip);
1204 int modes, mode, ret;
1205
1206 if (!chip->setup_data_interface)
1207 return 0;
1208
1209 /*
1210 * First try to identify the best timings from ONFI parameters and
1211 * if the NAND does not support ONFI, fallback to the default ONFI
1212 * timing mode.
1213 */
1214 modes = onfi_get_async_timing_mode(chip);
1215 if (modes == ONFI_TIMING_MODE_UNKNOWN) {
1216 if (!chip->onfi_timing_mode_default)
1217 return 0;
1218
1219 modes = GENMASK(chip->onfi_timing_mode_default, 0);
1220 }
1221
1222 chip->data_interface = kzalloc(sizeof(*chip->data_interface),
1223 GFP_KERNEL);
1224 if (!chip->data_interface)
1225 return -ENOMEM;
1226
1227 for (mode = fls(modes) - 1; mode >= 0; mode--) {
1228 ret = onfi_init_data_interface(chip, chip->data_interface,
1229 NAND_SDR_IFACE, mode);
1230 if (ret)
1231 continue;
1232
Boris Brezillon104e4422017-03-16 09:35:58 +01001233 /* Pass -1 to only */
1234 ret = chip->setup_data_interface(mtd,
1235 NAND_DATA_IFACE_CHECK_ONLY,
1236 chip->data_interface);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001237 if (!ret) {
1238 chip->onfi_timing_mode_default = mode;
1239 break;
1240 }
1241 }
1242
1243 return 0;
1244}
1245
1246static void nand_release_data_interface(struct nand_chip *chip)
1247{
1248 kfree(chip->data_interface);
1249}
1250
1251/**
Boris Brezillon97d90da2017-11-30 18:01:29 +01001252 * nand_read_page_op - Do a READ PAGE operation
1253 * @chip: The NAND chip
1254 * @page: page to read
1255 * @offset_in_page: offset within the page
1256 * @buf: buffer used to store the data
1257 * @len: length of the buffer
1258 *
1259 * This function issues a READ PAGE operation.
1260 * This function does not select/unselect the CS line.
1261 *
1262 * Returns 0 on success, a negative error code otherwise.
1263 */
1264int nand_read_page_op(struct nand_chip *chip, unsigned int page,
1265 unsigned int offset_in_page, void *buf, unsigned int len)
1266{
1267 struct mtd_info *mtd = nand_to_mtd(chip);
1268
1269 if (len && !buf)
1270 return -EINVAL;
1271
1272 if (offset_in_page + len > mtd->writesize + mtd->oobsize)
1273 return -EINVAL;
1274
1275 chip->cmdfunc(mtd, NAND_CMD_READ0, offset_in_page, page);
1276 if (len)
1277 chip->read_buf(mtd, buf, len);
1278
1279 return 0;
1280}
1281EXPORT_SYMBOL_GPL(nand_read_page_op);
1282
1283/**
1284 * nand_read_param_page_op - Do a READ PARAMETER PAGE operation
1285 * @chip: The NAND chip
1286 * @page: parameter page to read
1287 * @buf: buffer used to store the data
1288 * @len: length of the buffer
1289 *
1290 * This function issues a READ PARAMETER PAGE operation.
1291 * This function does not select/unselect the CS line.
1292 *
1293 * Returns 0 on success, a negative error code otherwise.
1294 */
1295static int nand_read_param_page_op(struct nand_chip *chip, u8 page, void *buf,
1296 unsigned int len)
1297{
1298 struct mtd_info *mtd = nand_to_mtd(chip);
1299 unsigned int i;
1300 u8 *p = buf;
1301
1302 if (len && !buf)
1303 return -EINVAL;
1304
1305 chip->cmdfunc(mtd, NAND_CMD_PARAM, page, -1);
1306 for (i = 0; i < len; i++)
1307 p[i] = chip->read_byte(mtd);
1308
1309 return 0;
1310}
1311
1312/**
1313 * nand_change_read_column_op - Do a CHANGE READ COLUMN operation
1314 * @chip: The NAND chip
1315 * @offset_in_page: offset within the page
1316 * @buf: buffer used to store the data
1317 * @len: length of the buffer
1318 * @force_8bit: force 8-bit bus access
1319 *
1320 * This function issues a CHANGE READ COLUMN operation.
1321 * This function does not select/unselect the CS line.
1322 *
1323 * Returns 0 on success, a negative error code otherwise.
1324 */
1325int nand_change_read_column_op(struct nand_chip *chip,
1326 unsigned int offset_in_page, void *buf,
1327 unsigned int len, bool force_8bit)
1328{
1329 struct mtd_info *mtd = nand_to_mtd(chip);
1330
1331 if (len && !buf)
1332 return -EINVAL;
1333
1334 if (offset_in_page + len > mtd->writesize + mtd->oobsize)
1335 return -EINVAL;
1336
1337 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, offset_in_page, -1);
1338 if (len)
1339 chip->read_buf(mtd, buf, len);
1340
1341 return 0;
1342}
1343EXPORT_SYMBOL_GPL(nand_change_read_column_op);
1344
1345/**
1346 * nand_read_oob_op - Do a READ OOB operation
1347 * @chip: The NAND chip
1348 * @page: page to read
1349 * @offset_in_oob: offset within the OOB area
1350 * @buf: buffer used to store the data
1351 * @len: length of the buffer
1352 *
1353 * This function issues a READ OOB operation.
1354 * This function does not select/unselect the CS line.
1355 *
1356 * Returns 0 on success, a negative error code otherwise.
1357 */
1358int nand_read_oob_op(struct nand_chip *chip, unsigned int page,
1359 unsigned int offset_in_oob, void *buf, unsigned int len)
1360{
1361 struct mtd_info *mtd = nand_to_mtd(chip);
1362
1363 if (len && !buf)
1364 return -EINVAL;
1365
1366 if (offset_in_oob + len > mtd->oobsize)
1367 return -EINVAL;
1368
1369 chip->cmdfunc(mtd, NAND_CMD_READOOB, offset_in_oob, page);
1370 if (len)
1371 chip->read_buf(mtd, buf, len);
1372
1373 return 0;
1374}
1375EXPORT_SYMBOL_GPL(nand_read_oob_op);
1376
1377/**
1378 * nand_prog_page_begin_op - starts a PROG PAGE operation
1379 * @chip: The NAND chip
1380 * @page: page to write
1381 * @offset_in_page: offset within the page
1382 * @buf: buffer containing the data to write to the page
1383 * @len: length of the buffer
1384 *
1385 * This function issues the first half of a PROG PAGE operation.
1386 * This function does not select/unselect the CS line.
1387 *
1388 * Returns 0 on success, a negative error code otherwise.
1389 */
1390int nand_prog_page_begin_op(struct nand_chip *chip, unsigned int page,
1391 unsigned int offset_in_page, const void *buf,
1392 unsigned int len)
1393{
1394 struct mtd_info *mtd = nand_to_mtd(chip);
1395
1396 if (len && !buf)
1397 return -EINVAL;
1398
1399 if (offset_in_page + len > mtd->writesize + mtd->oobsize)
1400 return -EINVAL;
1401
1402 chip->cmdfunc(mtd, NAND_CMD_SEQIN, offset_in_page, page);
1403
1404 if (buf)
1405 chip->write_buf(mtd, buf, len);
1406
1407 return 0;
1408}
1409EXPORT_SYMBOL_GPL(nand_prog_page_begin_op);
1410
1411/**
1412 * nand_prog_page_end_op - ends a PROG PAGE operation
1413 * @chip: The NAND chip
1414 *
1415 * This function issues the second half of a PROG PAGE operation.
1416 * This function does not select/unselect the CS line.
1417 *
1418 * Returns 0 on success, a negative error code otherwise.
1419 */
1420int nand_prog_page_end_op(struct nand_chip *chip)
1421{
1422 struct mtd_info *mtd = nand_to_mtd(chip);
1423 int status;
1424
1425 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1426
1427 status = chip->waitfunc(mtd, chip);
1428 if (status & NAND_STATUS_FAIL)
1429 return -EIO;
1430
1431 return 0;
1432}
1433EXPORT_SYMBOL_GPL(nand_prog_page_end_op);
1434
1435/**
1436 * nand_prog_page_op - Do a full PROG PAGE operation
1437 * @chip: The NAND chip
1438 * @page: page to write
1439 * @offset_in_page: offset within the page
1440 * @buf: buffer containing the data to write to the page
1441 * @len: length of the buffer
1442 *
1443 * This function issues a full PROG PAGE operation.
1444 * This function does not select/unselect the CS line.
1445 *
1446 * Returns 0 on success, a negative error code otherwise.
1447 */
1448int nand_prog_page_op(struct nand_chip *chip, unsigned int page,
1449 unsigned int offset_in_page, const void *buf,
1450 unsigned int len)
1451{
1452 struct mtd_info *mtd = nand_to_mtd(chip);
1453 int status;
1454
1455 if (!len || !buf)
1456 return -EINVAL;
1457
1458 if (offset_in_page + len > mtd->writesize + mtd->oobsize)
1459 return -EINVAL;
1460
1461 chip->cmdfunc(mtd, NAND_CMD_SEQIN, offset_in_page, page);
1462 chip->write_buf(mtd, buf, len);
1463 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1464
1465 status = chip->waitfunc(mtd, chip);
1466 if (status & NAND_STATUS_FAIL)
1467 return -EIO;
1468
1469 return 0;
1470}
1471EXPORT_SYMBOL_GPL(nand_prog_page_op);
1472
1473/**
1474 * nand_change_write_column_op - Do a CHANGE WRITE COLUMN operation
1475 * @chip: The NAND chip
1476 * @offset_in_page: offset within the page
1477 * @buf: buffer containing the data to send to the NAND
1478 * @len: length of the buffer
1479 * @force_8bit: force 8-bit bus access
1480 *
1481 * This function issues a CHANGE WRITE COLUMN operation.
1482 * This function does not select/unselect the CS line.
1483 *
1484 * Returns 0 on success, a negative error code otherwise.
1485 */
1486int nand_change_write_column_op(struct nand_chip *chip,
1487 unsigned int offset_in_page,
1488 const void *buf, unsigned int len,
1489 bool force_8bit)
1490{
1491 struct mtd_info *mtd = nand_to_mtd(chip);
1492
1493 if (len && !buf)
1494 return -EINVAL;
1495
1496 if (offset_in_page + len > mtd->writesize + mtd->oobsize)
1497 return -EINVAL;
1498
1499 chip->cmdfunc(mtd, NAND_CMD_RNDIN, offset_in_page, -1);
1500 if (len)
1501 chip->write_buf(mtd, buf, len);
1502
1503 return 0;
1504}
1505EXPORT_SYMBOL_GPL(nand_change_write_column_op);
1506
1507/**
1508 * nand_readid_op - Do a READID operation
1509 * @chip: The NAND chip
1510 * @addr: address cycle to pass after the READID command
1511 * @buf: buffer used to store the ID
1512 * @len: length of the buffer
1513 *
1514 * This function sends a READID command and reads back the ID returned by the
1515 * NAND.
1516 * This function does not select/unselect the CS line.
1517 *
1518 * Returns 0 on success, a negative error code otherwise.
1519 */
1520int nand_readid_op(struct nand_chip *chip, u8 addr, void *buf,
1521 unsigned int len)
1522{
1523 struct mtd_info *mtd = nand_to_mtd(chip);
1524 unsigned int i;
1525 u8 *id = buf;
1526
1527 if (len && !buf)
1528 return -EINVAL;
1529
1530 chip->cmdfunc(mtd, NAND_CMD_READID, addr, -1);
1531
1532 for (i = 0; i < len; i++)
1533 id[i] = chip->read_byte(mtd);
1534
1535 return 0;
1536}
1537EXPORT_SYMBOL_GPL(nand_readid_op);
1538
1539/**
1540 * nand_status_op - Do a STATUS operation
1541 * @chip: The NAND chip
1542 * @status: out variable to store the NAND status
1543 *
1544 * This function sends a STATUS command and reads back the status returned by
1545 * the NAND.
1546 * This function does not select/unselect the CS line.
1547 *
1548 * Returns 0 on success, a negative error code otherwise.
1549 */
1550int nand_status_op(struct nand_chip *chip, u8 *status)
1551{
1552 struct mtd_info *mtd = nand_to_mtd(chip);
1553
1554 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
1555 if (status)
1556 *status = chip->read_byte(mtd);
1557
1558 return 0;
1559}
1560EXPORT_SYMBOL_GPL(nand_status_op);
1561
1562/**
1563 * nand_exit_status_op - Exit a STATUS operation
1564 * @chip: The NAND chip
1565 *
1566 * This function sends a READ0 command to cancel the effect of the STATUS
1567 * command to avoid reading only the status until a new read command is sent.
1568 *
1569 * This function does not select/unselect the CS line.
1570 *
1571 * Returns 0 on success, a negative error code otherwise.
1572 */
1573int nand_exit_status_op(struct nand_chip *chip)
1574{
1575 struct mtd_info *mtd = nand_to_mtd(chip);
1576
1577 chip->cmdfunc(mtd, NAND_CMD_READ0, -1, -1);
1578
1579 return 0;
1580}
1581EXPORT_SYMBOL_GPL(nand_exit_status_op);
1582
1583/**
1584 * nand_erase_op - Do an erase operation
1585 * @chip: The NAND chip
1586 * @eraseblock: block to erase
1587 *
1588 * This function sends an ERASE command and waits for the NAND to be ready
1589 * before returning.
1590 * This function does not select/unselect the CS line.
1591 *
1592 * Returns 0 on success, a negative error code otherwise.
1593 */
1594int nand_erase_op(struct nand_chip *chip, unsigned int eraseblock)
1595{
1596 struct mtd_info *mtd = nand_to_mtd(chip);
1597 unsigned int page = eraseblock <<
1598 (chip->phys_erase_shift - chip->page_shift);
1599 int status;
1600
1601 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
1602 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
1603
1604 status = chip->waitfunc(mtd, chip);
1605 if (status < 0)
1606 return status;
1607
1608 if (status & NAND_STATUS_FAIL)
1609 return -EIO;
1610
1611 return 0;
1612}
1613EXPORT_SYMBOL_GPL(nand_erase_op);
1614
1615/**
1616 * nand_set_features_op - Do a SET FEATURES operation
1617 * @chip: The NAND chip
1618 * @feature: feature id
1619 * @data: 4 bytes of data
1620 *
1621 * This function sends a SET FEATURES command and waits for the NAND to be
1622 * ready before returning.
1623 * This function does not select/unselect the CS line.
1624 *
1625 * Returns 0 on success, a negative error code otherwise.
1626 */
1627static int nand_set_features_op(struct nand_chip *chip, u8 feature,
1628 const void *data)
1629{
1630 struct mtd_info *mtd = nand_to_mtd(chip);
1631 const u8 *params = data;
1632 int i, status;
1633
1634 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, feature, -1);
1635 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
1636 chip->write_byte(mtd, params[i]);
1637
1638 status = chip->waitfunc(mtd, chip);
1639 if (status & NAND_STATUS_FAIL)
1640 return -EIO;
1641
1642 return 0;
1643}
1644
1645/**
1646 * nand_get_features_op - Do a GET FEATURES operation
1647 * @chip: The NAND chip
1648 * @feature: feature id
1649 * @data: 4 bytes of data
1650 *
1651 * This function sends a GET FEATURES command and waits for the NAND to be
1652 * ready before returning.
1653 * This function does not select/unselect the CS line.
1654 *
1655 * Returns 0 on success, a negative error code otherwise.
1656 */
1657static int nand_get_features_op(struct nand_chip *chip, u8 feature,
1658 void *data)
1659{
1660 struct mtd_info *mtd = nand_to_mtd(chip);
1661 u8 *params = data;
1662 int i;
1663
1664 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, feature, -1);
1665 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
1666 params[i] = chip->read_byte(mtd);
1667
1668 return 0;
1669}
1670
1671/**
1672 * nand_reset_op - Do a reset operation
1673 * @chip: The NAND chip
1674 *
1675 * This function sends a RESET command and waits for the NAND to be ready
1676 * before returning.
1677 * This function does not select/unselect the CS line.
1678 *
1679 * Returns 0 on success, a negative error code otherwise.
1680 */
1681int nand_reset_op(struct nand_chip *chip)
1682{
1683 struct mtd_info *mtd = nand_to_mtd(chip);
1684
1685 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
1686
1687 return 0;
1688}
1689EXPORT_SYMBOL_GPL(nand_reset_op);
1690
1691/**
1692 * nand_read_data_op - Read data from the NAND
1693 * @chip: The NAND chip
1694 * @buf: buffer used to store the data
1695 * @len: length of the buffer
1696 * @force_8bit: force 8-bit bus access
1697 *
1698 * This function does a raw data read on the bus. Usually used after launching
1699 * another NAND operation like nand_read_page_op().
1700 * This function does not select/unselect the CS line.
1701 *
1702 * Returns 0 on success, a negative error code otherwise.
1703 */
1704int nand_read_data_op(struct nand_chip *chip, void *buf, unsigned int len,
1705 bool force_8bit)
1706{
1707 struct mtd_info *mtd = nand_to_mtd(chip);
1708
1709 if (!len || !buf)
1710 return -EINVAL;
1711
1712 if (force_8bit) {
1713 u8 *p = buf;
1714 unsigned int i;
1715
1716 for (i = 0; i < len; i++)
1717 p[i] = chip->read_byte(mtd);
1718 } else {
1719 chip->read_buf(mtd, buf, len);
1720 }
1721
1722 return 0;
1723}
1724EXPORT_SYMBOL_GPL(nand_read_data_op);
1725
1726/**
1727 * nand_write_data_op - Write data from the NAND
1728 * @chip: The NAND chip
1729 * @buf: buffer containing the data to send on the bus
1730 * @len: length of the buffer
1731 * @force_8bit: force 8-bit bus access
1732 *
1733 * This function does a raw data write on the bus. Usually used after launching
1734 * another NAND operation like nand_write_page_begin_op().
1735 * This function does not select/unselect the CS line.
1736 *
1737 * Returns 0 on success, a negative error code otherwise.
1738 */
1739int nand_write_data_op(struct nand_chip *chip, const void *buf,
1740 unsigned int len, bool force_8bit)
1741{
1742 struct mtd_info *mtd = nand_to_mtd(chip);
1743
1744 if (!len || !buf)
1745 return -EINVAL;
1746
1747 if (force_8bit) {
1748 const u8 *p = buf;
1749 unsigned int i;
1750
1751 for (i = 0; i < len; i++)
1752 chip->write_byte(mtd, p[i]);
1753 } else {
1754 chip->write_buf(mtd, buf, len);
1755 }
1756
1757 return 0;
1758}
1759EXPORT_SYMBOL_GPL(nand_write_data_op);
1760
1761/**
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001762 * nand_reset - Reset and initialize a NAND device
1763 * @chip: The NAND chip
Boris Brezillon73f907f2016-10-24 16:46:20 +02001764 * @chipnr: Internal die id
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001765 *
1766 * Returns 0 for success or negative error code otherwise
1767 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001768int nand_reset(struct nand_chip *chip, int chipnr)
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001769{
1770 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001771 int ret;
1772
Boris Brezillon104e4422017-03-16 09:35:58 +01001773 ret = nand_reset_data_interface(chip, chipnr);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001774 if (ret)
1775 return ret;
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001776
Boris Brezillon73f907f2016-10-24 16:46:20 +02001777 /*
1778 * The CS line has to be released before we can apply the new NAND
1779 * interface settings, hence this weird ->select_chip() dance.
1780 */
1781 chip->select_chip(mtd, chipnr);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001782 ret = nand_reset_op(chip);
Boris Brezillon73f907f2016-10-24 16:46:20 +02001783 chip->select_chip(mtd, -1);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001784 if (ret)
1785 return ret;
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001786
Boris Brezillon73f907f2016-10-24 16:46:20 +02001787 chip->select_chip(mtd, chipnr);
Boris Brezillon104e4422017-03-16 09:35:58 +01001788 ret = nand_setup_data_interface(chip, chipnr);
Boris Brezillon73f907f2016-10-24 16:46:20 +02001789 chip->select_chip(mtd, -1);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001790 if (ret)
1791 return ret;
1792
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001793 return 0;
1794}
Boris Brezillonb9bb9842017-10-05 18:53:19 +02001795EXPORT_SYMBOL_GPL(nand_reset);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001796
1797/**
Boris BREZILLON730a43f2015-09-03 18:03:38 +02001798 * nand_check_erased_buf - check if a buffer contains (almost) only 0xff data
1799 * @buf: buffer to test
1800 * @len: buffer length
1801 * @bitflips_threshold: maximum number of bitflips
1802 *
1803 * Check if a buffer contains only 0xff, which means the underlying region
1804 * has been erased and is ready to be programmed.
1805 * The bitflips_threshold specify the maximum number of bitflips before
1806 * considering the region is not erased.
1807 * Note: The logic of this function has been extracted from the memweight
1808 * implementation, except that nand_check_erased_buf function exit before
1809 * testing the whole buffer if the number of bitflips exceed the
1810 * bitflips_threshold value.
1811 *
1812 * Returns a positive number of bitflips less than or equal to
1813 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1814 * threshold.
1815 */
1816static int nand_check_erased_buf(void *buf, int len, int bitflips_threshold)
1817{
1818 const unsigned char *bitmap = buf;
1819 int bitflips = 0;
1820 int weight;
1821
1822 for (; len && ((uintptr_t)bitmap) % sizeof(long);
1823 len--, bitmap++) {
1824 weight = hweight8(*bitmap);
1825 bitflips += BITS_PER_BYTE - weight;
1826 if (unlikely(bitflips > bitflips_threshold))
1827 return -EBADMSG;
1828 }
1829
1830 for (; len >= sizeof(long);
1831 len -= sizeof(long), bitmap += sizeof(long)) {
Pavel Machek086567f2017-04-21 12:51:07 +02001832 unsigned long d = *((unsigned long *)bitmap);
1833 if (d == ~0UL)
1834 continue;
1835 weight = hweight_long(d);
Boris BREZILLON730a43f2015-09-03 18:03:38 +02001836 bitflips += BITS_PER_LONG - weight;
1837 if (unlikely(bitflips > bitflips_threshold))
1838 return -EBADMSG;
1839 }
1840
1841 for (; len > 0; len--, bitmap++) {
1842 weight = hweight8(*bitmap);
1843 bitflips += BITS_PER_BYTE - weight;
1844 if (unlikely(bitflips > bitflips_threshold))
1845 return -EBADMSG;
1846 }
1847
1848 return bitflips;
1849}
1850
1851/**
1852 * nand_check_erased_ecc_chunk - check if an ECC chunk contains (almost) only
1853 * 0xff data
1854 * @data: data buffer to test
1855 * @datalen: data length
1856 * @ecc: ECC buffer
1857 * @ecclen: ECC length
1858 * @extraoob: extra OOB buffer
1859 * @extraooblen: extra OOB length
1860 * @bitflips_threshold: maximum number of bitflips
1861 *
1862 * Check if a data buffer and its associated ECC and OOB data contains only
1863 * 0xff pattern, which means the underlying region has been erased and is
1864 * ready to be programmed.
1865 * The bitflips_threshold specify the maximum number of bitflips before
1866 * considering the region as not erased.
1867 *
1868 * Note:
1869 * 1/ ECC algorithms are working on pre-defined block sizes which are usually
1870 * different from the NAND page size. When fixing bitflips, ECC engines will
1871 * report the number of errors per chunk, and the NAND core infrastructure
1872 * expect you to return the maximum number of bitflips for the whole page.
1873 * This is why you should always use this function on a single chunk and
1874 * not on the whole page. After checking each chunk you should update your
1875 * max_bitflips value accordingly.
1876 * 2/ When checking for bitflips in erased pages you should not only check
1877 * the payload data but also their associated ECC data, because a user might
1878 * have programmed almost all bits to 1 but a few. In this case, we
1879 * shouldn't consider the chunk as erased, and checking ECC bytes prevent
1880 * this case.
1881 * 3/ The extraoob argument is optional, and should be used if some of your OOB
1882 * data are protected by the ECC engine.
1883 * It could also be used if you support subpages and want to attach some
1884 * extra OOB data to an ECC chunk.
1885 *
1886 * Returns a positive number of bitflips less than or equal to
1887 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1888 * threshold. In case of success, the passed buffers are filled with 0xff.
1889 */
1890int nand_check_erased_ecc_chunk(void *data, int datalen,
1891 void *ecc, int ecclen,
1892 void *extraoob, int extraooblen,
1893 int bitflips_threshold)
1894{
1895 int data_bitflips = 0, ecc_bitflips = 0, extraoob_bitflips = 0;
1896
1897 data_bitflips = nand_check_erased_buf(data, datalen,
1898 bitflips_threshold);
1899 if (data_bitflips < 0)
1900 return data_bitflips;
1901
1902 bitflips_threshold -= data_bitflips;
1903
1904 ecc_bitflips = nand_check_erased_buf(ecc, ecclen, bitflips_threshold);
1905 if (ecc_bitflips < 0)
1906 return ecc_bitflips;
1907
1908 bitflips_threshold -= ecc_bitflips;
1909
1910 extraoob_bitflips = nand_check_erased_buf(extraoob, extraooblen,
1911 bitflips_threshold);
1912 if (extraoob_bitflips < 0)
1913 return extraoob_bitflips;
1914
1915 if (data_bitflips)
1916 memset(data, 0xff, datalen);
1917
1918 if (ecc_bitflips)
1919 memset(ecc, 0xff, ecclen);
1920
1921 if (extraoob_bitflips)
1922 memset(extraoob, 0xff, extraooblen);
1923
1924 return data_bitflips + ecc_bitflips + extraoob_bitflips;
1925}
1926EXPORT_SYMBOL(nand_check_erased_ecc_chunk);
1927
1928/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001929 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001930 * @mtd: mtd info structure
1931 * @chip: nand chip info structure
1932 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001933 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001934 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001935 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001936 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001937 */
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02001938int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1939 uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001940{
Boris Brezillon97d90da2017-11-30 18:01:29 +01001941 int ret;
1942
1943 ret = nand_read_data_op(chip, buf, mtd->writesize, false);
1944 if (ret)
1945 return ret;
1946
1947 if (oob_required) {
1948 ret = nand_read_data_op(chip, chip->oob_poi, mtd->oobsize,
1949 false);
1950 if (ret)
1951 return ret;
1952 }
1953
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001954 return 0;
1955}
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02001956EXPORT_SYMBOL(nand_read_page_raw);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001957
1958/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001959 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001960 * @mtd: mtd info structure
1961 * @chip: nand chip info structure
1962 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001963 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001964 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001965 *
1966 * We need a special oob layout and handling even when OOB isn't used.
1967 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001968static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001969 struct nand_chip *chip, uint8_t *buf,
1970 int oob_required, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001971{
1972 int eccsize = chip->ecc.size;
1973 int eccbytes = chip->ecc.bytes;
1974 uint8_t *oob = chip->oob_poi;
Boris Brezillon97d90da2017-11-30 18:01:29 +01001975 int steps, size, ret;
David Brownell52ff49d2009-03-04 12:01:36 -08001976
1977 for (steps = chip->ecc.steps; steps > 0; steps--) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01001978 ret = nand_read_data_op(chip, buf, eccsize, false);
1979 if (ret)
1980 return ret;
1981
David Brownell52ff49d2009-03-04 12:01:36 -08001982 buf += eccsize;
1983
1984 if (chip->ecc.prepad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01001985 ret = nand_read_data_op(chip, oob, chip->ecc.prepad,
1986 false);
1987 if (ret)
1988 return ret;
1989
David Brownell52ff49d2009-03-04 12:01:36 -08001990 oob += chip->ecc.prepad;
1991 }
1992
Boris Brezillon97d90da2017-11-30 18:01:29 +01001993 ret = nand_read_data_op(chip, oob, eccbytes, false);
1994 if (ret)
1995 return ret;
1996
David Brownell52ff49d2009-03-04 12:01:36 -08001997 oob += eccbytes;
1998
1999 if (chip->ecc.postpad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01002000 ret = nand_read_data_op(chip, oob, chip->ecc.postpad,
2001 false);
2002 if (ret)
2003 return ret;
2004
David Brownell52ff49d2009-03-04 12:01:36 -08002005 oob += chip->ecc.postpad;
2006 }
2007 }
2008
2009 size = mtd->oobsize - (oob - chip->oob_poi);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002010 if (size) {
2011 ret = nand_read_data_op(chip, oob, size, false);
2012 if (ret)
2013 return ret;
2014 }
David Brownell52ff49d2009-03-04 12:01:36 -08002015
2016 return 0;
2017}
2018
2019/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002020 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002021 * @mtd: mtd info structure
2022 * @chip: nand chip info structure
2023 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07002024 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07002025 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00002026 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002027static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07002028 uint8_t *buf, int oob_required, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029{
Boris Brezillon846031d2016-02-03 20:11:00 +01002030 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002031 int eccbytes = chip->ecc.bytes;
2032 int eccsteps = chip->ecc.steps;
2033 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002034 uint8_t *ecc_calc = chip->buffers->ecccalc;
2035 uint8_t *ecc_code = chip->buffers->ecccode;
Mike Dunn3f91e942012-04-25 12:06:09 -07002036 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002037
Brian Norris1fbb9382012-05-02 10:14:55 -07002038 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002039
2040 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
2041 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2042
Boris Brezillon846031d2016-02-03 20:11:00 +01002043 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
2044 chip->ecc.total);
2045 if (ret)
2046 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002047
2048 eccsteps = chip->ecc.steps;
2049 p = buf;
2050
2051 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2052 int stat;
2053
2054 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07002055 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002056 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07002057 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002058 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07002059 max_bitflips = max_t(unsigned int, max_bitflips, stat);
2060 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002061 }
Mike Dunn3f91e942012-04-25 12:06:09 -07002062 return max_bitflips;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01002063}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065/**
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302066 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002067 * @mtd: mtd info structure
2068 * @chip: nand chip info structure
2069 * @data_offs: offset of requested data within the page
2070 * @readlen: data length
2071 * @bufpoi: buffer to store read data
Huang Shijiee004deb2014-01-03 11:01:40 +08002072 * @page: page number to read
Alexey Korolev3d459552008-05-15 17:23:18 +01002073 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002074static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08002075 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi,
2076 int page)
Alexey Korolev3d459552008-05-15 17:23:18 +01002077{
Boris Brezillon846031d2016-02-03 20:11:00 +01002078 int start_step, end_step, num_steps, ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01002079 uint8_t *p;
2080 int data_col_addr, i, gaps = 0;
2081 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
2082 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Boris Brezillon846031d2016-02-03 20:11:00 +01002083 int index, section = 0;
Mike Dunn3f91e942012-04-25 12:06:09 -07002084 unsigned int max_bitflips = 0;
Boris Brezillon846031d2016-02-03 20:11:00 +01002085 struct mtd_oob_region oobregion = { };
Alexey Korolev3d459552008-05-15 17:23:18 +01002086
Brian Norris7854d3f2011-06-23 14:12:08 -07002087 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01002088 start_step = data_offs / chip->ecc.size;
2089 end_step = (data_offs + readlen - 1) / chip->ecc.size;
2090 num_steps = end_step - start_step + 1;
Ron4a4163ca2014-03-16 04:01:07 +10302091 index = start_step * chip->ecc.bytes;
Alexey Korolev3d459552008-05-15 17:23:18 +01002092
Brian Norris8b6e50c2011-05-25 14:59:01 -07002093 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01002094 datafrag_len = num_steps * chip->ecc.size;
2095 eccfrag_len = num_steps * chip->ecc.bytes;
2096
2097 data_col_addr = start_step * chip->ecc.size;
2098 /* If we read not a page aligned data */
2099 if (data_col_addr != 0)
2100 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
2101
2102 p = bufpoi + data_col_addr;
Boris Brezillon97d90da2017-11-30 18:01:29 +01002103 ret = nand_read_data_op(chip, p, datafrag_len, false);
2104 if (ret)
2105 return ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01002106
Brian Norris8b6e50c2011-05-25 14:59:01 -07002107 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01002108 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
2109 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
2110
Brian Norris8b6e50c2011-05-25 14:59:01 -07002111 /*
2112 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07002113 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07002114 */
Boris Brezillon846031d2016-02-03 20:11:00 +01002115 ret = mtd_ooblayout_find_eccregion(mtd, index, &section, &oobregion);
2116 if (ret)
2117 return ret;
2118
2119 if (oobregion.length < eccfrag_len)
2120 gaps = 1;
2121
Alexey Korolev3d459552008-05-15 17:23:18 +01002122 if (gaps) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01002123 ret = nand_change_read_column_op(chip, mtd->writesize,
2124 chip->oob_poi, mtd->oobsize,
2125 false);
2126 if (ret)
2127 return ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01002128 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002129 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002130 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07002131 * about buswidth alignment in read_buf.
2132 */
Boris Brezillon846031d2016-02-03 20:11:00 +01002133 aligned_pos = oobregion.offset & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01002134 aligned_len = eccfrag_len;
Boris Brezillon846031d2016-02-03 20:11:00 +01002135 if (oobregion.offset & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01002136 aligned_len++;
Boris Brezillon846031d2016-02-03 20:11:00 +01002137 if ((oobregion.offset + (num_steps * chip->ecc.bytes)) &
2138 (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01002139 aligned_len++;
2140
Boris Brezillon97d90da2017-11-30 18:01:29 +01002141 ret = nand_change_read_column_op(chip,
2142 mtd->writesize + aligned_pos,
2143 &chip->oob_poi[aligned_pos],
2144 aligned_len, false);
2145 if (ret)
2146 return ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01002147 }
2148
Boris Brezillon846031d2016-02-03 20:11:00 +01002149 ret = mtd_ooblayout_get_eccbytes(mtd, chip->buffers->ecccode,
2150 chip->oob_poi, index, eccfrag_len);
2151 if (ret)
2152 return ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01002153
2154 p = bufpoi + data_col_addr;
2155 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
2156 int stat;
2157
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002158 stat = chip->ecc.correct(mtd, p,
2159 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01002160 if (stat == -EBADMSG &&
2161 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
2162 /* check for empty pages with bitflips */
2163 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
2164 &chip->buffers->ecccode[i],
2165 chip->ecc.bytes,
2166 NULL, 0,
2167 chip->ecc.strength);
2168 }
2169
Mike Dunn3f91e942012-04-25 12:06:09 -07002170 if (stat < 0) {
Alexey Korolev3d459552008-05-15 17:23:18 +01002171 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07002172 } else {
Alexey Korolev3d459552008-05-15 17:23:18 +01002173 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07002174 max_bitflips = max_t(unsigned int, max_bitflips, stat);
2175 }
Alexey Korolev3d459552008-05-15 17:23:18 +01002176 }
Mike Dunn3f91e942012-04-25 12:06:09 -07002177 return max_bitflips;
Alexey Korolev3d459552008-05-15 17:23:18 +01002178}
2179
2180/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002181 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002182 * @mtd: mtd info structure
2183 * @chip: nand chip info structure
2184 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07002185 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07002186 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002187 *
Brian Norris7854d3f2011-06-23 14:12:08 -07002188 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002189 */
2190static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07002191 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002192{
Boris Brezillon846031d2016-02-03 20:11:00 +01002193 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002194 int eccbytes = chip->ecc.bytes;
2195 int eccsteps = chip->ecc.steps;
2196 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002197 uint8_t *ecc_calc = chip->buffers->ecccalc;
2198 uint8_t *ecc_code = chip->buffers->ecccode;
Mike Dunn3f91e942012-04-25 12:06:09 -07002199 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002200
2201 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2202 chip->ecc.hwctl(mtd, NAND_ECC_READ);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002203
2204 ret = nand_read_data_op(chip, p, eccsize, false);
2205 if (ret)
2206 return ret;
2207
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002208 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2209 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01002210
2211 ret = nand_read_data_op(chip, chip->oob_poi, mtd->oobsize, false);
2212 if (ret)
2213 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002214
Boris Brezillon846031d2016-02-03 20:11:00 +01002215 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
2216 chip->ecc.total);
2217 if (ret)
2218 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002219
2220 eccsteps = chip->ecc.steps;
2221 p = buf;
2222
2223 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2224 int stat;
2225
2226 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01002227 if (stat == -EBADMSG &&
2228 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
2229 /* check for empty pages with bitflips */
2230 stat = nand_check_erased_ecc_chunk(p, eccsize,
2231 &ecc_code[i], eccbytes,
2232 NULL, 0,
2233 chip->ecc.strength);
2234 }
2235
Mike Dunn3f91e942012-04-25 12:06:09 -07002236 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002237 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07002238 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002239 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07002240 max_bitflips = max_t(unsigned int, max_bitflips, stat);
2241 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002242 }
Mike Dunn3f91e942012-04-25 12:06:09 -07002243 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002244}
2245
2246/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002247 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07002248 * @mtd: mtd info structure
2249 * @chip: nand chip info structure
2250 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07002251 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07002252 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002253 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002254 * Hardware ECC for large page chips, require OOB to be read first. For this
2255 * ECC mode, the write_page method is re-used from ECC_HW. These methods
2256 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
2257 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
2258 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002259 */
2260static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07002261 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002262{
Boris Brezillon846031d2016-02-03 20:11:00 +01002263 int i, eccsize = chip->ecc.size, ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002264 int eccbytes = chip->ecc.bytes;
2265 int eccsteps = chip->ecc.steps;
2266 uint8_t *p = buf;
2267 uint8_t *ecc_code = chip->buffers->ecccode;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002268 uint8_t *ecc_calc = chip->buffers->ecccalc;
Mike Dunn3f91e942012-04-25 12:06:09 -07002269 unsigned int max_bitflips = 0;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002270
2271 /* Read the OOB area first */
Boris Brezillon97d90da2017-11-30 18:01:29 +01002272 ret = nand_read_oob_op(chip, page, 0, chip->oob_poi, mtd->oobsize);
2273 if (ret)
2274 return ret;
2275
2276 ret = nand_read_page_op(chip, page, 0, NULL, 0);
2277 if (ret)
2278 return ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002279
Boris Brezillon846031d2016-02-03 20:11:00 +01002280 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
2281 chip->ecc.total);
2282 if (ret)
2283 return ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002284
2285 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2286 int stat;
2287
2288 chip->ecc.hwctl(mtd, NAND_ECC_READ);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002289
2290 ret = nand_read_data_op(chip, p, eccsize, false);
2291 if (ret)
2292 return ret;
2293
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002294 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2295
2296 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01002297 if (stat == -EBADMSG &&
2298 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
2299 /* check for empty pages with bitflips */
2300 stat = nand_check_erased_ecc_chunk(p, eccsize,
2301 &ecc_code[i], eccbytes,
2302 NULL, 0,
2303 chip->ecc.strength);
2304 }
2305
Mike Dunn3f91e942012-04-25 12:06:09 -07002306 if (stat < 0) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002307 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07002308 } else {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002309 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07002310 max_bitflips = max_t(unsigned int, max_bitflips, stat);
2311 }
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002312 }
Mike Dunn3f91e942012-04-25 12:06:09 -07002313 return max_bitflips;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07002314}
2315
2316/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002317 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07002318 * @mtd: mtd info structure
2319 * @chip: nand chip info structure
2320 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07002321 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07002322 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002323 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002324 * The hw generator calculates the error syndrome automatically. Therefore we
2325 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002326 */
2327static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07002328 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002329{
Boris Brezillon97d90da2017-11-30 18:01:29 +01002330 int ret, i, eccsize = chip->ecc.size;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002331 int eccbytes = chip->ecc.bytes;
2332 int eccsteps = chip->ecc.steps;
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01002333 int eccpadbytes = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002334 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002335 uint8_t *oob = chip->oob_poi;
Mike Dunn3f91e942012-04-25 12:06:09 -07002336 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002337
2338 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2339 int stat;
2340
2341 chip->ecc.hwctl(mtd, NAND_ECC_READ);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002342
2343 ret = nand_read_data_op(chip, p, eccsize, false);
2344 if (ret)
2345 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002346
2347 if (chip->ecc.prepad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01002348 ret = nand_read_data_op(chip, oob, chip->ecc.prepad,
2349 false);
2350 if (ret)
2351 return ret;
2352
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002353 oob += chip->ecc.prepad;
2354 }
2355
2356 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002357
2358 ret = nand_read_data_op(chip, oob, eccbytes, false);
2359 if (ret)
2360 return ret;
2361
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002362 stat = chip->ecc.correct(mtd, p, oob, NULL);
2363
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002364 oob += eccbytes;
2365
2366 if (chip->ecc.postpad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01002367 ret = nand_read_data_op(chip, oob, chip->ecc.postpad,
2368 false);
2369 if (ret)
2370 return ret;
2371
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002372 oob += chip->ecc.postpad;
2373 }
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01002374
2375 if (stat == -EBADMSG &&
2376 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
2377 /* check for empty pages with bitflips */
2378 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
2379 oob - eccpadbytes,
2380 eccpadbytes,
2381 NULL, 0,
2382 chip->ecc.strength);
2383 }
2384
2385 if (stat < 0) {
2386 mtd->ecc_stats.failed++;
2387 } else {
2388 mtd->ecc_stats.corrected += stat;
2389 max_bitflips = max_t(unsigned int, max_bitflips, stat);
2390 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002391 }
2392
2393 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002394 i = mtd->oobsize - (oob - chip->oob_poi);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002395 if (i) {
2396 ret = nand_read_data_op(chip, oob, i, false);
2397 if (ret)
2398 return ret;
2399 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002400
Mike Dunn3f91e942012-04-25 12:06:09 -07002401 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002402}
2403
2404/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002405 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Boris Brezillon846031d2016-02-03 20:11:00 +01002406 * @mtd: mtd info structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002407 * @oob: oob destination address
2408 * @ops: oob ops structure
2409 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002410 */
Boris Brezillon846031d2016-02-03 20:11:00 +01002411static uint8_t *nand_transfer_oob(struct mtd_info *mtd, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03002412 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002413{
Boris Brezillon846031d2016-02-03 20:11:00 +01002414 struct nand_chip *chip = mtd_to_nand(mtd);
2415 int ret;
2416
Florian Fainellif8ac0412010-09-07 13:23:43 +02002417 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002418
Brian Norris0612b9d2011-08-30 18:45:40 -07002419 case MTD_OPS_PLACE_OOB:
2420 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002421 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
2422 return oob + len;
2423
Boris Brezillon846031d2016-02-03 20:11:00 +01002424 case MTD_OPS_AUTO_OOB:
2425 ret = mtd_ooblayout_get_databytes(mtd, oob, chip->oob_poi,
2426 ops->ooboffs, len);
2427 BUG_ON(ret);
2428 return oob + len;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002429
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002430 default:
2431 BUG();
2432 }
2433 return NULL;
2434}
2435
2436/**
Brian Norrisba84fb52014-01-03 15:13:33 -08002437 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
2438 * @mtd: MTD device structure
2439 * @retry_mode: the retry mode to use
2440 *
2441 * Some vendors supply a special command to shift the Vt threshold, to be used
2442 * when there are too many bitflips in a page (i.e., ECC error). After setting
2443 * a new threshold, the host should retry reading the page.
2444 */
2445static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
2446{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002447 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norrisba84fb52014-01-03 15:13:33 -08002448
2449 pr_debug("setting READ RETRY mode %d\n", retry_mode);
2450
2451 if (retry_mode >= chip->read_retries)
2452 return -EINVAL;
2453
2454 if (!chip->setup_read_retry)
2455 return -EOPNOTSUPP;
2456
2457 return chip->setup_read_retry(mtd, retry_mode);
2458}
2459
2460/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002461 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002462 * @mtd: MTD device structure
2463 * @from: offset to read from
2464 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00002465 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002466 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00002467 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002468static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
2469 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00002470{
Brian Norrise47f3db2012-05-02 10:14:56 -07002471 int chipnr, page, realpage, col, bytes, aligned, oob_required;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002472 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002473 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002474 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03002475 uint32_t oobreadlen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01002476 uint32_t max_oobsize = mtd_oobavail(mtd, ops);
Maxim Levitsky9aca3342010-02-22 20:39:35 +02002477
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002478 uint8_t *bufpoi, *oob, *buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04002479 int use_bufpoi;
Mike Dunnedbc45402012-04-25 12:06:11 -07002480 unsigned int max_bitflips = 0;
Brian Norrisba84fb52014-01-03 15:13:33 -08002481 int retry_mode = 0;
Brian Norrisb72f3df2013-12-03 11:04:14 -08002482 bool ecc_fail = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002484 chipnr = (int)(from >> chip->chip_shift);
2485 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002487 realpage = (int)(from >> chip->page_shift);
2488 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002490 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002492 buf = ops->datbuf;
2493 oob = ops->oobbuf;
Brian Norrise47f3db2012-05-02 10:14:56 -07002494 oob_required = oob ? 1 : 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002495
Florian Fainellif8ac0412010-09-07 13:23:43 +02002496 while (1) {
Brian Norrisb72f3df2013-12-03 11:04:14 -08002497 unsigned int ecc_failures = mtd->ecc_stats.failed;
2498
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002499 bytes = min(mtd->writesize - col, readlen);
2500 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002501
Kamal Dasu66507c72014-05-01 20:51:19 -04002502 if (!aligned)
2503 use_bufpoi = 1;
2504 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
Masahiro Yamada477544c2017-03-30 17:15:05 +09002505 use_bufpoi = !virt_addr_valid(buf) ||
2506 !IS_ALIGNED((unsigned long)buf,
2507 chip->buf_align);
Kamal Dasu66507c72014-05-01 20:51:19 -04002508 else
2509 use_bufpoi = 0;
2510
Brian Norris8b6e50c2011-05-25 14:59:01 -07002511 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002512 if (realpage != chip->pagebuf || oob) {
Kamal Dasu66507c72014-05-01 20:51:19 -04002513 bufpoi = use_bufpoi ? chip->buffers->databuf : buf;
2514
2515 if (use_bufpoi && aligned)
2516 pr_debug("%s: using read bounce buffer for buf@%p\n",
2517 __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Brian Norrisba84fb52014-01-03 15:13:33 -08002519read_retry:
Boris Brezillon97d90da2017-11-30 18:01:29 +01002520 if (nand_standard_page_accessors(&chip->ecc)) {
2521 ret = nand_read_page_op(chip, page, 0, NULL, 0);
2522 if (ret)
2523 break;
2524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Mike Dunnedbc45402012-04-25 12:06:11 -07002526 /*
2527 * Now read the page into the buffer. Absent an error,
2528 * the read methods return max bitflips per ecc step.
2529 */
Brian Norris0612b9d2011-08-30 18:45:40 -07002530 if (unlikely(ops->mode == MTD_OPS_RAW))
Brian Norris1fbb9382012-05-02 10:14:55 -07002531 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07002532 oob_required,
2533 page);
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05002534 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
2535 !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002536 ret = chip->ecc.read_subpage(mtd, chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08002537 col, bytes, bufpoi,
2538 page);
David Woodhouse956e9442006-09-25 17:12:39 +01002539 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07002540 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07002541 oob_required, page);
Brian Norris6d77b9d2011-09-07 13:13:40 -07002542 if (ret < 0) {
Kamal Dasu66507c72014-05-01 20:51:19 -04002543 if (use_bufpoi)
Brian Norris6d77b9d2011-09-07 13:13:40 -07002544 /* Invalidate page cache */
2545 chip->pagebuf = -1;
David Woodhousee0c7d762006-05-13 18:07:53 +01002546 break;
Brian Norris6d77b9d2011-09-07 13:13:40 -07002547 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002548
2549 /* Transfer not aligned data */
Kamal Dasu66507c72014-05-01 20:51:19 -04002550 if (use_bufpoi) {
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05002551 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Brian Norrisb72f3df2013-12-03 11:04:14 -08002552 !(mtd->ecc_stats.failed - ecc_failures) &&
Mike Dunnedbc45402012-04-25 12:06:11 -07002553 (ops->mode != MTD_OPS_RAW)) {
Alexey Korolev3d459552008-05-15 17:23:18 +01002554 chip->pagebuf = realpage;
Mike Dunnedbc45402012-04-25 12:06:11 -07002555 chip->pagebuf_bitflips = ret;
2556 } else {
Brian Norris6d77b9d2011-09-07 13:13:40 -07002557 /* Invalidate page cache */
2558 chip->pagebuf = -1;
Mike Dunnedbc45402012-04-25 12:06:11 -07002559 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002560 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002562
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002563 if (unlikely(oob)) {
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02002564 int toread = min(oobreadlen, max_oobsize);
2565
2566 if (toread) {
Boris Brezillon846031d2016-02-03 20:11:00 +01002567 oob = nand_transfer_oob(mtd,
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02002568 oob, ops, toread);
2569 oobreadlen -= toread;
2570 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002571 }
Brian Norris5bc7c332013-03-13 09:51:31 -07002572
2573 if (chip->options & NAND_NEED_READRDY) {
2574 /* Apply delay or wait for ready/busy pin */
2575 if (!chip->dev_ready)
2576 udelay(chip->chip_delay);
2577 else
2578 nand_wait_ready(mtd);
2579 }
Brian Norrisb72f3df2013-12-03 11:04:14 -08002580
Brian Norrisba84fb52014-01-03 15:13:33 -08002581 if (mtd->ecc_stats.failed - ecc_failures) {
Brian Norris28fa65e2014-02-12 16:08:28 -08002582 if (retry_mode + 1 < chip->read_retries) {
Brian Norrisba84fb52014-01-03 15:13:33 -08002583 retry_mode++;
2584 ret = nand_setup_read_retry(mtd,
2585 retry_mode);
2586 if (ret < 0)
2587 break;
2588
2589 /* Reset failures; retry */
2590 mtd->ecc_stats.failed = ecc_failures;
2591 goto read_retry;
2592 } else {
2593 /* No more retry modes; real failure */
2594 ecc_fail = true;
2595 }
2596 }
2597
2598 buf += bytes;
Masahiro Yamada07604682017-03-30 15:45:47 +09002599 max_bitflips = max_t(unsigned int, max_bitflips, ret);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002600 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002601 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002602 buf += bytes;
Mike Dunnedbc45402012-04-25 12:06:11 -07002603 max_bitflips = max_t(unsigned int, max_bitflips,
2604 chip->pagebuf_bitflips);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002607 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002608
Brian Norrisba84fb52014-01-03 15:13:33 -08002609 /* Reset to retry mode 0 */
2610 if (retry_mode) {
2611 ret = nand_setup_read_retry(mtd, 0);
2612 if (ret < 0)
2613 break;
2614 retry_mode = 0;
2615 }
2616
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002617 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002618 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Brian Norris8b6e50c2011-05-25 14:59:01 -07002620 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 col = 0;
2622 /* Increment page address */
2623 realpage++;
2624
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002625 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 /* Check, if we cross a chip boundary */
2627 if (!page) {
2628 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002629 chip->select_chip(mtd, -1);
2630 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002633 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002635 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03002636 if (oob)
2637 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Mike Dunn3f91e942012-04-25 12:06:09 -07002639 if (ret < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002640 return ret;
2641
Brian Norrisb72f3df2013-12-03 11:04:14 -08002642 if (ecc_fail)
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02002643 return -EBADMSG;
2644
Mike Dunnedbc45402012-04-25 12:06:11 -07002645 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002646}
2647
2648/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002649 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07002650 * @mtd: MTD device structure
2651 * @from: offset to read from
2652 * @len: number of bytes to read
2653 * @retlen: pointer to variable to store the number of read bytes
2654 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002655 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002656 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002657 */
2658static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
2659 size_t *retlen, uint8_t *buf)
2660{
Brian Norris4a89ff82011-08-30 18:45:45 -07002661 struct mtd_oob_ops ops;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002662 int ret;
2663
Huang Shijie6a8214a2012-11-19 14:43:30 +08002664 nand_get_device(mtd, FL_READING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08002665 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002666 ops.len = len;
2667 ops.datbuf = buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002668 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002669 ret = nand_do_read_ops(mtd, from, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002670 *retlen = ops.retlen;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002671 nand_release_device(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002672 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673}
2674
2675/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002676 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002677 * @mtd: mtd info structure
2678 * @chip: nand chip info structure
2679 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002680 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002681int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002682{
Boris Brezillon97d90da2017-11-30 18:01:29 +01002683 return nand_read_oob_op(chip, page, 0, chip->oob_poi, mtd->oobsize);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002684}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002685EXPORT_SYMBOL(nand_read_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002686
2687/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002688 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002689 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07002690 * @mtd: mtd info structure
2691 * @chip: nand chip info structure
2692 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002693 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002694int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2695 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002696{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002697 int length = mtd->oobsize;
2698 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2699 int eccsize = chip->ecc.size;
Baruch Siach2ea69d22015-01-22 15:23:05 +02002700 uint8_t *bufpoi = chip->oob_poi;
Boris Brezillon97d90da2017-11-30 18:01:29 +01002701 int i, toread, sndrnd = 0, pos, ret;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002702
Boris Brezillon97d90da2017-11-30 18:01:29 +01002703 ret = nand_read_page_op(chip, page, chip->ecc.size, NULL, 0);
2704 if (ret)
2705 return ret;
2706
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002707 for (i = 0; i < chip->ecc.steps; i++) {
2708 if (sndrnd) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01002709 int ret;
2710
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002711 pos = eccsize + i * (eccsize + chunk);
2712 if (mtd->writesize > 512)
Boris Brezillon97d90da2017-11-30 18:01:29 +01002713 ret = nand_change_read_column_op(chip, pos,
2714 NULL, 0,
2715 false);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002716 else
Boris Brezillon97d90da2017-11-30 18:01:29 +01002717 ret = nand_read_page_op(chip, page, pos, NULL,
2718 0);
2719
2720 if (ret)
2721 return ret;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002722 } else
2723 sndrnd = 1;
2724 toread = min_t(int, length, chunk);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002725
2726 ret = nand_read_data_op(chip, bufpoi, toread, false);
2727 if (ret)
2728 return ret;
2729
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002730 bufpoi += toread;
2731 length -= toread;
2732 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01002733 if (length > 0) {
2734 ret = nand_read_data_op(chip, bufpoi, length, false);
2735 if (ret)
2736 return ret;
2737 }
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002738
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002739 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002740}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002741EXPORT_SYMBOL(nand_read_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002742
2743/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002744 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002745 * @mtd: mtd info structure
2746 * @chip: nand chip info structure
2747 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002748 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002749int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002750{
Boris Brezillon97d90da2017-11-30 18:01:29 +01002751 return nand_prog_page_op(chip, page, mtd->writesize, chip->oob_poi,
2752 mtd->oobsize);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002753}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002754EXPORT_SYMBOL(nand_write_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002755
2756/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002757 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002758 * with syndrome - only for large page flash
2759 * @mtd: mtd info structure
2760 * @chip: nand chip info structure
2761 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002762 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002763int nand_write_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2764 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002765{
2766 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2767 int eccsize = chip->ecc.size, length = mtd->oobsize;
Boris Brezillon97d90da2017-11-30 18:01:29 +01002768 int ret, i, len, pos, sndcmd = 0, steps = chip->ecc.steps;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002769 const uint8_t *bufpoi = chip->oob_poi;
2770
2771 /*
2772 * data-ecc-data-ecc ... ecc-oob
2773 * or
2774 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
2775 */
2776 if (!chip->ecc.prepad && !chip->ecc.postpad) {
2777 pos = steps * (eccsize + chunk);
2778 steps = 0;
2779 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002780 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002781
Boris Brezillon97d90da2017-11-30 18:01:29 +01002782 ret = nand_prog_page_begin_op(chip, page, pos, NULL, 0);
2783 if (ret)
2784 return ret;
2785
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002786 for (i = 0; i < steps; i++) {
2787 if (sndcmd) {
2788 if (mtd->writesize <= 512) {
2789 uint32_t fill = 0xFFFFFFFF;
2790
2791 len = eccsize;
2792 while (len > 0) {
2793 int num = min_t(int, len, 4);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002794
2795 ret = nand_write_data_op(chip, &fill,
2796 num, false);
2797 if (ret)
2798 return ret;
2799
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002800 len -= num;
2801 }
2802 } else {
2803 pos = eccsize + i * (eccsize + chunk);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002804 ret = nand_change_write_column_op(chip, pos,
2805 NULL, 0,
2806 false);
2807 if (ret)
2808 return ret;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002809 }
2810 } else
2811 sndcmd = 1;
2812 len = min_t(int, length, chunk);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002813
2814 ret = nand_write_data_op(chip, bufpoi, len, false);
2815 if (ret)
2816 return ret;
2817
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002818 bufpoi += len;
2819 length -= len;
2820 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01002821 if (length > 0) {
2822 ret = nand_write_data_op(chip, bufpoi, length, false);
2823 if (ret)
2824 return ret;
2825 }
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002826
Boris Brezillon97d90da2017-11-30 18:01:29 +01002827 return nand_prog_page_end_op(chip);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002828}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002829EXPORT_SYMBOL(nand_write_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002830
2831/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002832 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002833 * @mtd: MTD device structure
2834 * @from: offset to read from
2835 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002837 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002839static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
2840 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
Brian Norrisc00a0992012-05-01 17:12:54 -07002842 int page, realpage, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002843 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris041e4572011-06-23 16:45:24 -07002844 struct mtd_ecc_stats stats;
Vitaly Wool70145682006-11-03 18:20:38 +03002845 int readlen = ops->ooblen;
2846 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002847 uint8_t *buf = ops->oobbuf;
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002848 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
Brian Norris289c0522011-07-19 10:06:09 -07002850 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302851 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Brian Norris041e4572011-06-23 16:45:24 -07002853 stats = mtd->ecc_stats;
2854
Boris BREZILLON29f10582016-03-07 10:46:52 +01002855 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02002856
2857 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002858 pr_debug("%s: attempt to start read outside oob\n",
2859 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002860 return -EINVAL;
2861 }
2862
2863 /* Do not allow reads past end of device */
2864 if (unlikely(from >= mtd->size ||
2865 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
2866 (from >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002867 pr_debug("%s: attempt to read beyond end of device\n",
2868 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002869 return -EINVAL;
2870 }
Vitaly Wool70145682006-11-03 18:20:38 +03002871
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002872 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002873 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002875 /* Shift to get page */
2876 realpage = (int)(from >> chip->page_shift);
2877 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Florian Fainellif8ac0412010-09-07 13:23:43 +02002879 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002880 if (ops->mode == MTD_OPS_RAW)
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002881 ret = chip->ecc.read_oob_raw(mtd, chip, page);
Brian Norrisc46f6482011-08-30 18:45:38 -07002882 else
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002883 ret = chip->ecc.read_oob(mtd, chip, page);
2884
2885 if (ret < 0)
2886 break;
Vitaly Wool70145682006-11-03 18:20:38 +03002887
2888 len = min(len, readlen);
Boris Brezillon846031d2016-02-03 20:11:00 +01002889 buf = nand_transfer_oob(mtd, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002890
Brian Norris5bc7c332013-03-13 09:51:31 -07002891 if (chip->options & NAND_NEED_READRDY) {
2892 /* Apply delay or wait for ready/busy pin */
2893 if (!chip->dev_ready)
2894 udelay(chip->chip_delay);
2895 else
2896 nand_wait_ready(mtd);
2897 }
2898
Vitaly Wool70145682006-11-03 18:20:38 +03002899 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02002900 if (!readlen)
2901 break;
2902
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002903 /* Increment page address */
2904 realpage++;
2905
2906 page = realpage & chip->pagemask;
2907 /* Check, if we cross a chip boundary */
2908 if (!page) {
2909 chipnr++;
2910 chip->select_chip(mtd, -1);
2911 chip->select_chip(mtd, chipnr);
2912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002914 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002916 ops->oobretlen = ops->ooblen - readlen;
2917
2918 if (ret < 0)
2919 return ret;
Brian Norris041e4572011-06-23 16:45:24 -07002920
2921 if (mtd->ecc_stats.failed - stats.failed)
2922 return -EBADMSG;
2923
2924 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925}
2926
2927/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002928 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002929 * @mtd: MTD device structure
2930 * @from: offset to read from
2931 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002933 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002935static int nand_read_oob(struct mtd_info *mtd, loff_t from,
2936 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937{
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07002938 int ret;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002939
2940 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
2942 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002943 if (ops->datbuf && (from + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002944 pr_debug("%s: attempt to read beyond end of device\n",
2945 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 return -EINVAL;
2947 }
2948
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07002949 if (ops->mode != MTD_OPS_PLACE_OOB &&
2950 ops->mode != MTD_OPS_AUTO_OOB &&
2951 ops->mode != MTD_OPS_RAW)
2952 return -ENOTSUPP;
2953
Huang Shijie6a8214a2012-11-19 14:43:30 +08002954 nand_get_device(mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002956 if (!ops->datbuf)
2957 ret = nand_do_read_oob(mtd, from, ops);
2958 else
2959 ret = nand_do_read_ops(mtd, from, ops);
2960
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002962 return ret;
2963}
2964
2965
2966/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002967 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002968 * @mtd: mtd info structure
2969 * @chip: nand chip info structure
2970 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002971 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002972 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002973 *
Brian Norris7854d3f2011-06-23 14:12:08 -07002974 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002975 */
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02002976int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
2977 const uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002978{
Boris Brezillon97d90da2017-11-30 18:01:29 +01002979 int ret;
2980
2981 ret = nand_write_data_op(chip, buf, mtd->writesize, false);
2982 if (ret)
2983 return ret;
2984
2985 if (oob_required) {
2986 ret = nand_write_data_op(chip, chip->oob_poi, mtd->oobsize,
2987 false);
2988 if (ret)
2989 return ret;
2990 }
Josh Wufdbad98d2012-06-25 18:07:45 +08002991
2992 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993}
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02002994EXPORT_SYMBOL(nand_write_page_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002996/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002997 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002998 * @mtd: mtd info structure
2999 * @chip: nand chip info structure
3000 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07003001 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003002 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08003003 *
3004 * We need a special oob layout and handling even when ECC isn't checked.
3005 */
Josh Wufdbad98d2012-06-25 18:07:45 +08003006static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003007 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003008 const uint8_t *buf, int oob_required,
3009 int page)
David Brownell52ff49d2009-03-04 12:01:36 -08003010{
3011 int eccsize = chip->ecc.size;
3012 int eccbytes = chip->ecc.bytes;
3013 uint8_t *oob = chip->oob_poi;
Boris Brezillon97d90da2017-11-30 18:01:29 +01003014 int steps, size, ret;
David Brownell52ff49d2009-03-04 12:01:36 -08003015
3016 for (steps = chip->ecc.steps; steps > 0; steps--) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003017 ret = nand_write_data_op(chip, buf, eccsize, false);
3018 if (ret)
3019 return ret;
3020
David Brownell52ff49d2009-03-04 12:01:36 -08003021 buf += eccsize;
3022
3023 if (chip->ecc.prepad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003024 ret = nand_write_data_op(chip, oob, chip->ecc.prepad,
3025 false);
3026 if (ret)
3027 return ret;
3028
David Brownell52ff49d2009-03-04 12:01:36 -08003029 oob += chip->ecc.prepad;
3030 }
3031
Boris Brezillon97d90da2017-11-30 18:01:29 +01003032 ret = nand_write_data_op(chip, oob, eccbytes, false);
3033 if (ret)
3034 return ret;
3035
David Brownell52ff49d2009-03-04 12:01:36 -08003036 oob += eccbytes;
3037
3038 if (chip->ecc.postpad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003039 ret = nand_write_data_op(chip, oob, chip->ecc.postpad,
3040 false);
3041 if (ret)
3042 return ret;
3043
David Brownell52ff49d2009-03-04 12:01:36 -08003044 oob += chip->ecc.postpad;
3045 }
3046 }
3047
3048 size = mtd->oobsize - (oob - chip->oob_poi);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003049 if (size) {
3050 ret = nand_write_data_op(chip, oob, size, false);
3051 if (ret)
3052 return ret;
3053 }
Josh Wufdbad98d2012-06-25 18:07:45 +08003054
3055 return 0;
David Brownell52ff49d2009-03-04 12:01:36 -08003056}
3057/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003058 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003059 * @mtd: mtd info structure
3060 * @chip: nand chip info structure
3061 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07003062 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003063 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003064 */
Josh Wufdbad98d2012-06-25 18:07:45 +08003065static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003066 const uint8_t *buf, int oob_required,
3067 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003068{
Boris Brezillon846031d2016-02-03 20:11:00 +01003069 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003070 int eccbytes = chip->ecc.bytes;
3071 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003072 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003073 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003074
Brian Norris7854d3f2011-06-23 14:12:08 -07003075 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003076 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
3077 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003078
Boris Brezillon846031d2016-02-03 20:11:00 +01003079 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
3080 chip->ecc.total);
3081 if (ret)
3082 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003083
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003084 return chip->ecc.write_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003085}
3086
3087/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003088 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003089 * @mtd: mtd info structure
3090 * @chip: nand chip info structure
3091 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07003092 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003093 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003094 */
Josh Wufdbad98d2012-06-25 18:07:45 +08003095static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003096 const uint8_t *buf, int oob_required,
3097 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003098{
Boris Brezillon846031d2016-02-03 20:11:00 +01003099 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003100 int eccbytes = chip->ecc.bytes;
3101 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003102 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003103 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003104
3105 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
3106 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003107
3108 ret = nand_write_data_op(chip, p, eccsize, false);
3109 if (ret)
3110 return ret;
3111
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003112 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
3113 }
3114
Boris Brezillon846031d2016-02-03 20:11:00 +01003115 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
3116 chip->ecc.total);
3117 if (ret)
3118 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003119
Boris Brezillon97d90da2017-11-30 18:01:29 +01003120 ret = nand_write_data_op(chip, chip->oob_poi, mtd->oobsize, false);
3121 if (ret)
3122 return ret;
Josh Wufdbad98d2012-06-25 18:07:45 +08003123
3124 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003125}
3126
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303127
3128/**
Brian Norris73c8aaf2015-02-28 02:04:18 -08003129 * nand_write_subpage_hwecc - [REPLACEABLE] hardware ECC based subpage write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303130 * @mtd: mtd info structure
3131 * @chip: nand chip info structure
Brian Norrisd6a950802013-08-08 17:16:36 -07003132 * @offset: column address of subpage within the page
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303133 * @data_len: data length
Brian Norrisd6a950802013-08-08 17:16:36 -07003134 * @buf: data buffer
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303135 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003136 * @page: page number to write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303137 */
3138static int nand_write_subpage_hwecc(struct mtd_info *mtd,
3139 struct nand_chip *chip, uint32_t offset,
Brian Norrisd6a950802013-08-08 17:16:36 -07003140 uint32_t data_len, const uint8_t *buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003141 int oob_required, int page)
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303142{
3143 uint8_t *oob_buf = chip->oob_poi;
3144 uint8_t *ecc_calc = chip->buffers->ecccalc;
3145 int ecc_size = chip->ecc.size;
3146 int ecc_bytes = chip->ecc.bytes;
3147 int ecc_steps = chip->ecc.steps;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303148 uint32_t start_step = offset / ecc_size;
3149 uint32_t end_step = (offset + data_len - 1) / ecc_size;
3150 int oob_bytes = mtd->oobsize / ecc_steps;
Boris Brezillon846031d2016-02-03 20:11:00 +01003151 int step, ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303152
3153 for (step = 0; step < ecc_steps; step++) {
3154 /* configure controller for WRITE access */
3155 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
3156
3157 /* write data (untouched subpages already masked by 0xFF) */
Boris Brezillon97d90da2017-11-30 18:01:29 +01003158 ret = nand_write_data_op(chip, buf, ecc_size, false);
3159 if (ret)
3160 return ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303161
3162 /* mask ECC of un-touched subpages by padding 0xFF */
3163 if ((step < start_step) || (step > end_step))
3164 memset(ecc_calc, 0xff, ecc_bytes);
3165 else
Brian Norrisd6a950802013-08-08 17:16:36 -07003166 chip->ecc.calculate(mtd, buf, ecc_calc);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303167
3168 /* mask OOB of un-touched subpages by padding 0xFF */
3169 /* if oob_required, preserve OOB metadata of written subpage */
3170 if (!oob_required || (step < start_step) || (step > end_step))
3171 memset(oob_buf, 0xff, oob_bytes);
3172
Brian Norrisd6a950802013-08-08 17:16:36 -07003173 buf += ecc_size;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303174 ecc_calc += ecc_bytes;
3175 oob_buf += oob_bytes;
3176 }
3177
3178 /* copy calculated ECC for whole page to chip->buffer->oob */
3179 /* this include masked-value(0xFF) for unwritten subpages */
3180 ecc_calc = chip->buffers->ecccalc;
Boris Brezillon846031d2016-02-03 20:11:00 +01003181 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
3182 chip->ecc.total);
3183 if (ret)
3184 return ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303185
3186 /* write OOB buffer to NAND device */
Boris Brezillon97d90da2017-11-30 18:01:29 +01003187 ret = nand_write_data_op(chip, chip->oob_poi, mtd->oobsize, false);
3188 if (ret)
3189 return ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303190
3191 return 0;
3192}
3193
3194
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003195/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003196 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07003197 * @mtd: mtd info structure
3198 * @chip: nand chip info structure
3199 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07003200 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003201 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003202 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003203 * The hw generator calculates the error syndrome automatically. Therefore we
3204 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003205 */
Josh Wufdbad98d2012-06-25 18:07:45 +08003206static int nand_write_page_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07003207 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003208 const uint8_t *buf, int oob_required,
3209 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003210{
3211 int i, eccsize = chip->ecc.size;
3212 int eccbytes = chip->ecc.bytes;
3213 int eccsteps = chip->ecc.steps;
3214 const uint8_t *p = buf;
3215 uint8_t *oob = chip->oob_poi;
Boris Brezillon97d90da2017-11-30 18:01:29 +01003216 int ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003217
3218 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003219 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003220
3221 ret = nand_write_data_op(chip, p, eccsize, false);
3222 if (ret)
3223 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003224
3225 if (chip->ecc.prepad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003226 ret = nand_write_data_op(chip, oob, chip->ecc.prepad,
3227 false);
3228 if (ret)
3229 return ret;
3230
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003231 oob += chip->ecc.prepad;
3232 }
3233
3234 chip->ecc.calculate(mtd, p, oob);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003235
3236 ret = nand_write_data_op(chip, oob, eccbytes, false);
3237 if (ret)
3238 return ret;
3239
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003240 oob += eccbytes;
3241
3242 if (chip->ecc.postpad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003243 ret = nand_write_data_op(chip, oob, chip->ecc.postpad,
3244 false);
3245 if (ret)
3246 return ret;
3247
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003248 oob += chip->ecc.postpad;
3249 }
3250 }
3251
3252 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04003253 i = mtd->oobsize - (oob - chip->oob_poi);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003254 if (i) {
3255 ret = nand_write_data_op(chip, oob, i, false);
3256 if (ret)
3257 return ret;
3258 }
Josh Wufdbad98d2012-06-25 18:07:45 +08003259
3260 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003261}
3262
3263/**
Boris Brezillonf107d7a2017-03-16 09:02:42 +01003264 * nand_write_page - write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07003265 * @mtd: MTD device structure
3266 * @chip: NAND chip descriptor
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303267 * @offset: address offset within the page
3268 * @data_len: length of actual data to be written
Brian Norris8b6e50c2011-05-25 14:59:01 -07003269 * @buf: the data to write
Brian Norris1fbb9382012-05-02 10:14:55 -07003270 * @oob_required: must write chip->oob_poi to OOB
Brian Norris8b6e50c2011-05-25 14:59:01 -07003271 * @page: page number to write
Brian Norris8b6e50c2011-05-25 14:59:01 -07003272 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003273 */
3274static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303275 uint32_t offset, int data_len, const uint8_t *buf,
Boris Brezillon0b4773fd2017-05-16 00:17:41 +02003276 int oob_required, int page, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003277{
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303278 int status, subpage;
3279
3280 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3281 chip->ecc.write_subpage)
3282 subpage = offset || (data_len < mtd->writesize);
3283 else
3284 subpage = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003285
Boris Brezillon97d90da2017-11-30 18:01:29 +01003286 if (nand_standard_page_accessors(&chip->ecc)) {
3287 status = nand_prog_page_begin_op(chip, page, 0, NULL, 0);
3288 if (status)
3289 return status;
3290 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003291
David Woodhouse956e9442006-09-25 17:12:39 +01003292 if (unlikely(raw))
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303293 status = chip->ecc.write_page_raw(mtd, chip, buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003294 oob_required, page);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303295 else if (subpage)
3296 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003297 buf, oob_required, page);
David Woodhouse956e9442006-09-25 17:12:39 +01003298 else
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003299 status = chip->ecc.write_page(mtd, chip, buf, oob_required,
3300 page);
Josh Wufdbad98d2012-06-25 18:07:45 +08003301
3302 if (status < 0)
3303 return status;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003304
Boris Brezillon97d90da2017-11-30 18:01:29 +01003305 if (nand_standard_page_accessors(&chip->ecc))
3306 return nand_prog_page_end_op(chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003307
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003308 return 0;
3309}
3310
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003311/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003312 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02003313 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07003314 * @oob: oob data buffer
3315 * @len: oob data write length
3316 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003317 */
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02003318static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
3319 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003320{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003321 struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon846031d2016-02-03 20:11:00 +01003322 int ret;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02003323
3324 /*
3325 * Initialise to all 0xFF, to avoid the possibility of left over OOB
3326 * data from a previous OOB read.
3327 */
3328 memset(chip->oob_poi, 0xff, mtd->oobsize);
3329
Florian Fainellif8ac0412010-09-07 13:23:43 +02003330 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003331
Brian Norris0612b9d2011-08-30 18:45:40 -07003332 case MTD_OPS_PLACE_OOB:
3333 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003334 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
3335 return oob + len;
3336
Boris Brezillon846031d2016-02-03 20:11:00 +01003337 case MTD_OPS_AUTO_OOB:
3338 ret = mtd_ooblayout_set_databytes(mtd, oob, chip->oob_poi,
3339 ops->ooboffs, len);
3340 BUG_ON(ret);
3341 return oob + len;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003342
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003343 default:
3344 BUG();
3345 }
3346 return NULL;
3347}
3348
Florian Fainellif8ac0412010-09-07 13:23:43 +02003349#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003350
3351/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003352 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07003353 * @mtd: MTD device structure
3354 * @to: offset to write to
3355 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003356 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003357 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003358 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003359static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
3360 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003361{
Corentin Labbe73600b62017-09-02 10:49:38 +02003362 int chipnr, realpage, page, column;
Boris BREZILLON862eba52015-12-01 12:03:03 +01003363 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003364 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02003365
3366 uint32_t oobwritelen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01003367 uint32_t oobmaxlen = mtd_oobavail(mtd, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02003368
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003369 uint8_t *oob = ops->oobbuf;
3370 uint8_t *buf = ops->datbuf;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303371 int ret;
Brian Norrise47f3db2012-05-02 10:14:56 -07003372 int oob_required = oob ? 1 : 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003373
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003374 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02003375 if (!writelen)
3376 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003377
Brian Norris8b6e50c2011-05-25 14:59:01 -07003378 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003379 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07003380 pr_notice("%s: attempt to write non page aligned data\n",
3381 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003382 return -EINVAL;
3383 }
3384
Thomas Gleixner29072b92006-09-28 15:38:36 +02003385 column = to & (mtd->writesize - 1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003386
Thomas Gleixner6a930962006-06-28 00:11:45 +02003387 chipnr = (int)(to >> chip->chip_shift);
3388 chip->select_chip(mtd, chipnr);
3389
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003390 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08003391 if (nand_check_wp(mtd)) {
3392 ret = -EIO;
3393 goto err_out;
3394 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003395
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003396 realpage = (int)(to >> chip->page_shift);
3397 page = realpage & chip->pagemask;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003398
3399 /* Invalidate the page cache, when we write to the cached page */
Brian Norris537ab1b2014-07-21 19:08:03 -07003400 if (to <= ((loff_t)chip->pagebuf << chip->page_shift) &&
3401 ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003402 chip->pagebuf = -1;
3403
Maxim Levitsky782ce792010-02-22 20:39:36 +02003404 /* Don't allow multipage oob writes with offset */
Huang Shijieb0bb6902012-11-19 14:43:29 +08003405 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
3406 ret = -EINVAL;
3407 goto err_out;
3408 }
Maxim Levitsky782ce792010-02-22 20:39:36 +02003409
Florian Fainellif8ac0412010-09-07 13:23:43 +02003410 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02003411 int bytes = mtd->writesize;
Thomas Gleixner29072b92006-09-28 15:38:36 +02003412 uint8_t *wbuf = buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04003413 int use_bufpoi;
Hector Palacios144f4c92016-07-18 10:39:18 +02003414 int part_pagewr = (column || writelen < mtd->writesize);
Thomas Gleixner29072b92006-09-28 15:38:36 +02003415
Kamal Dasu66507c72014-05-01 20:51:19 -04003416 if (part_pagewr)
3417 use_bufpoi = 1;
3418 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
Masahiro Yamada477544c2017-03-30 17:15:05 +09003419 use_bufpoi = !virt_addr_valid(buf) ||
3420 !IS_ALIGNED((unsigned long)buf,
3421 chip->buf_align);
Kamal Dasu66507c72014-05-01 20:51:19 -04003422 else
3423 use_bufpoi = 0;
3424
3425 /* Partial page write?, or need to use bounce buffer */
3426 if (use_bufpoi) {
3427 pr_debug("%s: using write bounce buffer for buf@%p\n",
3428 __func__, buf);
Kamal Dasu66507c72014-05-01 20:51:19 -04003429 if (part_pagewr)
3430 bytes = min_t(int, bytes - column, writelen);
Thomas Gleixner29072b92006-09-28 15:38:36 +02003431 chip->pagebuf = -1;
3432 memset(chip->buffers->databuf, 0xff, mtd->writesize);
3433 memcpy(&chip->buffers->databuf[column], buf, bytes);
3434 wbuf = chip->buffers->databuf;
3435 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003436
Maxim Levitsky782ce792010-02-22 20:39:36 +02003437 if (unlikely(oob)) {
3438 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02003439 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02003440 oobwritelen -= len;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02003441 } else {
3442 /* We still need to erase leftover OOB data */
3443 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02003444 }
Boris Brezillonf107d7a2017-03-16 09:02:42 +01003445
3446 ret = nand_write_page(mtd, chip, column, bytes, wbuf,
Boris Brezillon0b4773fd2017-05-16 00:17:41 +02003447 oob_required, page,
Boris Brezillonf107d7a2017-03-16 09:02:42 +01003448 (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003449 if (ret)
3450 break;
3451
3452 writelen -= bytes;
3453 if (!writelen)
3454 break;
3455
Thomas Gleixner29072b92006-09-28 15:38:36 +02003456 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003457 buf += bytes;
3458 realpage++;
3459
3460 page = realpage & chip->pagemask;
3461 /* Check, if we cross a chip boundary */
3462 if (!page) {
3463 chipnr++;
3464 chip->select_chip(mtd, -1);
3465 chip->select_chip(mtd, chipnr);
3466 }
3467 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003468
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003469 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03003470 if (unlikely(oob))
3471 ops->oobretlen = ops->ooblen;
Huang Shijieb0bb6902012-11-19 14:43:29 +08003472
3473err_out:
3474 chip->select_chip(mtd, -1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003475 return ret;
3476}
3477
3478/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003479 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07003480 * @mtd: MTD device structure
3481 * @to: offset to write to
3482 * @len: number of bytes to write
3483 * @retlen: pointer to variable to store the number of written bytes
3484 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003485 *
3486 * NAND write with ECC. Used when performing writes in interrupt context, this
3487 * may for example be called by mtdoops when writing an oops while in panic.
3488 */
3489static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
3490 size_t *retlen, const uint8_t *buf)
3491{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003492 struct nand_chip *chip = mtd_to_nand(mtd);
Brent Taylor30863e382017-10-30 22:32:45 -05003493 int chipnr = (int)(to >> chip->chip_shift);
Brian Norris4a89ff82011-08-30 18:45:45 -07003494 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003495 int ret;
3496
Brian Norris8b6e50c2011-05-25 14:59:01 -07003497 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003498 panic_nand_get_device(chip, mtd, FL_WRITING);
3499
Brent Taylor30863e382017-10-30 22:32:45 -05003500 chip->select_chip(mtd, chipnr);
3501
3502 /* Wait for the device to get ready */
3503 panic_nand_wait(mtd, chip, 400);
3504
Brian Norris0ec56dc2015-02-28 02:02:30 -08003505 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07003506 ops.len = len;
3507 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08003508 ops.mode = MTD_OPS_PLACE_OOB;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003509
Brian Norris4a89ff82011-08-30 18:45:45 -07003510 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003511
Brian Norris4a89ff82011-08-30 18:45:45 -07003512 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003513 return ret;
3514}
3515
3516/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003517 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07003518 * @mtd: MTD device structure
3519 * @to: offset to write to
3520 * @len: number of bytes to write
3521 * @retlen: pointer to variable to store the number of written bytes
3522 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003524 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003526static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02003527 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528{
Brian Norris4a89ff82011-08-30 18:45:45 -07003529 struct mtd_oob_ops ops;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003530 int ret;
3531
Huang Shijie6a8214a2012-11-19 14:43:30 +08003532 nand_get_device(mtd, FL_WRITING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08003533 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07003534 ops.len = len;
3535 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08003536 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07003537 ret = nand_do_write_ops(mtd, to, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07003538 *retlen = ops.retlen;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003539 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003540 return ret;
3541}
3542
3543/**
3544 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07003545 * @mtd: MTD device structure
3546 * @to: offset to write to
3547 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003548 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003549 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003550 */
3551static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
3552 struct mtd_oob_ops *ops)
3553{
Adrian Hunter03736152007-01-31 17:58:29 +02003554 int chipnr, page, status, len;
Boris BREZILLON862eba52015-12-01 12:03:03 +01003555 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556
Brian Norris289c0522011-07-19 10:06:09 -07003557 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05303558 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
Boris BREZILLON29f10582016-03-07 10:46:52 +01003560 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02003561
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02003563 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07003564 pr_debug("%s: attempt to write past end of page\n",
3565 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 return -EINVAL;
3567 }
3568
Adrian Hunter03736152007-01-31 17:58:29 +02003569 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07003570 pr_debug("%s: attempt to start write outside oob\n",
3571 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02003572 return -EINVAL;
3573 }
3574
Jason Liu775adc3d42011-02-25 13:06:18 +08003575 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02003576 if (unlikely(to >= mtd->size ||
3577 ops->ooboffs + ops->ooblen >
3578 ((mtd->size >> chip->page_shift) -
3579 (to >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07003580 pr_debug("%s: attempt to write beyond end of device\n",
3581 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02003582 return -EINVAL;
3583 }
3584
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02003585 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02003586
3587 /*
3588 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
3589 * of my DiskOnChip 2000 test units) will clear the whole data page too
3590 * if we don't do this. I have no clue why, but I seem to have 'fixed'
3591 * it in the doc2000 driver in August 1999. dwmw2.
3592 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02003593 nand_reset(chip, chipnr);
3594
3595 chip->select_chip(mtd, chipnr);
3596
3597 /* Shift to get page */
3598 page = (int)(to >> chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
3600 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08003601 if (nand_check_wp(mtd)) {
3602 chip->select_chip(mtd, -1);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003603 return -EROFS;
Huang Shijieb0bb6902012-11-19 14:43:29 +08003604 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003605
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003607 if (page == chip->pagebuf)
3608 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02003610 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07003611
Brian Norris0612b9d2011-08-30 18:45:40 -07003612 if (ops->mode == MTD_OPS_RAW)
Brian Norris9ce244b2011-08-30 18:45:37 -07003613 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
3614 else
3615 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003616
Huang Shijieb0bb6902012-11-19 14:43:29 +08003617 chip->select_chip(mtd, -1);
3618
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003619 if (status)
3620 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621
Vitaly Wool70145682006-11-03 18:20:38 +03003622 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003624 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003625}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003627/**
3628 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07003629 * @mtd: MTD device structure
3630 * @to: offset to write to
3631 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003632 */
3633static int nand_write_oob(struct mtd_info *mtd, loff_t to,
3634 struct mtd_oob_ops *ops)
3635{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003636 int ret = -ENOTSUPP;
3637
3638 ops->retlen = 0;
3639
3640 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03003641 if (ops->datbuf && (to + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07003642 pr_debug("%s: attempt to write beyond end of device\n",
3643 __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003644 return -EINVAL;
3645 }
3646
Huang Shijie6a8214a2012-11-19 14:43:30 +08003647 nand_get_device(mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003648
Florian Fainellif8ac0412010-09-07 13:23:43 +02003649 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07003650 case MTD_OPS_PLACE_OOB:
3651 case MTD_OPS_AUTO_OOB:
3652 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003653 break;
3654
3655 default:
3656 goto out;
3657 }
3658
3659 if (!ops->datbuf)
3660 ret = nand_do_write_oob(mtd, to, ops);
3661 else
3662 ret = nand_do_write_ops(mtd, to, ops);
3663
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003664out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003665 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 return ret;
3667}
3668
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669/**
Brian Norris49c50b92014-05-06 16:02:19 -07003670 * single_erase - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003671 * @mtd: MTD device structure
3672 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 *
Brian Norris49c50b92014-05-06 16:02:19 -07003674 * Standard erase command for NAND chips. Returns NAND status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 */
Brian Norris49c50b92014-05-06 16:02:19 -07003676static int single_erase(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003678 struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003679 unsigned int eraseblock;
Miquel Raynaleb945552017-11-30 18:01:28 +01003680
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 /* Send commands to erase a block */
Boris Brezillon97d90da2017-11-30 18:01:29 +01003682 eraseblock = page >> (chip->phys_erase_shift - chip->page_shift);
Brian Norris49c50b92014-05-06 16:02:19 -07003683
Boris Brezillon97d90da2017-11-30 18:01:29 +01003684 return nand_erase_op(chip, eraseblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685}
3686
3687/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003689 * @mtd: MTD device structure
3690 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003692 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003694static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695{
David Woodhousee0c7d762006-05-13 18:07:53 +01003696 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003698
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003700 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003701 * @mtd: MTD device structure
3702 * @instr: erase instruction
3703 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003705 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003707int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
3708 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709{
Adrian Hunter69423d92008-12-10 13:37:21 +00003710 int page, status, pages_per_block, ret, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01003711 struct nand_chip *chip = mtd_to_nand(mtd);
Adrian Hunter69423d92008-12-10 13:37:21 +00003712 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
Brian Norris289c0522011-07-19 10:06:09 -07003714 pr_debug("%s: start = 0x%012llx, len = %llu\n",
3715 __func__, (unsigned long long)instr->addr,
3716 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05303718 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08003722 nand_get_device(mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
3724 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003725 page = (int)(instr->addr >> chip->page_shift);
3726 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
3728 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003729 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
3731 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003732 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 /* Check, if it is write protected */
3735 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07003736 pr_debug("%s: device is write protected!\n",
3737 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 instr->state = MTD_ERASE_FAILED;
3739 goto erase_exit;
3740 }
3741
3742 /* Loop through the pages */
3743 len = instr->len;
3744
3745 instr->state = MTD_ERASING;
3746
3747 while (len) {
Wolfram Sang12183a22011-12-21 23:01:20 +01003748 /* Check if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003749 if (nand_block_checkbad(mtd, ((loff_t) page) <<
Archit Taneja9f3e0422016-02-03 14:29:49 +05303750 chip->page_shift, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07003751 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
3752 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 instr->state = MTD_ERASE_FAILED;
3754 goto erase_exit;
3755 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003756
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003757 /*
3758 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07003759 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003760 */
3761 if (page <= chip->pagebuf && chip->pagebuf <
3762 (page + pages_per_block))
3763 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
Brian Norris49c50b92014-05-06 16:02:19 -07003765 status = chip->erase(mtd, page & chip->pagemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766
3767 /* See if block erase succeeded */
Miquel Raynaleb945552017-11-30 18:01:28 +01003768 if (status) {
Brian Norris289c0522011-07-19 10:06:09 -07003769 pr_debug("%s: failed erase, page 0x%08x\n",
3770 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00003772 instr->fail_addr =
3773 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 goto erase_exit;
3775 }
David A. Marlin30f464b2005-01-17 18:35:25 +00003776
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 /* Increment page address and decrement length */
Dan Carpenterdaae74c2013-08-09 12:49:05 +03003778 len -= (1ULL << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 page += pages_per_block;
3780
3781 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003782 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003784 chip->select_chip(mtd, -1);
3785 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 }
3787 }
3788 instr->state = MTD_ERASE_DONE;
3789
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003790erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
3792 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
3794 /* Deselect and wake up anyone waiting on the device */
Huang Shijieb0bb6902012-11-19 14:43:29 +08003795 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 nand_release_device(mtd);
3797
David Woodhouse49defc02007-10-06 15:01:59 -04003798 /* Do call back function */
3799 if (!ret)
3800 mtd_erase_callback(instr);
3801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 /* Return more or less happy */
3803 return ret;
3804}
3805
3806/**
3807 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07003808 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003810 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003812static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813{
Brian Norris289c0522011-07-19 10:06:09 -07003814 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
3816 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08003817 nand_get_device(mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01003819 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820}
3821
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003823 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003824 * @mtd: MTD device structure
3825 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003827static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828{
Archit Taneja9f3e0422016-02-03 14:29:49 +05303829 struct nand_chip *chip = mtd_to_nand(mtd);
3830 int chipnr = (int)(offs >> chip->chip_shift);
3831 int ret;
3832
3833 /* Select the NAND device */
3834 nand_get_device(mtd, FL_READING);
3835 chip->select_chip(mtd, chipnr);
3836
3837 ret = nand_block_checkbad(mtd, offs, 0);
3838
3839 chip->select_chip(mtd, -1);
3840 nand_release_device(mtd);
3841
3842 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843}
3844
3845/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003846 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003847 * @mtd: MTD device structure
3848 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003850static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 int ret;
3853
Florian Fainellif8ac0412010-09-07 13:23:43 +02003854 ret = nand_block_isbad(mtd, ofs);
3855 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07003856 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 if (ret > 0)
3858 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01003859 return ret;
3860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Brian Norris5a0edb22013-07-30 17:52:58 -07003862 return nand_block_markbad_lowlevel(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863}
3864
3865/**
Zach Brown56718422017-01-10 13:30:20 -06003866 * nand_max_bad_blocks - [MTD Interface] Max number of bad blocks for an mtd
3867 * @mtd: MTD device structure
3868 * @ofs: offset relative to mtd start
3869 * @len: length of mtd
3870 */
3871static int nand_max_bad_blocks(struct mtd_info *mtd, loff_t ofs, size_t len)
3872{
3873 struct nand_chip *chip = mtd_to_nand(mtd);
3874 u32 part_start_block;
3875 u32 part_end_block;
3876 u32 part_start_die;
3877 u32 part_end_die;
3878
3879 /*
3880 * max_bb_per_die and blocks_per_die used to determine
3881 * the maximum bad block count.
3882 */
3883 if (!chip->max_bb_per_die || !chip->blocks_per_die)
3884 return -ENOTSUPP;
3885
3886 /* Get the start and end of the partition in erase blocks. */
3887 part_start_block = mtd_div_by_eb(ofs, mtd);
3888 part_end_block = mtd_div_by_eb(len, mtd) + part_start_block - 1;
3889
3890 /* Get the start and end LUNs of the partition. */
3891 part_start_die = part_start_block / chip->blocks_per_die;
3892 part_end_die = part_end_block / chip->blocks_per_die;
3893
3894 /*
3895 * Look up the bad blocks per unit and multiply by the number of units
3896 * that the partition spans.
3897 */
3898 return chip->max_bb_per_die * (part_end_die - part_start_die + 1);
3899}
3900
3901/**
Huang Shijie7db03ec2012-09-13 14:57:52 +08003902 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
3903 * @mtd: MTD device structure
3904 * @chip: nand chip info structure
3905 * @addr: feature address.
3906 * @subfeature_param: the subfeature parameters, a four bytes array.
3907 */
3908static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
3909 int addr, uint8_t *subfeature_param)
3910{
David Mosbergerd914c932013-05-29 15:30:13 +03003911 if (!chip->onfi_version ||
3912 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3913 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003914 return -EINVAL;
3915
Boris Brezillon97d90da2017-11-30 18:01:29 +01003916 return nand_set_features_op(chip, addr, subfeature_param);
Huang Shijie7db03ec2012-09-13 14:57:52 +08003917}
3918
3919/**
3920 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
3921 * @mtd: MTD device structure
3922 * @chip: nand chip info structure
3923 * @addr: feature address.
3924 * @subfeature_param: the subfeature parameters, a four bytes array.
3925 */
3926static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
3927 int addr, uint8_t *subfeature_param)
3928{
David Mosbergerd914c932013-05-29 15:30:13 +03003929 if (!chip->onfi_version ||
3930 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3931 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003932 return -EINVAL;
3933
Boris Brezillon97d90da2017-11-30 18:01:29 +01003934 return nand_get_features_op(chip, addr, subfeature_param);
Huang Shijie7db03ec2012-09-13 14:57:52 +08003935}
3936
3937/**
Boris Brezillon4a78cc62017-05-26 17:10:15 +02003938 * nand_onfi_get_set_features_notsupp - set/get features stub returning
3939 * -ENOTSUPP
3940 * @mtd: MTD device structure
3941 * @chip: nand chip info structure
3942 * @addr: feature address.
3943 * @subfeature_param: the subfeature parameters, a four bytes array.
3944 *
3945 * Should be used by NAND controller drivers that do not support the SET/GET
3946 * FEATURES operations.
3947 */
3948int nand_onfi_get_set_features_notsupp(struct mtd_info *mtd,
3949 struct nand_chip *chip, int addr,
3950 u8 *subfeature_param)
3951{
3952 return -ENOTSUPP;
3953}
3954EXPORT_SYMBOL(nand_onfi_get_set_features_notsupp);
3955
3956/**
Vitaly Wool962034f2005-09-15 14:58:53 +01003957 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003958 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003959 */
3960static int nand_suspend(struct mtd_info *mtd)
3961{
Huang Shijie6a8214a2012-11-19 14:43:30 +08003962 return nand_get_device(mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01003963}
3964
3965/**
3966 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003967 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003968 */
3969static void nand_resume(struct mtd_info *mtd)
3970{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003971 struct nand_chip *chip = mtd_to_nand(mtd);
Vitaly Wool962034f2005-09-15 14:58:53 +01003972
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003973 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01003974 nand_release_device(mtd);
3975 else
Brian Norrisd0370212011-07-19 10:06:08 -07003976 pr_err("%s called for a chip which is not in suspended state\n",
3977 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01003978}
3979
Scott Branden72ea4032014-11-20 11:18:05 -08003980/**
3981 * nand_shutdown - [MTD Interface] Finish the current NAND operation and
3982 * prevent further operations
3983 * @mtd: MTD device structure
3984 */
3985static void nand_shutdown(struct mtd_info *mtd)
3986{
Brian Norris9ca641b2015-11-09 16:37:28 -08003987 nand_get_device(mtd, FL_PM_SUSPENDED);
Scott Branden72ea4032014-11-20 11:18:05 -08003988}
3989
Brian Norris8b6e50c2011-05-25 14:59:01 -07003990/* Set default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003991static void nand_set_defaults(struct nand_chip *chip)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003992{
Boris Brezillon29a198a2016-05-24 20:17:48 +02003993 unsigned int busw = chip->options & NAND_BUSWIDTH_16;
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003996 if (!chip->chip_delay)
3997 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998
3999 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004000 if (chip->cmdfunc == NULL)
4001 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
4003 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004004 if (chip->waitfunc == NULL)
4005 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004007 if (!chip->select_chip)
4008 chip->select_chip = nand_select_chip;
Brian Norris68e80782013-07-18 01:17:02 -07004009
Huang Shijie4204ccc2013-08-16 10:10:07 +08004010 /* set for ONFI nand */
4011 if (!chip->onfi_set_features)
4012 chip->onfi_set_features = nand_onfi_set_features;
4013 if (!chip->onfi_get_features)
4014 chip->onfi_get_features = nand_onfi_get_features;
4015
Brian Norris68e80782013-07-18 01:17:02 -07004016 /* If called twice, pointers that depend on busw may need to be reset */
4017 if (!chip->read_byte || chip->read_byte == nand_read_byte)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004018 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
4019 if (!chip->read_word)
4020 chip->read_word = nand_read_word;
4021 if (!chip->block_bad)
4022 chip->block_bad = nand_block_bad;
4023 if (!chip->block_markbad)
4024 chip->block_markbad = nand_default_block_markbad;
Brian Norris68e80782013-07-18 01:17:02 -07004025 if (!chip->write_buf || chip->write_buf == nand_write_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004026 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01004027 if (!chip->write_byte || chip->write_byte == nand_write_byte)
4028 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
Brian Norris68e80782013-07-18 01:17:02 -07004029 if (!chip->read_buf || chip->read_buf == nand_read_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004030 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004031 if (!chip->scan_bbt)
4032 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004033
4034 if (!chip->controller) {
4035 chip->controller = &chip->hwcontrol;
Marc Gonzalezd45bc582016-07-27 11:23:52 +02004036 nand_hw_control_init(chip->controller);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004037 }
4038
Masahiro Yamada477544c2017-03-30 17:15:05 +09004039 if (!chip->buf_align)
4040 chip->buf_align = 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004041}
4042
Brian Norris8b6e50c2011-05-25 14:59:01 -07004043/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004044static void sanitize_string(uint8_t *s, size_t len)
4045{
4046 ssize_t i;
4047
Brian Norris8b6e50c2011-05-25 14:59:01 -07004048 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004049 s[len - 1] = 0;
4050
Brian Norris8b6e50c2011-05-25 14:59:01 -07004051 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004052 for (i = 0; i < len - 1; i++) {
4053 if (s[i] < ' ' || s[i] > 127)
4054 s[i] = '?';
4055 }
4056
Brian Norris8b6e50c2011-05-25 14:59:01 -07004057 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004058 strim(s);
4059}
4060
4061static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
4062{
4063 int i;
4064 while (len--) {
4065 crc ^= *p++ << 8;
4066 for (i = 0; i < 8; i++)
4067 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
4068 }
4069
4070 return crc;
4071}
4072
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08004073/* Parse the Extended Parameter Page. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004074static int nand_flash_detect_ext_param_page(struct nand_chip *chip,
4075 struct nand_onfi_params *p)
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08004076{
4077 struct onfi_ext_param_page *ep;
4078 struct onfi_ext_section *s;
4079 struct onfi_ext_ecc_info *ecc;
4080 uint8_t *cursor;
Boris Brezillon97d90da2017-11-30 18:01:29 +01004081 int ret;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08004082 int len;
4083 int i;
4084
4085 len = le16_to_cpu(p->ext_param_page_length) * 16;
4086 ep = kmalloc(len, GFP_KERNEL);
Brian Norris5cb13272013-09-16 17:59:20 -07004087 if (!ep)
4088 return -ENOMEM;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08004089
4090 /* Send our own NAND_CMD_PARAM. */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004091 ret = nand_read_param_page_op(chip, 0, NULL, 0);
4092 if (ret)
4093 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08004094
4095 /* Use the Change Read Column command to skip the ONFI param pages. */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004096 ret = nand_change_read_column_op(chip,
4097 sizeof(*p) * p->num_of_param_pages,
4098 ep, len, true);
4099 if (ret)
4100 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08004101
Boris Brezillon97d90da2017-11-30 18:01:29 +01004102 ret = -EINVAL;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08004103 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
4104 != le16_to_cpu(ep->crc))) {
4105 pr_debug("fail in the CRC.\n");
4106 goto ext_out;
4107 }
4108
4109 /*
4110 * Check the signature.
4111 * Do not strictly follow the ONFI spec, maybe changed in future.
4112 */
4113 if (strncmp(ep->sig, "EPPS", 4)) {
4114 pr_debug("The signature is invalid.\n");
4115 goto ext_out;
4116 }
4117
4118 /* find the ECC section. */
4119 cursor = (uint8_t *)(ep + 1);
4120 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
4121 s = ep->sections + i;
4122 if (s->type == ONFI_SECTION_TYPE_2)
4123 break;
4124 cursor += s->length * 16;
4125 }
4126 if (i == ONFI_EXT_SECTION_MAX) {
4127 pr_debug("We can not find the ECC section.\n");
4128 goto ext_out;
4129 }
4130
4131 /* get the info we want. */
4132 ecc = (struct onfi_ext_ecc_info *)cursor;
4133
Brian Norris4ae7d222013-09-16 18:20:21 -07004134 if (!ecc->codeword_size) {
4135 pr_debug("Invalid codeword size\n");
4136 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08004137 }
4138
Brian Norris4ae7d222013-09-16 18:20:21 -07004139 chip->ecc_strength_ds = ecc->ecc_bits;
4140 chip->ecc_step_ds = 1 << ecc->codeword_size;
Brian Norris5cb13272013-09-16 17:59:20 -07004141 ret = 0;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08004142
4143ext_out:
4144 kfree(ep);
4145 return ret;
4146}
4147
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004148/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004149 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004150 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004151static int nand_flash_detect_onfi(struct nand_chip *chip)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004152{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004153 struct mtd_info *mtd = nand_to_mtd(chip);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004154 struct nand_onfi_params *p = &chip->onfi_params;
Boris Brezillon97d90da2017-11-30 18:01:29 +01004155 char id[4];
4156 int i, ret, val;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004157
Brian Norris7854d3f2011-06-23 14:12:08 -07004158 /* Try ONFI for unknown chip or LP */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004159 ret = nand_readid_op(chip, 0x20, id, sizeof(id));
4160 if (ret || strncmp(id, "ONFI", 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004161 return 0;
4162
Boris Brezillon97d90da2017-11-30 18:01:29 +01004163 ret = nand_read_param_page_op(chip, 0, NULL, 0);
4164 if (ret)
4165 return 0;
4166
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004167 for (i = 0; i < 3; i++) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01004168 ret = nand_read_data_op(chip, p, sizeof(*p), true);
4169 if (ret)
4170 return 0;
4171
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004172 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
4173 le16_to_cpu(p->crc)) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004174 break;
4175 }
4176 }
4177
Brian Norrisc7f23a72013-08-13 10:51:55 -07004178 if (i == 3) {
4179 pr_err("Could not find valid ONFI parameter page; aborting\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004180 return 0;
Brian Norrisc7f23a72013-08-13 10:51:55 -07004181 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004182
Brian Norris8b6e50c2011-05-25 14:59:01 -07004183 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004184 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08004185 if (val & (1 << 5))
4186 chip->onfi_version = 23;
4187 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004188 chip->onfi_version = 22;
4189 else if (val & (1 << 3))
4190 chip->onfi_version = 21;
4191 else if (val & (1 << 2))
4192 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08004193 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004194 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08004195
4196 if (!chip->onfi_version) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03004197 pr_info("unsupported ONFI version: %d\n", val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08004198 return 0;
4199 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004200
4201 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
4202 sanitize_string(p->model, sizeof(p->model));
4203 if (!mtd->name)
4204 mtd->name = p->model;
Brian Norris4355b702013-08-27 18:45:10 -07004205
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004206 mtd->writesize = le32_to_cpu(p->byte_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07004207
4208 /*
4209 * pages_per_block and blocks_per_lun may not be a power-of-2 size
4210 * (don't ask me who thought of this...). MTD assumes that these
4211 * dimensions will be power-of-2, so just truncate the remaining area.
4212 */
4213 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
4214 mtd->erasesize *= mtd->writesize;
4215
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004216 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07004217
4218 /* See erasesize comment */
4219 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
Matthieu CASTET63795752012-03-19 15:35:25 +01004220 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
Huang Shijie13fbd172013-09-25 14:58:13 +08004221 chip->bits_per_cell = p->bits_per_cell;
Huang Shijiee2985fc2013-05-17 11:17:30 +08004222
Zach Brown34da5f52017-01-10 13:30:21 -06004223 chip->max_bb_per_die = le16_to_cpu(p->bb_per_lun);
4224 chip->blocks_per_die = le32_to_cpu(p->blocks_per_lun);
4225
Huang Shijiee2985fc2013-05-17 11:17:30 +08004226 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02004227 chip->options |= NAND_BUSWIDTH_16;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004228
Huang Shijie10c86ba2013-05-17 11:17:26 +08004229 if (p->ecc_bits != 0xff) {
4230 chip->ecc_strength_ds = p->ecc_bits;
4231 chip->ecc_step_ds = 512;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08004232 } else if (chip->onfi_version >= 21 &&
4233 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
4234
4235 /*
4236 * The nand_flash_detect_ext_param_page() uses the
4237 * Change Read Column command which maybe not supported
4238 * by the chip->cmdfunc. So try to update the chip->cmdfunc
4239 * now. We do not replace user supplied command function.
4240 */
4241 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
4242 chip->cmdfunc = nand_command_lp;
4243
4244 /* The Extended Parameter Page is supported since ONFI 2.1. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004245 if (nand_flash_detect_ext_param_page(chip, p))
Brian Norrisc7f23a72013-08-13 10:51:55 -07004246 pr_warn("Failed to detect ONFI extended param page\n");
4247 } else {
4248 pr_warn("Could not retrieve ONFI ECC requirements\n");
Huang Shijie10c86ba2013-05-17 11:17:26 +08004249 }
4250
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004251 return 1;
4252}
4253
4254/*
Huang Shijie91361812014-02-21 13:39:40 +08004255 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
4256 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004257static int nand_flash_detect_jedec(struct nand_chip *chip)
Huang Shijie91361812014-02-21 13:39:40 +08004258{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004259 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie91361812014-02-21 13:39:40 +08004260 struct nand_jedec_params *p = &chip->jedec_params;
4261 struct jedec_ecc_info *ecc;
Boris Brezillon97d90da2017-11-30 18:01:29 +01004262 char id[5];
4263 int i, val, ret;
Huang Shijie91361812014-02-21 13:39:40 +08004264
4265 /* Try JEDEC for unknown chip or LP */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004266 ret = nand_readid_op(chip, 0x40, id, sizeof(id));
4267 if (ret || strncmp(id, "JEDEC", sizeof(id)))
Huang Shijie91361812014-02-21 13:39:40 +08004268 return 0;
4269
Boris Brezillon97d90da2017-11-30 18:01:29 +01004270 ret = nand_read_param_page_op(chip, 0x40, NULL, 0);
4271 if (ret)
4272 return 0;
4273
Huang Shijie91361812014-02-21 13:39:40 +08004274 for (i = 0; i < 3; i++) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01004275 ret = nand_read_data_op(chip, p, sizeof(*p), true);
4276 if (ret)
4277 return 0;
Huang Shijie91361812014-02-21 13:39:40 +08004278
4279 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
4280 le16_to_cpu(p->crc))
4281 break;
4282 }
4283
4284 if (i == 3) {
4285 pr_err("Could not find valid JEDEC parameter page; aborting\n");
4286 return 0;
4287 }
4288
4289 /* Check version */
4290 val = le16_to_cpu(p->revision);
4291 if (val & (1 << 2))
4292 chip->jedec_version = 10;
4293 else if (val & (1 << 1))
4294 chip->jedec_version = 1; /* vendor specific version */
4295
4296 if (!chip->jedec_version) {
4297 pr_info("unsupported JEDEC version: %d\n", val);
4298 return 0;
4299 }
4300
4301 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
4302 sanitize_string(p->model, sizeof(p->model));
4303 if (!mtd->name)
4304 mtd->name = p->model;
4305
4306 mtd->writesize = le32_to_cpu(p->byte_per_page);
4307
4308 /* Please reference to the comment for nand_flash_detect_onfi. */
4309 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
4310 mtd->erasesize *= mtd->writesize;
4311
4312 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
4313
4314 /* Please reference to the comment for nand_flash_detect_onfi. */
4315 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
4316 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
4317 chip->bits_per_cell = p->bits_per_cell;
4318
4319 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02004320 chip->options |= NAND_BUSWIDTH_16;
Huang Shijie91361812014-02-21 13:39:40 +08004321
4322 /* ECC info */
4323 ecc = &p->ecc_info[0];
4324
4325 if (ecc->codeword_size >= 9) {
4326 chip->ecc_strength_ds = ecc->ecc_bits;
4327 chip->ecc_step_ds = 1 << ecc->codeword_size;
4328 } else {
4329 pr_warn("Invalid codeword size\n");
4330 }
4331
4332 return 1;
4333}
4334
4335/*
Brian Norrise3b88bd2012-09-24 20:40:52 -07004336 * nand_id_has_period - Check if an ID string has a given wraparound period
4337 * @id_data: the ID string
4338 * @arrlen: the length of the @id_data array
4339 * @period: the period of repitition
4340 *
4341 * Check if an ID string is repeated within a given sequence of bytes at
4342 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Brian Norrisd4d4f1b2012-11-14 21:54:20 -08004343 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Brian Norrise3b88bd2012-09-24 20:40:52 -07004344 * if the repetition has a period of @period; otherwise, returns zero.
4345 */
4346static int nand_id_has_period(u8 *id_data, int arrlen, int period)
4347{
4348 int i, j;
4349 for (i = 0; i < period; i++)
4350 for (j = i + period; j < arrlen; j += period)
4351 if (id_data[i] != id_data[j])
4352 return 0;
4353 return 1;
4354}
4355
4356/*
4357 * nand_id_len - Get the length of an ID string returned by CMD_READID
4358 * @id_data: the ID string
4359 * @arrlen: the length of the @id_data array
4360
4361 * Returns the length of the ID string, according to known wraparound/trailing
4362 * zero patterns. If no pattern exists, returns the length of the array.
4363 */
4364static int nand_id_len(u8 *id_data, int arrlen)
4365{
4366 int last_nonzero, period;
4367
4368 /* Find last non-zero byte */
4369 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
4370 if (id_data[last_nonzero])
4371 break;
4372
4373 /* All zeros */
4374 if (last_nonzero < 0)
4375 return 0;
4376
4377 /* Calculate wraparound period */
4378 for (period = 1; period < arrlen; period++)
4379 if (nand_id_has_period(id_data, arrlen, period))
4380 break;
4381
4382 /* There's a repeated pattern */
4383 if (period < arrlen)
4384 return period;
4385
4386 /* There are trailing zeros */
4387 if (last_nonzero < arrlen - 1)
4388 return last_nonzero + 1;
4389
4390 /* No pattern detected */
4391 return arrlen;
4392}
4393
Huang Shijie7db906b2013-09-25 14:58:11 +08004394/* Extract the bits of per cell from the 3rd byte of the extended ID */
4395static int nand_get_bits_per_cell(u8 cellinfo)
4396{
4397 int bits;
4398
4399 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
4400 bits >>= NAND_CI_CELLTYPE_SHIFT;
4401 return bits + 1;
4402}
4403
Brian Norrise3b88bd2012-09-24 20:40:52 -07004404/*
Brian Norrisfc09bbc2012-09-24 20:40:50 -07004405 * Many new NAND share similar device ID codes, which represent the size of the
4406 * chip. The rest of the parameters must be decoded according to generic or
4407 * manufacturer-specific "extended ID" decoding patterns.
4408 */
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004409void nand_decode_ext_id(struct nand_chip *chip)
Brian Norrisfc09bbc2012-09-24 20:40:50 -07004410{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004411 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon9b2d61f2016-06-08 10:34:57 +02004412 int extid;
Boris Brezillon7f501f02016-05-24 19:20:05 +02004413 u8 *id_data = chip->id.data;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07004414 /* The 3rd id byte holds MLC / multichip data */
Huang Shijie7db906b2013-09-25 14:58:11 +08004415 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07004416 /* The 4th id byte is the important one */
4417 extid = id_data[3];
4418
Boris Brezillon01389b62016-06-08 10:30:18 +02004419 /* Calc pagesize */
4420 mtd->writesize = 1024 << (extid & 0x03);
4421 extid >>= 2;
4422 /* Calc oobsize */
4423 mtd->oobsize = (8 << (extid & 0x01)) * (mtd->writesize >> 9);
4424 extid >>= 2;
4425 /* Calc blocksize. Blocksize is multiples of 64KiB */
4426 mtd->erasesize = (64 * 1024) << (extid & 0x03);
4427 extid >>= 2;
4428 /* Get buswidth information */
4429 if (extid & 0x1)
4430 chip->options |= NAND_BUSWIDTH_16;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07004431}
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004432EXPORT_SYMBOL_GPL(nand_decode_ext_id);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07004433
4434/*
Brian Norrisf23a4812012-09-24 20:40:51 -07004435 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
4436 * decodes a matching ID table entry and assigns the MTD size parameters for
4437 * the chip.
4438 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004439static void nand_decode_id(struct nand_chip *chip, struct nand_flash_dev *type)
Brian Norrisf23a4812012-09-24 20:40:51 -07004440{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004441 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norrisf23a4812012-09-24 20:40:51 -07004442
4443 mtd->erasesize = type->erasesize;
4444 mtd->writesize = type->pagesize;
4445 mtd->oobsize = mtd->writesize / 32;
Brian Norrisf23a4812012-09-24 20:40:51 -07004446
Huang Shijie1c195e92013-09-25 14:58:12 +08004447 /* All legacy ID NAND are small-page, SLC */
4448 chip->bits_per_cell = 1;
Brian Norrisf23a4812012-09-24 20:40:51 -07004449}
4450
4451/*
Brian Norris7e74c2d2012-09-24 20:40:49 -07004452 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
4453 * heuristic patterns using various detected parameters (e.g., manufacturer,
4454 * page size, cell-type information).
4455 */
Boris Brezillon7f501f02016-05-24 19:20:05 +02004456static void nand_decode_bbm_options(struct nand_chip *chip)
Brian Norris7e74c2d2012-09-24 20:40:49 -07004457{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004458 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07004459
4460 /* Set the bad block position */
4461 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
4462 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
4463 else
4464 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Brian Norris7e74c2d2012-09-24 20:40:49 -07004465}
4466
Huang Shijieec6e87e2013-03-15 11:01:00 +08004467static inline bool is_full_id_nand(struct nand_flash_dev *type)
4468{
4469 return type->id_len;
4470}
4471
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004472static bool find_full_id_nand(struct nand_chip *chip,
Boris Brezillon29a198a2016-05-24 20:17:48 +02004473 struct nand_flash_dev *type)
Huang Shijieec6e87e2013-03-15 11:01:00 +08004474{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004475 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon7f501f02016-05-24 19:20:05 +02004476 u8 *id_data = chip->id.data;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004477
Huang Shijieec6e87e2013-03-15 11:01:00 +08004478 if (!strncmp(type->id, id_data, type->id_len)) {
4479 mtd->writesize = type->pagesize;
4480 mtd->erasesize = type->erasesize;
4481 mtd->oobsize = type->oobsize;
4482
Huang Shijie7db906b2013-09-25 14:58:11 +08004483 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Huang Shijieec6e87e2013-03-15 11:01:00 +08004484 chip->chipsize = (uint64_t)type->chipsize << 20;
4485 chip->options |= type->options;
Huang Shijie57219342013-05-17 11:17:32 +08004486 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
4487 chip->ecc_step_ds = NAND_ECC_STEP(type);
Boris BREZILLON57a94e22014-09-22 20:11:50 +02004488 chip->onfi_timing_mode_default =
4489 type->onfi_timing_mode_default;
Huang Shijieec6e87e2013-03-15 11:01:00 +08004490
Cai Zhiyong092b6a12013-12-25 21:19:21 +08004491 if (!mtd->name)
4492 mtd->name = type->name;
4493
Huang Shijieec6e87e2013-03-15 11:01:00 +08004494 return true;
4495 }
4496 return false;
4497}
4498
Brian Norris7e74c2d2012-09-24 20:40:49 -07004499/*
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004500 * Manufacturer detection. Only used when the NAND is not ONFI or JEDEC
4501 * compliant and does not have a full-id or legacy-id entry in the nand_ids
4502 * table.
4503 */
4504static void nand_manufacturer_detect(struct nand_chip *chip)
4505{
4506 /*
4507 * Try manufacturer detection if available and use
4508 * nand_decode_ext_id() otherwise.
4509 */
4510 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
Lothar Waßmann69fc0122017-08-29 12:17:12 +02004511 chip->manufacturer.desc->ops->detect) {
4512 /* The 3rd id byte holds MLC / multichip data */
4513 chip->bits_per_cell = nand_get_bits_per_cell(chip->id.data[2]);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004514 chip->manufacturer.desc->ops->detect(chip);
Lothar Waßmann69fc0122017-08-29 12:17:12 +02004515 } else {
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004516 nand_decode_ext_id(chip);
Lothar Waßmann69fc0122017-08-29 12:17:12 +02004517 }
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004518}
4519
4520/*
4521 * Manufacturer initialization. This function is called for all NANDs including
4522 * ONFI and JEDEC compliant ones.
4523 * Manufacturer drivers should put all their specific initialization code in
4524 * their ->init() hook.
4525 */
4526static int nand_manufacturer_init(struct nand_chip *chip)
4527{
4528 if (!chip->manufacturer.desc || !chip->manufacturer.desc->ops ||
4529 !chip->manufacturer.desc->ops->init)
4530 return 0;
4531
4532 return chip->manufacturer.desc->ops->init(chip);
4533}
4534
4535/*
4536 * Manufacturer cleanup. This function is called for all NANDs including
4537 * ONFI and JEDEC compliant ones.
4538 * Manufacturer drivers should put all their specific cleanup code in their
4539 * ->cleanup() hook.
4540 */
4541static void nand_manufacturer_cleanup(struct nand_chip *chip)
4542{
4543 /* Release manufacturer private data */
4544 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
4545 chip->manufacturer.desc->ops->cleanup)
4546 chip->manufacturer.desc->ops->cleanup(chip);
4547}
4548
4549/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004550 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004551 */
Boris Brezillon7bb42792016-05-24 20:55:33 +02004552static int nand_detect(struct nand_chip *chip, struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004553{
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004554 const struct nand_manufacturer *manufacturer;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004555 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon97d90da2017-11-30 18:01:29 +01004556 int busw, ret;
Boris Brezillon7f501f02016-05-24 19:20:05 +02004557 u8 *id_data = chip->id.data;
4558 u8 maf_id, dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Karl Beldanef89a882008-09-15 14:37:29 +02004560 /*
4561 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07004562 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02004563 */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004564 ret = nand_reset(chip, 0);
4565 if (ret)
4566 return ret;
Boris Brezillon73f907f2016-10-24 16:46:20 +02004567
4568 /* Select the device */
4569 chip->select_chip(mtd, 0);
Karl Beldanef89a882008-09-15 14:37:29 +02004570
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 /* Send the command for reading device ID */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004572 ret = nand_readid_op(chip, 0, id_data, 2);
4573 if (ret)
4574 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
4576 /* Read manufacturer and device IDs */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004577 maf_id = id_data[0];
4578 dev_id = id_data[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579
Brian Norris8b6e50c2011-05-25 14:59:01 -07004580 /*
4581 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01004582 * interface concerns can cause random data which looks like a
4583 * possibly credible NAND flash to appear. If the two results do
4584 * not match, ignore the device completely.
4585 */
4586
Brian Norris4aef9b72012-09-24 20:40:48 -07004587 /* Read entire ID string */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004588 ret = nand_readid_op(chip, 0, id_data, sizeof(chip->id.data));
4589 if (ret)
4590 return ret;
Ben Dooksed8165c2008-04-14 14:58:58 +01004591
Boris Brezillon7f501f02016-05-24 19:20:05 +02004592 if (id_data[0] != maf_id || id_data[1] != dev_id) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03004593 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004594 maf_id, dev_id, id_data[0], id_data[1]);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004595 return -ENODEV;
Ben Dooksed8165c2008-04-14 14:58:58 +01004596 }
4597
Jean-Louis Thekekara5158bd52017-06-29 19:08:30 +02004598 chip->id.len = nand_id_len(id_data, ARRAY_SIZE(chip->id.data));
Boris Brezillon7f501f02016-05-24 19:20:05 +02004599
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004600 /* Try to identify manufacturer */
4601 manufacturer = nand_get_manufacturer(maf_id);
4602 chip->manufacturer.desc = manufacturer;
4603
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004604 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00004605 type = nand_flash_ids;
4606
Boris Brezillon29a198a2016-05-24 20:17:48 +02004607 /*
4608 * Save the NAND_BUSWIDTH_16 flag before letting auto-detection logic
4609 * override it.
4610 * This is required to make sure initial NAND bus width set by the
4611 * NAND controller driver is coherent with the real NAND bus width
4612 * (extracted by auto-detection code).
4613 */
4614 busw = chip->options & NAND_BUSWIDTH_16;
4615
4616 /*
4617 * The flag is only set (never cleared), reset it to its default value
4618 * before starting auto-detection.
4619 */
4620 chip->options &= ~NAND_BUSWIDTH_16;
4621
Huang Shijieec6e87e2013-03-15 11:01:00 +08004622 for (; type->name != NULL; type++) {
4623 if (is_full_id_nand(type)) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02004624 if (find_full_id_nand(chip, type))
Huang Shijieec6e87e2013-03-15 11:01:00 +08004625 goto ident_done;
Boris Brezillon7f501f02016-05-24 19:20:05 +02004626 } else if (dev_id == type->dev_id) {
Brian Norrisdb5b09f2015-05-22 10:43:12 -07004627 break;
Huang Shijieec6e87e2013-03-15 11:01:00 +08004628 }
4629 }
David Woodhouse5e81e882010-02-26 18:32:56 +00004630
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004631 chip->onfi_version = 0;
4632 if (!type->name || !type->pagesize) {
Masahiro Yamada35fc5192014-04-09 16:26:26 +09004633 /* Check if the chip is ONFI compliant */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004634 if (nand_flash_detect_onfi(chip))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004635 goto ident_done;
Huang Shijie91361812014-02-21 13:39:40 +08004636
4637 /* Check if the chip is JEDEC compliant */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004638 if (nand_flash_detect_jedec(chip))
Huang Shijie91361812014-02-21 13:39:40 +08004639 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004640 }
4641
David Woodhouse5e81e882010-02-26 18:32:56 +00004642 if (!type->name)
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004643 return -ENODEV;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004644
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02004645 if (!mtd->name)
4646 mtd->name = type->name;
4647
Adrian Hunter69423d92008-12-10 13:37:21 +00004648 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004649
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004650 if (!type->pagesize)
4651 nand_manufacturer_detect(chip);
4652 else
Boris Brezillon29a198a2016-05-24 20:17:48 +02004653 nand_decode_id(chip, type);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004654
Brian Norrisbf7a01b2012-07-13 09:28:24 -07004655 /* Get chip options */
4656 chip->options |= type->options;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004657
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004658ident_done:
4659
Matthieu CASTET64b37b22012-11-06 11:51:44 +01004660 if (chip->options & NAND_BUSWIDTH_AUTO) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02004661 WARN_ON(busw & NAND_BUSWIDTH_16);
4662 nand_set_defaults(chip);
Matthieu CASTET64b37b22012-11-06 11:51:44 +01004663 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
4664 /*
4665 * Check, if buswidth is correct. Hardware drivers should set
4666 * chip correct!
4667 */
Ezequiel Garcia20171642013-11-25 08:30:31 -03004668 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004669 maf_id, dev_id);
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004670 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4671 mtd->name);
Boris Brezillon29a198a2016-05-24 20:17:48 +02004672 pr_warn("bus width %d instead of %d bits\n", busw ? 16 : 8,
4673 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004674 return -EINVAL;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004675 }
4676
Boris Brezillon7f501f02016-05-24 19:20:05 +02004677 nand_decode_bbm_options(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07004678
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004679 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004680 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07004681 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004682 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004683
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004684 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004685 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00004686 if (chip->chipsize & 0xffffffff)
4687 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004688 else {
4689 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
4690 chip->chip_shift += 32 - 1;
4691 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004692
Masahiro Yamada14157f82017-09-13 11:05:50 +09004693 if (chip->chip_shift - chip->page_shift > 16)
4694 chip->options |= NAND_ROW_ADDR_3;
4695
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03004696 chip->badblockbits = 8;
Brian Norris49c50b92014-05-06 16:02:19 -07004697 chip->erase = single_erase;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004698
Brian Norris8b6e50c2011-05-25 14:59:01 -07004699 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004700 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
4701 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004702
Ezequiel Garcia20171642013-11-25 08:30:31 -03004703 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004704 maf_id, dev_id);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004705
4706 if (chip->onfi_version)
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004707 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4708 chip->onfi_params.model);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004709 else if (chip->jedec_version)
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004710 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4711 chip->jedec_params.model);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004712 else
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004713 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4714 type->name);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004715
Rafał Miłecki3755a992014-10-21 00:01:04 +02004716 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
Huang Shijie3723e932013-09-25 14:58:14 +08004717 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Rafał Miłecki3755a992014-10-21 00:01:04 +02004718 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004719 return 0;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004720}
4721
Boris Brezillond48f62b2016-04-01 14:54:32 +02004722static const char * const nand_ecc_modes[] = {
4723 [NAND_ECC_NONE] = "none",
4724 [NAND_ECC_SOFT] = "soft",
4725 [NAND_ECC_HW] = "hw",
4726 [NAND_ECC_HW_SYNDROME] = "hw_syndrome",
4727 [NAND_ECC_HW_OOB_FIRST] = "hw_oob_first",
Thomas Petazzoni785818f2017-04-29 11:06:43 +02004728 [NAND_ECC_ON_DIE] = "on-die",
Boris Brezillond48f62b2016-04-01 14:54:32 +02004729};
4730
4731static int of_get_nand_ecc_mode(struct device_node *np)
4732{
4733 const char *pm;
4734 int err, i;
4735
4736 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4737 if (err < 0)
4738 return err;
4739
4740 for (i = 0; i < ARRAY_SIZE(nand_ecc_modes); i++)
4741 if (!strcasecmp(pm, nand_ecc_modes[i]))
4742 return i;
4743
Rafał Miłeckiae211bc2016-04-17 22:53:06 +02004744 /*
4745 * For backward compatibility we support few obsoleted values that don't
4746 * have their mappings into nand_ecc_modes_t anymore (they were merged
4747 * with other enums).
4748 */
4749 if (!strcasecmp(pm, "soft_bch"))
4750 return NAND_ECC_SOFT;
4751
Boris Brezillond48f62b2016-04-01 14:54:32 +02004752 return -ENODEV;
4753}
4754
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004755static const char * const nand_ecc_algos[] = {
4756 [NAND_ECC_HAMMING] = "hamming",
4757 [NAND_ECC_BCH] = "bch",
4758};
4759
Boris Brezillond48f62b2016-04-01 14:54:32 +02004760static int of_get_nand_ecc_algo(struct device_node *np)
4761{
4762 const char *pm;
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004763 int err, i;
Boris Brezillond48f62b2016-04-01 14:54:32 +02004764
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004765 err = of_property_read_string(np, "nand-ecc-algo", &pm);
4766 if (!err) {
4767 for (i = NAND_ECC_HAMMING; i < ARRAY_SIZE(nand_ecc_algos); i++)
4768 if (!strcasecmp(pm, nand_ecc_algos[i]))
4769 return i;
4770 return -ENODEV;
4771 }
Boris Brezillond48f62b2016-04-01 14:54:32 +02004772
4773 /*
4774 * For backward compatibility we also read "nand-ecc-mode" checking
4775 * for some obsoleted values that were specifying ECC algorithm.
4776 */
4777 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4778 if (err < 0)
4779 return err;
4780
4781 if (!strcasecmp(pm, "soft"))
4782 return NAND_ECC_HAMMING;
4783 else if (!strcasecmp(pm, "soft_bch"))
4784 return NAND_ECC_BCH;
4785
4786 return -ENODEV;
4787}
4788
4789static int of_get_nand_ecc_step_size(struct device_node *np)
4790{
4791 int ret;
4792 u32 val;
4793
4794 ret = of_property_read_u32(np, "nand-ecc-step-size", &val);
4795 return ret ? ret : val;
4796}
4797
4798static int of_get_nand_ecc_strength(struct device_node *np)
4799{
4800 int ret;
4801 u32 val;
4802
4803 ret = of_property_read_u32(np, "nand-ecc-strength", &val);
4804 return ret ? ret : val;
4805}
4806
4807static int of_get_nand_bus_width(struct device_node *np)
4808{
4809 u32 val;
4810
4811 if (of_property_read_u32(np, "nand-bus-width", &val))
4812 return 8;
4813
4814 switch (val) {
4815 case 8:
4816 case 16:
4817 return val;
4818 default:
4819 return -EIO;
4820 }
4821}
4822
4823static bool of_get_nand_on_flash_bbt(struct device_node *np)
4824{
4825 return of_property_read_bool(np, "nand-on-flash-bbt");
4826}
4827
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004828static int nand_dt_init(struct nand_chip *chip)
Brian Norris5844fee2015-01-23 00:22:27 -08004829{
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004830 struct device_node *dn = nand_get_flash_node(chip);
Rafał Miłecki79082452016-03-23 11:19:02 +01004831 int ecc_mode, ecc_algo, ecc_strength, ecc_step;
Brian Norris5844fee2015-01-23 00:22:27 -08004832
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004833 if (!dn)
4834 return 0;
4835
Brian Norris5844fee2015-01-23 00:22:27 -08004836 if (of_get_nand_bus_width(dn) == 16)
4837 chip->options |= NAND_BUSWIDTH_16;
4838
4839 if (of_get_nand_on_flash_bbt(dn))
4840 chip->bbt_options |= NAND_BBT_USE_FLASH;
4841
4842 ecc_mode = of_get_nand_ecc_mode(dn);
Rafał Miłecki79082452016-03-23 11:19:02 +01004843 ecc_algo = of_get_nand_ecc_algo(dn);
Brian Norris5844fee2015-01-23 00:22:27 -08004844 ecc_strength = of_get_nand_ecc_strength(dn);
4845 ecc_step = of_get_nand_ecc_step_size(dn);
4846
Brian Norris5844fee2015-01-23 00:22:27 -08004847 if (ecc_mode >= 0)
4848 chip->ecc.mode = ecc_mode;
4849
Rafał Miłecki79082452016-03-23 11:19:02 +01004850 if (ecc_algo >= 0)
4851 chip->ecc.algo = ecc_algo;
4852
Brian Norris5844fee2015-01-23 00:22:27 -08004853 if (ecc_strength >= 0)
4854 chip->ecc.strength = ecc_strength;
4855
4856 if (ecc_step > 0)
4857 chip->ecc.size = ecc_step;
4858
Boris Brezillonba78ee02016-06-08 17:04:22 +02004859 if (of_property_read_bool(dn, "nand-ecc-maximize"))
4860 chip->ecc.options |= NAND_ECC_MAXIMIZE;
4861
Brian Norris5844fee2015-01-23 00:22:27 -08004862 return 0;
4863}
4864
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004865/**
David Woodhouse3b85c322006-09-25 17:06:53 +01004866 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004867 * @mtd: MTD device structure
4868 * @maxchips: number of chips to scan for
4869 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004870 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004871 * This is the first phase of the normal nand_scan() function. It reads the
4872 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004873 *
4874 */
David Woodhouse5e81e882010-02-26 18:32:56 +00004875int nand_scan_ident(struct mtd_info *mtd, int maxchips,
4876 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004877{
Cai Zhiyongbb770822013-12-25 20:11:15 +08004878 int i, nand_maf_id, nand_dev_id;
Boris BREZILLON862eba52015-12-01 12:03:03 +01004879 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris5844fee2015-01-23 00:22:27 -08004880 int ret;
4881
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004882 ret = nand_dt_init(chip);
4883 if (ret)
4884 return ret;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004885
Brian Norrisf7a8e382016-01-05 10:39:45 -08004886 if (!mtd->name && mtd->dev.parent)
4887 mtd->name = dev_name(mtd->dev.parent);
4888
Andrey Smirnov76fe3342016-07-21 14:59:20 -07004889 if ((!chip->cmdfunc || !chip->select_chip) && !chip->cmd_ctrl) {
4890 /*
4891 * Default functions assigned for chip_select() and
4892 * cmdfunc() both expect cmd_ctrl() to be populated,
4893 * so we need to check that that's the case
4894 */
4895 pr_err("chip.cmd_ctrl() callback is not provided");
4896 return -EINVAL;
4897 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004898 /* Set the default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004899 nand_set_defaults(chip);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004900
4901 /* Read the flash type */
Boris Brezillon7bb42792016-05-24 20:55:33 +02004902 ret = nand_detect(chip, table);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004903 if (ret) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00004904 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07004905 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004906 chip->select_chip(mtd, -1);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004907 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 }
4909
Boris Brezillon7f501f02016-05-24 19:20:05 +02004910 nand_maf_id = chip->id.data[0];
4911 nand_dev_id = chip->id.data[1];
4912
Huang Shijie07300162012-11-09 16:23:45 +08004913 chip->select_chip(mtd, -1);
4914
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004915 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01004916 for (i = 1; i < maxchips; i++) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01004917 u8 id[2];
4918
Karl Beldanef89a882008-09-15 14:37:29 +02004919 /* See comment in nand_get_flash_type for reset */
Boris Brezillon73f907f2016-10-24 16:46:20 +02004920 nand_reset(chip, i);
4921
4922 chip->select_chip(mtd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923 /* Send the command for reading device ID */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004924 nand_readid_op(chip, 0, id, sizeof(id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 /* Read manufacturer and device IDs */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004926 if (nand_maf_id != id[0] || nand_dev_id != id[1]) {
Huang Shijie07300162012-11-09 16:23:45 +08004927 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 break;
Huang Shijie07300162012-11-09 16:23:45 +08004929 }
4930 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 }
4932 if (i > 1)
Ezequiel Garcia20171642013-11-25 08:30:31 -03004933 pr_info("%d chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004934
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004936 chip->numchips = i;
4937 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938
David Woodhouse3b85c322006-09-25 17:06:53 +01004939 return 0;
4940}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004941EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01004942
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004943static int nand_set_ecc_soft_ops(struct mtd_info *mtd)
4944{
4945 struct nand_chip *chip = mtd_to_nand(mtd);
4946 struct nand_ecc_ctrl *ecc = &chip->ecc;
4947
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004948 if (WARN_ON(ecc->mode != NAND_ECC_SOFT))
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004949 return -EINVAL;
4950
4951 switch (ecc->algo) {
4952 case NAND_ECC_HAMMING:
4953 ecc->calculate = nand_calculate_ecc;
4954 ecc->correct = nand_correct_data;
4955 ecc->read_page = nand_read_page_swecc;
4956 ecc->read_subpage = nand_read_subpage;
4957 ecc->write_page = nand_write_page_swecc;
4958 ecc->read_page_raw = nand_read_page_raw;
4959 ecc->write_page_raw = nand_write_page_raw;
4960 ecc->read_oob = nand_read_oob_std;
4961 ecc->write_oob = nand_write_oob_std;
4962 if (!ecc->size)
4963 ecc->size = 256;
4964 ecc->bytes = 3;
4965 ecc->strength = 1;
4966 return 0;
4967 case NAND_ECC_BCH:
4968 if (!mtd_nand_has_bch()) {
4969 WARN(1, "CONFIG_MTD_NAND_ECC_BCH not enabled\n");
4970 return -EINVAL;
4971 }
4972 ecc->calculate = nand_bch_calculate_ecc;
4973 ecc->correct = nand_bch_correct_data;
4974 ecc->read_page = nand_read_page_swecc;
4975 ecc->read_subpage = nand_read_subpage;
4976 ecc->write_page = nand_write_page_swecc;
4977 ecc->read_page_raw = nand_read_page_raw;
4978 ecc->write_page_raw = nand_write_page_raw;
4979 ecc->read_oob = nand_read_oob_std;
4980 ecc->write_oob = nand_write_oob_std;
Boris Brezillon8bbba482016-06-08 17:04:23 +02004981
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004982 /*
4983 * Board driver should supply ecc.size and ecc.strength
4984 * values to select how many bits are correctable.
4985 * Otherwise, default to 4 bits for large page devices.
4986 */
4987 if (!ecc->size && (mtd->oobsize >= 64)) {
4988 ecc->size = 512;
4989 ecc->strength = 4;
4990 }
4991
4992 /*
4993 * if no ecc placement scheme was provided pickup the default
4994 * large page one.
4995 */
4996 if (!mtd->ooblayout) {
4997 /* handle large page devices only */
4998 if (mtd->oobsize < 64) {
4999 WARN(1, "OOB layout is required when using software BCH on small pages\n");
5000 return -EINVAL;
5001 }
5002
5003 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
Boris Brezillon8bbba482016-06-08 17:04:23 +02005004
5005 }
5006
5007 /*
5008 * We can only maximize ECC config when the default layout is
5009 * used, otherwise we don't know how many bytes can really be
5010 * used.
5011 */
5012 if (mtd->ooblayout == &nand_ooblayout_lp_ops &&
5013 ecc->options & NAND_ECC_MAXIMIZE) {
5014 int steps, bytes;
5015
5016 /* Always prefer 1k blocks over 512bytes ones */
5017 ecc->size = 1024;
5018 steps = mtd->writesize / ecc->size;
5019
5020 /* Reserve 2 bytes for the BBM */
5021 bytes = (mtd->oobsize - 2) / steps;
5022 ecc->strength = bytes * 8 / fls(8 * ecc->size);
Rafał Miłecki06f384c2016-04-17 22:53:05 +02005023 }
5024
5025 /* See nand_bch_init() for details. */
5026 ecc->bytes = 0;
5027 ecc->priv = nand_bch_init(mtd);
5028 if (!ecc->priv) {
5029 WARN(1, "BCH ECC initialization failed!\n");
5030 return -EINVAL;
5031 }
5032 return 0;
5033 default:
5034 WARN(1, "Unsupported ECC algorithm!\n");
5035 return -EINVAL;
5036 }
5037}
5038
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09005039/**
5040 * nand_check_ecc_caps - check the sanity of preset ECC settings
5041 * @chip: nand chip info structure
5042 * @caps: ECC caps info structure
5043 * @oobavail: OOB size that the ECC engine can use
5044 *
5045 * When ECC step size and strength are already set, check if they are supported
5046 * by the controller and the calculated ECC bytes fit within the chip's OOB.
5047 * On success, the calculated ECC bytes is set.
5048 */
5049int nand_check_ecc_caps(struct nand_chip *chip,
5050 const struct nand_ecc_caps *caps, int oobavail)
5051{
5052 struct mtd_info *mtd = nand_to_mtd(chip);
5053 const struct nand_ecc_step_info *stepinfo;
5054 int preset_step = chip->ecc.size;
5055 int preset_strength = chip->ecc.strength;
5056 int nsteps, ecc_bytes;
5057 int i, j;
5058
5059 if (WARN_ON(oobavail < 0))
5060 return -EINVAL;
5061
5062 if (!preset_step || !preset_strength)
5063 return -ENODATA;
5064
5065 nsteps = mtd->writesize / preset_step;
5066
5067 for (i = 0; i < caps->nstepinfos; i++) {
5068 stepinfo = &caps->stepinfos[i];
5069
5070 if (stepinfo->stepsize != preset_step)
5071 continue;
5072
5073 for (j = 0; j < stepinfo->nstrengths; j++) {
5074 if (stepinfo->strengths[j] != preset_strength)
5075 continue;
5076
5077 ecc_bytes = caps->calc_ecc_bytes(preset_step,
5078 preset_strength);
5079 if (WARN_ON_ONCE(ecc_bytes < 0))
5080 return ecc_bytes;
5081
5082 if (ecc_bytes * nsteps > oobavail) {
5083 pr_err("ECC (step, strength) = (%d, %d) does not fit in OOB",
5084 preset_step, preset_strength);
5085 return -ENOSPC;
5086 }
5087
5088 chip->ecc.bytes = ecc_bytes;
5089
5090 return 0;
5091 }
5092 }
5093
5094 pr_err("ECC (step, strength) = (%d, %d) not supported on this controller",
5095 preset_step, preset_strength);
5096
5097 return -ENOTSUPP;
5098}
5099EXPORT_SYMBOL_GPL(nand_check_ecc_caps);
5100
5101/**
5102 * nand_match_ecc_req - meet the chip's requirement with least ECC bytes
5103 * @chip: nand chip info structure
5104 * @caps: ECC engine caps info structure
5105 * @oobavail: OOB size that the ECC engine can use
5106 *
5107 * If a chip's ECC requirement is provided, try to meet it with the least
5108 * number of ECC bytes (i.e. with the largest number of OOB-free bytes).
5109 * On success, the chosen ECC settings are set.
5110 */
5111int nand_match_ecc_req(struct nand_chip *chip,
5112 const struct nand_ecc_caps *caps, int oobavail)
5113{
5114 struct mtd_info *mtd = nand_to_mtd(chip);
5115 const struct nand_ecc_step_info *stepinfo;
5116 int req_step = chip->ecc_step_ds;
5117 int req_strength = chip->ecc_strength_ds;
5118 int req_corr, step_size, strength, nsteps, ecc_bytes, ecc_bytes_total;
5119 int best_step, best_strength, best_ecc_bytes;
5120 int best_ecc_bytes_total = INT_MAX;
5121 int i, j;
5122
5123 if (WARN_ON(oobavail < 0))
5124 return -EINVAL;
5125
5126 /* No information provided by the NAND chip */
5127 if (!req_step || !req_strength)
5128 return -ENOTSUPP;
5129
5130 /* number of correctable bits the chip requires in a page */
5131 req_corr = mtd->writesize / req_step * req_strength;
5132
5133 for (i = 0; i < caps->nstepinfos; i++) {
5134 stepinfo = &caps->stepinfos[i];
5135 step_size = stepinfo->stepsize;
5136
5137 for (j = 0; j < stepinfo->nstrengths; j++) {
5138 strength = stepinfo->strengths[j];
5139
5140 /*
5141 * If both step size and strength are smaller than the
5142 * chip's requirement, it is not easy to compare the
5143 * resulted reliability.
5144 */
5145 if (step_size < req_step && strength < req_strength)
5146 continue;
5147
5148 if (mtd->writesize % step_size)
5149 continue;
5150
5151 nsteps = mtd->writesize / step_size;
5152
5153 ecc_bytes = caps->calc_ecc_bytes(step_size, strength);
5154 if (WARN_ON_ONCE(ecc_bytes < 0))
5155 continue;
5156 ecc_bytes_total = ecc_bytes * nsteps;
5157
5158 if (ecc_bytes_total > oobavail ||
5159 strength * nsteps < req_corr)
5160 continue;
5161
5162 /*
5163 * We assume the best is to meet the chip's requrement
5164 * with the least number of ECC bytes.
5165 */
5166 if (ecc_bytes_total < best_ecc_bytes_total) {
5167 best_ecc_bytes_total = ecc_bytes_total;
5168 best_step = step_size;
5169 best_strength = strength;
5170 best_ecc_bytes = ecc_bytes;
5171 }
5172 }
5173 }
5174
5175 if (best_ecc_bytes_total == INT_MAX)
5176 return -ENOTSUPP;
5177
5178 chip->ecc.size = best_step;
5179 chip->ecc.strength = best_strength;
5180 chip->ecc.bytes = best_ecc_bytes;
5181
5182 return 0;
5183}
5184EXPORT_SYMBOL_GPL(nand_match_ecc_req);
5185
5186/**
5187 * nand_maximize_ecc - choose the max ECC strength available
5188 * @chip: nand chip info structure
5189 * @caps: ECC engine caps info structure
5190 * @oobavail: OOB size that the ECC engine can use
5191 *
5192 * Choose the max ECC strength that is supported on the controller, and can fit
5193 * within the chip's OOB. On success, the chosen ECC settings are set.
5194 */
5195int nand_maximize_ecc(struct nand_chip *chip,
5196 const struct nand_ecc_caps *caps, int oobavail)
5197{
5198 struct mtd_info *mtd = nand_to_mtd(chip);
5199 const struct nand_ecc_step_info *stepinfo;
5200 int step_size, strength, nsteps, ecc_bytes, corr;
5201 int best_corr = 0;
5202 int best_step = 0;
5203 int best_strength, best_ecc_bytes;
5204 int i, j;
5205
5206 if (WARN_ON(oobavail < 0))
5207 return -EINVAL;
5208
5209 for (i = 0; i < caps->nstepinfos; i++) {
5210 stepinfo = &caps->stepinfos[i];
5211 step_size = stepinfo->stepsize;
5212
5213 /* If chip->ecc.size is already set, respect it */
5214 if (chip->ecc.size && step_size != chip->ecc.size)
5215 continue;
5216
5217 for (j = 0; j < stepinfo->nstrengths; j++) {
5218 strength = stepinfo->strengths[j];
5219
5220 if (mtd->writesize % step_size)
5221 continue;
5222
5223 nsteps = mtd->writesize / step_size;
5224
5225 ecc_bytes = caps->calc_ecc_bytes(step_size, strength);
5226 if (WARN_ON_ONCE(ecc_bytes < 0))
5227 continue;
5228
5229 if (ecc_bytes * nsteps > oobavail)
5230 continue;
5231
5232 corr = strength * nsteps;
5233
5234 /*
5235 * If the number of correctable bits is the same,
5236 * bigger step_size has more reliability.
5237 */
5238 if (corr > best_corr ||
5239 (corr == best_corr && step_size > best_step)) {
5240 best_corr = corr;
5241 best_step = step_size;
5242 best_strength = strength;
5243 best_ecc_bytes = ecc_bytes;
5244 }
5245 }
5246 }
5247
5248 if (!best_corr)
5249 return -ENOTSUPP;
5250
5251 chip->ecc.size = best_step;
5252 chip->ecc.strength = best_strength;
5253 chip->ecc.bytes = best_ecc_bytes;
5254
5255 return 0;
5256}
5257EXPORT_SYMBOL_GPL(nand_maximize_ecc);
5258
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03005259/*
5260 * Check if the chip configuration meet the datasheet requirements.
5261
5262 * If our configuration corrects A bits per B bytes and the minimum
5263 * required correction level is X bits per Y bytes, then we must ensure
5264 * both of the following are true:
5265 *
5266 * (1) A / B >= X / Y
5267 * (2) A >= X
5268 *
5269 * Requirement (1) ensures we can correct for the required bitflip density.
5270 * Requirement (2) ensures we can correct even when all bitflips are clumped
5271 * in the same sector.
5272 */
5273static bool nand_ecc_strength_good(struct mtd_info *mtd)
5274{
Boris BREZILLON862eba52015-12-01 12:03:03 +01005275 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03005276 struct nand_ecc_ctrl *ecc = &chip->ecc;
5277 int corr, ds_corr;
5278
5279 if (ecc->size == 0 || chip->ecc_step_ds == 0)
5280 /* Not enough information */
5281 return true;
5282
5283 /*
5284 * We get the number of corrected bits per page to compare
5285 * the correction density.
5286 */
5287 corr = (mtd->writesize * ecc->strength) / ecc->size;
5288 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
5289
5290 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
5291}
David Woodhouse3b85c322006-09-25 17:06:53 +01005292
Marc Gonzalez3371d662016-11-15 10:56:20 +01005293static bool invalid_ecc_page_accessors(struct nand_chip *chip)
5294{
5295 struct nand_ecc_ctrl *ecc = &chip->ecc;
5296
5297 if (nand_standard_page_accessors(ecc))
5298 return false;
5299
5300 /*
5301 * NAND_ECC_CUSTOM_PAGE_ACCESS flag is set, make sure the NAND
5302 * controller driver implements all the page accessors because
5303 * default helpers are not suitable when the core does not
5304 * send the READ0/PAGEPROG commands.
5305 */
5306 return (!ecc->read_page || !ecc->write_page ||
5307 !ecc->read_page_raw || !ecc->write_page_raw ||
5308 (NAND_HAS_SUBPAGE_READ(chip) && !ecc->read_subpage) ||
5309 (NAND_HAS_SUBPAGE_WRITE(chip) && !ecc->write_subpage &&
5310 ecc->hwctl && ecc->calculate));
5311}
5312
David Woodhouse3b85c322006-09-25 17:06:53 +01005313/**
5314 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07005315 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01005316 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07005317 * This is the second phase of the normal nand_scan() function. It fills out
5318 * all the uninitialized function pointers with the defaults and scans for a
5319 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01005320 */
5321int nand_scan_tail(struct mtd_info *mtd)
5322{
Boris BREZILLON862eba52015-12-01 12:03:03 +01005323 struct nand_chip *chip = mtd_to_nand(mtd);
Huang Shijie97de79e02013-10-18 14:20:53 +08005324 struct nand_ecc_ctrl *ecc = &chip->ecc;
Masahiro Yamada3deb9972017-03-30 17:15:04 +09005325 struct nand_buffers *nbuf = NULL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005326 int ret, i;
David Woodhouse3b85c322006-09-25 17:06:53 +01005327
Brian Norrise2414f42012-02-06 13:44:00 -08005328 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
Ezequiel García11eaf6d2016-04-01 18:29:24 -03005329 if (WARN_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
Brian Norris78771042017-05-01 17:04:53 -07005330 !(chip->bbt_options & NAND_BBT_USE_FLASH))) {
Boris Brezillonf84674b2017-06-02 12:18:24 +02005331 return -EINVAL;
Brian Norris78771042017-05-01 17:04:53 -07005332 }
Brian Norrise2414f42012-02-06 13:44:00 -08005333
Marc Gonzalez3371d662016-11-15 10:56:20 +01005334 if (invalid_ecc_page_accessors(chip)) {
5335 pr_err("Invalid ECC page accessors setup\n");
Boris Brezillonf84674b2017-06-02 12:18:24 +02005336 return -EINVAL;
Marc Gonzalez3371d662016-11-15 10:56:20 +01005337 }
5338
Huang Shijief02ea4e2014-01-13 14:27:12 +08005339 if (!(chip->options & NAND_OWN_BUFFERS)) {
Masahiro Yamada3deb9972017-03-30 17:15:04 +09005340 nbuf = kzalloc(sizeof(*nbuf), GFP_KERNEL);
Boris Brezillonf84674b2017-06-02 12:18:24 +02005341 if (!nbuf)
5342 return -ENOMEM;
Masahiro Yamada3deb9972017-03-30 17:15:04 +09005343
5344 nbuf->ecccalc = kmalloc(mtd->oobsize, GFP_KERNEL);
5345 if (!nbuf->ecccalc) {
5346 ret = -ENOMEM;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005347 goto err_free_nbuf;
Masahiro Yamada3deb9972017-03-30 17:15:04 +09005348 }
5349
5350 nbuf->ecccode = kmalloc(mtd->oobsize, GFP_KERNEL);
5351 if (!nbuf->ecccode) {
5352 ret = -ENOMEM;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005353 goto err_free_nbuf;
Masahiro Yamada3deb9972017-03-30 17:15:04 +09005354 }
5355
5356 nbuf->databuf = kmalloc(mtd->writesize + mtd->oobsize,
5357 GFP_KERNEL);
5358 if (!nbuf->databuf) {
5359 ret = -ENOMEM;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005360 goto err_free_nbuf;
Masahiro Yamada3deb9972017-03-30 17:15:04 +09005361 }
Huang Shijief02ea4e2014-01-13 14:27:12 +08005362
5363 chip->buffers = nbuf;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005364 } else if (!chip->buffers) {
5365 return -ENOMEM;
Huang Shijief02ea4e2014-01-13 14:27:12 +08005366 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01005367
Boris Brezillonf84674b2017-06-02 12:18:24 +02005368 /*
5369 * FIXME: some NAND manufacturer drivers expect the first die to be
5370 * selected when manufacturer->init() is called. They should be fixed
5371 * to explictly select the relevant die when interacting with the NAND
5372 * chip.
5373 */
5374 chip->select_chip(mtd, 0);
5375 ret = nand_manufacturer_init(chip);
5376 chip->select_chip(mtd, -1);
5377 if (ret)
5378 goto err_free_nbuf;
5379
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01005380 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01005381 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005382
5383 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07005384 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005385 */
Rafał Miłecki06f384c2016-04-17 22:53:05 +02005386 if (!mtd->ooblayout &&
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02005387 !(ecc->mode == NAND_ECC_SOFT && ecc->algo == NAND_ECC_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00005388 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389 case 8:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390 case 16:
Boris Brezillon41b207a2016-02-03 19:06:15 +01005391 mtd_set_ooblayout(mtd, &nand_ooblayout_sp_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392 break;
5393 case 64:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01005394 case 128:
Alexander Couzens6a623e02017-05-02 12:19:00 +02005395 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_hamming_ops);
Thomas Gleixner81ec5362007-12-12 17:27:03 +01005396 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397 default:
Miquel Raynal882fd152017-08-26 17:19:15 +02005398 /*
5399 * Expose the whole OOB area to users if ECC_NONE
5400 * is passed. We could do that for all kind of
5401 * ->oobsize, but we must keep the old large/small
5402 * page with ECC layout when ->oobsize <= 128 for
5403 * compatibility reasons.
5404 */
5405 if (ecc->mode == NAND_ECC_NONE) {
5406 mtd_set_ooblayout(mtd,
5407 &nand_ooblayout_lp_ops);
5408 break;
5409 }
5410
Ezequiel García11eaf6d2016-04-01 18:29:24 -03005411 WARN(1, "No oob scheme defined for oobsize %d\n",
5412 mtd->oobsize);
5413 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005414 goto err_nand_manuf_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 }
5416 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00005417
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005418 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07005419 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005420 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01005421 */
David Woodhouse956e9442006-09-25 17:12:39 +01005422
Huang Shijie97de79e02013-10-18 14:20:53 +08005423 switch (ecc->mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07005424 case NAND_ECC_HW_OOB_FIRST:
5425 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Huang Shijie97de79e02013-10-18 14:20:53 +08005426 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03005427 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
5428 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005429 goto err_nand_manuf_cleanup;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07005430 }
Huang Shijie97de79e02013-10-18 14:20:53 +08005431 if (!ecc->read_page)
5432 ecc->read_page = nand_read_page_hwecc_oob_first;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07005433
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02005434 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07005435 /* Use standard hwecc read page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08005436 if (!ecc->read_page)
5437 ecc->read_page = nand_read_page_hwecc;
5438 if (!ecc->write_page)
5439 ecc->write_page = nand_write_page_hwecc;
5440 if (!ecc->read_page_raw)
5441 ecc->read_page_raw = nand_read_page_raw;
5442 if (!ecc->write_page_raw)
5443 ecc->write_page_raw = nand_write_page_raw;
5444 if (!ecc->read_oob)
5445 ecc->read_oob = nand_read_oob_std;
5446 if (!ecc->write_oob)
5447 ecc->write_oob = nand_write_oob_std;
5448 if (!ecc->read_subpage)
5449 ecc->read_subpage = nand_read_subpage;
Helmut Schaa44991b32014-04-09 11:13:24 +02005450 if (!ecc->write_subpage && ecc->hwctl && ecc->calculate)
Huang Shijie97de79e02013-10-18 14:20:53 +08005451 ecc->write_subpage = nand_write_subpage_hwecc;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02005452
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02005453 case NAND_ECC_HW_SYNDROME:
Huang Shijie97de79e02013-10-18 14:20:53 +08005454 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
5455 (!ecc->read_page ||
5456 ecc->read_page == nand_read_page_hwecc ||
5457 !ecc->write_page ||
5458 ecc->write_page == nand_write_page_hwecc)) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03005459 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
5460 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005461 goto err_nand_manuf_cleanup;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02005462 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07005463 /* Use standard syndrome read/write page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08005464 if (!ecc->read_page)
5465 ecc->read_page = nand_read_page_syndrome;
5466 if (!ecc->write_page)
5467 ecc->write_page = nand_write_page_syndrome;
5468 if (!ecc->read_page_raw)
5469 ecc->read_page_raw = nand_read_page_raw_syndrome;
5470 if (!ecc->write_page_raw)
5471 ecc->write_page_raw = nand_write_page_raw_syndrome;
5472 if (!ecc->read_oob)
5473 ecc->read_oob = nand_read_oob_syndrome;
5474 if (!ecc->write_oob)
5475 ecc->write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02005476
Huang Shijie97de79e02013-10-18 14:20:53 +08005477 if (mtd->writesize >= ecc->size) {
5478 if (!ecc->strength) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03005479 WARN(1, "Driver must set ecc.strength when using hardware ECC\n");
5480 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005481 goto err_nand_manuf_cleanup;
Mike Dunne2788c92012-04-25 12:06:10 -07005482 }
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02005483 break;
Mike Dunne2788c92012-04-25 12:06:10 -07005484 }
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02005485 pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n",
5486 ecc->size, mtd->writesize);
Huang Shijie97de79e02013-10-18 14:20:53 +08005487 ecc->mode = NAND_ECC_SOFT;
Rafał Miłeckie9d4fae2016-04-17 22:53:02 +02005488 ecc->algo = NAND_ECC_HAMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02005490 case NAND_ECC_SOFT:
Rafał Miłecki06f384c2016-04-17 22:53:05 +02005491 ret = nand_set_ecc_soft_ops(mtd);
5492 if (ret) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03005493 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005494 goto err_nand_manuf_cleanup;
Ivan Djelic193bd402011-03-11 11:05:33 +01005495 }
5496 break;
5497
Thomas Petazzoni785818f2017-04-29 11:06:43 +02005498 case NAND_ECC_ON_DIE:
5499 if (!ecc->read_page || !ecc->write_page) {
5500 WARN(1, "No ECC functions supplied; on-die ECC not possible\n");
5501 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005502 goto err_nand_manuf_cleanup;
Thomas Petazzoni785818f2017-04-29 11:06:43 +02005503 }
5504 if (!ecc->read_oob)
5505 ecc->read_oob = nand_read_oob_std;
5506 if (!ecc->write_oob)
5507 ecc->write_oob = nand_write_oob_std;
5508 break;
5509
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00005510 case NAND_ECC_NONE:
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02005511 pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n");
Huang Shijie97de79e02013-10-18 14:20:53 +08005512 ecc->read_page = nand_read_page_raw;
5513 ecc->write_page = nand_write_page_raw;
5514 ecc->read_oob = nand_read_oob_std;
5515 ecc->read_page_raw = nand_read_page_raw;
5516 ecc->write_page_raw = nand_write_page_raw;
5517 ecc->write_oob = nand_write_oob_std;
5518 ecc->size = mtd->writesize;
5519 ecc->bytes = 0;
5520 ecc->strength = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521 break;
David Woodhouse956e9442006-09-25 17:12:39 +01005522
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523 default:
Ezequiel García11eaf6d2016-04-01 18:29:24 -03005524 WARN(1, "Invalid NAND_ECC_MODE %d\n", ecc->mode);
5525 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005526 goto err_nand_manuf_cleanup;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00005527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528
Brian Norris9ce244b2011-08-30 18:45:37 -07005529 /* For many systems, the standard OOB write also works for raw */
Huang Shijie97de79e02013-10-18 14:20:53 +08005530 if (!ecc->read_oob_raw)
5531 ecc->read_oob_raw = ecc->read_oob;
5532 if (!ecc->write_oob_raw)
5533 ecc->write_oob_raw = ecc->write_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07005534
Boris Brezillon846031d2016-02-03 20:11:00 +01005535 /* propagate ecc info to mtd_info */
Boris Brezillon846031d2016-02-03 20:11:00 +01005536 mtd->ecc_strength = ecc->strength;
5537 mtd->ecc_step_size = ecc->size;
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03005538
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02005539 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005540 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07005541 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005542 */
Huang Shijie97de79e02013-10-18 14:20:53 +08005543 ecc->steps = mtd->writesize / ecc->size;
5544 if (ecc->steps * ecc->size != mtd->writesize) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03005545 WARN(1, "Invalid ECC parameters\n");
5546 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005547 goto err_nand_manuf_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548 }
Huang Shijie97de79e02013-10-18 14:20:53 +08005549 ecc->total = ecc->steps * ecc->bytes;
Masahiro Yamada79e03482017-05-25 13:50:20 +09005550 if (ecc->total > mtd->oobsize) {
5551 WARN(1, "Total number of ECC bytes exceeded oobsize\n");
5552 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02005553 goto err_nand_manuf_cleanup;
Masahiro Yamada79e03482017-05-25 13:50:20 +09005554 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00005555
Boris Brezillon846031d2016-02-03 20:11:00 +01005556 /*
5557 * The number of bytes available for a client to place data into
5558 * the out of band area.
5559 */
5560 ret = mtd_ooblayout_count_freebytes(mtd);
5561 if (ret < 0)
5562 ret = 0;
5563
5564 mtd->oobavail = ret;
5565
5566 /* ECC sanity check: warn if it's too weak */
5567 if (!nand_ecc_strength_good(mtd))
5568 pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n",
5569 mtd->name);
5570
Brian Norris8b6e50c2011-05-25 14:59:01 -07005571 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Huang Shijie1d0ed692013-09-25 14:58:10 +08005572 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
Huang Shijie97de79e02013-10-18 14:20:53 +08005573 switch (ecc->steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02005574 case 2:
5575 mtd->subpage_sft = 1;
5576 break;
5577 case 4:
5578 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01005579 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02005580 mtd->subpage_sft = 2;
5581 break;
5582 }
5583 }
5584 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
5585
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02005586 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005587 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005590 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05005592 /* Large page NAND with SOFT_ECC should support subpage reads */
Ron Lee4007e2d2014-04-25 15:01:35 +09305593 switch (ecc->mode) {
5594 case NAND_ECC_SOFT:
Ron Lee4007e2d2014-04-25 15:01:35 +09305595 if (chip->page_shift > 9)
5596 chip->options |= NAND_SUBPAGE_READ;
5597 break;
5598
5599 default:
5600 break;
5601 }
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05005602
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603 /* Fill in remaining MTD driver data */
Huang Shijie963d1c22013-09-25 14:58:21 +08005604 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02005605 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
5606 MTD_CAP_NANDFLASH;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02005607 mtd->_erase = nand_erase;
5608 mtd->_point = NULL;
5609 mtd->_unpoint = NULL;
5610 mtd->_read = nand_read;
5611 mtd->_write = nand_write;
5612 mtd->_panic_write = panic_nand_write;
5613 mtd->_read_oob = nand_read_oob;
5614 mtd->_write_oob = nand_write_oob;
5615 mtd->_sync = nand_sync;
5616 mtd->_lock = NULL;
5617 mtd->_unlock = NULL;
5618 mtd->_suspend = nand_suspend;
5619 mtd->_resume = nand_resume;
Scott Branden72ea4032014-11-20 11:18:05 -08005620 mtd->_reboot = nand_shutdown;
Ezequiel Garcia8471bb72014-05-21 19:06:12 -03005621 mtd->_block_isreserved = nand_block_isreserved;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02005622 mtd->_block_isbad = nand_block_isbad;
5623 mtd->_block_markbad = nand_block_markbad;
Zach Brown56718422017-01-10 13:30:20 -06005624 mtd->_max_bad_blocks = nand_max_bad_blocks;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01005625 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626
Shmulik Ladkaniea3b2ea2012-06-08 18:29:06 +03005627 /*
5628 * Initialize bitflip_threshold to its default prior scan_bbt() call.
5629 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
5630 * properly set.
5631 */
5632 if (!mtd->bitflip_threshold)
Brian Norris240181f2015-01-12 12:51:29 -08005633 mtd->bitflip_threshold = DIV_ROUND_UP(mtd->ecc_strength * 3, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634
Boris Brezillonf84674b2017-06-02 12:18:24 +02005635 /* Initialize the ->data_interface field. */
5636 ret = nand_init_data_interface(chip);
5637 if (ret)
5638 goto err_nand_manuf_cleanup;
5639
5640 /* Enter fastest possible mode on all dies. */
5641 for (i = 0; i < chip->numchips; i++) {
5642 chip->select_chip(mtd, i);
5643 ret = nand_setup_data_interface(chip, i);
5644 chip->select_chip(mtd, -1);
5645
5646 if (ret)
5647 goto err_nand_data_iface_cleanup;
5648 }
5649
Thomas Gleixner0040bf32005-02-09 12:20:00 +00005650 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005651 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00005652 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653
5654 /* Build bad block table */
Brian Norris44d41822017-05-01 17:04:50 -07005655 ret = chip->scan_bbt(mtd);
5656 if (ret)
Boris Brezillonf84674b2017-06-02 12:18:24 +02005657 goto err_nand_data_iface_cleanup;
5658
Brian Norris44d41822017-05-01 17:04:50 -07005659 return 0;
5660
Boris Brezillonf84674b2017-06-02 12:18:24 +02005661err_nand_data_iface_cleanup:
5662 nand_release_data_interface(chip);
5663
5664err_nand_manuf_cleanup:
5665 nand_manufacturer_cleanup(chip);
5666
5667err_free_nbuf:
Masahiro Yamada3deb9972017-03-30 17:15:04 +09005668 if (nbuf) {
5669 kfree(nbuf->databuf);
5670 kfree(nbuf->ecccode);
5671 kfree(nbuf->ecccalc);
5672 kfree(nbuf);
5673 }
Brian Norris78771042017-05-01 17:04:53 -07005674
Ezequiel García11eaf6d2016-04-01 18:29:24 -03005675 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02005677EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678
Brian Norris8b6e50c2011-05-25 14:59:01 -07005679/*
5680 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02005681 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07005682 * to call us from in-kernel code if the core NAND support is modular.
5683 */
David Woodhouse3b85c322006-09-25 17:06:53 +01005684#ifdef MODULE
5685#define caller_is_module() (1)
5686#else
5687#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06005688 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01005689#endif
5690
5691/**
5692 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07005693 * @mtd: MTD device structure
5694 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01005695 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07005696 * This fills out all the uninitialized function pointers with the defaults.
5697 * The flash ID is read and the mtd/chip structures are filled with the
Ezequiel García20c07a52016-04-01 18:29:23 -03005698 * appropriate values.
David Woodhouse3b85c322006-09-25 17:06:53 +01005699 */
5700int nand_scan(struct mtd_info *mtd, int maxchips)
5701{
5702 int ret;
5703
David Woodhouse5e81e882010-02-26 18:32:56 +00005704 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01005705 if (!ret)
5706 ret = nand_scan_tail(mtd);
5707 return ret;
5708}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02005709EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01005710
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711/**
Richard Weinbergerd44154f2016-09-21 11:44:41 +02005712 * nand_cleanup - [NAND Interface] Free resources held by the NAND device
5713 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -07005714 */
Richard Weinbergerd44154f2016-09-21 11:44:41 +02005715void nand_cleanup(struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716{
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02005717 if (chip->ecc.mode == NAND_ECC_SOFT &&
Rafał Miłecki06f384c2016-04-17 22:53:05 +02005718 chip->ecc.algo == NAND_ECC_BCH)
Ivan Djelic193bd402011-03-11 11:05:33 +01005719 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
5720
Boris Brezillond8e725d2016-09-15 10:32:50 +02005721 nand_release_data_interface(chip);
5722
Jesper Juhlfa671642005-11-07 01:01:27 -08005723 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005724 kfree(chip->bbt);
Masahiro Yamada3deb9972017-03-30 17:15:04 +09005725 if (!(chip->options & NAND_OWN_BUFFERS) && chip->buffers) {
5726 kfree(chip->buffers->databuf);
5727 kfree(chip->buffers->ecccode);
5728 kfree(chip->buffers->ecccalc);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01005729 kfree(chip->buffers);
Masahiro Yamada3deb9972017-03-30 17:15:04 +09005730 }
Brian Norris58373ff2010-07-15 12:15:44 -07005731
5732 /* Free bad block descriptor memory */
5733 if (chip->badblock_pattern && chip->badblock_pattern->options
5734 & NAND_BBT_DYNAMICSTRUCT)
5735 kfree(chip->badblock_pattern);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005736
5737 /* Free manufacturer priv data. */
5738 nand_manufacturer_cleanup(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739}
Richard Weinbergerd44154f2016-09-21 11:44:41 +02005740EXPORT_SYMBOL_GPL(nand_cleanup);
5741
5742/**
5743 * nand_release - [NAND Interface] Unregister the MTD device and free resources
5744 * held by the NAND device
5745 * @mtd: MTD device structure
5746 */
5747void nand_release(struct mtd_info *mtd)
5748{
5749 mtd_device_unregister(mtd);
5750 nand_cleanup(mtd_to_nand(mtd));
5751}
David Woodhousee0c7d762006-05-13 18:07:53 +01005752EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08005753
David Woodhousee0c7d762006-05-13 18:07:53 +01005754MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02005755MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
5756MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01005757MODULE_DESCRIPTION("Generic NAND flash driver code");