blob: ed08e3946727edfacf8d345b7e22a847e9bd6920 [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>
42#include <linux/mtd/nand.h>
43#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;
68 oobregion->length = 4;
69 } else {
70 oobregion->offset = 6;
71 oobregion->length = ecc->total - 4;
72 }
73
74 return 0;
75}
76
77static int nand_ooblayout_free_sp(struct mtd_info *mtd, int section,
78 struct mtd_oob_region *oobregion)
79{
80 if (section > 1)
81 return -ERANGE;
82
83 if (mtd->oobsize == 16) {
84 if (section)
85 return -ERANGE;
86
87 oobregion->length = 8;
88 oobregion->offset = 8;
89 } else {
90 oobregion->length = 2;
91 if (!section)
92 oobregion->offset = 3;
93 else
94 oobregion->offset = 6;
95 }
96
97 return 0;
98}
99
100const struct mtd_ooblayout_ops nand_ooblayout_sp_ops = {
101 .ecc = nand_ooblayout_ecc_sp,
102 .free = nand_ooblayout_free_sp,
103};
104EXPORT_SYMBOL_GPL(nand_ooblayout_sp_ops);
105
106static int nand_ooblayout_ecc_lp(struct mtd_info *mtd, int section,
107 struct mtd_oob_region *oobregion)
108{
109 struct nand_chip *chip = mtd_to_nand(mtd);
110 struct nand_ecc_ctrl *ecc = &chip->ecc;
111
112 if (section)
113 return -ERANGE;
114
115 oobregion->length = ecc->total;
116 oobregion->offset = mtd->oobsize - oobregion->length;
117
118 return 0;
119}
120
121static int nand_ooblayout_free_lp(struct mtd_info *mtd, int section,
122 struct mtd_oob_region *oobregion)
123{
124 struct nand_chip *chip = mtd_to_nand(mtd);
125 struct nand_ecc_ctrl *ecc = &chip->ecc;
126
127 if (section)
128 return -ERANGE;
129
130 oobregion->length = mtd->oobsize - ecc->total - 2;
131 oobregion->offset = 2;
132
133 return 0;
134}
135
136const struct mtd_ooblayout_ops nand_ooblayout_lp_ops = {
137 .ecc = nand_ooblayout_ecc_lp,
138 .free = nand_ooblayout_free_lp,
139};
140EXPORT_SYMBOL_GPL(nand_ooblayout_lp_ops);
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200141
Alexander Couzens6a623e02017-05-02 12:19:00 +0200142/*
143 * Support the old "large page" layout used for 1-bit Hamming ECC where ECC
144 * are placed at a fixed offset.
145 */
146static int nand_ooblayout_ecc_lp_hamming(struct mtd_info *mtd, int section,
147 struct mtd_oob_region *oobregion)
148{
149 struct nand_chip *chip = mtd_to_nand(mtd);
150 struct nand_ecc_ctrl *ecc = &chip->ecc;
151
152 if (section)
153 return -ERANGE;
154
155 switch (mtd->oobsize) {
156 case 64:
157 oobregion->offset = 40;
158 break;
159 case 128:
160 oobregion->offset = 80;
161 break;
162 default:
163 return -EINVAL;
164 }
165
166 oobregion->length = ecc->total;
167 if (oobregion->offset + oobregion->length > mtd->oobsize)
168 return -ERANGE;
169
170 return 0;
171}
172
173static int nand_ooblayout_free_lp_hamming(struct mtd_info *mtd, int section,
174 struct mtd_oob_region *oobregion)
175{
176 struct nand_chip *chip = mtd_to_nand(mtd);
177 struct nand_ecc_ctrl *ecc = &chip->ecc;
178 int ecc_offset = 0;
179
180 if (section < 0 || section > 1)
181 return -ERANGE;
182
183 switch (mtd->oobsize) {
184 case 64:
185 ecc_offset = 40;
186 break;
187 case 128:
188 ecc_offset = 80;
189 break;
190 default:
191 return -EINVAL;
192 }
193
194 if (section == 0) {
195 oobregion->offset = 2;
196 oobregion->length = ecc_offset - 2;
197 } else {
198 oobregion->offset = ecc_offset + ecc->total;
199 oobregion->length = mtd->oobsize - oobregion->offset;
200 }
201
202 return 0;
203}
204
205const struct mtd_ooblayout_ops nand_ooblayout_lp_hamming_ops = {
206 .ecc = nand_ooblayout_ecc_lp_hamming,
207 .free = nand_ooblayout_free_lp_hamming,
208};
209
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530210static int check_offs_len(struct mtd_info *mtd,
211 loff_t ofs, uint64_t len)
212{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100213 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530214 int ret = 0;
215
216 /* Start address must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300217 if (ofs & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700218 pr_debug("%s: unaligned address\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530219 ret = -EINVAL;
220 }
221
222 /* Length must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300223 if (len & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700224 pr_debug("%s: length not block aligned\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530225 ret = -EINVAL;
226 }
227
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530228 return ret;
229}
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/**
232 * nand_release_device - [GENERIC] release chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700233 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000234 *
Huang Shijieb0bb6902012-11-19 14:43:29 +0800235 * Release chip lock and wake up anyone waiting on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100237static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100239 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200241 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200242 spin_lock(&chip->controller->lock);
243 chip->controller->active = NULL;
244 chip->state = FL_READY;
245 wake_up(&chip->controller->wq);
246 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249/**
250 * nand_read_byte - [DEFAULT] read one byte from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700251 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700253 * Default read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200255static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100257 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200258 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261/**
Masanari Iida064a7692012-11-09 23:20:58 +0900262 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700263 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700265 * Default read function for 16bit buswidth with endianness conversion.
266 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200268static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100270 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200271 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
274/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * nand_read_word - [DEFAULT] read one word from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700276 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700278 * Default read function for 16bit buswidth without endianness conversion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 */
280static u16 nand_read_word(struct mtd_info *mtd)
281{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100282 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200283 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 * nand_select_chip - [DEFAULT] control CE line
Brian Norris8b6e50c2011-05-25 14:59:01 -0700288 * @mtd: MTD device structure
289 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 *
291 * Default select function for 1 chip devices.
292 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200293static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100295 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200296
297 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200299 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 break;
301 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 break;
303
304 default:
305 BUG();
306 }
307}
308
309/**
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100310 * nand_write_byte - [DEFAULT] write single byte to chip
311 * @mtd: MTD device structure
312 * @byte: value to write
313 *
314 * Default function to write a byte to I/O[7:0]
315 */
316static void nand_write_byte(struct mtd_info *mtd, uint8_t byte)
317{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100318 struct nand_chip *chip = mtd_to_nand(mtd);
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100319
320 chip->write_buf(mtd, &byte, 1);
321}
322
323/**
324 * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16
325 * @mtd: MTD device structure
326 * @byte: value to write
327 *
328 * Default function to write a byte to I/O[7:0] on a 16-bit wide chip.
329 */
330static void nand_write_byte16(struct mtd_info *mtd, uint8_t byte)
331{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100332 struct nand_chip *chip = mtd_to_nand(mtd);
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100333 uint16_t word = byte;
334
335 /*
336 * It's not entirely clear what should happen to I/O[15:8] when writing
337 * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads:
338 *
339 * When the host supports a 16-bit bus width, only data is
340 * transferred at the 16-bit width. All address and command line
341 * transfers shall use only the lower 8-bits of the data bus. During
342 * command transfers, the host may place any value on the upper
343 * 8-bits of the data bus. During address transfers, the host shall
344 * set the upper 8-bits of the data bus to 00h.
345 *
346 * One user of the write_byte callback is nand_onfi_set_features. The
347 * four parameters are specified to be written to I/O[7:0], but this is
348 * neither an address nor a command transfer. Let's assume a 0 on the
349 * upper I/O lines is OK.
350 */
351 chip->write_buf(mtd, (uint8_t *)&word, 2);
352}
353
354/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 * nand_write_buf - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700356 * @mtd: MTD device structure
357 * @buf: data buffer
358 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700360 * Default write function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200362static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100364 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Alexander Shiyan76413832013-04-13 09:32:13 +0400366 iowrite8_rep(chip->IO_ADDR_W, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
369/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000370 * nand_read_buf - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700371 * @mtd: MTD device structure
372 * @buf: buffer to store date
373 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700375 * Default read function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200377static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100379 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Alexander Shiyan76413832013-04-13 09:32:13 +0400381 ioread8_rep(chip->IO_ADDR_R, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 * nand_write_buf16 - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700386 * @mtd: MTD device structure
387 * @buf: data buffer
388 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700390 * Default write function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200392static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100394 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 u16 *p = (u16 *) buf;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000396
Alexander Shiyan76413832013-04-13 09:32:13 +0400397 iowrite16_rep(chip->IO_ADDR_W, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
400/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000401 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700402 * @mtd: MTD device structure
403 * @buf: buffer to store date
404 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700406 * Default read function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200408static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100410 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 u16 *p = (u16 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Alexander Shiyan76413832013-04-13 09:32:13 +0400413 ioread16_rep(chip->IO_ADDR_R, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
416/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700418 * @mtd: MTD device structure
419 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000421 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 */
Archit Taneja9f3e0422016-02-03 14:29:49 +0530423static int nand_block_bad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Masahiro Yamadac120e752017-03-23 05:07:01 +0900425 int page, page_end, res;
Boris BREZILLON862eba52015-12-01 12:03:03 +0100426 struct nand_chip *chip = mtd_to_nand(mtd);
Masahiro Yamadac120e752017-03-23 05:07:01 +0900427 u8 bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Brian Norris5fb15492011-05-31 16:31:21 -0700429 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700430 ofs += mtd->erasesize - mtd->writesize;
431
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100432 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
Masahiro Yamadac120e752017-03-23 05:07:01 +0900433 page_end = page + (chip->bbt_options & NAND_BBT_SCAN2NDPAGE ? 2 : 1);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100434
Masahiro Yamadac120e752017-03-23 05:07:01 +0900435 for (; page < page_end; page++) {
436 res = chip->ecc.read_oob(mtd, chip, page);
437 if (res)
438 return res;
439
440 bad = chip->oob_poi[chip->badblockpos];
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000441
Brian Norriscdbec052012-01-13 18:11:48 -0800442 if (likely(chip->badblockbits == 8))
443 res = bad != 0xFF;
444 else
445 res = hweight8(bad) < chip->badblockbits;
Masahiro Yamadac120e752017-03-23 05:07:01 +0900446 if (res)
447 return res;
448 }
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200449
Masahiro Yamadac120e752017-03-23 05:07:01 +0900450 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
453/**
Brian Norris5a0edb22013-07-30 17:52:58 -0700454 * nand_default_block_markbad - [DEFAULT] mark a block bad via bad block marker
Brian Norris8b6e50c2011-05-25 14:59:01 -0700455 * @mtd: MTD device structure
456 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700458 * This is the default implementation, which can be overridden by a hardware
Brian Norris5a0edb22013-07-30 17:52:58 -0700459 * specific driver. It provides the details for writing a bad block marker to a
460 * block.
461 */
462static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
463{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100464 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris5a0edb22013-07-30 17:52:58 -0700465 struct mtd_oob_ops ops;
466 uint8_t buf[2] = { 0, 0 };
467 int ret = 0, res, i = 0;
468
Brian Norris0ec56dc2015-02-28 02:02:30 -0800469 memset(&ops, 0, sizeof(ops));
Brian Norris5a0edb22013-07-30 17:52:58 -0700470 ops.oobbuf = buf;
471 ops.ooboffs = chip->badblockpos;
472 if (chip->options & NAND_BUSWIDTH_16) {
473 ops.ooboffs &= ~0x01;
474 ops.len = ops.ooblen = 2;
475 } else {
476 ops.len = ops.ooblen = 1;
477 }
478 ops.mode = MTD_OPS_PLACE_OOB;
479
480 /* Write to first/last page(s) if necessary */
481 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
482 ofs += mtd->erasesize - mtd->writesize;
483 do {
484 res = nand_do_write_oob(mtd, ofs, &ops);
485 if (!ret)
486 ret = res;
487
488 i++;
489 ofs += mtd->writesize;
490 } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2);
491
492 return ret;
493}
494
495/**
496 * nand_block_markbad_lowlevel - mark a block bad
497 * @mtd: MTD device structure
498 * @ofs: offset from device start
499 *
500 * This function performs the generic NAND bad block marking steps (i.e., bad
501 * block table(s) and/or marker(s)). We only allow the hardware driver to
502 * specify how to write bad block markers to OOB (chip->block_markbad).
503 *
Brian Norrisb32843b2013-07-30 17:52:59 -0700504 * We try operations in the following order:
Brian Norrise2414f42012-02-06 13:44:00 -0800505 * (1) erase the affected block, to allow OOB marker to be written cleanly
Brian Norrisb32843b2013-07-30 17:52:59 -0700506 * (2) write bad block marker to OOB area of affected block (unless flag
507 * NAND_BBT_NO_OOB_BBM is present)
508 * (3) update the BBT
509 * Note that we retain the first error encountered in (2) or (3), finish the
Brian Norrise2414f42012-02-06 13:44:00 -0800510 * procedures, and dump the error in the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511*/
Brian Norris5a0edb22013-07-30 17:52:58 -0700512static int nand_block_markbad_lowlevel(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100514 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norrisb32843b2013-07-30 17:52:59 -0700515 int res, ret = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000516
Brian Norrisb32843b2013-07-30 17:52:59 -0700517 if (!(chip->bbt_options & NAND_BBT_NO_OOB_BBM)) {
Brian Norris00918422012-01-13 18:11:47 -0800518 struct erase_info einfo;
519
520 /* Attempt erase before marking OOB */
521 memset(&einfo, 0, sizeof(einfo));
522 einfo.mtd = mtd;
523 einfo.addr = ofs;
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300524 einfo.len = 1ULL << chip->phys_erase_shift;
Brian Norris00918422012-01-13 18:11:47 -0800525 nand_erase_nand(mtd, &einfo, 0);
Brian Norris00918422012-01-13 18:11:47 -0800526
Brian Norrisb32843b2013-07-30 17:52:59 -0700527 /* Write bad block marker to OOB */
Huang Shijie6a8214a2012-11-19 14:43:30 +0800528 nand_get_device(mtd, FL_WRITING);
Brian Norris5a0edb22013-07-30 17:52:58 -0700529 ret = chip->block_markbad(mtd, ofs);
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300530 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200531 }
Brian Norrise2414f42012-02-06 13:44:00 -0800532
Brian Norrisb32843b2013-07-30 17:52:59 -0700533 /* Mark block bad in BBT */
534 if (chip->bbt) {
535 res = nand_markbad_bbt(mtd, ofs);
Brian Norrise2414f42012-02-06 13:44:00 -0800536 if (!ret)
537 ret = res;
538 }
539
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200540 if (!ret)
541 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300542
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200543 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000546/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700548 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700550 * Check, if the device is write protected. The function expects, that the
551 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100553static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100555 struct nand_chip *chip = mtd_to_nand(mtd);
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200556
Brian Norris8b6e50c2011-05-25 14:59:01 -0700557 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200558 if (chip->options & NAND_BROKEN_XD)
559 return 0;
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200562 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
563 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
566/**
Gu Zhengc30e1f72014-09-03 17:49:10 +0800567 * nand_block_isreserved - [GENERIC] Check if a block is marked reserved.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700568 * @mtd: MTD device structure
569 * @ofs: offset from device start
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300570 *
Gu Zhengc30e1f72014-09-03 17:49:10 +0800571 * Check if the block is marked as reserved.
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300572 */
573static int nand_block_isreserved(struct mtd_info *mtd, loff_t ofs)
574{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100575 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300576
577 if (!chip->bbt)
578 return 0;
579 /* Return info from the table */
580 return nand_isreserved_bbt(mtd, ofs);
581}
582
583/**
584 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
585 * @mtd: MTD device structure
586 * @ofs: offset from device start
Brian Norris8b6e50c2011-05-25 14:59:01 -0700587 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 *
589 * Check, if the block is bad. Either by reading the bad block table or
590 * calling of the scan function.
591 */
Archit Taneja9f3e0422016-02-03 14:29:49 +0530592static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100594 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000595
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200596 if (!chip->bbt)
Archit Taneja9f3e0422016-02-03 14:29:49 +0530597 return chip->block_bad(mtd, ofs);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100600 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200603/**
604 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700605 * @mtd: MTD device structure
606 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200607 *
608 * Helper function for nand_wait_ready used when needing to wait in interrupt
609 * context.
610 */
611static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
612{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100613 struct nand_chip *chip = mtd_to_nand(mtd);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200614 int i;
615
616 /* Wait for the device to get ready */
617 for (i = 0; i < timeo; i++) {
618 if (chip->dev_ready(mtd))
619 break;
620 touch_softlockup_watchdog();
621 mdelay(1);
622 }
623}
624
Alex Smithb70af9b2015-10-06 14:52:07 +0100625/**
626 * nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
627 * @mtd: MTD device structure
628 *
629 * Wait for the ready pin after a command, and warn if a timeout occurs.
630 */
David Woodhouse4b648b02006-09-25 17:05:24 +0100631void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000632{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100633 struct nand_chip *chip = mtd_to_nand(mtd);
Alex Smithb70af9b2015-10-06 14:52:07 +0100634 unsigned long timeo = 400;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000635
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200636 if (in_interrupt() || oops_in_progress)
Alex Smithb70af9b2015-10-06 14:52:07 +0100637 return panic_nand_wait_ready(mtd, timeo);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200638
Brian Norris7854d3f2011-06-23 14:12:08 -0700639 /* Wait until command is processed or timeout occurs */
Alex Smithb70af9b2015-10-06 14:52:07 +0100640 timeo = jiffies + msecs_to_jiffies(timeo);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000641 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200642 if (chip->dev_ready(mtd))
Ezequiel Garcia4c7e0542016-04-12 17:46:41 -0300643 return;
Alex Smithb70af9b2015-10-06 14:52:07 +0100644 cond_resched();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000645 } while (time_before(jiffies, timeo));
Alex Smithb70af9b2015-10-06 14:52:07 +0100646
Brian Norris9ebfdf52016-03-04 17:19:23 -0800647 if (!chip->dev_ready(mtd))
648 pr_warn_ratelimited("timeout while waiting for chip to become ready\n");
Thomas Gleixner3b887752005-02-22 21:56:49 +0000649}
David Woodhouse4b648b02006-09-25 17:05:24 +0100650EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652/**
Roger Quadros60c70d62015-02-23 17:26:39 +0200653 * nand_wait_status_ready - [GENERIC] Wait for the ready status after commands.
654 * @mtd: MTD device structure
655 * @timeo: Timeout in ms
656 *
657 * Wait for status ready (i.e. command done) or timeout.
658 */
659static void nand_wait_status_ready(struct mtd_info *mtd, unsigned long timeo)
660{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100661 register struct nand_chip *chip = mtd_to_nand(mtd);
Roger Quadros60c70d62015-02-23 17:26:39 +0200662
663 timeo = jiffies + msecs_to_jiffies(timeo);
664 do {
665 if ((chip->read_byte(mtd) & NAND_STATUS_READY))
666 break;
667 touch_softlockup_watchdog();
668 } while (time_before(jiffies, timeo));
669};
670
671/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700673 * @mtd: MTD device structure
674 * @command: the command to be sent
675 * @column: the column address for this command, -1 if none
676 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700678 * Send command to NAND device. This function is used for small page devices
Artem Bityutskiy51148f12013-03-05 15:00:51 +0200679 * (512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200681static void nand_command(struct mtd_info *mtd, unsigned int command,
682 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100684 register struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200685 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Brian Norris8b6e50c2011-05-25 14:59:01 -0700687 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (command == NAND_CMD_SEQIN) {
689 int readcmd;
690
Joern Engel28318772006-05-22 23:18:05 +0200691 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200693 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 readcmd = NAND_CMD_READOOB;
695 } else if (column < 256) {
696 /* First 256 bytes --> READ0 */
697 readcmd = NAND_CMD_READ0;
698 } else {
699 column -= 256;
700 readcmd = NAND_CMD_READ1;
701 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200702 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200703 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200705 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Brian Norris8b6e50c2011-05-25 14:59:01 -0700707 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200708 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
709 /* Serially input address */
710 if (column != -1) {
711 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800712 if (chip->options & NAND_BUSWIDTH_16 &&
713 !nand_opcode_8bits(command))
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200714 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200715 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200716 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200718 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200719 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200720 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200721 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200722 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200723 if (chip->chipsize > (32 << 20))
724 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200725 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200726 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000727
728 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700729 * Program and erase have their own busy handlers status and sequential
730 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100731 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 case NAND_CMD_PAGEPROG:
735 case NAND_CMD_ERASE1:
736 case NAND_CMD_ERASE2:
737 case NAND_CMD_SEQIN:
738 case NAND_CMD_STATUS:
Masahiro Yamada3158fa02017-03-23 09:17:49 +0900739 case NAND_CMD_READID:
Masahiro Yamadac5d664a2017-03-23 09:17:50 +0900740 case NAND_CMD_SET_FEATURES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return;
742
743 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200744 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200746 udelay(chip->chip_delay);
747 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200748 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200749 chip->cmd_ctrl(mtd,
750 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200751 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
752 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return;
754
David Woodhousee0c7d762006-05-13 18:07:53 +0100755 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000757 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 * If we don't have access to the busy pin, we apply the given
759 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100760 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200761 if (!chip->dev_ready) {
762 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700766 /*
767 * Apply this short delay always to ensure that we do wait tWB in
768 * any case on any machine.
769 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100770 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000771
772 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200775static void nand_ccs_delay(struct nand_chip *chip)
776{
777 /*
778 * The controller already takes care of waiting for tCCS when the RNDIN
779 * or RNDOUT command is sent, return directly.
780 */
781 if (!(chip->options & NAND_WAIT_TCCS))
782 return;
783
784 /*
785 * Wait tCCS_min if it is correctly defined, otherwise wait 500ns
786 * (which should be safe for all NANDs).
787 */
788 if (chip->data_interface && chip->data_interface->timings.sdr.tCCS_min)
789 ndelay(chip->data_interface->timings.sdr.tCCS_min / 1000);
790 else
791 ndelay(500);
792}
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794/**
795 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700796 * @mtd: MTD device structure
797 * @command: the command to be sent
798 * @column: the column address for this command, -1 if none
799 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200801 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700802 * devices. We don't have the separate regions as we have in the small page
803 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200805static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
806 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100808 register struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 /* Emulate NAND_CMD_READOOB */
811 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200812 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 command = NAND_CMD_READ0;
814 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000815
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200816 /* Command latch cycle */
Alexander Shiyanfb066ad2013-02-28 12:02:19 +0400817 chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200820 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /* Serially input address */
823 if (column != -1) {
824 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800825 if (chip->options & NAND_BUSWIDTH_16 &&
826 !nand_opcode_8bits(command))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200828 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200829 ctrl &= ~NAND_CTRL_CHANGE;
Boris Brezillonfde85cf2016-06-15 13:09:51 +0200830
Brian Norrisf5b88de2016-10-03 09:49:35 -0700831 /* Only output a single addr cycle for 8bits opcodes. */
Boris Brezillonfde85cf2016-06-15 13:09:51 +0200832 if (!nand_opcode_8bits(command))
833 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200836 chip->cmd_ctrl(mtd, page_addr, ctrl);
837 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200838 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200840 if (chip->chipsize > (128 << 20))
841 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200842 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200845 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000846
847 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700848 * Program and erase have their own busy handlers status, sequential
Gerhard Sittig7a442f12014-03-29 14:36:22 +0100849 * in and status need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000850 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 case NAND_CMD_CACHEDPROG:
854 case NAND_CMD_PAGEPROG:
855 case NAND_CMD_ERASE1:
856 case NAND_CMD_ERASE2:
857 case NAND_CMD_SEQIN:
858 case NAND_CMD_STATUS:
Masahiro Yamada3158fa02017-03-23 09:17:49 +0900859 case NAND_CMD_READID:
Masahiro Yamadac5d664a2017-03-23 09:17:50 +0900860 case NAND_CMD_SET_FEATURES:
David A. Marlin30f464b2005-01-17 18:35:25 +0000861 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200863 case NAND_CMD_RNDIN:
864 nand_ccs_delay(chip);
865 return;
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200868 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200870 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200871 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
872 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
873 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
874 NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200875 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
876 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return;
878
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200879 case NAND_CMD_RNDOUT:
880 /* No ready / busy check necessary */
881 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
882 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
883 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
884 NAND_NCE | NAND_CTRL_CHANGE);
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200885
886 nand_ccs_delay(chip);
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200887 return;
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200890 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
891 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
892 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
893 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000894
David Woodhousee0c7d762006-05-13 18:07:53 +0100895 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000897 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700899 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100900 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200901 if (!chip->dev_ready) {
902 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000906
Brian Norris8b6e50c2011-05-25 14:59:01 -0700907 /*
908 * Apply this short delay always to ensure that we do wait tWB in
909 * any case on any machine.
910 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100911 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000912
913 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
916/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200917 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700918 * @chip: the nand chip descriptor
919 * @mtd: MTD device structure
920 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200921 *
922 * Used when in panic, no locks are taken.
923 */
924static void panic_nand_get_device(struct nand_chip *chip,
925 struct mtd_info *mtd, int new_state)
926{
Brian Norris7854d3f2011-06-23 14:12:08 -0700927 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200928 chip->controller->active = chip;
929 chip->state = new_state;
930}
931
932/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700934 * @mtd: MTD device structure
935 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 *
937 * Get the device and lock it for exclusive access
938 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200939static int
Huang Shijie6a8214a2012-11-19 14:43:30 +0800940nand_get_device(struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100942 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200943 spinlock_t *lock = &chip->controller->lock;
944 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100945 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200946retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100947 spin_lock(lock);
948
vimal singhb8b3ee92009-07-09 20:41:22 +0530949 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200950 if (!chip->controller->active)
951 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200952
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200953 if (chip->controller->active == chip && chip->state == FL_READY) {
954 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100955 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100956 return 0;
957 }
958 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800959 if (chip->controller->active->state == FL_PM_SUSPENDED) {
960 chip->state = FL_PM_SUSPENDED;
961 spin_unlock(lock);
962 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800963 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100964 }
965 set_current_state(TASK_UNINTERRUPTIBLE);
966 add_wait_queue(wq, &wait);
967 spin_unlock(lock);
968 schedule();
969 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 goto retry;
971}
972
973/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700974 * panic_nand_wait - [GENERIC] wait until the command is done
975 * @mtd: MTD device structure
976 * @chip: NAND chip structure
977 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200978 *
979 * Wait for command done. This is a helper function for nand_wait used when
980 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400981 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200982 */
983static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
984 unsigned long timeo)
985{
986 int i;
987 for (i = 0; i < timeo; i++) {
988 if (chip->dev_ready) {
989 if (chip->dev_ready(mtd))
990 break;
991 } else {
992 if (chip->read_byte(mtd) & NAND_STATUS_READY)
993 break;
994 }
995 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200996 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200997}
998
999/**
Brian Norris8b6e50c2011-05-25 14:59:01 -07001000 * nand_wait - [DEFAULT] wait until the command is done
1001 * @mtd: MTD device structure
1002 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 *
Alex Smithb70af9b2015-10-06 14:52:07 +01001004 * Wait for command done. This applies to erase and program only.
Randy Dunlap844d3b42006-06-28 21:48:27 -07001005 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001006static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
1008
Alex Smithb70af9b2015-10-06 14:52:07 +01001009 int status;
1010 unsigned long timeo = 400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Brian Norris8b6e50c2011-05-25 14:59:01 -07001012 /*
1013 * Apply this short delay always to ensure that we do wait tWB in any
1014 * case on any machine.
1015 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001016 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Artem Bityutskiy14c65782013-03-04 14:21:34 +02001018 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001020 if (in_interrupt() || oops_in_progress)
1021 panic_nand_wait(mtd, chip, timeo);
1022 else {
Huang Shijie6d2559f2013-01-30 10:03:56 +08001023 timeo = jiffies + msecs_to_jiffies(timeo);
Alex Smithb70af9b2015-10-06 14:52:07 +01001024 do {
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001025 if (chip->dev_ready) {
1026 if (chip->dev_ready(mtd))
1027 break;
1028 } else {
1029 if (chip->read_byte(mtd) & NAND_STATUS_READY)
1030 break;
1031 }
1032 cond_resched();
Alex Smithb70af9b2015-10-06 14:52:07 +01001033 } while (time_before(jiffies, timeo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
Richard Purdie8fe833c2006-03-31 02:31:14 -08001035
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001036 status = (int)chip->read_byte(mtd);
Matthieu CASTETf251b8d2012-11-05 15:00:44 +01001037 /* This can happen if in case of timeout or buggy dev_ready */
1038 WARN_ON(!(status & NAND_STATUS_READY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return status;
1040}
1041
1042/**
Boris Brezillond8e725d2016-09-15 10:32:50 +02001043 * nand_reset_data_interface - Reset data interface and timings
1044 * @chip: The NAND chip
1045 *
1046 * Reset the Data interface and timings to ONFI mode 0.
1047 *
1048 * Returns 0 for success or negative error code otherwise.
1049 */
1050static int nand_reset_data_interface(struct nand_chip *chip)
1051{
1052 struct mtd_info *mtd = nand_to_mtd(chip);
1053 const struct nand_data_interface *conf;
1054 int ret;
1055
1056 if (!chip->setup_data_interface)
1057 return 0;
1058
1059 /*
1060 * The ONFI specification says:
1061 * "
1062 * To transition from NV-DDR or NV-DDR2 to the SDR data
1063 * interface, the host shall use the Reset (FFh) command
1064 * using SDR timing mode 0. A device in any timing mode is
1065 * required to recognize Reset (FFh) command issued in SDR
1066 * timing mode 0.
1067 * "
1068 *
1069 * Configure the data interface in SDR mode and set the
1070 * timings to timing mode 0.
1071 */
1072
1073 conf = nand_get_default_data_interface();
1074 ret = chip->setup_data_interface(mtd, conf, false);
1075 if (ret)
1076 pr_err("Failed to configure data interface to SDR timing mode 0\n");
1077
1078 return ret;
1079}
1080
1081/**
1082 * nand_setup_data_interface - Setup the best data interface and timings
1083 * @chip: The NAND chip
1084 *
1085 * Find and configure the best data interface and NAND timings supported by
1086 * the chip and the driver.
1087 * First tries to retrieve supported timing modes from ONFI information,
1088 * and if the NAND chip does not support ONFI, relies on the
1089 * ->onfi_timing_mode_default specified in the nand_ids table.
1090 *
1091 * Returns 0 for success or negative error code otherwise.
1092 */
1093static int nand_setup_data_interface(struct nand_chip *chip)
1094{
1095 struct mtd_info *mtd = nand_to_mtd(chip);
1096 int ret;
1097
1098 if (!chip->setup_data_interface || !chip->data_interface)
1099 return 0;
1100
1101 /*
1102 * Ensure the timing mode has been changed on the chip side
1103 * before changing timings on the controller side.
1104 */
1105 if (chip->onfi_version) {
1106 u8 tmode_param[ONFI_SUBFEATURE_PARAM_LEN] = {
1107 chip->onfi_timing_mode_default,
1108 };
1109
1110 ret = chip->onfi_set_features(mtd, chip,
1111 ONFI_FEATURE_ADDR_TIMING_MODE,
1112 tmode_param);
1113 if (ret)
1114 goto err;
1115 }
1116
1117 ret = chip->setup_data_interface(mtd, chip->data_interface, false);
1118err:
1119 return ret;
1120}
1121
1122/**
1123 * nand_init_data_interface - find the best data interface and timings
1124 * @chip: The NAND chip
1125 *
1126 * Find the best data interface and NAND timings supported by the chip
1127 * and the driver.
1128 * First tries to retrieve supported timing modes from ONFI information,
1129 * and if the NAND chip does not support ONFI, relies on the
1130 * ->onfi_timing_mode_default specified in the nand_ids table. After this
1131 * function nand_chip->data_interface is initialized with the best timing mode
1132 * available.
1133 *
1134 * Returns 0 for success or negative error code otherwise.
1135 */
1136static int nand_init_data_interface(struct nand_chip *chip)
1137{
1138 struct mtd_info *mtd = nand_to_mtd(chip);
1139 int modes, mode, ret;
1140
1141 if (!chip->setup_data_interface)
1142 return 0;
1143
1144 /*
1145 * First try to identify the best timings from ONFI parameters and
1146 * if the NAND does not support ONFI, fallback to the default ONFI
1147 * timing mode.
1148 */
1149 modes = onfi_get_async_timing_mode(chip);
1150 if (modes == ONFI_TIMING_MODE_UNKNOWN) {
1151 if (!chip->onfi_timing_mode_default)
1152 return 0;
1153
1154 modes = GENMASK(chip->onfi_timing_mode_default, 0);
1155 }
1156
1157 chip->data_interface = kzalloc(sizeof(*chip->data_interface),
1158 GFP_KERNEL);
1159 if (!chip->data_interface)
1160 return -ENOMEM;
1161
1162 for (mode = fls(modes) - 1; mode >= 0; mode--) {
1163 ret = onfi_init_data_interface(chip, chip->data_interface,
1164 NAND_SDR_IFACE, mode);
1165 if (ret)
1166 continue;
1167
1168 ret = chip->setup_data_interface(mtd, chip->data_interface,
1169 true);
1170 if (!ret) {
1171 chip->onfi_timing_mode_default = mode;
1172 break;
1173 }
1174 }
1175
1176 return 0;
1177}
1178
1179static void nand_release_data_interface(struct nand_chip *chip)
1180{
1181 kfree(chip->data_interface);
1182}
1183
1184/**
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001185 * nand_reset - Reset and initialize a NAND device
1186 * @chip: The NAND chip
Boris Brezillon73f907f2016-10-24 16:46:20 +02001187 * @chipnr: Internal die id
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001188 *
1189 * Returns 0 for success or negative error code otherwise
1190 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001191int nand_reset(struct nand_chip *chip, int chipnr)
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001192{
1193 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001194 int ret;
1195
1196 ret = nand_reset_data_interface(chip);
1197 if (ret)
1198 return ret;
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001199
Boris Brezillon73f907f2016-10-24 16:46:20 +02001200 /*
1201 * The CS line has to be released before we can apply the new NAND
1202 * interface settings, hence this weird ->select_chip() dance.
1203 */
1204 chip->select_chip(mtd, chipnr);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001205 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Boris Brezillon73f907f2016-10-24 16:46:20 +02001206 chip->select_chip(mtd, -1);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001207
Boris Brezillon73f907f2016-10-24 16:46:20 +02001208 chip->select_chip(mtd, chipnr);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001209 ret = nand_setup_data_interface(chip);
Boris Brezillon73f907f2016-10-24 16:46:20 +02001210 chip->select_chip(mtd, -1);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001211 if (ret)
1212 return ret;
1213
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001214 return 0;
1215}
1216
1217/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001218 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001219 * @mtd: mtd info
1220 * @ofs: offset to start unlock from
1221 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -07001222 * @invert: when = 0, unlock the range of blocks within the lower and
1223 * upper boundary address
1224 * when = 1, unlock the range of blocks outside the boundaries
1225 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +05301226 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001227 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301228 */
1229static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
1230 uint64_t len, int invert)
1231{
1232 int ret = 0;
1233 int status, page;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001234 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +05301235
1236 /* Submit address of first page to unlock */
1237 page = ofs >> chip->page_shift;
1238 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
1239
1240 /* Submit address of last page to unlock */
1241 page = (ofs + len) >> chip->page_shift;
1242 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
1243 (page | invert) & chip->pagemask);
1244
1245 /* Call wait ready function */
1246 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301247 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -04001248 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07001249 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301250 __func__, status);
1251 ret = -EIO;
1252 }
1253
1254 return ret;
1255}
1256
1257/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001258 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001259 * @mtd: mtd info
1260 * @ofs: offset to start unlock from
1261 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +05301262 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001263 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301264 */
1265int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1266{
1267 int ret = 0;
1268 int chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001269 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +05301270
Brian Norris289c0522011-07-19 10:06:09 -07001271 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301272 __func__, (unsigned long long)ofs, len);
1273
1274 if (check_offs_len(mtd, ofs, len))
Brian Norrisb1a23482015-02-28 02:02:27 -08001275 return -EINVAL;
Vimal Singh7d70f332010-02-08 15:50:49 +05301276
1277 /* Align to last block address if size addresses end of the device */
1278 if (ofs + len == mtd->size)
1279 len -= mtd->erasesize;
1280
Huang Shijie6a8214a2012-11-19 14:43:30 +08001281 nand_get_device(mtd, FL_UNLOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +05301282
1283 /* Shift to get chip number */
1284 chipnr = ofs >> chip->chip_shift;
1285
White Ding57d3a9a2014-07-24 00:10:45 +08001286 /*
1287 * Reset the chip.
1288 * If we want to check the WP through READ STATUS and check the bit 7
1289 * we must reset the chip
1290 * some operation can also clear the bit 7 of status register
1291 * eg. erase/program a locked block
1292 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001293 nand_reset(chip, chipnr);
1294
1295 chip->select_chip(mtd, chipnr);
White Ding57d3a9a2014-07-24 00:10:45 +08001296
Vimal Singh7d70f332010-02-08 15:50:49 +05301297 /* Check, if it is write protected */
1298 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001299 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301300 __func__);
1301 ret = -EIO;
1302 goto out;
1303 }
1304
1305 ret = __nand_unlock(mtd, ofs, len, 0);
1306
1307out:
Huang Shijieb0bb6902012-11-19 14:43:29 +08001308 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301309 nand_release_device(mtd);
1310
1311 return ret;
1312}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001313EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301314
1315/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001316 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001317 * @mtd: mtd info
1318 * @ofs: offset to start unlock from
1319 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +05301320 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001321 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
1322 * have this feature, but it allows only to lock all blocks, not for specified
1323 * range for block. Implementing 'lock' feature by making use of 'unlock', for
1324 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +05301325 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001326 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301327 */
1328int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1329{
1330 int ret = 0;
1331 int chipnr, status, page;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001332 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +05301333
Brian Norris289c0522011-07-19 10:06:09 -07001334 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301335 __func__, (unsigned long long)ofs, len);
1336
1337 if (check_offs_len(mtd, ofs, len))
Brian Norrisb1a23482015-02-28 02:02:27 -08001338 return -EINVAL;
Vimal Singh7d70f332010-02-08 15:50:49 +05301339
Huang Shijie6a8214a2012-11-19 14:43:30 +08001340 nand_get_device(mtd, FL_LOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +05301341
1342 /* Shift to get chip number */
1343 chipnr = ofs >> chip->chip_shift;
1344
White Ding57d3a9a2014-07-24 00:10:45 +08001345 /*
1346 * Reset the chip.
1347 * If we want to check the WP through READ STATUS and check the bit 7
1348 * we must reset the chip
1349 * some operation can also clear the bit 7 of status register
1350 * eg. erase/program a locked block
1351 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001352 nand_reset(chip, chipnr);
1353
1354 chip->select_chip(mtd, chipnr);
White Ding57d3a9a2014-07-24 00:10:45 +08001355
Vimal Singh7d70f332010-02-08 15:50:49 +05301356 /* Check, if it is write protected */
1357 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001358 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301359 __func__);
1360 status = MTD_ERASE_FAILED;
1361 ret = -EIO;
1362 goto out;
1363 }
1364
1365 /* Submit address of first page to lock */
1366 page = ofs >> chip->page_shift;
1367 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1368
1369 /* Call wait ready function */
1370 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301371 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -04001372 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07001373 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301374 __func__, status);
1375 ret = -EIO;
1376 goto out;
1377 }
1378
1379 ret = __nand_unlock(mtd, ofs, len, 0x1);
1380
1381out:
Huang Shijieb0bb6902012-11-19 14:43:29 +08001382 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301383 nand_release_device(mtd);
1384
1385 return ret;
1386}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001387EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301388
1389/**
Boris BREZILLON730a43f2015-09-03 18:03:38 +02001390 * nand_check_erased_buf - check if a buffer contains (almost) only 0xff data
1391 * @buf: buffer to test
1392 * @len: buffer length
1393 * @bitflips_threshold: maximum number of bitflips
1394 *
1395 * Check if a buffer contains only 0xff, which means the underlying region
1396 * has been erased and is ready to be programmed.
1397 * The bitflips_threshold specify the maximum number of bitflips before
1398 * considering the region is not erased.
1399 * Note: The logic of this function has been extracted from the memweight
1400 * implementation, except that nand_check_erased_buf function exit before
1401 * testing the whole buffer if the number of bitflips exceed the
1402 * bitflips_threshold value.
1403 *
1404 * Returns a positive number of bitflips less than or equal to
1405 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1406 * threshold.
1407 */
1408static int nand_check_erased_buf(void *buf, int len, int bitflips_threshold)
1409{
1410 const unsigned char *bitmap = buf;
1411 int bitflips = 0;
1412 int weight;
1413
1414 for (; len && ((uintptr_t)bitmap) % sizeof(long);
1415 len--, bitmap++) {
1416 weight = hweight8(*bitmap);
1417 bitflips += BITS_PER_BYTE - weight;
1418 if (unlikely(bitflips > bitflips_threshold))
1419 return -EBADMSG;
1420 }
1421
1422 for (; len >= sizeof(long);
1423 len -= sizeof(long), bitmap += sizeof(long)) {
1424 weight = hweight_long(*((unsigned long *)bitmap));
1425 bitflips += BITS_PER_LONG - weight;
1426 if (unlikely(bitflips > bitflips_threshold))
1427 return -EBADMSG;
1428 }
1429
1430 for (; len > 0; len--, bitmap++) {
1431 weight = hweight8(*bitmap);
1432 bitflips += BITS_PER_BYTE - weight;
1433 if (unlikely(bitflips > bitflips_threshold))
1434 return -EBADMSG;
1435 }
1436
1437 return bitflips;
1438}
1439
1440/**
1441 * nand_check_erased_ecc_chunk - check if an ECC chunk contains (almost) only
1442 * 0xff data
1443 * @data: data buffer to test
1444 * @datalen: data length
1445 * @ecc: ECC buffer
1446 * @ecclen: ECC length
1447 * @extraoob: extra OOB buffer
1448 * @extraooblen: extra OOB length
1449 * @bitflips_threshold: maximum number of bitflips
1450 *
1451 * Check if a data buffer and its associated ECC and OOB data contains only
1452 * 0xff pattern, which means the underlying region has been erased and is
1453 * ready to be programmed.
1454 * The bitflips_threshold specify the maximum number of bitflips before
1455 * considering the region as not erased.
1456 *
1457 * Note:
1458 * 1/ ECC algorithms are working on pre-defined block sizes which are usually
1459 * different from the NAND page size. When fixing bitflips, ECC engines will
1460 * report the number of errors per chunk, and the NAND core infrastructure
1461 * expect you to return the maximum number of bitflips for the whole page.
1462 * This is why you should always use this function on a single chunk and
1463 * not on the whole page. After checking each chunk you should update your
1464 * max_bitflips value accordingly.
1465 * 2/ When checking for bitflips in erased pages you should not only check
1466 * the payload data but also their associated ECC data, because a user might
1467 * have programmed almost all bits to 1 but a few. In this case, we
1468 * shouldn't consider the chunk as erased, and checking ECC bytes prevent
1469 * this case.
1470 * 3/ The extraoob argument is optional, and should be used if some of your OOB
1471 * data are protected by the ECC engine.
1472 * It could also be used if you support subpages and want to attach some
1473 * extra OOB data to an ECC chunk.
1474 *
1475 * Returns a positive number of bitflips less than or equal to
1476 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1477 * threshold. In case of success, the passed buffers are filled with 0xff.
1478 */
1479int nand_check_erased_ecc_chunk(void *data, int datalen,
1480 void *ecc, int ecclen,
1481 void *extraoob, int extraooblen,
1482 int bitflips_threshold)
1483{
1484 int data_bitflips = 0, ecc_bitflips = 0, extraoob_bitflips = 0;
1485
1486 data_bitflips = nand_check_erased_buf(data, datalen,
1487 bitflips_threshold);
1488 if (data_bitflips < 0)
1489 return data_bitflips;
1490
1491 bitflips_threshold -= data_bitflips;
1492
1493 ecc_bitflips = nand_check_erased_buf(ecc, ecclen, bitflips_threshold);
1494 if (ecc_bitflips < 0)
1495 return ecc_bitflips;
1496
1497 bitflips_threshold -= ecc_bitflips;
1498
1499 extraoob_bitflips = nand_check_erased_buf(extraoob, extraooblen,
1500 bitflips_threshold);
1501 if (extraoob_bitflips < 0)
1502 return extraoob_bitflips;
1503
1504 if (data_bitflips)
1505 memset(data, 0xff, datalen);
1506
1507 if (ecc_bitflips)
1508 memset(ecc, 0xff, ecclen);
1509
1510 if (extraoob_bitflips)
1511 memset(extraoob, 0xff, extraooblen);
1512
1513 return data_bitflips + ecc_bitflips + extraoob_bitflips;
1514}
1515EXPORT_SYMBOL(nand_check_erased_ecc_chunk);
1516
1517/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001518 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001519 * @mtd: mtd info structure
1520 * @chip: nand chip info structure
1521 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001522 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001523 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001524 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001525 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001526 */
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02001527int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1528 uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001529{
1530 chip->read_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07001531 if (oob_required)
1532 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001533 return 0;
1534}
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02001535EXPORT_SYMBOL(nand_read_page_raw);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001536
1537/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001538 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001539 * @mtd: mtd info structure
1540 * @chip: nand chip info structure
1541 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001542 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001543 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001544 *
1545 * We need a special oob layout and handling even when OOB isn't used.
1546 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001547static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001548 struct nand_chip *chip, uint8_t *buf,
1549 int oob_required, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001550{
1551 int eccsize = chip->ecc.size;
1552 int eccbytes = chip->ecc.bytes;
1553 uint8_t *oob = chip->oob_poi;
1554 int steps, size;
1555
1556 for (steps = chip->ecc.steps; steps > 0; steps--) {
1557 chip->read_buf(mtd, buf, eccsize);
1558 buf += eccsize;
1559
1560 if (chip->ecc.prepad) {
1561 chip->read_buf(mtd, oob, chip->ecc.prepad);
1562 oob += chip->ecc.prepad;
1563 }
1564
1565 chip->read_buf(mtd, oob, eccbytes);
1566 oob += eccbytes;
1567
1568 if (chip->ecc.postpad) {
1569 chip->read_buf(mtd, oob, chip->ecc.postpad);
1570 oob += chip->ecc.postpad;
1571 }
1572 }
1573
1574 size = mtd->oobsize - (oob - chip->oob_poi);
1575 if (size)
1576 chip->read_buf(mtd, oob, size);
1577
1578 return 0;
1579}
1580
1581/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001582 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001583 * @mtd: mtd info structure
1584 * @chip: nand chip info structure
1585 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001586 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001587 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001588 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001589static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001590 uint8_t *buf, int oob_required, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
Boris Brezillon846031d2016-02-03 20:11:00 +01001592 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001593 int eccbytes = chip->ecc.bytes;
1594 int eccsteps = chip->ecc.steps;
1595 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001596 uint8_t *ecc_calc = chip->buffers->ecccalc;
1597 uint8_t *ecc_code = chip->buffers->ecccode;
Mike Dunn3f91e942012-04-25 12:06:09 -07001598 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001599
Brian Norris1fbb9382012-05-02 10:14:55 -07001600 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001601
1602 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1603 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1604
Boris Brezillon846031d2016-02-03 20:11:00 +01001605 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1606 chip->ecc.total);
1607 if (ret)
1608 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001609
1610 eccsteps = chip->ecc.steps;
1611 p = buf;
1612
1613 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1614 int stat;
1615
1616 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001617 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001618 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001619 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001620 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001621 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1622 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001623 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001624 return max_bitflips;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001625}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627/**
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05301628 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001629 * @mtd: mtd info structure
1630 * @chip: nand chip info structure
1631 * @data_offs: offset of requested data within the page
1632 * @readlen: data length
1633 * @bufpoi: buffer to store read data
Huang Shijiee004deb2014-01-03 11:01:40 +08001634 * @page: page number to read
Alexey Korolev3d459552008-05-15 17:23:18 +01001635 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001636static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08001637 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi,
1638 int page)
Alexey Korolev3d459552008-05-15 17:23:18 +01001639{
Boris Brezillon846031d2016-02-03 20:11:00 +01001640 int start_step, end_step, num_steps, ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01001641 uint8_t *p;
1642 int data_col_addr, i, gaps = 0;
1643 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1644 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Boris Brezillon846031d2016-02-03 20:11:00 +01001645 int index, section = 0;
Mike Dunn3f91e942012-04-25 12:06:09 -07001646 unsigned int max_bitflips = 0;
Boris Brezillon846031d2016-02-03 20:11:00 +01001647 struct mtd_oob_region oobregion = { };
Alexey Korolev3d459552008-05-15 17:23:18 +01001648
Brian Norris7854d3f2011-06-23 14:12:08 -07001649 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001650 start_step = data_offs / chip->ecc.size;
1651 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1652 num_steps = end_step - start_step + 1;
Ron4a4163ca2014-03-16 04:01:07 +10301653 index = start_step * chip->ecc.bytes;
Alexey Korolev3d459552008-05-15 17:23:18 +01001654
Brian Norris8b6e50c2011-05-25 14:59:01 -07001655 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001656 datafrag_len = num_steps * chip->ecc.size;
1657 eccfrag_len = num_steps * chip->ecc.bytes;
1658
1659 data_col_addr = start_step * chip->ecc.size;
1660 /* If we read not a page aligned data */
1661 if (data_col_addr != 0)
1662 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1663
1664 p = bufpoi + data_col_addr;
1665 chip->read_buf(mtd, p, datafrag_len);
1666
Brian Norris8b6e50c2011-05-25 14:59:01 -07001667 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001668 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1669 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1670
Brian Norris8b6e50c2011-05-25 14:59:01 -07001671 /*
1672 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07001673 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07001674 */
Boris Brezillon846031d2016-02-03 20:11:00 +01001675 ret = mtd_ooblayout_find_eccregion(mtd, index, &section, &oobregion);
1676 if (ret)
1677 return ret;
1678
1679 if (oobregion.length < eccfrag_len)
1680 gaps = 1;
1681
Alexey Korolev3d459552008-05-15 17:23:18 +01001682 if (gaps) {
1683 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1684 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1685 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001686 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07001687 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07001688 * about buswidth alignment in read_buf.
1689 */
Boris Brezillon846031d2016-02-03 20:11:00 +01001690 aligned_pos = oobregion.offset & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001691 aligned_len = eccfrag_len;
Boris Brezillon846031d2016-02-03 20:11:00 +01001692 if (oobregion.offset & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001693 aligned_len++;
Boris Brezillon846031d2016-02-03 20:11:00 +01001694 if ((oobregion.offset + (num_steps * chip->ecc.bytes)) &
1695 (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001696 aligned_len++;
1697
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001698 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
Boris Brezillon846031d2016-02-03 20:11:00 +01001699 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001700 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1701 }
1702
Boris Brezillon846031d2016-02-03 20:11:00 +01001703 ret = mtd_ooblayout_get_eccbytes(mtd, chip->buffers->ecccode,
1704 chip->oob_poi, index, eccfrag_len);
1705 if (ret)
1706 return ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01001707
1708 p = bufpoi + data_col_addr;
1709 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1710 int stat;
1711
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001712 stat = chip->ecc.correct(mtd, p,
1713 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001714 if (stat == -EBADMSG &&
1715 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1716 /* check for empty pages with bitflips */
1717 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
1718 &chip->buffers->ecccode[i],
1719 chip->ecc.bytes,
1720 NULL, 0,
1721 chip->ecc.strength);
1722 }
1723
Mike Dunn3f91e942012-04-25 12:06:09 -07001724 if (stat < 0) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001725 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001726 } else {
Alexey Korolev3d459552008-05-15 17:23:18 +01001727 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001728 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1729 }
Alexey Korolev3d459552008-05-15 17:23:18 +01001730 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001731 return max_bitflips;
Alexey Korolev3d459552008-05-15 17:23:18 +01001732}
1733
1734/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001735 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001736 * @mtd: mtd info structure
1737 * @chip: nand chip info structure
1738 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001739 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001740 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001741 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001742 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001743 */
1744static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001745 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001746{
Boris Brezillon846031d2016-02-03 20:11:00 +01001747 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001748 int eccbytes = chip->ecc.bytes;
1749 int eccsteps = chip->ecc.steps;
1750 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001751 uint8_t *ecc_calc = chip->buffers->ecccalc;
1752 uint8_t *ecc_code = chip->buffers->ecccode;
Mike Dunn3f91e942012-04-25 12:06:09 -07001753 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001754
1755 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1756 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1757 chip->read_buf(mtd, p, eccsize);
1758 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1759 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001760 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001761
Boris Brezillon846031d2016-02-03 20:11:00 +01001762 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1763 chip->ecc.total);
1764 if (ret)
1765 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001766
1767 eccsteps = chip->ecc.steps;
1768 p = buf;
1769
1770 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1771 int stat;
1772
1773 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001774 if (stat == -EBADMSG &&
1775 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1776 /* check for empty pages with bitflips */
1777 stat = nand_check_erased_ecc_chunk(p, eccsize,
1778 &ecc_code[i], eccbytes,
1779 NULL, 0,
1780 chip->ecc.strength);
1781 }
1782
Mike Dunn3f91e942012-04-25 12:06:09 -07001783 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001784 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001785 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001786 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001787 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1788 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001789 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001790 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001791}
1792
1793/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001794 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07001795 * @mtd: mtd info structure
1796 * @chip: nand chip info structure
1797 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001798 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001799 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001800 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001801 * Hardware ECC for large page chips, require OOB to be read first. For this
1802 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1803 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1804 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1805 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001806 */
1807static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001808 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001809{
Boris Brezillon846031d2016-02-03 20:11:00 +01001810 int i, eccsize = chip->ecc.size, ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001811 int eccbytes = chip->ecc.bytes;
1812 int eccsteps = chip->ecc.steps;
1813 uint8_t *p = buf;
1814 uint8_t *ecc_code = chip->buffers->ecccode;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001815 uint8_t *ecc_calc = chip->buffers->ecccalc;
Mike Dunn3f91e942012-04-25 12:06:09 -07001816 unsigned int max_bitflips = 0;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001817
1818 /* Read the OOB area first */
1819 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1820 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1821 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1822
Boris Brezillon846031d2016-02-03 20:11:00 +01001823 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1824 chip->ecc.total);
1825 if (ret)
1826 return ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001827
1828 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1829 int stat;
1830
1831 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1832 chip->read_buf(mtd, p, eccsize);
1833 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1834
1835 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001836 if (stat == -EBADMSG &&
1837 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1838 /* check for empty pages with bitflips */
1839 stat = nand_check_erased_ecc_chunk(p, eccsize,
1840 &ecc_code[i], eccbytes,
1841 NULL, 0,
1842 chip->ecc.strength);
1843 }
1844
Mike Dunn3f91e942012-04-25 12:06:09 -07001845 if (stat < 0) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001846 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001847 } else {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001848 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001849 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1850 }
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001851 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001852 return max_bitflips;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001853}
1854
1855/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001856 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07001857 * @mtd: mtd info structure
1858 * @chip: nand chip info structure
1859 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001860 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001861 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001862 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001863 * The hw generator calculates the error syndrome automatically. Therefore we
1864 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001865 */
1866static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001867 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001868{
1869 int i, eccsize = chip->ecc.size;
1870 int eccbytes = chip->ecc.bytes;
1871 int eccsteps = chip->ecc.steps;
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001872 int eccpadbytes = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001873 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001874 uint8_t *oob = chip->oob_poi;
Mike Dunn3f91e942012-04-25 12:06:09 -07001875 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001876
1877 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1878 int stat;
1879
1880 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1881 chip->read_buf(mtd, p, eccsize);
1882
1883 if (chip->ecc.prepad) {
1884 chip->read_buf(mtd, oob, chip->ecc.prepad);
1885 oob += chip->ecc.prepad;
1886 }
1887
1888 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1889 chip->read_buf(mtd, oob, eccbytes);
1890 stat = chip->ecc.correct(mtd, p, oob, NULL);
1891
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001892 oob += eccbytes;
1893
1894 if (chip->ecc.postpad) {
1895 chip->read_buf(mtd, oob, chip->ecc.postpad);
1896 oob += chip->ecc.postpad;
1897 }
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001898
1899 if (stat == -EBADMSG &&
1900 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1901 /* check for empty pages with bitflips */
1902 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
1903 oob - eccpadbytes,
1904 eccpadbytes,
1905 NULL, 0,
1906 chip->ecc.strength);
1907 }
1908
1909 if (stat < 0) {
1910 mtd->ecc_stats.failed++;
1911 } else {
1912 mtd->ecc_stats.corrected += stat;
1913 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1914 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001915 }
1916
1917 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001918 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001919 if (i)
1920 chip->read_buf(mtd, oob, i);
1921
Mike Dunn3f91e942012-04-25 12:06:09 -07001922 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001923}
1924
1925/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001926 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Boris Brezillon846031d2016-02-03 20:11:00 +01001927 * @mtd: mtd info structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07001928 * @oob: oob destination address
1929 * @ops: oob ops structure
1930 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001931 */
Boris Brezillon846031d2016-02-03 20:11:00 +01001932static uint8_t *nand_transfer_oob(struct mtd_info *mtd, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001933 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001934{
Boris Brezillon846031d2016-02-03 20:11:00 +01001935 struct nand_chip *chip = mtd_to_nand(mtd);
1936 int ret;
1937
Florian Fainellif8ac0412010-09-07 13:23:43 +02001938 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001939
Brian Norris0612b9d2011-08-30 18:45:40 -07001940 case MTD_OPS_PLACE_OOB:
1941 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001942 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1943 return oob + len;
1944
Boris Brezillon846031d2016-02-03 20:11:00 +01001945 case MTD_OPS_AUTO_OOB:
1946 ret = mtd_ooblayout_get_databytes(mtd, oob, chip->oob_poi,
1947 ops->ooboffs, len);
1948 BUG_ON(ret);
1949 return oob + len;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001950
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001951 default:
1952 BUG();
1953 }
1954 return NULL;
1955}
1956
1957/**
Brian Norrisba84fb52014-01-03 15:13:33 -08001958 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
1959 * @mtd: MTD device structure
1960 * @retry_mode: the retry mode to use
1961 *
1962 * Some vendors supply a special command to shift the Vt threshold, to be used
1963 * when there are too many bitflips in a page (i.e., ECC error). After setting
1964 * a new threshold, the host should retry reading the page.
1965 */
1966static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
1967{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001968 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norrisba84fb52014-01-03 15:13:33 -08001969
1970 pr_debug("setting READ RETRY mode %d\n", retry_mode);
1971
1972 if (retry_mode >= chip->read_retries)
1973 return -EINVAL;
1974
1975 if (!chip->setup_read_retry)
1976 return -EOPNOTSUPP;
1977
1978 return chip->setup_read_retry(mtd, retry_mode);
1979}
1980
1981/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001982 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001983 * @mtd: MTD device structure
1984 * @from: offset to read from
1985 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001986 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001987 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001988 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001989static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1990 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001991{
Brian Norrise47f3db2012-05-02 10:14:56 -07001992 int chipnr, page, realpage, col, bytes, aligned, oob_required;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001993 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001994 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001995 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001996 uint32_t oobreadlen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01001997 uint32_t max_oobsize = mtd_oobavail(mtd, ops);
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001998
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001999 uint8_t *bufpoi, *oob, *buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04002000 int use_bufpoi;
Mike Dunnedbc45402012-04-25 12:06:11 -07002001 unsigned int max_bitflips = 0;
Brian Norrisba84fb52014-01-03 15:13:33 -08002002 int retry_mode = 0;
Brian Norrisb72f3df2013-12-03 11:04:14 -08002003 bool ecc_fail = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002005 chipnr = (int)(from >> chip->chip_shift);
2006 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002008 realpage = (int)(from >> chip->page_shift);
2009 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002011 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002013 buf = ops->datbuf;
2014 oob = ops->oobbuf;
Brian Norrise47f3db2012-05-02 10:14:56 -07002015 oob_required = oob ? 1 : 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002016
Florian Fainellif8ac0412010-09-07 13:23:43 +02002017 while (1) {
Brian Norrisb72f3df2013-12-03 11:04:14 -08002018 unsigned int ecc_failures = mtd->ecc_stats.failed;
2019
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002020 bytes = min(mtd->writesize - col, readlen);
2021 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002022
Kamal Dasu66507c72014-05-01 20:51:19 -04002023 if (!aligned)
2024 use_bufpoi = 1;
2025 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
Masahiro Yamada477544c2017-03-30 17:15:05 +09002026 use_bufpoi = !virt_addr_valid(buf) ||
2027 !IS_ALIGNED((unsigned long)buf,
2028 chip->buf_align);
Kamal Dasu66507c72014-05-01 20:51:19 -04002029 else
2030 use_bufpoi = 0;
2031
Brian Norris8b6e50c2011-05-25 14:59:01 -07002032 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002033 if (realpage != chip->pagebuf || oob) {
Kamal Dasu66507c72014-05-01 20:51:19 -04002034 bufpoi = use_bufpoi ? chip->buffers->databuf : buf;
2035
2036 if (use_bufpoi && aligned)
2037 pr_debug("%s: using read bounce buffer for buf@%p\n",
2038 __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Brian Norrisba84fb52014-01-03 15:13:33 -08002040read_retry:
Marc Gonzalez3371d662016-11-15 10:56:20 +01002041 if (nand_standard_page_accessors(&chip->ecc))
2042 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Mike Dunnedbc45402012-04-25 12:06:11 -07002044 /*
2045 * Now read the page into the buffer. Absent an error,
2046 * the read methods return max bitflips per ecc step.
2047 */
Brian Norris0612b9d2011-08-30 18:45:40 -07002048 if (unlikely(ops->mode == MTD_OPS_RAW))
Brian Norris1fbb9382012-05-02 10:14:55 -07002049 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07002050 oob_required,
2051 page);
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05002052 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
2053 !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002054 ret = chip->ecc.read_subpage(mtd, chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08002055 col, bytes, bufpoi,
2056 page);
David Woodhouse956e9442006-09-25 17:12:39 +01002057 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07002058 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07002059 oob_required, page);
Brian Norris6d77b9d2011-09-07 13:13:40 -07002060 if (ret < 0) {
Kamal Dasu66507c72014-05-01 20:51:19 -04002061 if (use_bufpoi)
Brian Norris6d77b9d2011-09-07 13:13:40 -07002062 /* Invalidate page cache */
2063 chip->pagebuf = -1;
David Woodhousee0c7d762006-05-13 18:07:53 +01002064 break;
Brian Norris6d77b9d2011-09-07 13:13:40 -07002065 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002066
2067 /* Transfer not aligned data */
Kamal Dasu66507c72014-05-01 20:51:19 -04002068 if (use_bufpoi) {
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05002069 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Brian Norrisb72f3df2013-12-03 11:04:14 -08002070 !(mtd->ecc_stats.failed - ecc_failures) &&
Mike Dunnedbc45402012-04-25 12:06:11 -07002071 (ops->mode != MTD_OPS_RAW)) {
Alexey Korolev3d459552008-05-15 17:23:18 +01002072 chip->pagebuf = realpage;
Mike Dunnedbc45402012-04-25 12:06:11 -07002073 chip->pagebuf_bitflips = ret;
2074 } else {
Brian Norris6d77b9d2011-09-07 13:13:40 -07002075 /* Invalidate page cache */
2076 chip->pagebuf = -1;
Mike Dunnedbc45402012-04-25 12:06:11 -07002077 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002078 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002080
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002081 if (unlikely(oob)) {
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02002082 int toread = min(oobreadlen, max_oobsize);
2083
2084 if (toread) {
Boris Brezillon846031d2016-02-03 20:11:00 +01002085 oob = nand_transfer_oob(mtd,
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02002086 oob, ops, toread);
2087 oobreadlen -= toread;
2088 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002089 }
Brian Norris5bc7c332013-03-13 09:51:31 -07002090
2091 if (chip->options & NAND_NEED_READRDY) {
2092 /* Apply delay or wait for ready/busy pin */
2093 if (!chip->dev_ready)
2094 udelay(chip->chip_delay);
2095 else
2096 nand_wait_ready(mtd);
2097 }
Brian Norrisb72f3df2013-12-03 11:04:14 -08002098
Brian Norrisba84fb52014-01-03 15:13:33 -08002099 if (mtd->ecc_stats.failed - ecc_failures) {
Brian Norris28fa65e2014-02-12 16:08:28 -08002100 if (retry_mode + 1 < chip->read_retries) {
Brian Norrisba84fb52014-01-03 15:13:33 -08002101 retry_mode++;
2102 ret = nand_setup_read_retry(mtd,
2103 retry_mode);
2104 if (ret < 0)
2105 break;
2106
2107 /* Reset failures; retry */
2108 mtd->ecc_stats.failed = ecc_failures;
2109 goto read_retry;
2110 } else {
2111 /* No more retry modes; real failure */
2112 ecc_fail = true;
2113 }
2114 }
2115
2116 buf += bytes;
Masahiro Yamada07604682017-03-30 15:45:47 +09002117 max_bitflips = max_t(unsigned int, max_bitflips, ret);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002118 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002119 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002120 buf += bytes;
Mike Dunnedbc45402012-04-25 12:06:11 -07002121 max_bitflips = max_t(unsigned int, max_bitflips,
2122 chip->pagebuf_bitflips);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002125 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002126
Brian Norrisba84fb52014-01-03 15:13:33 -08002127 /* Reset to retry mode 0 */
2128 if (retry_mode) {
2129 ret = nand_setup_read_retry(mtd, 0);
2130 if (ret < 0)
2131 break;
2132 retry_mode = 0;
2133 }
2134
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002135 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002136 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Brian Norris8b6e50c2011-05-25 14:59:01 -07002138 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 col = 0;
2140 /* Increment page address */
2141 realpage++;
2142
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002143 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 /* Check, if we cross a chip boundary */
2145 if (!page) {
2146 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002147 chip->select_chip(mtd, -1);
2148 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002151 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002153 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03002154 if (oob)
2155 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Mike Dunn3f91e942012-04-25 12:06:09 -07002157 if (ret < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002158 return ret;
2159
Brian Norrisb72f3df2013-12-03 11:04:14 -08002160 if (ecc_fail)
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02002161 return -EBADMSG;
2162
Mike Dunnedbc45402012-04-25 12:06:11 -07002163 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002164}
2165
2166/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002167 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07002168 * @mtd: MTD device structure
2169 * @from: offset to read from
2170 * @len: number of bytes to read
2171 * @retlen: pointer to variable to store the number of read bytes
2172 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002173 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002174 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002175 */
2176static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
2177 size_t *retlen, uint8_t *buf)
2178{
Brian Norris4a89ff82011-08-30 18:45:45 -07002179 struct mtd_oob_ops ops;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002180 int ret;
2181
Huang Shijie6a8214a2012-11-19 14:43:30 +08002182 nand_get_device(mtd, FL_READING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08002183 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002184 ops.len = len;
2185 ops.datbuf = buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002186 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002187 ret = nand_do_read_ops(mtd, from, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002188 *retlen = ops.retlen;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002189 nand_release_device(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002190 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
2192
2193/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002194 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002195 * @mtd: mtd info structure
2196 * @chip: nand chip info structure
2197 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002198 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002199int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002200{
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002201 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002202 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002203 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002204}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002205EXPORT_SYMBOL(nand_read_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002206
2207/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002208 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002209 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07002210 * @mtd: mtd info structure
2211 * @chip: nand chip info structure
2212 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002213 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002214int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2215 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002216{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002217 int length = mtd->oobsize;
2218 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2219 int eccsize = chip->ecc.size;
Baruch Siach2ea69d22015-01-22 15:23:05 +02002220 uint8_t *bufpoi = chip->oob_poi;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002221 int i, toread, sndrnd = 0, pos;
2222
2223 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
2224 for (i = 0; i < chip->ecc.steps; i++) {
2225 if (sndrnd) {
2226 pos = eccsize + i * (eccsize + chunk);
2227 if (mtd->writesize > 512)
2228 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
2229 else
2230 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
2231 } else
2232 sndrnd = 1;
2233 toread = min_t(int, length, chunk);
2234 chip->read_buf(mtd, bufpoi, toread);
2235 bufpoi += toread;
2236 length -= toread;
2237 }
2238 if (length > 0)
2239 chip->read_buf(mtd, bufpoi, length);
2240
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002241 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002242}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002243EXPORT_SYMBOL(nand_read_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002244
2245/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002246 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002247 * @mtd: mtd info structure
2248 * @chip: nand chip info structure
2249 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002250 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002251int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002252{
2253 int status = 0;
2254 const uint8_t *buf = chip->oob_poi;
2255 int length = mtd->oobsize;
2256
2257 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
2258 chip->write_buf(mtd, buf, length);
2259 /* Send command to program the OOB data */
2260 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2261
2262 status = chip->waitfunc(mtd, chip);
2263
Savin Zlobec0d420f92006-06-21 11:51:20 +02002264 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002265}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002266EXPORT_SYMBOL(nand_write_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002267
2268/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002269 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002270 * with syndrome - only for large page flash
2271 * @mtd: mtd info structure
2272 * @chip: nand chip info structure
2273 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002274 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002275int nand_write_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2276 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002277{
2278 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2279 int eccsize = chip->ecc.size, length = mtd->oobsize;
2280 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
2281 const uint8_t *bufpoi = chip->oob_poi;
2282
2283 /*
2284 * data-ecc-data-ecc ... ecc-oob
2285 * or
2286 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
2287 */
2288 if (!chip->ecc.prepad && !chip->ecc.postpad) {
2289 pos = steps * (eccsize + chunk);
2290 steps = 0;
2291 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002292 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002293
2294 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
2295 for (i = 0; i < steps; i++) {
2296 if (sndcmd) {
2297 if (mtd->writesize <= 512) {
2298 uint32_t fill = 0xFFFFFFFF;
2299
2300 len = eccsize;
2301 while (len > 0) {
2302 int num = min_t(int, len, 4);
2303 chip->write_buf(mtd, (uint8_t *)&fill,
2304 num);
2305 len -= num;
2306 }
2307 } else {
2308 pos = eccsize + i * (eccsize + chunk);
2309 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
2310 }
2311 } else
2312 sndcmd = 1;
2313 len = min_t(int, length, chunk);
2314 chip->write_buf(mtd, bufpoi, len);
2315 bufpoi += len;
2316 length -= len;
2317 }
2318 if (length > 0)
2319 chip->write_buf(mtd, bufpoi, length);
2320
2321 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2322 status = chip->waitfunc(mtd, chip);
2323
2324 return status & NAND_STATUS_FAIL ? -EIO : 0;
2325}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002326EXPORT_SYMBOL(nand_write_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002327
2328/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002329 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002330 * @mtd: MTD device structure
2331 * @from: offset to read from
2332 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002334 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002336static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
2337 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338{
Brian Norrisc00a0992012-05-01 17:12:54 -07002339 int page, realpage, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002340 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris041e4572011-06-23 16:45:24 -07002341 struct mtd_ecc_stats stats;
Vitaly Wool70145682006-11-03 18:20:38 +03002342 int readlen = ops->ooblen;
2343 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002344 uint8_t *buf = ops->oobbuf;
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002345 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
Brian Norris289c0522011-07-19 10:06:09 -07002347 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302348 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Brian Norris041e4572011-06-23 16:45:24 -07002350 stats = mtd->ecc_stats;
2351
Boris BREZILLON29f10582016-03-07 10:46:52 +01002352 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02002353
2354 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002355 pr_debug("%s: attempt to start read outside oob\n",
2356 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002357 return -EINVAL;
2358 }
2359
2360 /* Do not allow reads past end of device */
2361 if (unlikely(from >= mtd->size ||
2362 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
2363 (from >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002364 pr_debug("%s: attempt to read beyond end of device\n",
2365 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002366 return -EINVAL;
2367 }
Vitaly Wool70145682006-11-03 18:20:38 +03002368
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002369 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002370 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002372 /* Shift to get page */
2373 realpage = (int)(from >> chip->page_shift);
2374 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
Florian Fainellif8ac0412010-09-07 13:23:43 +02002376 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002377 if (ops->mode == MTD_OPS_RAW)
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002378 ret = chip->ecc.read_oob_raw(mtd, chip, page);
Brian Norrisc46f6482011-08-30 18:45:38 -07002379 else
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002380 ret = chip->ecc.read_oob(mtd, chip, page);
2381
2382 if (ret < 0)
2383 break;
Vitaly Wool70145682006-11-03 18:20:38 +03002384
2385 len = min(len, readlen);
Boris Brezillon846031d2016-02-03 20:11:00 +01002386 buf = nand_transfer_oob(mtd, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002387
Brian Norris5bc7c332013-03-13 09:51:31 -07002388 if (chip->options & NAND_NEED_READRDY) {
2389 /* Apply delay or wait for ready/busy pin */
2390 if (!chip->dev_ready)
2391 udelay(chip->chip_delay);
2392 else
2393 nand_wait_ready(mtd);
2394 }
2395
Vitaly Wool70145682006-11-03 18:20:38 +03002396 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02002397 if (!readlen)
2398 break;
2399
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002400 /* Increment page address */
2401 realpage++;
2402
2403 page = realpage & chip->pagemask;
2404 /* Check, if we cross a chip boundary */
2405 if (!page) {
2406 chipnr++;
2407 chip->select_chip(mtd, -1);
2408 chip->select_chip(mtd, chipnr);
2409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002411 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002413 ops->oobretlen = ops->ooblen - readlen;
2414
2415 if (ret < 0)
2416 return ret;
Brian Norris041e4572011-06-23 16:45:24 -07002417
2418 if (mtd->ecc_stats.failed - stats.failed)
2419 return -EBADMSG;
2420
2421 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422}
2423
2424/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002425 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002426 * @mtd: MTD device structure
2427 * @from: offset to read from
2428 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002430 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002432static int nand_read_oob(struct mtd_info *mtd, loff_t from,
2433 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434{
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07002435 int ret;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002436
2437 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
2439 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002440 if (ops->datbuf && (from + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002441 pr_debug("%s: attempt to read beyond end of device\n",
2442 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return -EINVAL;
2444 }
2445
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07002446 if (ops->mode != MTD_OPS_PLACE_OOB &&
2447 ops->mode != MTD_OPS_AUTO_OOB &&
2448 ops->mode != MTD_OPS_RAW)
2449 return -ENOTSUPP;
2450
Huang Shijie6a8214a2012-11-19 14:43:30 +08002451 nand_get_device(mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002453 if (!ops->datbuf)
2454 ret = nand_do_read_oob(mtd, from, ops);
2455 else
2456 ret = nand_do_read_ops(mtd, from, ops);
2457
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002459 return ret;
2460}
2461
2462
2463/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002464 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002465 * @mtd: mtd info structure
2466 * @chip: nand chip info structure
2467 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002468 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002469 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002470 *
Brian Norris7854d3f2011-06-23 14:12:08 -07002471 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002472 */
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02002473int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
2474 const uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002475{
2476 chip->write_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07002477 if (oob_required)
2478 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002479
2480 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481}
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02002482EXPORT_SYMBOL(nand_write_page_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002484/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002485 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002486 * @mtd: mtd info structure
2487 * @chip: nand chip info structure
2488 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002489 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002490 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002491 *
2492 * We need a special oob layout and handling even when ECC isn't checked.
2493 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002494static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002495 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002496 const uint8_t *buf, int oob_required,
2497 int page)
David Brownell52ff49d2009-03-04 12:01:36 -08002498{
2499 int eccsize = chip->ecc.size;
2500 int eccbytes = chip->ecc.bytes;
2501 uint8_t *oob = chip->oob_poi;
2502 int steps, size;
2503
2504 for (steps = chip->ecc.steps; steps > 0; steps--) {
2505 chip->write_buf(mtd, buf, eccsize);
2506 buf += eccsize;
2507
2508 if (chip->ecc.prepad) {
2509 chip->write_buf(mtd, oob, chip->ecc.prepad);
2510 oob += chip->ecc.prepad;
2511 }
2512
Boris BREZILLON60c3bc12014-02-01 19:10:28 +01002513 chip->write_buf(mtd, oob, eccbytes);
David Brownell52ff49d2009-03-04 12:01:36 -08002514 oob += eccbytes;
2515
2516 if (chip->ecc.postpad) {
2517 chip->write_buf(mtd, oob, chip->ecc.postpad);
2518 oob += chip->ecc.postpad;
2519 }
2520 }
2521
2522 size = mtd->oobsize - (oob - chip->oob_poi);
2523 if (size)
2524 chip->write_buf(mtd, oob, size);
Josh Wufdbad98d2012-06-25 18:07:45 +08002525
2526 return 0;
David Brownell52ff49d2009-03-04 12:01:36 -08002527}
2528/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002529 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002530 * @mtd: mtd info structure
2531 * @chip: nand chip info structure
2532 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002533 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002534 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002535 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002536static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002537 const uint8_t *buf, int oob_required,
2538 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002539{
Boris Brezillon846031d2016-02-03 20:11:00 +01002540 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002541 int eccbytes = chip->ecc.bytes;
2542 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002543 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002544 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002545
Brian Norris7854d3f2011-06-23 14:12:08 -07002546 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002547 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
2548 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002549
Boris Brezillon846031d2016-02-03 20:11:00 +01002550 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2551 chip->ecc.total);
2552 if (ret)
2553 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002554
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002555 return chip->ecc.write_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002556}
2557
2558/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002559 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002560 * @mtd: mtd info structure
2561 * @chip: nand chip info structure
2562 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002563 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002564 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002565 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002566static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002567 const uint8_t *buf, int oob_required,
2568 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002569{
Boris Brezillon846031d2016-02-03 20:11:00 +01002570 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002571 int eccbytes = chip->ecc.bytes;
2572 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002573 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002574 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002575
2576 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2577 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01002578 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002579 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2580 }
2581
Boris Brezillon846031d2016-02-03 20:11:00 +01002582 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2583 chip->ecc.total);
2584 if (ret)
2585 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002586
2587 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002588
2589 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002590}
2591
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302592
2593/**
Brian Norris73c8aaf2015-02-28 02:04:18 -08002594 * nand_write_subpage_hwecc - [REPLACEABLE] hardware ECC based subpage write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302595 * @mtd: mtd info structure
2596 * @chip: nand chip info structure
Brian Norrisd6a950802013-08-08 17:16:36 -07002597 * @offset: column address of subpage within the page
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302598 * @data_len: data length
Brian Norrisd6a950802013-08-08 17:16:36 -07002599 * @buf: data buffer
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302600 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002601 * @page: page number to write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302602 */
2603static int nand_write_subpage_hwecc(struct mtd_info *mtd,
2604 struct nand_chip *chip, uint32_t offset,
Brian Norrisd6a950802013-08-08 17:16:36 -07002605 uint32_t data_len, const uint8_t *buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002606 int oob_required, int page)
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302607{
2608 uint8_t *oob_buf = chip->oob_poi;
2609 uint8_t *ecc_calc = chip->buffers->ecccalc;
2610 int ecc_size = chip->ecc.size;
2611 int ecc_bytes = chip->ecc.bytes;
2612 int ecc_steps = chip->ecc.steps;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302613 uint32_t start_step = offset / ecc_size;
2614 uint32_t end_step = (offset + data_len - 1) / ecc_size;
2615 int oob_bytes = mtd->oobsize / ecc_steps;
Boris Brezillon846031d2016-02-03 20:11:00 +01002616 int step, ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302617
2618 for (step = 0; step < ecc_steps; step++) {
2619 /* configure controller for WRITE access */
2620 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2621
2622 /* write data (untouched subpages already masked by 0xFF) */
Brian Norrisd6a950802013-08-08 17:16:36 -07002623 chip->write_buf(mtd, buf, ecc_size);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302624
2625 /* mask ECC of un-touched subpages by padding 0xFF */
2626 if ((step < start_step) || (step > end_step))
2627 memset(ecc_calc, 0xff, ecc_bytes);
2628 else
Brian Norrisd6a950802013-08-08 17:16:36 -07002629 chip->ecc.calculate(mtd, buf, ecc_calc);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302630
2631 /* mask OOB of un-touched subpages by padding 0xFF */
2632 /* if oob_required, preserve OOB metadata of written subpage */
2633 if (!oob_required || (step < start_step) || (step > end_step))
2634 memset(oob_buf, 0xff, oob_bytes);
2635
Brian Norrisd6a950802013-08-08 17:16:36 -07002636 buf += ecc_size;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302637 ecc_calc += ecc_bytes;
2638 oob_buf += oob_bytes;
2639 }
2640
2641 /* copy calculated ECC for whole page to chip->buffer->oob */
2642 /* this include masked-value(0xFF) for unwritten subpages */
2643 ecc_calc = chip->buffers->ecccalc;
Boris Brezillon846031d2016-02-03 20:11:00 +01002644 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2645 chip->ecc.total);
2646 if (ret)
2647 return ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302648
2649 /* write OOB buffer to NAND device */
2650 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2651
2652 return 0;
2653}
2654
2655
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002656/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002657 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07002658 * @mtd: mtd info structure
2659 * @chip: nand chip info structure
2660 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002661 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002662 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002663 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002664 * The hw generator calculates the error syndrome automatically. Therefore we
2665 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002666 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002667static int nand_write_page_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07002668 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002669 const uint8_t *buf, int oob_required,
2670 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002671{
2672 int i, eccsize = chip->ecc.size;
2673 int eccbytes = chip->ecc.bytes;
2674 int eccsteps = chip->ecc.steps;
2675 const uint8_t *p = buf;
2676 uint8_t *oob = chip->oob_poi;
2677
2678 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2679
2680 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2681 chip->write_buf(mtd, p, eccsize);
2682
2683 if (chip->ecc.prepad) {
2684 chip->write_buf(mtd, oob, chip->ecc.prepad);
2685 oob += chip->ecc.prepad;
2686 }
2687
2688 chip->ecc.calculate(mtd, p, oob);
2689 chip->write_buf(mtd, oob, eccbytes);
2690 oob += eccbytes;
2691
2692 if (chip->ecc.postpad) {
2693 chip->write_buf(mtd, oob, chip->ecc.postpad);
2694 oob += chip->ecc.postpad;
2695 }
2696 }
2697
2698 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002699 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002700 if (i)
2701 chip->write_buf(mtd, oob, i);
Josh Wufdbad98d2012-06-25 18:07:45 +08002702
2703 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002704}
2705
2706/**
Boris Brezillonf107d7a2017-03-16 09:02:42 +01002707 * nand_write_page - write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002708 * @mtd: MTD device structure
2709 * @chip: NAND chip descriptor
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302710 * @offset: address offset within the page
2711 * @data_len: length of actual data to be written
Brian Norris8b6e50c2011-05-25 14:59:01 -07002712 * @buf: the data to write
Brian Norris1fbb9382012-05-02 10:14:55 -07002713 * @oob_required: must write chip->oob_poi to OOB
Brian Norris8b6e50c2011-05-25 14:59:01 -07002714 * @page: page number to write
2715 * @cached: cached programming
2716 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002717 */
2718static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302719 uint32_t offset, int data_len, const uint8_t *buf,
2720 int oob_required, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002721{
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302722 int status, subpage;
2723
2724 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2725 chip->ecc.write_subpage)
2726 subpage = offset || (data_len < mtd->writesize);
2727 else
2728 subpage = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002729
Marc Gonzalez3371d662016-11-15 10:56:20 +01002730 if (nand_standard_page_accessors(&chip->ecc))
2731 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002732
David Woodhouse956e9442006-09-25 17:12:39 +01002733 if (unlikely(raw))
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302734 status = chip->ecc.write_page_raw(mtd, chip, buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002735 oob_required, page);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302736 else if (subpage)
2737 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002738 buf, oob_required, page);
David Woodhouse956e9442006-09-25 17:12:39 +01002739 else
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002740 status = chip->ecc.write_page(mtd, chip, buf, oob_required,
2741 page);
Josh Wufdbad98d2012-06-25 18:07:45 +08002742
2743 if (status < 0)
2744 return status;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002745
2746 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002747 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002748 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002749 */
2750 cached = 0;
2751
Artem Bityutskiy3239a6c2013-03-04 14:56:18 +02002752 if (!cached || !NAND_HAS_CACHEPROG(chip)) {
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002753
Marc Gonzalez3371d662016-11-15 10:56:20 +01002754 if (nand_standard_page_accessors(&chip->ecc))
2755 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002756 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002757 /*
2758 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002759 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002760 */
2761 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2762 status = chip->errstat(mtd, chip, FL_WRITING, status,
2763 page);
2764
2765 if (status & NAND_STATUS_FAIL)
2766 return -EIO;
2767 } else {
2768 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002769 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002770 }
2771
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002772 return 0;
2773}
2774
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002775/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002776 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002777 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002778 * @oob: oob data buffer
2779 * @len: oob data write length
2780 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002781 */
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002782static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2783 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002784{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002785 struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon846031d2016-02-03 20:11:00 +01002786 int ret;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002787
2788 /*
2789 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2790 * data from a previous OOB read.
2791 */
2792 memset(chip->oob_poi, 0xff, mtd->oobsize);
2793
Florian Fainellif8ac0412010-09-07 13:23:43 +02002794 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002795
Brian Norris0612b9d2011-08-30 18:45:40 -07002796 case MTD_OPS_PLACE_OOB:
2797 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002798 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2799 return oob + len;
2800
Boris Brezillon846031d2016-02-03 20:11:00 +01002801 case MTD_OPS_AUTO_OOB:
2802 ret = mtd_ooblayout_set_databytes(mtd, oob, chip->oob_poi,
2803 ops->ooboffs, len);
2804 BUG_ON(ret);
2805 return oob + len;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002806
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002807 default:
2808 BUG();
2809 }
2810 return NULL;
2811}
2812
Florian Fainellif8ac0412010-09-07 13:23:43 +02002813#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002814
2815/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002816 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002817 * @mtd: MTD device structure
2818 * @to: offset to write to
2819 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002820 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002821 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002822 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002823static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2824 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002825{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002826 int chipnr, realpage, page, blockmask, column;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002827 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002828 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002829
2830 uint32_t oobwritelen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01002831 uint32_t oobmaxlen = mtd_oobavail(mtd, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002832
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002833 uint8_t *oob = ops->oobbuf;
2834 uint8_t *buf = ops->datbuf;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302835 int ret;
Brian Norrise47f3db2012-05-02 10:14:56 -07002836 int oob_required = oob ? 1 : 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002837
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002838 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002839 if (!writelen)
2840 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002841
Brian Norris8b6e50c2011-05-25 14:59:01 -07002842 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002843 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002844 pr_notice("%s: attempt to write non page aligned data\n",
2845 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002846 return -EINVAL;
2847 }
2848
Thomas Gleixner29072b92006-09-28 15:38:36 +02002849 column = to & (mtd->writesize - 1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002850
Thomas Gleixner6a930962006-06-28 00:11:45 +02002851 chipnr = (int)(to >> chip->chip_shift);
2852 chip->select_chip(mtd, chipnr);
2853
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002854 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002855 if (nand_check_wp(mtd)) {
2856 ret = -EIO;
2857 goto err_out;
2858 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002859
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002860 realpage = (int)(to >> chip->page_shift);
2861 page = realpage & chip->pagemask;
2862 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2863
2864 /* Invalidate the page cache, when we write to the cached page */
Brian Norris537ab1b2014-07-21 19:08:03 -07002865 if (to <= ((loff_t)chip->pagebuf << chip->page_shift) &&
2866 ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002867 chip->pagebuf = -1;
2868
Maxim Levitsky782ce792010-02-22 20:39:36 +02002869 /* Don't allow multipage oob writes with offset */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002870 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
2871 ret = -EINVAL;
2872 goto err_out;
2873 }
Maxim Levitsky782ce792010-02-22 20:39:36 +02002874
Florian Fainellif8ac0412010-09-07 13:23:43 +02002875 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002876 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002877 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002878 uint8_t *wbuf = buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04002879 int use_bufpoi;
Hector Palacios144f4c92016-07-18 10:39:18 +02002880 int part_pagewr = (column || writelen < mtd->writesize);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002881
Kamal Dasu66507c72014-05-01 20:51:19 -04002882 if (part_pagewr)
2883 use_bufpoi = 1;
2884 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
Masahiro Yamada477544c2017-03-30 17:15:05 +09002885 use_bufpoi = !virt_addr_valid(buf) ||
2886 !IS_ALIGNED((unsigned long)buf,
2887 chip->buf_align);
Kamal Dasu66507c72014-05-01 20:51:19 -04002888 else
2889 use_bufpoi = 0;
2890
2891 /* Partial page write?, or need to use bounce buffer */
2892 if (use_bufpoi) {
2893 pr_debug("%s: using write bounce buffer for buf@%p\n",
2894 __func__, buf);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002895 cached = 0;
Kamal Dasu66507c72014-05-01 20:51:19 -04002896 if (part_pagewr)
2897 bytes = min_t(int, bytes - column, writelen);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002898 chip->pagebuf = -1;
2899 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2900 memcpy(&chip->buffers->databuf[column], buf, bytes);
2901 wbuf = chip->buffers->databuf;
2902 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002903
Maxim Levitsky782ce792010-02-22 20:39:36 +02002904 if (unlikely(oob)) {
2905 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002906 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002907 oobwritelen -= len;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002908 } else {
2909 /* We still need to erase leftover OOB data */
2910 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002911 }
Boris Brezillonf107d7a2017-03-16 09:02:42 +01002912
2913 ret = nand_write_page(mtd, chip, column, bytes, wbuf,
2914 oob_required, page, cached,
2915 (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002916 if (ret)
2917 break;
2918
2919 writelen -= bytes;
2920 if (!writelen)
2921 break;
2922
Thomas Gleixner29072b92006-09-28 15:38:36 +02002923 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002924 buf += bytes;
2925 realpage++;
2926
2927 page = realpage & chip->pagemask;
2928 /* Check, if we cross a chip boundary */
2929 if (!page) {
2930 chipnr++;
2931 chip->select_chip(mtd, -1);
2932 chip->select_chip(mtd, chipnr);
2933 }
2934 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002935
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002936 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002937 if (unlikely(oob))
2938 ops->oobretlen = ops->ooblen;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002939
2940err_out:
2941 chip->select_chip(mtd, -1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002942 return ret;
2943}
2944
2945/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002946 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002947 * @mtd: MTD device structure
2948 * @to: offset to write to
2949 * @len: number of bytes to write
2950 * @retlen: pointer to variable to store the number of written bytes
2951 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002952 *
2953 * NAND write with ECC. Used when performing writes in interrupt context, this
2954 * may for example be called by mtdoops when writing an oops while in panic.
2955 */
2956static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2957 size_t *retlen, const uint8_t *buf)
2958{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002959 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris4a89ff82011-08-30 18:45:45 -07002960 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002961 int ret;
2962
Brian Norris8b6e50c2011-05-25 14:59:01 -07002963 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002964 panic_nand_wait(mtd, chip, 400);
2965
Brian Norris8b6e50c2011-05-25 14:59:01 -07002966 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002967 panic_nand_get_device(chip, mtd, FL_WRITING);
2968
Brian Norris0ec56dc2015-02-28 02:02:30 -08002969 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002970 ops.len = len;
2971 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002972 ops.mode = MTD_OPS_PLACE_OOB;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002973
Brian Norris4a89ff82011-08-30 18:45:45 -07002974 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002975
Brian Norris4a89ff82011-08-30 18:45:45 -07002976 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002977 return ret;
2978}
2979
2980/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002981 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002982 * @mtd: MTD device structure
2983 * @to: offset to write to
2984 * @len: number of bytes to write
2985 * @retlen: pointer to variable to store the number of written bytes
2986 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002988 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002990static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002991 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992{
Brian Norris4a89ff82011-08-30 18:45:45 -07002993 struct mtd_oob_ops ops;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002994 int ret;
2995
Huang Shijie6a8214a2012-11-19 14:43:30 +08002996 nand_get_device(mtd, FL_WRITING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08002997 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002998 ops.len = len;
2999 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08003000 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07003001 ret = nand_do_write_ops(mtd, to, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07003002 *retlen = ops.retlen;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003003 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003004 return ret;
3005}
3006
3007/**
3008 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07003009 * @mtd: MTD device structure
3010 * @to: offset to write to
3011 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003012 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003013 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003014 */
3015static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
3016 struct mtd_oob_ops *ops)
3017{
Adrian Hunter03736152007-01-31 17:58:29 +02003018 int chipnr, page, status, len;
Boris BREZILLON862eba52015-12-01 12:03:03 +01003019 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
Brian Norris289c0522011-07-19 10:06:09 -07003021 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05303022 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
Boris BREZILLON29f10582016-03-07 10:46:52 +01003024 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02003025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02003027 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07003028 pr_debug("%s: attempt to write past end of page\n",
3029 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 return -EINVAL;
3031 }
3032
Adrian Hunter03736152007-01-31 17:58:29 +02003033 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07003034 pr_debug("%s: attempt to start write outside oob\n",
3035 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02003036 return -EINVAL;
3037 }
3038
Jason Liu775adc3d42011-02-25 13:06:18 +08003039 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02003040 if (unlikely(to >= mtd->size ||
3041 ops->ooboffs + ops->ooblen >
3042 ((mtd->size >> chip->page_shift) -
3043 (to >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07003044 pr_debug("%s: attempt to write beyond end of device\n",
3045 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02003046 return -EINVAL;
3047 }
3048
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02003049 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02003050
3051 /*
3052 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
3053 * of my DiskOnChip 2000 test units) will clear the whole data page too
3054 * if we don't do this. I have no clue why, but I seem to have 'fixed'
3055 * it in the doc2000 driver in August 1999. dwmw2.
3056 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02003057 nand_reset(chip, chipnr);
3058
3059 chip->select_chip(mtd, chipnr);
3060
3061 /* Shift to get page */
3062 page = (int)(to >> chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
3064 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08003065 if (nand_check_wp(mtd)) {
3066 chip->select_chip(mtd, -1);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003067 return -EROFS;
Huang Shijieb0bb6902012-11-19 14:43:29 +08003068 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003071 if (page == chip->pagebuf)
3072 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02003074 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07003075
Brian Norris0612b9d2011-08-30 18:45:40 -07003076 if (ops->mode == MTD_OPS_RAW)
Brian Norris9ce244b2011-08-30 18:45:37 -07003077 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
3078 else
3079 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003080
Huang Shijieb0bb6902012-11-19 14:43:29 +08003081 chip->select_chip(mtd, -1);
3082
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003083 if (status)
3084 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Vitaly Wool70145682006-11-03 18:20:38 +03003086 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003088 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003089}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003091/**
3092 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07003093 * @mtd: MTD device structure
3094 * @to: offset to write to
3095 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003096 */
3097static int nand_write_oob(struct mtd_info *mtd, loff_t to,
3098 struct mtd_oob_ops *ops)
3099{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003100 int ret = -ENOTSUPP;
3101
3102 ops->retlen = 0;
3103
3104 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03003105 if (ops->datbuf && (to + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07003106 pr_debug("%s: attempt to write beyond end of device\n",
3107 __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003108 return -EINVAL;
3109 }
3110
Huang Shijie6a8214a2012-11-19 14:43:30 +08003111 nand_get_device(mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003112
Florian Fainellif8ac0412010-09-07 13:23:43 +02003113 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07003114 case MTD_OPS_PLACE_OOB:
3115 case MTD_OPS_AUTO_OOB:
3116 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003117 break;
3118
3119 default:
3120 goto out;
3121 }
3122
3123 if (!ops->datbuf)
3124 ret = nand_do_write_oob(mtd, to, ops);
3125 else
3126 ret = nand_do_write_ops(mtd, to, ops);
3127
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003128out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003129 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 return ret;
3131}
3132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133/**
Brian Norris49c50b92014-05-06 16:02:19 -07003134 * single_erase - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003135 * @mtd: MTD device structure
3136 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 *
Brian Norris49c50b92014-05-06 16:02:19 -07003138 * Standard erase command for NAND chips. Returns NAND status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 */
Brian Norris49c50b92014-05-06 16:02:19 -07003140static int single_erase(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003142 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003144 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
3145 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Brian Norris49c50b92014-05-06 16:02:19 -07003146
3147 return chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148}
3149
3150/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003152 * @mtd: MTD device structure
3153 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003155 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003157static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158{
David Woodhousee0c7d762006-05-13 18:07:53 +01003159 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003161
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003163 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003164 * @mtd: MTD device structure
3165 * @instr: erase instruction
3166 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003168 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003170int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
3171 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172{
Adrian Hunter69423d92008-12-10 13:37:21 +00003173 int page, status, pages_per_block, ret, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01003174 struct nand_chip *chip = mtd_to_nand(mtd);
Adrian Hunter69423d92008-12-10 13:37:21 +00003175 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Brian Norris289c0522011-07-19 10:06:09 -07003177 pr_debug("%s: start = 0x%012llx, len = %llu\n",
3178 __func__, (unsigned long long)instr->addr,
3179 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05303181 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08003185 nand_get_device(mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
3187 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003188 page = (int)(instr->addr >> chip->page_shift);
3189 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
3191 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003192 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
3194 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003195 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 /* Check, if it is write protected */
3198 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07003199 pr_debug("%s: device is write protected!\n",
3200 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 instr->state = MTD_ERASE_FAILED;
3202 goto erase_exit;
3203 }
3204
3205 /* Loop through the pages */
3206 len = instr->len;
3207
3208 instr->state = MTD_ERASING;
3209
3210 while (len) {
Wolfram Sang12183a22011-12-21 23:01:20 +01003211 /* Check if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003212 if (nand_block_checkbad(mtd, ((loff_t) page) <<
Archit Taneja9f3e0422016-02-03 14:29:49 +05303213 chip->page_shift, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07003214 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
3215 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 instr->state = MTD_ERASE_FAILED;
3217 goto erase_exit;
3218 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003219
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003220 /*
3221 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07003222 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003223 */
3224 if (page <= chip->pagebuf && chip->pagebuf <
3225 (page + pages_per_block))
3226 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
Brian Norris49c50b92014-05-06 16:02:19 -07003228 status = chip->erase(mtd, page & chip->pagemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003230 /*
3231 * See if operation failed and additional status checks are
3232 * available
3233 */
3234 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
3235 status = chip->errstat(mtd, chip, FL_ERASING,
3236 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00003237
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00003239 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07003240 pr_debug("%s: failed erase, page 0x%08x\n",
3241 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00003243 instr->fail_addr =
3244 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 goto erase_exit;
3246 }
David A. Marlin30f464b2005-01-17 18:35:25 +00003247
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 /* Increment page address and decrement length */
Dan Carpenterdaae74c2013-08-09 12:49:05 +03003249 len -= (1ULL << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 page += pages_per_block;
3251
3252 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003253 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003255 chip->select_chip(mtd, -1);
3256 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 }
3258 }
3259 instr->state = MTD_ERASE_DONE;
3260
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003261erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
3263 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
3265 /* Deselect and wake up anyone waiting on the device */
Huang Shijieb0bb6902012-11-19 14:43:29 +08003266 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 nand_release_device(mtd);
3268
David Woodhouse49defc02007-10-06 15:01:59 -04003269 /* Do call back function */
3270 if (!ret)
3271 mtd_erase_callback(instr);
3272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 /* Return more or less happy */
3274 return ret;
3275}
3276
3277/**
3278 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07003279 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003281 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003283static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284{
Brian Norris289c0522011-07-19 10:06:09 -07003285 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286
3287 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08003288 nand_get_device(mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01003290 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291}
3292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003294 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003295 * @mtd: MTD device structure
3296 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003298static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299{
Archit Taneja9f3e0422016-02-03 14:29:49 +05303300 struct nand_chip *chip = mtd_to_nand(mtd);
3301 int chipnr = (int)(offs >> chip->chip_shift);
3302 int ret;
3303
3304 /* Select the NAND device */
3305 nand_get_device(mtd, FL_READING);
3306 chip->select_chip(mtd, chipnr);
3307
3308 ret = nand_block_checkbad(mtd, offs, 0);
3309
3310 chip->select_chip(mtd, -1);
3311 nand_release_device(mtd);
3312
3313 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314}
3315
3316/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003317 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003318 * @mtd: MTD device structure
3319 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003321static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 int ret;
3324
Florian Fainellif8ac0412010-09-07 13:23:43 +02003325 ret = nand_block_isbad(mtd, ofs);
3326 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07003327 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 if (ret > 0)
3329 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01003330 return ret;
3331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Brian Norris5a0edb22013-07-30 17:52:58 -07003333 return nand_block_markbad_lowlevel(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334}
3335
3336/**
Zach Brown56718422017-01-10 13:30:20 -06003337 * nand_max_bad_blocks - [MTD Interface] Max number of bad blocks for an mtd
3338 * @mtd: MTD device structure
3339 * @ofs: offset relative to mtd start
3340 * @len: length of mtd
3341 */
3342static int nand_max_bad_blocks(struct mtd_info *mtd, loff_t ofs, size_t len)
3343{
3344 struct nand_chip *chip = mtd_to_nand(mtd);
3345 u32 part_start_block;
3346 u32 part_end_block;
3347 u32 part_start_die;
3348 u32 part_end_die;
3349
3350 /*
3351 * max_bb_per_die and blocks_per_die used to determine
3352 * the maximum bad block count.
3353 */
3354 if (!chip->max_bb_per_die || !chip->blocks_per_die)
3355 return -ENOTSUPP;
3356
3357 /* Get the start and end of the partition in erase blocks. */
3358 part_start_block = mtd_div_by_eb(ofs, mtd);
3359 part_end_block = mtd_div_by_eb(len, mtd) + part_start_block - 1;
3360
3361 /* Get the start and end LUNs of the partition. */
3362 part_start_die = part_start_block / chip->blocks_per_die;
3363 part_end_die = part_end_block / chip->blocks_per_die;
3364
3365 /*
3366 * Look up the bad blocks per unit and multiply by the number of units
3367 * that the partition spans.
3368 */
3369 return chip->max_bb_per_die * (part_end_die - part_start_die + 1);
3370}
3371
3372/**
Huang Shijie7db03ec2012-09-13 14:57:52 +08003373 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
3374 * @mtd: MTD device structure
3375 * @chip: nand chip info structure
3376 * @addr: feature address.
3377 * @subfeature_param: the subfeature parameters, a four bytes array.
3378 */
3379static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
3380 int addr, uint8_t *subfeature_param)
3381{
3382 int status;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003383 int i;
Huang Shijie7db03ec2012-09-13 14:57:52 +08003384
David Mosbergerd914c932013-05-29 15:30:13 +03003385 if (!chip->onfi_version ||
3386 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3387 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003388 return -EINVAL;
3389
3390 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003391 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3392 chip->write_byte(mtd, subfeature_param[i]);
3393
Huang Shijie7db03ec2012-09-13 14:57:52 +08003394 status = chip->waitfunc(mtd, chip);
3395 if (status & NAND_STATUS_FAIL)
3396 return -EIO;
3397 return 0;
3398}
3399
3400/**
3401 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
3402 * @mtd: MTD device structure
3403 * @chip: nand chip info structure
3404 * @addr: feature address.
3405 * @subfeature_param: the subfeature parameters, a four bytes array.
3406 */
3407static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
3408 int addr, uint8_t *subfeature_param)
3409{
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003410 int i;
3411
David Mosbergerd914c932013-05-29 15:30:13 +03003412 if (!chip->onfi_version ||
3413 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3414 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003415 return -EINVAL;
3416
Huang Shijie7db03ec2012-09-13 14:57:52 +08003417 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003418 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3419 *subfeature_param++ = chip->read_byte(mtd);
Huang Shijie7db03ec2012-09-13 14:57:52 +08003420 return 0;
3421}
3422
3423/**
Boris Brezillon4a78cc62017-05-26 17:10:15 +02003424 * nand_onfi_get_set_features_notsupp - set/get features stub returning
3425 * -ENOTSUPP
3426 * @mtd: MTD device structure
3427 * @chip: nand chip info structure
3428 * @addr: feature address.
3429 * @subfeature_param: the subfeature parameters, a four bytes array.
3430 *
3431 * Should be used by NAND controller drivers that do not support the SET/GET
3432 * FEATURES operations.
3433 */
3434int nand_onfi_get_set_features_notsupp(struct mtd_info *mtd,
3435 struct nand_chip *chip, int addr,
3436 u8 *subfeature_param)
3437{
3438 return -ENOTSUPP;
3439}
3440EXPORT_SYMBOL(nand_onfi_get_set_features_notsupp);
3441
3442/**
Vitaly Wool962034f2005-09-15 14:58:53 +01003443 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003444 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003445 */
3446static int nand_suspend(struct mtd_info *mtd)
3447{
Huang Shijie6a8214a2012-11-19 14:43:30 +08003448 return nand_get_device(mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01003449}
3450
3451/**
3452 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003453 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003454 */
3455static void nand_resume(struct mtd_info *mtd)
3456{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003457 struct nand_chip *chip = mtd_to_nand(mtd);
Vitaly Wool962034f2005-09-15 14:58:53 +01003458
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003459 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01003460 nand_release_device(mtd);
3461 else
Brian Norrisd0370212011-07-19 10:06:08 -07003462 pr_err("%s called for a chip which is not in suspended state\n",
3463 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01003464}
3465
Scott Branden72ea4032014-11-20 11:18:05 -08003466/**
3467 * nand_shutdown - [MTD Interface] Finish the current NAND operation and
3468 * prevent further operations
3469 * @mtd: MTD device structure
3470 */
3471static void nand_shutdown(struct mtd_info *mtd)
3472{
Brian Norris9ca641b2015-11-09 16:37:28 -08003473 nand_get_device(mtd, FL_PM_SUSPENDED);
Scott Branden72ea4032014-11-20 11:18:05 -08003474}
3475
Brian Norris8b6e50c2011-05-25 14:59:01 -07003476/* Set default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003477static void nand_set_defaults(struct nand_chip *chip)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003478{
Boris Brezillon29a198a2016-05-24 20:17:48 +02003479 unsigned int busw = chip->options & NAND_BUSWIDTH_16;
3480
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003482 if (!chip->chip_delay)
3483 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
3485 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003486 if (chip->cmdfunc == NULL)
3487 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
3489 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003490 if (chip->waitfunc == NULL)
3491 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003493 if (!chip->select_chip)
3494 chip->select_chip = nand_select_chip;
Brian Norris68e80782013-07-18 01:17:02 -07003495
Huang Shijie4204ccc2013-08-16 10:10:07 +08003496 /* set for ONFI nand */
3497 if (!chip->onfi_set_features)
3498 chip->onfi_set_features = nand_onfi_set_features;
3499 if (!chip->onfi_get_features)
3500 chip->onfi_get_features = nand_onfi_get_features;
3501
Brian Norris68e80782013-07-18 01:17:02 -07003502 /* If called twice, pointers that depend on busw may need to be reset */
3503 if (!chip->read_byte || chip->read_byte == nand_read_byte)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003504 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
3505 if (!chip->read_word)
3506 chip->read_word = nand_read_word;
3507 if (!chip->block_bad)
3508 chip->block_bad = nand_block_bad;
3509 if (!chip->block_markbad)
3510 chip->block_markbad = nand_default_block_markbad;
Brian Norris68e80782013-07-18 01:17:02 -07003511 if (!chip->write_buf || chip->write_buf == nand_write_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003512 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003513 if (!chip->write_byte || chip->write_byte == nand_write_byte)
3514 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
Brian Norris68e80782013-07-18 01:17:02 -07003515 if (!chip->read_buf || chip->read_buf == nand_read_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003516 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003517 if (!chip->scan_bbt)
3518 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003519
3520 if (!chip->controller) {
3521 chip->controller = &chip->hwcontrol;
Marc Gonzalezd45bc582016-07-27 11:23:52 +02003522 nand_hw_control_init(chip->controller);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003523 }
3524
Masahiro Yamada477544c2017-03-30 17:15:05 +09003525 if (!chip->buf_align)
3526 chip->buf_align = 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003527}
3528
Brian Norris8b6e50c2011-05-25 14:59:01 -07003529/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003530static void sanitize_string(uint8_t *s, size_t len)
3531{
3532 ssize_t i;
3533
Brian Norris8b6e50c2011-05-25 14:59:01 -07003534 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003535 s[len - 1] = 0;
3536
Brian Norris8b6e50c2011-05-25 14:59:01 -07003537 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003538 for (i = 0; i < len - 1; i++) {
3539 if (s[i] < ' ' || s[i] > 127)
3540 s[i] = '?';
3541 }
3542
Brian Norris8b6e50c2011-05-25 14:59:01 -07003543 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003544 strim(s);
3545}
3546
3547static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
3548{
3549 int i;
3550 while (len--) {
3551 crc ^= *p++ << 8;
3552 for (i = 0; i < 8; i++)
3553 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
3554 }
3555
3556 return crc;
3557}
3558
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003559/* Parse the Extended Parameter Page. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003560static int nand_flash_detect_ext_param_page(struct nand_chip *chip,
3561 struct nand_onfi_params *p)
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003562{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003563 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003564 struct onfi_ext_param_page *ep;
3565 struct onfi_ext_section *s;
3566 struct onfi_ext_ecc_info *ecc;
3567 uint8_t *cursor;
3568 int ret = -EINVAL;
3569 int len;
3570 int i;
3571
3572 len = le16_to_cpu(p->ext_param_page_length) * 16;
3573 ep = kmalloc(len, GFP_KERNEL);
Brian Norris5cb13272013-09-16 17:59:20 -07003574 if (!ep)
3575 return -ENOMEM;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003576
3577 /* Send our own NAND_CMD_PARAM. */
3578 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3579
3580 /* Use the Change Read Column command to skip the ONFI param pages. */
3581 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
3582 sizeof(*p) * p->num_of_param_pages , -1);
3583
3584 /* Read out the Extended Parameter Page. */
3585 chip->read_buf(mtd, (uint8_t *)ep, len);
3586 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
3587 != le16_to_cpu(ep->crc))) {
3588 pr_debug("fail in the CRC.\n");
3589 goto ext_out;
3590 }
3591
3592 /*
3593 * Check the signature.
3594 * Do not strictly follow the ONFI spec, maybe changed in future.
3595 */
3596 if (strncmp(ep->sig, "EPPS", 4)) {
3597 pr_debug("The signature is invalid.\n");
3598 goto ext_out;
3599 }
3600
3601 /* find the ECC section. */
3602 cursor = (uint8_t *)(ep + 1);
3603 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
3604 s = ep->sections + i;
3605 if (s->type == ONFI_SECTION_TYPE_2)
3606 break;
3607 cursor += s->length * 16;
3608 }
3609 if (i == ONFI_EXT_SECTION_MAX) {
3610 pr_debug("We can not find the ECC section.\n");
3611 goto ext_out;
3612 }
3613
3614 /* get the info we want. */
3615 ecc = (struct onfi_ext_ecc_info *)cursor;
3616
Brian Norris4ae7d222013-09-16 18:20:21 -07003617 if (!ecc->codeword_size) {
3618 pr_debug("Invalid codeword size\n");
3619 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003620 }
3621
Brian Norris4ae7d222013-09-16 18:20:21 -07003622 chip->ecc_strength_ds = ecc->ecc_bits;
3623 chip->ecc_step_ds = 1 << ecc->codeword_size;
Brian Norris5cb13272013-09-16 17:59:20 -07003624 ret = 0;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003625
3626ext_out:
3627 kfree(ep);
3628 return ret;
3629}
3630
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003631/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003632 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003633 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003634static int nand_flash_detect_onfi(struct nand_chip *chip)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003635{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003636 struct mtd_info *mtd = nand_to_mtd(chip);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003637 struct nand_onfi_params *p = &chip->onfi_params;
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003638 int i, j;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003639 int val;
3640
Brian Norris7854d3f2011-06-23 14:12:08 -07003641 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003642 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
3643 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
3644 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
3645 return 0;
3646
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003647 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3648 for (i = 0; i < 3; i++) {
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003649 for (j = 0; j < sizeof(*p); j++)
3650 ((uint8_t *)p)[j] = chip->read_byte(mtd);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003651 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
3652 le16_to_cpu(p->crc)) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003653 break;
3654 }
3655 }
3656
Brian Norrisc7f23a72013-08-13 10:51:55 -07003657 if (i == 3) {
3658 pr_err("Could not find valid ONFI parameter page; aborting\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003659 return 0;
Brian Norrisc7f23a72013-08-13 10:51:55 -07003660 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003661
Brian Norris8b6e50c2011-05-25 14:59:01 -07003662 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003663 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003664 if (val & (1 << 5))
3665 chip->onfi_version = 23;
3666 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003667 chip->onfi_version = 22;
3668 else if (val & (1 << 3))
3669 chip->onfi_version = 21;
3670 else if (val & (1 << 2))
3671 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003672 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003673 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003674
3675 if (!chip->onfi_version) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003676 pr_info("unsupported ONFI version: %d\n", val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003677 return 0;
3678 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003679
3680 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3681 sanitize_string(p->model, sizeof(p->model));
3682 if (!mtd->name)
3683 mtd->name = p->model;
Brian Norris4355b702013-08-27 18:45:10 -07003684
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003685 mtd->writesize = le32_to_cpu(p->byte_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003686
3687 /*
3688 * pages_per_block and blocks_per_lun may not be a power-of-2 size
3689 * (don't ask me who thought of this...). MTD assumes that these
3690 * dimensions will be power-of-2, so just truncate the remaining area.
3691 */
3692 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3693 mtd->erasesize *= mtd->writesize;
3694
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003695 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003696
3697 /* See erasesize comment */
3698 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
Matthieu CASTET63795752012-03-19 15:35:25 +01003699 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
Huang Shijie13fbd172013-09-25 14:58:13 +08003700 chip->bits_per_cell = p->bits_per_cell;
Huang Shijiee2985fc2013-05-17 11:17:30 +08003701
Zach Brown34da5f52017-01-10 13:30:21 -06003702 chip->max_bb_per_die = le16_to_cpu(p->bb_per_lun);
3703 chip->blocks_per_die = le32_to_cpu(p->blocks_per_lun);
3704
Huang Shijiee2985fc2013-05-17 11:17:30 +08003705 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02003706 chip->options |= NAND_BUSWIDTH_16;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003707
Huang Shijie10c86ba2013-05-17 11:17:26 +08003708 if (p->ecc_bits != 0xff) {
3709 chip->ecc_strength_ds = p->ecc_bits;
3710 chip->ecc_step_ds = 512;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003711 } else if (chip->onfi_version >= 21 &&
3712 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
3713
3714 /*
3715 * The nand_flash_detect_ext_param_page() uses the
3716 * Change Read Column command which maybe not supported
3717 * by the chip->cmdfunc. So try to update the chip->cmdfunc
3718 * now. We do not replace user supplied command function.
3719 */
3720 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3721 chip->cmdfunc = nand_command_lp;
3722
3723 /* The Extended Parameter Page is supported since ONFI 2.1. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003724 if (nand_flash_detect_ext_param_page(chip, p))
Brian Norrisc7f23a72013-08-13 10:51:55 -07003725 pr_warn("Failed to detect ONFI extended param page\n");
3726 } else {
3727 pr_warn("Could not retrieve ONFI ECC requirements\n");
Huang Shijie10c86ba2013-05-17 11:17:26 +08003728 }
3729
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003730 return 1;
3731}
3732
3733/*
Huang Shijie91361812014-02-21 13:39:40 +08003734 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
3735 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003736static int nand_flash_detect_jedec(struct nand_chip *chip)
Huang Shijie91361812014-02-21 13:39:40 +08003737{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003738 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie91361812014-02-21 13:39:40 +08003739 struct nand_jedec_params *p = &chip->jedec_params;
3740 struct jedec_ecc_info *ecc;
3741 int val;
3742 int i, j;
3743
3744 /* Try JEDEC for unknown chip or LP */
3745 chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1);
3746 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' ||
3747 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' ||
3748 chip->read_byte(mtd) != 'C')
3749 return 0;
3750
3751 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1);
3752 for (i = 0; i < 3; i++) {
3753 for (j = 0; j < sizeof(*p); j++)
3754 ((uint8_t *)p)[j] = chip->read_byte(mtd);
3755
3756 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
3757 le16_to_cpu(p->crc))
3758 break;
3759 }
3760
3761 if (i == 3) {
3762 pr_err("Could not find valid JEDEC parameter page; aborting\n");
3763 return 0;
3764 }
3765
3766 /* Check version */
3767 val = le16_to_cpu(p->revision);
3768 if (val & (1 << 2))
3769 chip->jedec_version = 10;
3770 else if (val & (1 << 1))
3771 chip->jedec_version = 1; /* vendor specific version */
3772
3773 if (!chip->jedec_version) {
3774 pr_info("unsupported JEDEC version: %d\n", val);
3775 return 0;
3776 }
3777
3778 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3779 sanitize_string(p->model, sizeof(p->model));
3780 if (!mtd->name)
3781 mtd->name = p->model;
3782
3783 mtd->writesize = le32_to_cpu(p->byte_per_page);
3784
3785 /* Please reference to the comment for nand_flash_detect_onfi. */
3786 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3787 mtd->erasesize *= mtd->writesize;
3788
3789 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3790
3791 /* Please reference to the comment for nand_flash_detect_onfi. */
3792 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3793 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3794 chip->bits_per_cell = p->bits_per_cell;
3795
3796 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02003797 chip->options |= NAND_BUSWIDTH_16;
Huang Shijie91361812014-02-21 13:39:40 +08003798
3799 /* ECC info */
3800 ecc = &p->ecc_info[0];
3801
3802 if (ecc->codeword_size >= 9) {
3803 chip->ecc_strength_ds = ecc->ecc_bits;
3804 chip->ecc_step_ds = 1 << ecc->codeword_size;
3805 } else {
3806 pr_warn("Invalid codeword size\n");
3807 }
3808
3809 return 1;
3810}
3811
3812/*
Brian Norrise3b88bd2012-09-24 20:40:52 -07003813 * nand_id_has_period - Check if an ID string has a given wraparound period
3814 * @id_data: the ID string
3815 * @arrlen: the length of the @id_data array
3816 * @period: the period of repitition
3817 *
3818 * Check if an ID string is repeated within a given sequence of bytes at
3819 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Brian Norrisd4d4f1b2012-11-14 21:54:20 -08003820 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Brian Norrise3b88bd2012-09-24 20:40:52 -07003821 * if the repetition has a period of @period; otherwise, returns zero.
3822 */
3823static int nand_id_has_period(u8 *id_data, int arrlen, int period)
3824{
3825 int i, j;
3826 for (i = 0; i < period; i++)
3827 for (j = i + period; j < arrlen; j += period)
3828 if (id_data[i] != id_data[j])
3829 return 0;
3830 return 1;
3831}
3832
3833/*
3834 * nand_id_len - Get the length of an ID string returned by CMD_READID
3835 * @id_data: the ID string
3836 * @arrlen: the length of the @id_data array
3837
3838 * Returns the length of the ID string, according to known wraparound/trailing
3839 * zero patterns. If no pattern exists, returns the length of the array.
3840 */
3841static int nand_id_len(u8 *id_data, int arrlen)
3842{
3843 int last_nonzero, period;
3844
3845 /* Find last non-zero byte */
3846 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
3847 if (id_data[last_nonzero])
3848 break;
3849
3850 /* All zeros */
3851 if (last_nonzero < 0)
3852 return 0;
3853
3854 /* Calculate wraparound period */
3855 for (period = 1; period < arrlen; period++)
3856 if (nand_id_has_period(id_data, arrlen, period))
3857 break;
3858
3859 /* There's a repeated pattern */
3860 if (period < arrlen)
3861 return period;
3862
3863 /* There are trailing zeros */
3864 if (last_nonzero < arrlen - 1)
3865 return last_nonzero + 1;
3866
3867 /* No pattern detected */
3868 return arrlen;
3869}
3870
Huang Shijie7db906b2013-09-25 14:58:11 +08003871/* Extract the bits of per cell from the 3rd byte of the extended ID */
3872static int nand_get_bits_per_cell(u8 cellinfo)
3873{
3874 int bits;
3875
3876 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
3877 bits >>= NAND_CI_CELLTYPE_SHIFT;
3878 return bits + 1;
3879}
3880
Brian Norrise3b88bd2012-09-24 20:40:52 -07003881/*
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003882 * Many new NAND share similar device ID codes, which represent the size of the
3883 * chip. The rest of the parameters must be decoded according to generic or
3884 * manufacturer-specific "extended ID" decoding patterns.
3885 */
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003886void nand_decode_ext_id(struct nand_chip *chip)
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003887{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003888 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon9b2d61f2016-06-08 10:34:57 +02003889 int extid;
Boris Brezillon7f501f02016-05-24 19:20:05 +02003890 u8 *id_data = chip->id.data;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003891 /* The 3rd id byte holds MLC / multichip data */
Huang Shijie7db906b2013-09-25 14:58:11 +08003892 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003893 /* The 4th id byte is the important one */
3894 extid = id_data[3];
3895
Boris Brezillon01389b62016-06-08 10:30:18 +02003896 /* Calc pagesize */
3897 mtd->writesize = 1024 << (extid & 0x03);
3898 extid >>= 2;
3899 /* Calc oobsize */
3900 mtd->oobsize = (8 << (extid & 0x01)) * (mtd->writesize >> 9);
3901 extid >>= 2;
3902 /* Calc blocksize. Blocksize is multiples of 64KiB */
3903 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3904 extid >>= 2;
3905 /* Get buswidth information */
3906 if (extid & 0x1)
3907 chip->options |= NAND_BUSWIDTH_16;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003908}
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003909EXPORT_SYMBOL_GPL(nand_decode_ext_id);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003910
3911/*
Brian Norrisf23a4812012-09-24 20:40:51 -07003912 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
3913 * decodes a matching ID table entry and assigns the MTD size parameters for
3914 * the chip.
3915 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003916static void nand_decode_id(struct nand_chip *chip, struct nand_flash_dev *type)
Brian Norrisf23a4812012-09-24 20:40:51 -07003917{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003918 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norrisf23a4812012-09-24 20:40:51 -07003919
3920 mtd->erasesize = type->erasesize;
3921 mtd->writesize = type->pagesize;
3922 mtd->oobsize = mtd->writesize / 32;
Brian Norrisf23a4812012-09-24 20:40:51 -07003923
Huang Shijie1c195e92013-09-25 14:58:12 +08003924 /* All legacy ID NAND are small-page, SLC */
3925 chip->bits_per_cell = 1;
Brian Norrisf23a4812012-09-24 20:40:51 -07003926}
3927
3928/*
Brian Norris7e74c2d2012-09-24 20:40:49 -07003929 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
3930 * heuristic patterns using various detected parameters (e.g., manufacturer,
3931 * page size, cell-type information).
3932 */
Boris Brezillon7f501f02016-05-24 19:20:05 +02003933static void nand_decode_bbm_options(struct nand_chip *chip)
Brian Norris7e74c2d2012-09-24 20:40:49 -07003934{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003935 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07003936
3937 /* Set the bad block position */
3938 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
3939 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
3940 else
3941 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Brian Norris7e74c2d2012-09-24 20:40:49 -07003942}
3943
Huang Shijieec6e87e2013-03-15 11:01:00 +08003944static inline bool is_full_id_nand(struct nand_flash_dev *type)
3945{
3946 return type->id_len;
3947}
3948
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003949static bool find_full_id_nand(struct nand_chip *chip,
Boris Brezillon29a198a2016-05-24 20:17:48 +02003950 struct nand_flash_dev *type)
Huang Shijieec6e87e2013-03-15 11:01:00 +08003951{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003952 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon7f501f02016-05-24 19:20:05 +02003953 u8 *id_data = chip->id.data;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003954
Huang Shijieec6e87e2013-03-15 11:01:00 +08003955 if (!strncmp(type->id, id_data, type->id_len)) {
3956 mtd->writesize = type->pagesize;
3957 mtd->erasesize = type->erasesize;
3958 mtd->oobsize = type->oobsize;
3959
Huang Shijie7db906b2013-09-25 14:58:11 +08003960 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Huang Shijieec6e87e2013-03-15 11:01:00 +08003961 chip->chipsize = (uint64_t)type->chipsize << 20;
3962 chip->options |= type->options;
Huang Shijie57219342013-05-17 11:17:32 +08003963 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
3964 chip->ecc_step_ds = NAND_ECC_STEP(type);
Boris BREZILLON57a94e22014-09-22 20:11:50 +02003965 chip->onfi_timing_mode_default =
3966 type->onfi_timing_mode_default;
Huang Shijieec6e87e2013-03-15 11:01:00 +08003967
Cai Zhiyong092b6a12013-12-25 21:19:21 +08003968 if (!mtd->name)
3969 mtd->name = type->name;
3970
Huang Shijieec6e87e2013-03-15 11:01:00 +08003971 return true;
3972 }
3973 return false;
3974}
3975
Brian Norris7e74c2d2012-09-24 20:40:49 -07003976/*
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003977 * Manufacturer detection. Only used when the NAND is not ONFI or JEDEC
3978 * compliant and does not have a full-id or legacy-id entry in the nand_ids
3979 * table.
3980 */
3981static void nand_manufacturer_detect(struct nand_chip *chip)
3982{
3983 /*
3984 * Try manufacturer detection if available and use
3985 * nand_decode_ext_id() otherwise.
3986 */
3987 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
3988 chip->manufacturer.desc->ops->detect)
3989 chip->manufacturer.desc->ops->detect(chip);
3990 else
3991 nand_decode_ext_id(chip);
3992}
3993
3994/*
3995 * Manufacturer initialization. This function is called for all NANDs including
3996 * ONFI and JEDEC compliant ones.
3997 * Manufacturer drivers should put all their specific initialization code in
3998 * their ->init() hook.
3999 */
4000static int nand_manufacturer_init(struct nand_chip *chip)
4001{
4002 if (!chip->manufacturer.desc || !chip->manufacturer.desc->ops ||
4003 !chip->manufacturer.desc->ops->init)
4004 return 0;
4005
4006 return chip->manufacturer.desc->ops->init(chip);
4007}
4008
4009/*
4010 * Manufacturer cleanup. This function is called for all NANDs including
4011 * ONFI and JEDEC compliant ones.
4012 * Manufacturer drivers should put all their specific cleanup code in their
4013 * ->cleanup() hook.
4014 */
4015static void nand_manufacturer_cleanup(struct nand_chip *chip)
4016{
4017 /* Release manufacturer private data */
4018 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
4019 chip->manufacturer.desc->ops->cleanup)
4020 chip->manufacturer.desc->ops->cleanup(chip);
4021}
4022
4023/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004024 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004025 */
Boris Brezillon7bb42792016-05-24 20:55:33 +02004026static int nand_detect(struct nand_chip *chip, struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004027{
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004028 const struct nand_manufacturer *manufacturer;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02004029 struct mtd_info *mtd = nand_to_mtd(chip);
Cai Zhiyongbb770822013-12-25 20:11:15 +08004030 int busw;
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004031 int i, ret;
Boris Brezillon7f501f02016-05-24 19:20:05 +02004032 u8 *id_data = chip->id.data;
4033 u8 maf_id, dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034
Karl Beldanef89a882008-09-15 14:37:29 +02004035 /*
4036 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07004037 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02004038 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02004039 nand_reset(chip, 0);
4040
4041 /* Select the device */
4042 chip->select_chip(mtd, 0);
Karl Beldanef89a882008-09-15 14:37:29 +02004043
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004045 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046
4047 /* Read manufacturer and device IDs */
Boris Brezillon7f501f02016-05-24 19:20:05 +02004048 maf_id = chip->read_byte(mtd);
4049 dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050
Brian Norris8b6e50c2011-05-25 14:59:01 -07004051 /*
4052 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01004053 * interface concerns can cause random data which looks like a
4054 * possibly credible NAND flash to appear. If the two results do
4055 * not match, ignore the device completely.
4056 */
4057
4058 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
4059
Brian Norris4aef9b72012-09-24 20:40:48 -07004060 /* Read entire ID string */
4061 for (i = 0; i < 8; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07004062 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01004063
Boris Brezillon7f501f02016-05-24 19:20:05 +02004064 if (id_data[0] != maf_id || id_data[1] != dev_id) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03004065 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004066 maf_id, dev_id, id_data[0], id_data[1]);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004067 return -ENODEV;
Ben Dooksed8165c2008-04-14 14:58:58 +01004068 }
4069
Boris Brezillon7f501f02016-05-24 19:20:05 +02004070 chip->id.len = nand_id_len(id_data, 8);
4071
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004072 /* Try to identify manufacturer */
4073 manufacturer = nand_get_manufacturer(maf_id);
4074 chip->manufacturer.desc = manufacturer;
4075
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004076 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00004077 type = nand_flash_ids;
4078
Boris Brezillon29a198a2016-05-24 20:17:48 +02004079 /*
4080 * Save the NAND_BUSWIDTH_16 flag before letting auto-detection logic
4081 * override it.
4082 * This is required to make sure initial NAND bus width set by the
4083 * NAND controller driver is coherent with the real NAND bus width
4084 * (extracted by auto-detection code).
4085 */
4086 busw = chip->options & NAND_BUSWIDTH_16;
4087
4088 /*
4089 * The flag is only set (never cleared), reset it to its default value
4090 * before starting auto-detection.
4091 */
4092 chip->options &= ~NAND_BUSWIDTH_16;
4093
Huang Shijieec6e87e2013-03-15 11:01:00 +08004094 for (; type->name != NULL; type++) {
4095 if (is_full_id_nand(type)) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02004096 if (find_full_id_nand(chip, type))
Huang Shijieec6e87e2013-03-15 11:01:00 +08004097 goto ident_done;
Boris Brezillon7f501f02016-05-24 19:20:05 +02004098 } else if (dev_id == type->dev_id) {
Brian Norrisdb5b09f2015-05-22 10:43:12 -07004099 break;
Huang Shijieec6e87e2013-03-15 11:01:00 +08004100 }
4101 }
David Woodhouse5e81e882010-02-26 18:32:56 +00004102
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004103 chip->onfi_version = 0;
4104 if (!type->name || !type->pagesize) {
Masahiro Yamada35fc5192014-04-09 16:26:26 +09004105 /* Check if the chip is ONFI compliant */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004106 if (nand_flash_detect_onfi(chip))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004107 goto ident_done;
Huang Shijie91361812014-02-21 13:39:40 +08004108
4109 /* Check if the chip is JEDEC compliant */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004110 if (nand_flash_detect_jedec(chip))
Huang Shijie91361812014-02-21 13:39:40 +08004111 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004112 }
4113
David Woodhouse5e81e882010-02-26 18:32:56 +00004114 if (!type->name)
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004115 return -ENODEV;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004116
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02004117 if (!mtd->name)
4118 mtd->name = type->name;
4119
Adrian Hunter69423d92008-12-10 13:37:21 +00004120 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004121
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004122 if (!type->pagesize)
4123 nand_manufacturer_detect(chip);
4124 else
Boris Brezillon29a198a2016-05-24 20:17:48 +02004125 nand_decode_id(chip, type);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004126
Brian Norrisbf7a01b2012-07-13 09:28:24 -07004127 /* Get chip options */
4128 chip->options |= type->options;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004129
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004130ident_done:
4131
Matthieu CASTET64b37b22012-11-06 11:51:44 +01004132 if (chip->options & NAND_BUSWIDTH_AUTO) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02004133 WARN_ON(busw & NAND_BUSWIDTH_16);
4134 nand_set_defaults(chip);
Matthieu CASTET64b37b22012-11-06 11:51:44 +01004135 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
4136 /*
4137 * Check, if buswidth is correct. Hardware drivers should set
4138 * chip correct!
4139 */
Ezequiel Garcia20171642013-11-25 08:30:31 -03004140 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004141 maf_id, dev_id);
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004142 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4143 mtd->name);
Boris Brezillon29a198a2016-05-24 20:17:48 +02004144 pr_warn("bus width %d instead of %d bits\n", busw ? 16 : 8,
4145 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004146 return -EINVAL;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004147 }
4148
Boris Brezillon7f501f02016-05-24 19:20:05 +02004149 nand_decode_bbm_options(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07004150
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004151 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004152 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07004153 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004154 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004155
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004156 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004157 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00004158 if (chip->chipsize & 0xffffffff)
4159 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004160 else {
4161 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
4162 chip->chip_shift += 32 - 1;
4163 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004164
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03004165 chip->badblockbits = 8;
Brian Norris49c50b92014-05-06 16:02:19 -07004166 chip->erase = single_erase;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004167
Brian Norris8b6e50c2011-05-25 14:59:01 -07004168 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004169 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
4170 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004171
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004172 ret = nand_manufacturer_init(chip);
4173 if (ret)
4174 return ret;
4175
Ezequiel Garcia20171642013-11-25 08:30:31 -03004176 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004177 maf_id, dev_id);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004178
4179 if (chip->onfi_version)
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004180 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4181 chip->onfi_params.model);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004182 else if (chip->jedec_version)
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004183 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4184 chip->jedec_params.model);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004185 else
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004186 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4187 type->name);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004188
Rafał Miłecki3755a992014-10-21 00:01:04 +02004189 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
Huang Shijie3723e932013-09-25 14:58:14 +08004190 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Rafał Miłecki3755a992014-10-21 00:01:04 +02004191 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004192 return 0;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004193}
4194
Boris Brezillond48f62b2016-04-01 14:54:32 +02004195static const char * const nand_ecc_modes[] = {
4196 [NAND_ECC_NONE] = "none",
4197 [NAND_ECC_SOFT] = "soft",
4198 [NAND_ECC_HW] = "hw",
4199 [NAND_ECC_HW_SYNDROME] = "hw_syndrome",
4200 [NAND_ECC_HW_OOB_FIRST] = "hw_oob_first",
Thomas Petazzoni785818f2017-04-29 11:06:43 +02004201 [NAND_ECC_ON_DIE] = "on-die",
Boris Brezillond48f62b2016-04-01 14:54:32 +02004202};
4203
4204static int of_get_nand_ecc_mode(struct device_node *np)
4205{
4206 const char *pm;
4207 int err, i;
4208
4209 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4210 if (err < 0)
4211 return err;
4212
4213 for (i = 0; i < ARRAY_SIZE(nand_ecc_modes); i++)
4214 if (!strcasecmp(pm, nand_ecc_modes[i]))
4215 return i;
4216
Rafał Miłeckiae211bc2016-04-17 22:53:06 +02004217 /*
4218 * For backward compatibility we support few obsoleted values that don't
4219 * have their mappings into nand_ecc_modes_t anymore (they were merged
4220 * with other enums).
4221 */
4222 if (!strcasecmp(pm, "soft_bch"))
4223 return NAND_ECC_SOFT;
4224
Boris Brezillond48f62b2016-04-01 14:54:32 +02004225 return -ENODEV;
4226}
4227
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004228static const char * const nand_ecc_algos[] = {
4229 [NAND_ECC_HAMMING] = "hamming",
4230 [NAND_ECC_BCH] = "bch",
4231};
4232
Boris Brezillond48f62b2016-04-01 14:54:32 +02004233static int of_get_nand_ecc_algo(struct device_node *np)
4234{
4235 const char *pm;
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004236 int err, i;
Boris Brezillond48f62b2016-04-01 14:54:32 +02004237
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004238 err = of_property_read_string(np, "nand-ecc-algo", &pm);
4239 if (!err) {
4240 for (i = NAND_ECC_HAMMING; i < ARRAY_SIZE(nand_ecc_algos); i++)
4241 if (!strcasecmp(pm, nand_ecc_algos[i]))
4242 return i;
4243 return -ENODEV;
4244 }
Boris Brezillond48f62b2016-04-01 14:54:32 +02004245
4246 /*
4247 * For backward compatibility we also read "nand-ecc-mode" checking
4248 * for some obsoleted values that were specifying ECC algorithm.
4249 */
4250 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4251 if (err < 0)
4252 return err;
4253
4254 if (!strcasecmp(pm, "soft"))
4255 return NAND_ECC_HAMMING;
4256 else if (!strcasecmp(pm, "soft_bch"))
4257 return NAND_ECC_BCH;
4258
4259 return -ENODEV;
4260}
4261
4262static int of_get_nand_ecc_step_size(struct device_node *np)
4263{
4264 int ret;
4265 u32 val;
4266
4267 ret = of_property_read_u32(np, "nand-ecc-step-size", &val);
4268 return ret ? ret : val;
4269}
4270
4271static int of_get_nand_ecc_strength(struct device_node *np)
4272{
4273 int ret;
4274 u32 val;
4275
4276 ret = of_property_read_u32(np, "nand-ecc-strength", &val);
4277 return ret ? ret : val;
4278}
4279
4280static int of_get_nand_bus_width(struct device_node *np)
4281{
4282 u32 val;
4283
4284 if (of_property_read_u32(np, "nand-bus-width", &val))
4285 return 8;
4286
4287 switch (val) {
4288 case 8:
4289 case 16:
4290 return val;
4291 default:
4292 return -EIO;
4293 }
4294}
4295
4296static bool of_get_nand_on_flash_bbt(struct device_node *np)
4297{
4298 return of_property_read_bool(np, "nand-on-flash-bbt");
4299}
4300
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004301static int nand_dt_init(struct nand_chip *chip)
Brian Norris5844fee2015-01-23 00:22:27 -08004302{
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004303 struct device_node *dn = nand_get_flash_node(chip);
Rafał Miłecki79082452016-03-23 11:19:02 +01004304 int ecc_mode, ecc_algo, ecc_strength, ecc_step;
Brian Norris5844fee2015-01-23 00:22:27 -08004305
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004306 if (!dn)
4307 return 0;
4308
Brian Norris5844fee2015-01-23 00:22:27 -08004309 if (of_get_nand_bus_width(dn) == 16)
4310 chip->options |= NAND_BUSWIDTH_16;
4311
4312 if (of_get_nand_on_flash_bbt(dn))
4313 chip->bbt_options |= NAND_BBT_USE_FLASH;
4314
4315 ecc_mode = of_get_nand_ecc_mode(dn);
Rafał Miłecki79082452016-03-23 11:19:02 +01004316 ecc_algo = of_get_nand_ecc_algo(dn);
Brian Norris5844fee2015-01-23 00:22:27 -08004317 ecc_strength = of_get_nand_ecc_strength(dn);
4318 ecc_step = of_get_nand_ecc_step_size(dn);
4319
Brian Norris5844fee2015-01-23 00:22:27 -08004320 if (ecc_mode >= 0)
4321 chip->ecc.mode = ecc_mode;
4322
Rafał Miłecki79082452016-03-23 11:19:02 +01004323 if (ecc_algo >= 0)
4324 chip->ecc.algo = ecc_algo;
4325
Brian Norris5844fee2015-01-23 00:22:27 -08004326 if (ecc_strength >= 0)
4327 chip->ecc.strength = ecc_strength;
4328
4329 if (ecc_step > 0)
4330 chip->ecc.size = ecc_step;
4331
Boris Brezillonba78ee02016-06-08 17:04:22 +02004332 if (of_property_read_bool(dn, "nand-ecc-maximize"))
4333 chip->ecc.options |= NAND_ECC_MAXIMIZE;
4334
Brian Norris5844fee2015-01-23 00:22:27 -08004335 return 0;
4336}
4337
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004338/**
David Woodhouse3b85c322006-09-25 17:06:53 +01004339 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004340 * @mtd: MTD device structure
4341 * @maxchips: number of chips to scan for
4342 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004343 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004344 * This is the first phase of the normal nand_scan() function. It reads the
4345 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004346 *
4347 */
David Woodhouse5e81e882010-02-26 18:32:56 +00004348int nand_scan_ident(struct mtd_info *mtd, int maxchips,
4349 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004350{
Cai Zhiyongbb770822013-12-25 20:11:15 +08004351 int i, nand_maf_id, nand_dev_id;
Boris BREZILLON862eba52015-12-01 12:03:03 +01004352 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris5844fee2015-01-23 00:22:27 -08004353 int ret;
4354
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004355 ret = nand_dt_init(chip);
4356 if (ret)
4357 return ret;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004358
Brian Norrisf7a8e382016-01-05 10:39:45 -08004359 if (!mtd->name && mtd->dev.parent)
4360 mtd->name = dev_name(mtd->dev.parent);
4361
Andrey Smirnov76fe3342016-07-21 14:59:20 -07004362 if ((!chip->cmdfunc || !chip->select_chip) && !chip->cmd_ctrl) {
4363 /*
4364 * Default functions assigned for chip_select() and
4365 * cmdfunc() both expect cmd_ctrl() to be populated,
4366 * so we need to check that that's the case
4367 */
4368 pr_err("chip.cmd_ctrl() callback is not provided");
4369 return -EINVAL;
4370 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004371 /* Set the default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004372 nand_set_defaults(chip);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004373
4374 /* Read the flash type */
Boris Brezillon7bb42792016-05-24 20:55:33 +02004375 ret = nand_detect(chip, table);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004376 if (ret) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00004377 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07004378 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004379 chip->select_chip(mtd, -1);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004380 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 }
4382
Boris Brezillon73f907f2016-10-24 16:46:20 +02004383 /* Initialize the ->data_interface field. */
Boris Brezillond8e725d2016-09-15 10:32:50 +02004384 ret = nand_init_data_interface(chip);
4385 if (ret)
4386 return ret;
4387
Boris Brezillon73f907f2016-10-24 16:46:20 +02004388 /*
4389 * Setup the data interface correctly on the chip and controller side.
4390 * This explicit call to nand_setup_data_interface() is only required
4391 * for the first die, because nand_reset() has been called before
4392 * ->data_interface and ->default_onfi_timing_mode were set.
4393 * For the other dies, nand_reset() will automatically switch to the
4394 * best mode for us.
4395 */
4396 ret = nand_setup_data_interface(chip);
4397 if (ret)
4398 return ret;
4399
Boris Brezillon7f501f02016-05-24 19:20:05 +02004400 nand_maf_id = chip->id.data[0];
4401 nand_dev_id = chip->id.data[1];
4402
Huang Shijie07300162012-11-09 16:23:45 +08004403 chip->select_chip(mtd, -1);
4404
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004405 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01004406 for (i = 1; i < maxchips; i++) {
Karl Beldanef89a882008-09-15 14:37:29 +02004407 /* See comment in nand_get_flash_type for reset */
Boris Brezillon73f907f2016-10-24 16:46:20 +02004408 nand_reset(chip, i);
4409
4410 chip->select_chip(mtd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004412 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004414 if (nand_maf_id != chip->read_byte(mtd) ||
Huang Shijie07300162012-11-09 16:23:45 +08004415 nand_dev_id != chip->read_byte(mtd)) {
4416 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 break;
Huang Shijie07300162012-11-09 16:23:45 +08004418 }
4419 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 }
4421 if (i > 1)
Ezequiel Garcia20171642013-11-25 08:30:31 -03004422 pr_info("%d chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004423
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004425 chip->numchips = i;
4426 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
David Woodhouse3b85c322006-09-25 17:06:53 +01004428 return 0;
4429}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004430EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01004431
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004432static int nand_set_ecc_soft_ops(struct mtd_info *mtd)
4433{
4434 struct nand_chip *chip = mtd_to_nand(mtd);
4435 struct nand_ecc_ctrl *ecc = &chip->ecc;
4436
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004437 if (WARN_ON(ecc->mode != NAND_ECC_SOFT))
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004438 return -EINVAL;
4439
4440 switch (ecc->algo) {
4441 case NAND_ECC_HAMMING:
4442 ecc->calculate = nand_calculate_ecc;
4443 ecc->correct = nand_correct_data;
4444 ecc->read_page = nand_read_page_swecc;
4445 ecc->read_subpage = nand_read_subpage;
4446 ecc->write_page = nand_write_page_swecc;
4447 ecc->read_page_raw = nand_read_page_raw;
4448 ecc->write_page_raw = nand_write_page_raw;
4449 ecc->read_oob = nand_read_oob_std;
4450 ecc->write_oob = nand_write_oob_std;
4451 if (!ecc->size)
4452 ecc->size = 256;
4453 ecc->bytes = 3;
4454 ecc->strength = 1;
4455 return 0;
4456 case NAND_ECC_BCH:
4457 if (!mtd_nand_has_bch()) {
4458 WARN(1, "CONFIG_MTD_NAND_ECC_BCH not enabled\n");
4459 return -EINVAL;
4460 }
4461 ecc->calculate = nand_bch_calculate_ecc;
4462 ecc->correct = nand_bch_correct_data;
4463 ecc->read_page = nand_read_page_swecc;
4464 ecc->read_subpage = nand_read_subpage;
4465 ecc->write_page = nand_write_page_swecc;
4466 ecc->read_page_raw = nand_read_page_raw;
4467 ecc->write_page_raw = nand_write_page_raw;
4468 ecc->read_oob = nand_read_oob_std;
4469 ecc->write_oob = nand_write_oob_std;
Boris Brezillon8bbba482016-06-08 17:04:23 +02004470
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004471 /*
4472 * Board driver should supply ecc.size and ecc.strength
4473 * values to select how many bits are correctable.
4474 * Otherwise, default to 4 bits for large page devices.
4475 */
4476 if (!ecc->size && (mtd->oobsize >= 64)) {
4477 ecc->size = 512;
4478 ecc->strength = 4;
4479 }
4480
4481 /*
4482 * if no ecc placement scheme was provided pickup the default
4483 * large page one.
4484 */
4485 if (!mtd->ooblayout) {
4486 /* handle large page devices only */
4487 if (mtd->oobsize < 64) {
4488 WARN(1, "OOB layout is required when using software BCH on small pages\n");
4489 return -EINVAL;
4490 }
4491
4492 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
Boris Brezillon8bbba482016-06-08 17:04:23 +02004493
4494 }
4495
4496 /*
4497 * We can only maximize ECC config when the default layout is
4498 * used, otherwise we don't know how many bytes can really be
4499 * used.
4500 */
4501 if (mtd->ooblayout == &nand_ooblayout_lp_ops &&
4502 ecc->options & NAND_ECC_MAXIMIZE) {
4503 int steps, bytes;
4504
4505 /* Always prefer 1k blocks over 512bytes ones */
4506 ecc->size = 1024;
4507 steps = mtd->writesize / ecc->size;
4508
4509 /* Reserve 2 bytes for the BBM */
4510 bytes = (mtd->oobsize - 2) / steps;
4511 ecc->strength = bytes * 8 / fls(8 * ecc->size);
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004512 }
4513
4514 /* See nand_bch_init() for details. */
4515 ecc->bytes = 0;
4516 ecc->priv = nand_bch_init(mtd);
4517 if (!ecc->priv) {
4518 WARN(1, "BCH ECC initialization failed!\n");
4519 return -EINVAL;
4520 }
4521 return 0;
4522 default:
4523 WARN(1, "Unsupported ECC algorithm!\n");
4524 return -EINVAL;
4525 }
4526}
4527
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004528/*
4529 * Check if the chip configuration meet the datasheet requirements.
4530
4531 * If our configuration corrects A bits per B bytes and the minimum
4532 * required correction level is X bits per Y bytes, then we must ensure
4533 * both of the following are true:
4534 *
4535 * (1) A / B >= X / Y
4536 * (2) A >= X
4537 *
4538 * Requirement (1) ensures we can correct for the required bitflip density.
4539 * Requirement (2) ensures we can correct even when all bitflips are clumped
4540 * in the same sector.
4541 */
4542static bool nand_ecc_strength_good(struct mtd_info *mtd)
4543{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004544 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004545 struct nand_ecc_ctrl *ecc = &chip->ecc;
4546 int corr, ds_corr;
4547
4548 if (ecc->size == 0 || chip->ecc_step_ds == 0)
4549 /* Not enough information */
4550 return true;
4551
4552 /*
4553 * We get the number of corrected bits per page to compare
4554 * the correction density.
4555 */
4556 corr = (mtd->writesize * ecc->strength) / ecc->size;
4557 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
4558
4559 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
4560}
David Woodhouse3b85c322006-09-25 17:06:53 +01004561
Marc Gonzalez3371d662016-11-15 10:56:20 +01004562static bool invalid_ecc_page_accessors(struct nand_chip *chip)
4563{
4564 struct nand_ecc_ctrl *ecc = &chip->ecc;
4565
4566 if (nand_standard_page_accessors(ecc))
4567 return false;
4568
4569 /*
4570 * NAND_ECC_CUSTOM_PAGE_ACCESS flag is set, make sure the NAND
4571 * controller driver implements all the page accessors because
4572 * default helpers are not suitable when the core does not
4573 * send the READ0/PAGEPROG commands.
4574 */
4575 return (!ecc->read_page || !ecc->write_page ||
4576 !ecc->read_page_raw || !ecc->write_page_raw ||
4577 (NAND_HAS_SUBPAGE_READ(chip) && !ecc->read_subpage) ||
4578 (NAND_HAS_SUBPAGE_WRITE(chip) && !ecc->write_subpage &&
4579 ecc->hwctl && ecc->calculate));
4580}
4581
David Woodhouse3b85c322006-09-25 17:06:53 +01004582/**
4583 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004584 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01004585 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004586 * This is the second phase of the normal nand_scan() function. It fills out
4587 * all the uninitialized function pointers with the defaults and scans for a
4588 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01004589 */
4590int nand_scan_tail(struct mtd_info *mtd)
4591{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004592 struct nand_chip *chip = mtd_to_nand(mtd);
Huang Shijie97de79e02013-10-18 14:20:53 +08004593 struct nand_ecc_ctrl *ecc = &chip->ecc;
Masahiro Yamada3deb9972017-03-30 17:15:04 +09004594 struct nand_buffers *nbuf = NULL;
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004595 int ret;
David Woodhouse3b85c322006-09-25 17:06:53 +01004596
Brian Norrise2414f42012-02-06 13:44:00 -08004597 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004598 if (WARN_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
4599 !(chip->bbt_options & NAND_BBT_USE_FLASH)))
4600 return -EINVAL;
Brian Norrise2414f42012-02-06 13:44:00 -08004601
Marc Gonzalez3371d662016-11-15 10:56:20 +01004602 if (invalid_ecc_page_accessors(chip)) {
4603 pr_err("Invalid ECC page accessors setup\n");
4604 return -EINVAL;
4605 }
4606
Huang Shijief02ea4e2014-01-13 14:27:12 +08004607 if (!(chip->options & NAND_OWN_BUFFERS)) {
Masahiro Yamada3deb9972017-03-30 17:15:04 +09004608 nbuf = kzalloc(sizeof(*nbuf), GFP_KERNEL);
Huang Shijief02ea4e2014-01-13 14:27:12 +08004609 if (!nbuf)
4610 return -ENOMEM;
Masahiro Yamada3deb9972017-03-30 17:15:04 +09004611
4612 nbuf->ecccalc = kmalloc(mtd->oobsize, GFP_KERNEL);
4613 if (!nbuf->ecccalc) {
4614 ret = -ENOMEM;
4615 goto err_free;
4616 }
4617
4618 nbuf->ecccode = kmalloc(mtd->oobsize, GFP_KERNEL);
4619 if (!nbuf->ecccode) {
4620 ret = -ENOMEM;
4621 goto err_free;
4622 }
4623
4624 nbuf->databuf = kmalloc(mtd->writesize + mtd->oobsize,
4625 GFP_KERNEL);
4626 if (!nbuf->databuf) {
4627 ret = -ENOMEM;
4628 goto err_free;
4629 }
Huang Shijief02ea4e2014-01-13 14:27:12 +08004630
4631 chip->buffers = nbuf;
4632 } else {
4633 if (!chip->buffers)
4634 return -ENOMEM;
4635 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004636
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01004637 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01004638 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004639
4640 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004641 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004642 */
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004643 if (!mtd->ooblayout &&
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004644 !(ecc->mode == NAND_ECC_SOFT && ecc->algo == NAND_ECC_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004645 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 case 8:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 case 16:
Boris Brezillon41b207a2016-02-03 19:06:15 +01004648 mtd_set_ooblayout(mtd, &nand_ooblayout_sp_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 break;
4650 case 64:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004651 case 128:
Alexander Couzens6a623e02017-05-02 12:19:00 +02004652 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_hamming_ops);
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004653 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 default:
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004655 WARN(1, "No oob scheme defined for oobsize %d\n",
4656 mtd->oobsize);
4657 ret = -EINVAL;
4658 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 }
4660 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004661
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004662 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004663 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004664 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01004665 */
David Woodhouse956e9442006-09-25 17:12:39 +01004666
Huang Shijie97de79e02013-10-18 14:20:53 +08004667 switch (ecc->mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004668 case NAND_ECC_HW_OOB_FIRST:
4669 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Huang Shijie97de79e02013-10-18 14:20:53 +08004670 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004671 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
4672 ret = -EINVAL;
4673 goto err_free;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004674 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004675 if (!ecc->read_page)
4676 ecc->read_page = nand_read_page_hwecc_oob_first;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004677
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004678 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07004679 /* Use standard hwecc read page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08004680 if (!ecc->read_page)
4681 ecc->read_page = nand_read_page_hwecc;
4682 if (!ecc->write_page)
4683 ecc->write_page = nand_write_page_hwecc;
4684 if (!ecc->read_page_raw)
4685 ecc->read_page_raw = nand_read_page_raw;
4686 if (!ecc->write_page_raw)
4687 ecc->write_page_raw = nand_write_page_raw;
4688 if (!ecc->read_oob)
4689 ecc->read_oob = nand_read_oob_std;
4690 if (!ecc->write_oob)
4691 ecc->write_oob = nand_write_oob_std;
4692 if (!ecc->read_subpage)
4693 ecc->read_subpage = nand_read_subpage;
Helmut Schaa44991b32014-04-09 11:13:24 +02004694 if (!ecc->write_subpage && ecc->hwctl && ecc->calculate)
Huang Shijie97de79e02013-10-18 14:20:53 +08004695 ecc->write_subpage = nand_write_subpage_hwecc;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02004696
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004697 case NAND_ECC_HW_SYNDROME:
Huang Shijie97de79e02013-10-18 14:20:53 +08004698 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
4699 (!ecc->read_page ||
4700 ecc->read_page == nand_read_page_hwecc ||
4701 !ecc->write_page ||
4702 ecc->write_page == nand_write_page_hwecc)) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004703 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
4704 ret = -EINVAL;
4705 goto err_free;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004706 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07004707 /* Use standard syndrome read/write page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08004708 if (!ecc->read_page)
4709 ecc->read_page = nand_read_page_syndrome;
4710 if (!ecc->write_page)
4711 ecc->write_page = nand_write_page_syndrome;
4712 if (!ecc->read_page_raw)
4713 ecc->read_page_raw = nand_read_page_raw_syndrome;
4714 if (!ecc->write_page_raw)
4715 ecc->write_page_raw = nand_write_page_raw_syndrome;
4716 if (!ecc->read_oob)
4717 ecc->read_oob = nand_read_oob_syndrome;
4718 if (!ecc->write_oob)
4719 ecc->write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02004720
Huang Shijie97de79e02013-10-18 14:20:53 +08004721 if (mtd->writesize >= ecc->size) {
4722 if (!ecc->strength) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004723 WARN(1, "Driver must set ecc.strength when using hardware ECC\n");
4724 ret = -EINVAL;
4725 goto err_free;
Mike Dunne2788c92012-04-25 12:06:10 -07004726 }
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004727 break;
Mike Dunne2788c92012-04-25 12:06:10 -07004728 }
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004729 pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n",
4730 ecc->size, mtd->writesize);
Huang Shijie97de79e02013-10-18 14:20:53 +08004731 ecc->mode = NAND_ECC_SOFT;
Rafał Miłeckie9d4fae2016-04-17 22:53:02 +02004732 ecc->algo = NAND_ECC_HAMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004734 case NAND_ECC_SOFT:
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004735 ret = nand_set_ecc_soft_ops(mtd);
4736 if (ret) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004737 ret = -EINVAL;
4738 goto err_free;
Ivan Djelic193bd402011-03-11 11:05:33 +01004739 }
4740 break;
4741
Thomas Petazzoni785818f2017-04-29 11:06:43 +02004742 case NAND_ECC_ON_DIE:
4743 if (!ecc->read_page || !ecc->write_page) {
4744 WARN(1, "No ECC functions supplied; on-die ECC not possible\n");
4745 ret = -EINVAL;
4746 goto err_free;
4747 }
4748 if (!ecc->read_oob)
4749 ecc->read_oob = nand_read_oob_std;
4750 if (!ecc->write_oob)
4751 ecc->write_oob = nand_write_oob_std;
4752 break;
4753
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004754 case NAND_ECC_NONE:
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004755 pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n");
Huang Shijie97de79e02013-10-18 14:20:53 +08004756 ecc->read_page = nand_read_page_raw;
4757 ecc->write_page = nand_write_page_raw;
4758 ecc->read_oob = nand_read_oob_std;
4759 ecc->read_page_raw = nand_read_page_raw;
4760 ecc->write_page_raw = nand_write_page_raw;
4761 ecc->write_oob = nand_write_oob_std;
4762 ecc->size = mtd->writesize;
4763 ecc->bytes = 0;
4764 ecc->strength = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 break;
David Woodhouse956e9442006-09-25 17:12:39 +01004766
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 default:
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004768 WARN(1, "Invalid NAND_ECC_MODE %d\n", ecc->mode);
4769 ret = -EINVAL;
4770 goto err_free;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
Brian Norris9ce244b2011-08-30 18:45:37 -07004773 /* For many systems, the standard OOB write also works for raw */
Huang Shijie97de79e02013-10-18 14:20:53 +08004774 if (!ecc->read_oob_raw)
4775 ecc->read_oob_raw = ecc->read_oob;
4776 if (!ecc->write_oob_raw)
4777 ecc->write_oob_raw = ecc->write_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07004778
Boris Brezillon846031d2016-02-03 20:11:00 +01004779 /* propagate ecc info to mtd_info */
Boris Brezillon846031d2016-02-03 20:11:00 +01004780 mtd->ecc_strength = ecc->strength;
4781 mtd->ecc_step_size = ecc->size;
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004782
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004783 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004784 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07004785 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004786 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004787 ecc->steps = mtd->writesize / ecc->size;
4788 if (ecc->steps * ecc->size != mtd->writesize) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004789 WARN(1, "Invalid ECC parameters\n");
4790 ret = -EINVAL;
4791 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004793 ecc->total = ecc->steps * ecc->bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004794
Boris Brezillon846031d2016-02-03 20:11:00 +01004795 /*
4796 * The number of bytes available for a client to place data into
4797 * the out of band area.
4798 */
4799 ret = mtd_ooblayout_count_freebytes(mtd);
4800 if (ret < 0)
4801 ret = 0;
4802
4803 mtd->oobavail = ret;
4804
4805 /* ECC sanity check: warn if it's too weak */
4806 if (!nand_ecc_strength_good(mtd))
4807 pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n",
4808 mtd->name);
4809
Brian Norris8b6e50c2011-05-25 14:59:01 -07004810 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Huang Shijie1d0ed692013-09-25 14:58:10 +08004811 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
Huang Shijie97de79e02013-10-18 14:20:53 +08004812 switch (ecc->steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02004813 case 2:
4814 mtd->subpage_sft = 1;
4815 break;
4816 case 4:
4817 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004818 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02004819 mtd->subpage_sft = 2;
4820 break;
4821 }
4822 }
4823 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
4824
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02004825 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004826 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004829 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004831 /* Large page NAND with SOFT_ECC should support subpage reads */
Ron Lee4007e2d2014-04-25 15:01:35 +09304832 switch (ecc->mode) {
4833 case NAND_ECC_SOFT:
Ron Lee4007e2d2014-04-25 15:01:35 +09304834 if (chip->page_shift > 9)
4835 chip->options |= NAND_SUBPAGE_READ;
4836 break;
4837
4838 default:
4839 break;
4840 }
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004841
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 /* Fill in remaining MTD driver data */
Huang Shijie963d1c22013-09-25 14:58:21 +08004843 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02004844 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
4845 MTD_CAP_NANDFLASH;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004846 mtd->_erase = nand_erase;
4847 mtd->_point = NULL;
4848 mtd->_unpoint = NULL;
4849 mtd->_read = nand_read;
4850 mtd->_write = nand_write;
4851 mtd->_panic_write = panic_nand_write;
4852 mtd->_read_oob = nand_read_oob;
4853 mtd->_write_oob = nand_write_oob;
4854 mtd->_sync = nand_sync;
4855 mtd->_lock = NULL;
4856 mtd->_unlock = NULL;
4857 mtd->_suspend = nand_suspend;
4858 mtd->_resume = nand_resume;
Scott Branden72ea4032014-11-20 11:18:05 -08004859 mtd->_reboot = nand_shutdown;
Ezequiel Garcia8471bb72014-05-21 19:06:12 -03004860 mtd->_block_isreserved = nand_block_isreserved;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004861 mtd->_block_isbad = nand_block_isbad;
4862 mtd->_block_markbad = nand_block_markbad;
Zach Brown56718422017-01-10 13:30:20 -06004863 mtd->_max_bad_blocks = nand_max_bad_blocks;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01004864 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865
Shmulik Ladkaniea3b2ea2012-06-08 18:29:06 +03004866 /*
4867 * Initialize bitflip_threshold to its default prior scan_bbt() call.
4868 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
4869 * properly set.
4870 */
4871 if (!mtd->bitflip_threshold)
Brian Norris240181f2015-01-12 12:51:29 -08004872 mtd->bitflip_threshold = DIV_ROUND_UP(mtd->ecc_strength * 3, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004874 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004875 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004876 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877
4878 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004879 return chip->scan_bbt(mtd);
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004880err_free:
Masahiro Yamada3deb9972017-03-30 17:15:04 +09004881 if (nbuf) {
4882 kfree(nbuf->databuf);
4883 kfree(nbuf->ecccode);
4884 kfree(nbuf->ecccalc);
4885 kfree(nbuf);
4886 }
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004887 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004889EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
Brian Norris8b6e50c2011-05-25 14:59:01 -07004891/*
4892 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004893 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07004894 * to call us from in-kernel code if the core NAND support is modular.
4895 */
David Woodhouse3b85c322006-09-25 17:06:53 +01004896#ifdef MODULE
4897#define caller_is_module() (1)
4898#else
4899#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06004900 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01004901#endif
4902
4903/**
4904 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004905 * @mtd: MTD device structure
4906 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01004907 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004908 * This fills out all the uninitialized function pointers with the defaults.
4909 * The flash ID is read and the mtd/chip structures are filled with the
Ezequiel García20c07a52016-04-01 18:29:23 -03004910 * appropriate values.
David Woodhouse3b85c322006-09-25 17:06:53 +01004911 */
4912int nand_scan(struct mtd_info *mtd, int maxchips)
4913{
4914 int ret;
4915
David Woodhouse5e81e882010-02-26 18:32:56 +00004916 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01004917 if (!ret)
4918 ret = nand_scan_tail(mtd);
4919 return ret;
4920}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004921EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01004922
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923/**
Richard Weinbergerd44154f2016-09-21 11:44:41 +02004924 * nand_cleanup - [NAND Interface] Free resources held by the NAND device
4925 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -07004926 */
Richard Weinbergerd44154f2016-09-21 11:44:41 +02004927void nand_cleanup(struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928{
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004929 if (chip->ecc.mode == NAND_ECC_SOFT &&
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004930 chip->ecc.algo == NAND_ECC_BCH)
Ivan Djelic193bd402011-03-11 11:05:33 +01004931 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
4932
Boris Brezillond8e725d2016-09-15 10:32:50 +02004933 nand_release_data_interface(chip);
4934
Jesper Juhlfa671642005-11-07 01:01:27 -08004935 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004936 kfree(chip->bbt);
Masahiro Yamada3deb9972017-03-30 17:15:04 +09004937 if (!(chip->options & NAND_OWN_BUFFERS) && chip->buffers) {
4938 kfree(chip->buffers->databuf);
4939 kfree(chip->buffers->ecccode);
4940 kfree(chip->buffers->ecccalc);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004941 kfree(chip->buffers);
Masahiro Yamada3deb9972017-03-30 17:15:04 +09004942 }
Brian Norris58373ff2010-07-15 12:15:44 -07004943
4944 /* Free bad block descriptor memory */
4945 if (chip->badblock_pattern && chip->badblock_pattern->options
4946 & NAND_BBT_DYNAMICSTRUCT)
4947 kfree(chip->badblock_pattern);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004948
4949 /* Free manufacturer priv data. */
4950 nand_manufacturer_cleanup(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951}
Richard Weinbergerd44154f2016-09-21 11:44:41 +02004952EXPORT_SYMBOL_GPL(nand_cleanup);
4953
4954/**
4955 * nand_release - [NAND Interface] Unregister the MTD device and free resources
4956 * held by the NAND device
4957 * @mtd: MTD device structure
4958 */
4959void nand_release(struct mtd_info *mtd)
4960{
4961 mtd_device_unregister(mtd);
4962 nand_cleanup(mtd_to_nand(mtd));
4963}
David Woodhousee0c7d762006-05-13 18:07:53 +01004964EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08004965
David Woodhousee0c7d762006-05-13 18:07:53 +01004966MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004967MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
4968MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01004969MODULE_DESCRIPTION("Generic NAND flash driver code");