blob: de6c8045c85b66939e86c15601a97304b037abb6 [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
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530142static int check_offs_len(struct mtd_info *mtd,
143 loff_t ofs, uint64_t len)
144{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100145 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530146 int ret = 0;
147
148 /* Start address must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300149 if (ofs & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700150 pr_debug("%s: unaligned address\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530151 ret = -EINVAL;
152 }
153
154 /* Length must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300155 if (len & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700156 pr_debug("%s: length not block aligned\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530157 ret = -EINVAL;
158 }
159
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530160 return ret;
161}
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/**
164 * nand_release_device - [GENERIC] release chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700165 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000166 *
Huang Shijieb0bb6902012-11-19 14:43:29 +0800167 * Release chip lock and wake up anyone waiting on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100169static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100171 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200173 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200174 spin_lock(&chip->controller->lock);
175 chip->controller->active = NULL;
176 chip->state = FL_READY;
177 wake_up(&chip->controller->wq);
178 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
181/**
182 * nand_read_byte - [DEFAULT] read one byte from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700183 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700185 * Default read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200187static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100189 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200190 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
193/**
Masanari Iida064a7692012-11-09 23:20:58 +0900194 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700195 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700197 * Default read function for 16bit buswidth with endianness conversion.
198 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200200static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100202 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200203 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * nand_read_word - [DEFAULT] read one word from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700208 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700210 * Default read function for 16bit buswidth without endianness conversion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 */
212static u16 nand_read_word(struct mtd_info *mtd)
213{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100214 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200215 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 * nand_select_chip - [DEFAULT] control CE line
Brian Norris8b6e50c2011-05-25 14:59:01 -0700220 * @mtd: MTD device structure
221 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 *
223 * Default select function for 1 chip devices.
224 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200225static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100227 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200228
229 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200231 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 break;
233 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 break;
235
236 default:
237 BUG();
238 }
239}
240
241/**
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100242 * nand_write_byte - [DEFAULT] write single byte to chip
243 * @mtd: MTD device structure
244 * @byte: value to write
245 *
246 * Default function to write a byte to I/O[7:0]
247 */
248static void nand_write_byte(struct mtd_info *mtd, uint8_t byte)
249{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100250 struct nand_chip *chip = mtd_to_nand(mtd);
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100251
252 chip->write_buf(mtd, &byte, 1);
253}
254
255/**
256 * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16
257 * @mtd: MTD device structure
258 * @byte: value to write
259 *
260 * Default function to write a byte to I/O[7:0] on a 16-bit wide chip.
261 */
262static void nand_write_byte16(struct mtd_info *mtd, uint8_t byte)
263{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100264 struct nand_chip *chip = mtd_to_nand(mtd);
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100265 uint16_t word = byte;
266
267 /*
268 * It's not entirely clear what should happen to I/O[15:8] when writing
269 * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads:
270 *
271 * When the host supports a 16-bit bus width, only data is
272 * transferred at the 16-bit width. All address and command line
273 * transfers shall use only the lower 8-bits of the data bus. During
274 * command transfers, the host may place any value on the upper
275 * 8-bits of the data bus. During address transfers, the host shall
276 * set the upper 8-bits of the data bus to 00h.
277 *
278 * One user of the write_byte callback is nand_onfi_set_features. The
279 * four parameters are specified to be written to I/O[7:0], but this is
280 * neither an address nor a command transfer. Let's assume a 0 on the
281 * upper I/O lines is OK.
282 */
283 chip->write_buf(mtd, (uint8_t *)&word, 2);
284}
285
286/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 * nand_write_buf - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700288 * @mtd: MTD device structure
289 * @buf: data buffer
290 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700292 * Default write function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200294static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100296 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Alexander Shiyan76413832013-04-13 09:32:13 +0400298 iowrite8_rep(chip->IO_ADDR_W, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
301/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000302 * nand_read_buf - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700303 * @mtd: MTD device structure
304 * @buf: buffer to store date
305 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700307 * Default read function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200309static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100311 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Alexander Shiyan76413832013-04-13 09:32:13 +0400313 ioread8_rep(chip->IO_ADDR_R, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 * nand_write_buf16 - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700318 * @mtd: MTD device structure
319 * @buf: data buffer
320 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700322 * Default write function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200324static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100326 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 u16 *p = (u16 *) buf;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000328
Alexander Shiyan76413832013-04-13 09:32:13 +0400329 iowrite16_rep(chip->IO_ADDR_W, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000333 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700334 * @mtd: MTD device structure
335 * @buf: buffer to store date
336 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700338 * Default read function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200340static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100342 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 u16 *p = (u16 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Alexander Shiyan76413832013-04-13 09:32:13 +0400345 ioread16_rep(chip->IO_ADDR_R, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
348/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700350 * @mtd: MTD device structure
351 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000353 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 */
Archit Taneja9f3e0422016-02-03 14:29:49 +0530355static int nand_block_bad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Masahiro Yamadac120e752017-03-23 05:07:01 +0900357 int page, page_end, res;
Boris BREZILLON862eba52015-12-01 12:03:03 +0100358 struct nand_chip *chip = mtd_to_nand(mtd);
Masahiro Yamadac120e752017-03-23 05:07:01 +0900359 u8 bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Brian Norris5fb15492011-05-31 16:31:21 -0700361 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700362 ofs += mtd->erasesize - mtd->writesize;
363
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100364 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
Masahiro Yamadac120e752017-03-23 05:07:01 +0900365 page_end = page + (chip->bbt_options & NAND_BBT_SCAN2NDPAGE ? 2 : 1);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100366
Masahiro Yamadac120e752017-03-23 05:07:01 +0900367 for (; page < page_end; page++) {
368 res = chip->ecc.read_oob(mtd, chip, page);
369 if (res)
370 return res;
371
372 bad = chip->oob_poi[chip->badblockpos];
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000373
Brian Norriscdbec052012-01-13 18:11:48 -0800374 if (likely(chip->badblockbits == 8))
375 res = bad != 0xFF;
376 else
377 res = hweight8(bad) < chip->badblockbits;
Masahiro Yamadac120e752017-03-23 05:07:01 +0900378 if (res)
379 return res;
380 }
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200381
Masahiro Yamadac120e752017-03-23 05:07:01 +0900382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385/**
Brian Norris5a0edb22013-07-30 17:52:58 -0700386 * nand_default_block_markbad - [DEFAULT] mark a block bad via bad block marker
Brian Norris8b6e50c2011-05-25 14:59:01 -0700387 * @mtd: MTD device structure
388 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700390 * This is the default implementation, which can be overridden by a hardware
Brian Norris5a0edb22013-07-30 17:52:58 -0700391 * specific driver. It provides the details for writing a bad block marker to a
392 * block.
393 */
394static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
395{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100396 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris5a0edb22013-07-30 17:52:58 -0700397 struct mtd_oob_ops ops;
398 uint8_t buf[2] = { 0, 0 };
399 int ret = 0, res, i = 0;
400
Brian Norris0ec56dc2015-02-28 02:02:30 -0800401 memset(&ops, 0, sizeof(ops));
Brian Norris5a0edb22013-07-30 17:52:58 -0700402 ops.oobbuf = buf;
403 ops.ooboffs = chip->badblockpos;
404 if (chip->options & NAND_BUSWIDTH_16) {
405 ops.ooboffs &= ~0x01;
406 ops.len = ops.ooblen = 2;
407 } else {
408 ops.len = ops.ooblen = 1;
409 }
410 ops.mode = MTD_OPS_PLACE_OOB;
411
412 /* Write to first/last page(s) if necessary */
413 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
414 ofs += mtd->erasesize - mtd->writesize;
415 do {
416 res = nand_do_write_oob(mtd, ofs, &ops);
417 if (!ret)
418 ret = res;
419
420 i++;
421 ofs += mtd->writesize;
422 } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2);
423
424 return ret;
425}
426
427/**
428 * nand_block_markbad_lowlevel - mark a block bad
429 * @mtd: MTD device structure
430 * @ofs: offset from device start
431 *
432 * This function performs the generic NAND bad block marking steps (i.e., bad
433 * block table(s) and/or marker(s)). We only allow the hardware driver to
434 * specify how to write bad block markers to OOB (chip->block_markbad).
435 *
Brian Norrisb32843b2013-07-30 17:52:59 -0700436 * We try operations in the following order:
Brian Norrise2414f42012-02-06 13:44:00 -0800437 * (1) erase the affected block, to allow OOB marker to be written cleanly
Brian Norrisb32843b2013-07-30 17:52:59 -0700438 * (2) write bad block marker to OOB area of affected block (unless flag
439 * NAND_BBT_NO_OOB_BBM is present)
440 * (3) update the BBT
441 * Note that we retain the first error encountered in (2) or (3), finish the
Brian Norrise2414f42012-02-06 13:44:00 -0800442 * procedures, and dump the error in the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443*/
Brian Norris5a0edb22013-07-30 17:52:58 -0700444static int nand_block_markbad_lowlevel(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100446 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norrisb32843b2013-07-30 17:52:59 -0700447 int res, ret = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000448
Brian Norrisb32843b2013-07-30 17:52:59 -0700449 if (!(chip->bbt_options & NAND_BBT_NO_OOB_BBM)) {
Brian Norris00918422012-01-13 18:11:47 -0800450 struct erase_info einfo;
451
452 /* Attempt erase before marking OOB */
453 memset(&einfo, 0, sizeof(einfo));
454 einfo.mtd = mtd;
455 einfo.addr = ofs;
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300456 einfo.len = 1ULL << chip->phys_erase_shift;
Brian Norris00918422012-01-13 18:11:47 -0800457 nand_erase_nand(mtd, &einfo, 0);
Brian Norris00918422012-01-13 18:11:47 -0800458
Brian Norrisb32843b2013-07-30 17:52:59 -0700459 /* Write bad block marker to OOB */
Huang Shijie6a8214a2012-11-19 14:43:30 +0800460 nand_get_device(mtd, FL_WRITING);
Brian Norris5a0edb22013-07-30 17:52:58 -0700461 ret = chip->block_markbad(mtd, ofs);
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300462 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200463 }
Brian Norrise2414f42012-02-06 13:44:00 -0800464
Brian Norrisb32843b2013-07-30 17:52:59 -0700465 /* Mark block bad in BBT */
466 if (chip->bbt) {
467 res = nand_markbad_bbt(mtd, ofs);
Brian Norrise2414f42012-02-06 13:44:00 -0800468 if (!ret)
469 ret = res;
470 }
471
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200472 if (!ret)
473 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300474
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200475 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000478/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700480 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700482 * Check, if the device is write protected. The function expects, that the
483 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100485static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100487 struct nand_chip *chip = mtd_to_nand(mtd);
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200488
Brian Norris8b6e50c2011-05-25 14:59:01 -0700489 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200490 if (chip->options & NAND_BROKEN_XD)
491 return 0;
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200494 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
495 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
498/**
Gu Zhengc30e1f72014-09-03 17:49:10 +0800499 * nand_block_isreserved - [GENERIC] Check if a block is marked reserved.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700500 * @mtd: MTD device structure
501 * @ofs: offset from device start
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300502 *
Gu Zhengc30e1f72014-09-03 17:49:10 +0800503 * Check if the block is marked as reserved.
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300504 */
505static int nand_block_isreserved(struct mtd_info *mtd, loff_t ofs)
506{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100507 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300508
509 if (!chip->bbt)
510 return 0;
511 /* Return info from the table */
512 return nand_isreserved_bbt(mtd, ofs);
513}
514
515/**
516 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
517 * @mtd: MTD device structure
518 * @ofs: offset from device start
Brian Norris8b6e50c2011-05-25 14:59:01 -0700519 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 *
521 * Check, if the block is bad. Either by reading the bad block table or
522 * calling of the scan function.
523 */
Archit Taneja9f3e0422016-02-03 14:29:49 +0530524static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100526 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000527
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200528 if (!chip->bbt)
Archit Taneja9f3e0422016-02-03 14:29:49 +0530529 return chip->block_bad(mtd, ofs);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100532 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200535/**
536 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700537 * @mtd: MTD device structure
538 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200539 *
540 * Helper function for nand_wait_ready used when needing to wait in interrupt
541 * context.
542 */
543static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
544{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100545 struct nand_chip *chip = mtd_to_nand(mtd);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200546 int i;
547
548 /* Wait for the device to get ready */
549 for (i = 0; i < timeo; i++) {
550 if (chip->dev_ready(mtd))
551 break;
552 touch_softlockup_watchdog();
553 mdelay(1);
554 }
555}
556
Alex Smithb70af9b2015-10-06 14:52:07 +0100557/**
558 * nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
559 * @mtd: MTD device structure
560 *
561 * Wait for the ready pin after a command, and warn if a timeout occurs.
562 */
David Woodhouse4b648b02006-09-25 17:05:24 +0100563void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000564{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100565 struct nand_chip *chip = mtd_to_nand(mtd);
Alex Smithb70af9b2015-10-06 14:52:07 +0100566 unsigned long timeo = 400;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000567
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200568 if (in_interrupt() || oops_in_progress)
Alex Smithb70af9b2015-10-06 14:52:07 +0100569 return panic_nand_wait_ready(mtd, timeo);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200570
Brian Norris7854d3f2011-06-23 14:12:08 -0700571 /* Wait until command is processed or timeout occurs */
Alex Smithb70af9b2015-10-06 14:52:07 +0100572 timeo = jiffies + msecs_to_jiffies(timeo);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000573 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200574 if (chip->dev_ready(mtd))
Ezequiel Garcia4c7e0542016-04-12 17:46:41 -0300575 return;
Alex Smithb70af9b2015-10-06 14:52:07 +0100576 cond_resched();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000577 } while (time_before(jiffies, timeo));
Alex Smithb70af9b2015-10-06 14:52:07 +0100578
Brian Norris9ebfdf52016-03-04 17:19:23 -0800579 if (!chip->dev_ready(mtd))
580 pr_warn_ratelimited("timeout while waiting for chip to become ready\n");
Thomas Gleixner3b887752005-02-22 21:56:49 +0000581}
David Woodhouse4b648b02006-09-25 17:05:24 +0100582EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584/**
Roger Quadros60c70d62015-02-23 17:26:39 +0200585 * nand_wait_status_ready - [GENERIC] Wait for the ready status after commands.
586 * @mtd: MTD device structure
587 * @timeo: Timeout in ms
588 *
589 * Wait for status ready (i.e. command done) or timeout.
590 */
591static void nand_wait_status_ready(struct mtd_info *mtd, unsigned long timeo)
592{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100593 register struct nand_chip *chip = mtd_to_nand(mtd);
Roger Quadros60c70d62015-02-23 17:26:39 +0200594
595 timeo = jiffies + msecs_to_jiffies(timeo);
596 do {
597 if ((chip->read_byte(mtd) & NAND_STATUS_READY))
598 break;
599 touch_softlockup_watchdog();
600 } while (time_before(jiffies, timeo));
601};
602
603/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700605 * @mtd: MTD device structure
606 * @command: the command to be sent
607 * @column: the column address for this command, -1 if none
608 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700610 * Send command to NAND device. This function is used for small page devices
Artem Bityutskiy51148f12013-03-05 15:00:51 +0200611 * (512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200613static void nand_command(struct mtd_info *mtd, unsigned int command,
614 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100616 register struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200617 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Brian Norris8b6e50c2011-05-25 14:59:01 -0700619 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (command == NAND_CMD_SEQIN) {
621 int readcmd;
622
Joern Engel28318772006-05-22 23:18:05 +0200623 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200625 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 readcmd = NAND_CMD_READOOB;
627 } else if (column < 256) {
628 /* First 256 bytes --> READ0 */
629 readcmd = NAND_CMD_READ0;
630 } else {
631 column -= 256;
632 readcmd = NAND_CMD_READ1;
633 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200634 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200635 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200637 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Brian Norris8b6e50c2011-05-25 14:59:01 -0700639 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200640 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
641 /* Serially input address */
642 if (column != -1) {
643 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800644 if (chip->options & NAND_BUSWIDTH_16 &&
645 !nand_opcode_8bits(command))
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200646 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200647 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200648 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200650 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200651 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200652 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200653 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200654 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200655 if (chip->chipsize > (32 << 20))
656 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200657 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200658 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000659
660 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700661 * Program and erase have their own busy handlers status and sequential
662 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100663 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 case NAND_CMD_PAGEPROG:
667 case NAND_CMD_ERASE1:
668 case NAND_CMD_ERASE2:
669 case NAND_CMD_SEQIN:
670 case NAND_CMD_STATUS:
Masahiro Yamada3158fa02017-03-23 09:17:49 +0900671 case NAND_CMD_READID:
Masahiro Yamadac5d664a2017-03-23 09:17:50 +0900672 case NAND_CMD_SET_FEATURES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return;
674
675 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200676 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200678 udelay(chip->chip_delay);
679 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200680 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200681 chip->cmd_ctrl(mtd,
682 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200683 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
684 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return;
686
David Woodhousee0c7d762006-05-13 18:07:53 +0100687 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000689 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 * If we don't have access to the busy pin, we apply the given
691 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100692 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200693 if (!chip->dev_ready) {
694 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700698 /*
699 * Apply this short delay always to ensure that we do wait tWB in
700 * any case on any machine.
701 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100702 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000703
704 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200707static void nand_ccs_delay(struct nand_chip *chip)
708{
709 /*
710 * The controller already takes care of waiting for tCCS when the RNDIN
711 * or RNDOUT command is sent, return directly.
712 */
713 if (!(chip->options & NAND_WAIT_TCCS))
714 return;
715
716 /*
717 * Wait tCCS_min if it is correctly defined, otherwise wait 500ns
718 * (which should be safe for all NANDs).
719 */
720 if (chip->data_interface && chip->data_interface->timings.sdr.tCCS_min)
721 ndelay(chip->data_interface->timings.sdr.tCCS_min / 1000);
722 else
723 ndelay(500);
724}
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/**
727 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700728 * @mtd: MTD device structure
729 * @command: the command to be sent
730 * @column: the column address for this command, -1 if none
731 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200733 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700734 * devices. We don't have the separate regions as we have in the small page
735 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200737static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
738 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100740 register struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 /* Emulate NAND_CMD_READOOB */
743 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200744 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 command = NAND_CMD_READ0;
746 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000747
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200748 /* Command latch cycle */
Alexander Shiyanfb066ad2013-02-28 12:02:19 +0400749 chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200752 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 /* Serially input address */
755 if (column != -1) {
756 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800757 if (chip->options & NAND_BUSWIDTH_16 &&
758 !nand_opcode_8bits(command))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200760 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200761 ctrl &= ~NAND_CTRL_CHANGE;
Boris Brezillonfde85cf2016-06-15 13:09:51 +0200762
Brian Norrisf5b88de2016-10-03 09:49:35 -0700763 /* Only output a single addr cycle for 8bits opcodes. */
Boris Brezillonfde85cf2016-06-15 13:09:51 +0200764 if (!nand_opcode_8bits(command))
765 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200768 chip->cmd_ctrl(mtd, page_addr, ctrl);
769 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200770 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200772 if (chip->chipsize > (128 << 20))
773 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200774 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200777 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000778
779 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700780 * Program and erase have their own busy handlers status, sequential
Gerhard Sittig7a442f12014-03-29 14:36:22 +0100781 * in and status need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000782 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 case NAND_CMD_CACHEDPROG:
786 case NAND_CMD_PAGEPROG:
787 case NAND_CMD_ERASE1:
788 case NAND_CMD_ERASE2:
789 case NAND_CMD_SEQIN:
790 case NAND_CMD_STATUS:
Masahiro Yamada3158fa02017-03-23 09:17:49 +0900791 case NAND_CMD_READID:
Masahiro Yamadac5d664a2017-03-23 09:17:50 +0900792 case NAND_CMD_SET_FEATURES:
David A. Marlin30f464b2005-01-17 18:35:25 +0000793 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200795 case NAND_CMD_RNDIN:
796 nand_ccs_delay(chip);
797 return;
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200800 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200802 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200803 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
804 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
805 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
806 NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200807 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
808 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return;
810
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200811 case NAND_CMD_RNDOUT:
812 /* No ready / busy check necessary */
813 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
814 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
815 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
816 NAND_NCE | NAND_CTRL_CHANGE);
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200817
818 nand_ccs_delay(chip);
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200819 return;
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200822 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
823 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
824 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
825 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000826
David Woodhousee0c7d762006-05-13 18:07:53 +0100827 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000829 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700831 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100832 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200833 if (!chip->dev_ready) {
834 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000838
Brian Norris8b6e50c2011-05-25 14:59:01 -0700839 /*
840 * Apply this short delay always to ensure that we do wait tWB in
841 * any case on any machine.
842 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100843 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000844
845 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
848/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200849 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700850 * @chip: the nand chip descriptor
851 * @mtd: MTD device structure
852 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200853 *
854 * Used when in panic, no locks are taken.
855 */
856static void panic_nand_get_device(struct nand_chip *chip,
857 struct mtd_info *mtd, int new_state)
858{
Brian Norris7854d3f2011-06-23 14:12:08 -0700859 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200860 chip->controller->active = chip;
861 chip->state = new_state;
862}
863
864/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700866 * @mtd: MTD device structure
867 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 *
869 * Get the device and lock it for exclusive access
870 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200871static int
Huang Shijie6a8214a2012-11-19 14:43:30 +0800872nand_get_device(struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100874 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200875 spinlock_t *lock = &chip->controller->lock;
876 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100877 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200878retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100879 spin_lock(lock);
880
vimal singhb8b3ee92009-07-09 20:41:22 +0530881 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200882 if (!chip->controller->active)
883 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200884
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200885 if (chip->controller->active == chip && chip->state == FL_READY) {
886 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100887 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100888 return 0;
889 }
890 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800891 if (chip->controller->active->state == FL_PM_SUSPENDED) {
892 chip->state = FL_PM_SUSPENDED;
893 spin_unlock(lock);
894 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800895 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100896 }
897 set_current_state(TASK_UNINTERRUPTIBLE);
898 add_wait_queue(wq, &wait);
899 spin_unlock(lock);
900 schedule();
901 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 goto retry;
903}
904
905/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700906 * panic_nand_wait - [GENERIC] wait until the command is done
907 * @mtd: MTD device structure
908 * @chip: NAND chip structure
909 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200910 *
911 * Wait for command done. This is a helper function for nand_wait used when
912 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400913 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200914 */
915static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
916 unsigned long timeo)
917{
918 int i;
919 for (i = 0; i < timeo; i++) {
920 if (chip->dev_ready) {
921 if (chip->dev_ready(mtd))
922 break;
923 } else {
924 if (chip->read_byte(mtd) & NAND_STATUS_READY)
925 break;
926 }
927 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200928 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200929}
930
931/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700932 * nand_wait - [DEFAULT] wait until the command is done
933 * @mtd: MTD device structure
934 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 *
Alex Smithb70af9b2015-10-06 14:52:07 +0100936 * Wait for command done. This applies to erase and program only.
Randy Dunlap844d3b42006-06-28 21:48:27 -0700937 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200938static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940
Alex Smithb70af9b2015-10-06 14:52:07 +0100941 int status;
942 unsigned long timeo = 400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Brian Norris8b6e50c2011-05-25 14:59:01 -0700944 /*
945 * Apply this short delay always to ensure that we do wait tWB in any
946 * case on any machine.
947 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100948 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Artem Bityutskiy14c65782013-03-04 14:21:34 +0200950 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200952 if (in_interrupt() || oops_in_progress)
953 panic_nand_wait(mtd, chip, timeo);
954 else {
Huang Shijie6d2559f2013-01-30 10:03:56 +0800955 timeo = jiffies + msecs_to_jiffies(timeo);
Alex Smithb70af9b2015-10-06 14:52:07 +0100956 do {
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200957 if (chip->dev_ready) {
958 if (chip->dev_ready(mtd))
959 break;
960 } else {
961 if (chip->read_byte(mtd) & NAND_STATUS_READY)
962 break;
963 }
964 cond_resched();
Alex Smithb70af9b2015-10-06 14:52:07 +0100965 } while (time_before(jiffies, timeo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800967
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200968 status = (int)chip->read_byte(mtd);
Matthieu CASTETf251b8d2012-11-05 15:00:44 +0100969 /* This can happen if in case of timeout or buggy dev_ready */
970 WARN_ON(!(status & NAND_STATUS_READY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return status;
972}
973
974/**
Boris Brezillond8e725d2016-09-15 10:32:50 +0200975 * nand_reset_data_interface - Reset data interface and timings
976 * @chip: The NAND chip
977 *
978 * Reset the Data interface and timings to ONFI mode 0.
979 *
980 * Returns 0 for success or negative error code otherwise.
981 */
982static int nand_reset_data_interface(struct nand_chip *chip)
983{
984 struct mtd_info *mtd = nand_to_mtd(chip);
985 const struct nand_data_interface *conf;
986 int ret;
987
988 if (!chip->setup_data_interface)
989 return 0;
990
991 /*
992 * The ONFI specification says:
993 * "
994 * To transition from NV-DDR or NV-DDR2 to the SDR data
995 * interface, the host shall use the Reset (FFh) command
996 * using SDR timing mode 0. A device in any timing mode is
997 * required to recognize Reset (FFh) command issued in SDR
998 * timing mode 0.
999 * "
1000 *
1001 * Configure the data interface in SDR mode and set the
1002 * timings to timing mode 0.
1003 */
1004
1005 conf = nand_get_default_data_interface();
1006 ret = chip->setup_data_interface(mtd, conf, false);
1007 if (ret)
1008 pr_err("Failed to configure data interface to SDR timing mode 0\n");
1009
1010 return ret;
1011}
1012
1013/**
1014 * nand_setup_data_interface - Setup the best data interface and timings
1015 * @chip: The NAND chip
1016 *
1017 * Find and configure the best data interface and NAND timings supported by
1018 * the chip and the driver.
1019 * First tries to retrieve supported timing modes from ONFI information,
1020 * and if the NAND chip does not support ONFI, relies on the
1021 * ->onfi_timing_mode_default specified in the nand_ids table.
1022 *
1023 * Returns 0 for success or negative error code otherwise.
1024 */
1025static int nand_setup_data_interface(struct nand_chip *chip)
1026{
1027 struct mtd_info *mtd = nand_to_mtd(chip);
1028 int ret;
1029
1030 if (!chip->setup_data_interface || !chip->data_interface)
1031 return 0;
1032
1033 /*
1034 * Ensure the timing mode has been changed on the chip side
1035 * before changing timings on the controller side.
1036 */
1037 if (chip->onfi_version) {
1038 u8 tmode_param[ONFI_SUBFEATURE_PARAM_LEN] = {
1039 chip->onfi_timing_mode_default,
1040 };
1041
1042 ret = chip->onfi_set_features(mtd, chip,
1043 ONFI_FEATURE_ADDR_TIMING_MODE,
1044 tmode_param);
1045 if (ret)
1046 goto err;
1047 }
1048
1049 ret = chip->setup_data_interface(mtd, chip->data_interface, false);
1050err:
1051 return ret;
1052}
1053
1054/**
1055 * nand_init_data_interface - find the best data interface and timings
1056 * @chip: The NAND chip
1057 *
1058 * Find the best data interface and NAND timings supported by the chip
1059 * and the driver.
1060 * First tries to retrieve supported timing modes from ONFI information,
1061 * and if the NAND chip does not support ONFI, relies on the
1062 * ->onfi_timing_mode_default specified in the nand_ids table. After this
1063 * function nand_chip->data_interface is initialized with the best timing mode
1064 * available.
1065 *
1066 * Returns 0 for success or negative error code otherwise.
1067 */
1068static int nand_init_data_interface(struct nand_chip *chip)
1069{
1070 struct mtd_info *mtd = nand_to_mtd(chip);
1071 int modes, mode, ret;
1072
1073 if (!chip->setup_data_interface)
1074 return 0;
1075
1076 /*
1077 * First try to identify the best timings from ONFI parameters and
1078 * if the NAND does not support ONFI, fallback to the default ONFI
1079 * timing mode.
1080 */
1081 modes = onfi_get_async_timing_mode(chip);
1082 if (modes == ONFI_TIMING_MODE_UNKNOWN) {
1083 if (!chip->onfi_timing_mode_default)
1084 return 0;
1085
1086 modes = GENMASK(chip->onfi_timing_mode_default, 0);
1087 }
1088
1089 chip->data_interface = kzalloc(sizeof(*chip->data_interface),
1090 GFP_KERNEL);
1091 if (!chip->data_interface)
1092 return -ENOMEM;
1093
1094 for (mode = fls(modes) - 1; mode >= 0; mode--) {
1095 ret = onfi_init_data_interface(chip, chip->data_interface,
1096 NAND_SDR_IFACE, mode);
1097 if (ret)
1098 continue;
1099
1100 ret = chip->setup_data_interface(mtd, chip->data_interface,
1101 true);
1102 if (!ret) {
1103 chip->onfi_timing_mode_default = mode;
1104 break;
1105 }
1106 }
1107
1108 return 0;
1109}
1110
1111static void nand_release_data_interface(struct nand_chip *chip)
1112{
1113 kfree(chip->data_interface);
1114}
1115
1116/**
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001117 * nand_reset - Reset and initialize a NAND device
1118 * @chip: The NAND chip
Boris Brezillon73f907f2016-10-24 16:46:20 +02001119 * @chipnr: Internal die id
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001120 *
1121 * Returns 0 for success or negative error code otherwise
1122 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001123int nand_reset(struct nand_chip *chip, int chipnr)
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001124{
1125 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001126 int ret;
1127
1128 ret = nand_reset_data_interface(chip);
1129 if (ret)
1130 return ret;
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001131
Boris Brezillon73f907f2016-10-24 16:46:20 +02001132 /*
1133 * The CS line has to be released before we can apply the new NAND
1134 * interface settings, hence this weird ->select_chip() dance.
1135 */
1136 chip->select_chip(mtd, chipnr);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001137 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Boris Brezillon73f907f2016-10-24 16:46:20 +02001138 chip->select_chip(mtd, -1);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001139
Boris Brezillon73f907f2016-10-24 16:46:20 +02001140 chip->select_chip(mtd, chipnr);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001141 ret = nand_setup_data_interface(chip);
Boris Brezillon73f907f2016-10-24 16:46:20 +02001142 chip->select_chip(mtd, -1);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001143 if (ret)
1144 return ret;
1145
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001146 return 0;
1147}
1148
1149/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001150 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001151 * @mtd: mtd info
1152 * @ofs: offset to start unlock from
1153 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -07001154 * @invert: when = 0, unlock the range of blocks within the lower and
1155 * upper boundary address
1156 * when = 1, unlock the range of blocks outside the boundaries
1157 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +05301158 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001159 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301160 */
1161static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
1162 uint64_t len, int invert)
1163{
1164 int ret = 0;
1165 int status, page;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001166 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +05301167
1168 /* Submit address of first page to unlock */
1169 page = ofs >> chip->page_shift;
1170 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
1171
1172 /* Submit address of last page to unlock */
1173 page = (ofs + len) >> chip->page_shift;
1174 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
1175 (page | invert) & chip->pagemask);
1176
1177 /* Call wait ready function */
1178 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301179 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -04001180 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07001181 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301182 __func__, status);
1183 ret = -EIO;
1184 }
1185
1186 return ret;
1187}
1188
1189/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001190 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001191 * @mtd: mtd info
1192 * @ofs: offset to start unlock from
1193 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +05301194 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001195 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301196 */
1197int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1198{
1199 int ret = 0;
1200 int chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001201 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +05301202
Brian Norris289c0522011-07-19 10:06:09 -07001203 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301204 __func__, (unsigned long long)ofs, len);
1205
1206 if (check_offs_len(mtd, ofs, len))
Brian Norrisb1a23482015-02-28 02:02:27 -08001207 return -EINVAL;
Vimal Singh7d70f332010-02-08 15:50:49 +05301208
1209 /* Align to last block address if size addresses end of the device */
1210 if (ofs + len == mtd->size)
1211 len -= mtd->erasesize;
1212
Huang Shijie6a8214a2012-11-19 14:43:30 +08001213 nand_get_device(mtd, FL_UNLOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +05301214
1215 /* Shift to get chip number */
1216 chipnr = ofs >> chip->chip_shift;
1217
White Ding57d3a9a2014-07-24 00:10:45 +08001218 /*
1219 * Reset the chip.
1220 * If we want to check the WP through READ STATUS and check the bit 7
1221 * we must reset the chip
1222 * some operation can also clear the bit 7 of status register
1223 * eg. erase/program a locked block
1224 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001225 nand_reset(chip, chipnr);
1226
1227 chip->select_chip(mtd, chipnr);
White Ding57d3a9a2014-07-24 00:10:45 +08001228
Vimal Singh7d70f332010-02-08 15:50:49 +05301229 /* Check, if it is write protected */
1230 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001231 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301232 __func__);
1233 ret = -EIO;
1234 goto out;
1235 }
1236
1237 ret = __nand_unlock(mtd, ofs, len, 0);
1238
1239out:
Huang Shijieb0bb6902012-11-19 14:43:29 +08001240 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301241 nand_release_device(mtd);
1242
1243 return ret;
1244}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001245EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301246
1247/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001248 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001249 * @mtd: mtd info
1250 * @ofs: offset to start unlock from
1251 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +05301252 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001253 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
1254 * have this feature, but it allows only to lock all blocks, not for specified
1255 * range for block. Implementing 'lock' feature by making use of 'unlock', for
1256 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +05301257 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001258 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301259 */
1260int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1261{
1262 int ret = 0;
1263 int chipnr, status, page;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001264 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +05301265
Brian Norris289c0522011-07-19 10:06:09 -07001266 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301267 __func__, (unsigned long long)ofs, len);
1268
1269 if (check_offs_len(mtd, ofs, len))
Brian Norrisb1a23482015-02-28 02:02:27 -08001270 return -EINVAL;
Vimal Singh7d70f332010-02-08 15:50:49 +05301271
Huang Shijie6a8214a2012-11-19 14:43:30 +08001272 nand_get_device(mtd, FL_LOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +05301273
1274 /* Shift to get chip number */
1275 chipnr = ofs >> chip->chip_shift;
1276
White Ding57d3a9a2014-07-24 00:10:45 +08001277 /*
1278 * Reset the chip.
1279 * If we want to check the WP through READ STATUS and check the bit 7
1280 * we must reset the chip
1281 * some operation can also clear the bit 7 of status register
1282 * eg. erase/program a locked block
1283 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001284 nand_reset(chip, chipnr);
1285
1286 chip->select_chip(mtd, chipnr);
White Ding57d3a9a2014-07-24 00:10:45 +08001287
Vimal Singh7d70f332010-02-08 15:50:49 +05301288 /* Check, if it is write protected */
1289 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001290 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301291 __func__);
1292 status = MTD_ERASE_FAILED;
1293 ret = -EIO;
1294 goto out;
1295 }
1296
1297 /* Submit address of first page to lock */
1298 page = ofs >> chip->page_shift;
1299 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1300
1301 /* Call wait ready function */
1302 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301303 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -04001304 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07001305 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301306 __func__, status);
1307 ret = -EIO;
1308 goto out;
1309 }
1310
1311 ret = __nand_unlock(mtd, ofs, len, 0x1);
1312
1313out:
Huang Shijieb0bb6902012-11-19 14:43:29 +08001314 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301315 nand_release_device(mtd);
1316
1317 return ret;
1318}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001319EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301320
1321/**
Boris BREZILLON730a43f2015-09-03 18:03:38 +02001322 * nand_check_erased_buf - check if a buffer contains (almost) only 0xff data
1323 * @buf: buffer to test
1324 * @len: buffer length
1325 * @bitflips_threshold: maximum number of bitflips
1326 *
1327 * Check if a buffer contains only 0xff, which means the underlying region
1328 * has been erased and is ready to be programmed.
1329 * The bitflips_threshold specify the maximum number of bitflips before
1330 * considering the region is not erased.
1331 * Note: The logic of this function has been extracted from the memweight
1332 * implementation, except that nand_check_erased_buf function exit before
1333 * testing the whole buffer if the number of bitflips exceed the
1334 * bitflips_threshold value.
1335 *
1336 * Returns a positive number of bitflips less than or equal to
1337 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1338 * threshold.
1339 */
1340static int nand_check_erased_buf(void *buf, int len, int bitflips_threshold)
1341{
1342 const unsigned char *bitmap = buf;
1343 int bitflips = 0;
1344 int weight;
1345
1346 for (; len && ((uintptr_t)bitmap) % sizeof(long);
1347 len--, bitmap++) {
1348 weight = hweight8(*bitmap);
1349 bitflips += BITS_PER_BYTE - weight;
1350 if (unlikely(bitflips > bitflips_threshold))
1351 return -EBADMSG;
1352 }
1353
1354 for (; len >= sizeof(long);
1355 len -= sizeof(long), bitmap += sizeof(long)) {
1356 weight = hweight_long(*((unsigned long *)bitmap));
1357 bitflips += BITS_PER_LONG - weight;
1358 if (unlikely(bitflips > bitflips_threshold))
1359 return -EBADMSG;
1360 }
1361
1362 for (; len > 0; len--, bitmap++) {
1363 weight = hweight8(*bitmap);
1364 bitflips += BITS_PER_BYTE - weight;
1365 if (unlikely(bitflips > bitflips_threshold))
1366 return -EBADMSG;
1367 }
1368
1369 return bitflips;
1370}
1371
1372/**
1373 * nand_check_erased_ecc_chunk - check if an ECC chunk contains (almost) only
1374 * 0xff data
1375 * @data: data buffer to test
1376 * @datalen: data length
1377 * @ecc: ECC buffer
1378 * @ecclen: ECC length
1379 * @extraoob: extra OOB buffer
1380 * @extraooblen: extra OOB length
1381 * @bitflips_threshold: maximum number of bitflips
1382 *
1383 * Check if a data buffer and its associated ECC and OOB data contains only
1384 * 0xff pattern, which means the underlying region has been erased and is
1385 * ready to be programmed.
1386 * The bitflips_threshold specify the maximum number of bitflips before
1387 * considering the region as not erased.
1388 *
1389 * Note:
1390 * 1/ ECC algorithms are working on pre-defined block sizes which are usually
1391 * different from the NAND page size. When fixing bitflips, ECC engines will
1392 * report the number of errors per chunk, and the NAND core infrastructure
1393 * expect you to return the maximum number of bitflips for the whole page.
1394 * This is why you should always use this function on a single chunk and
1395 * not on the whole page. After checking each chunk you should update your
1396 * max_bitflips value accordingly.
1397 * 2/ When checking for bitflips in erased pages you should not only check
1398 * the payload data but also their associated ECC data, because a user might
1399 * have programmed almost all bits to 1 but a few. In this case, we
1400 * shouldn't consider the chunk as erased, and checking ECC bytes prevent
1401 * this case.
1402 * 3/ The extraoob argument is optional, and should be used if some of your OOB
1403 * data are protected by the ECC engine.
1404 * It could also be used if you support subpages and want to attach some
1405 * extra OOB data to an ECC chunk.
1406 *
1407 * Returns a positive number of bitflips less than or equal to
1408 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1409 * threshold. In case of success, the passed buffers are filled with 0xff.
1410 */
1411int nand_check_erased_ecc_chunk(void *data, int datalen,
1412 void *ecc, int ecclen,
1413 void *extraoob, int extraooblen,
1414 int bitflips_threshold)
1415{
1416 int data_bitflips = 0, ecc_bitflips = 0, extraoob_bitflips = 0;
1417
1418 data_bitflips = nand_check_erased_buf(data, datalen,
1419 bitflips_threshold);
1420 if (data_bitflips < 0)
1421 return data_bitflips;
1422
1423 bitflips_threshold -= data_bitflips;
1424
1425 ecc_bitflips = nand_check_erased_buf(ecc, ecclen, bitflips_threshold);
1426 if (ecc_bitflips < 0)
1427 return ecc_bitflips;
1428
1429 bitflips_threshold -= ecc_bitflips;
1430
1431 extraoob_bitflips = nand_check_erased_buf(extraoob, extraooblen,
1432 bitflips_threshold);
1433 if (extraoob_bitflips < 0)
1434 return extraoob_bitflips;
1435
1436 if (data_bitflips)
1437 memset(data, 0xff, datalen);
1438
1439 if (ecc_bitflips)
1440 memset(ecc, 0xff, ecclen);
1441
1442 if (extraoob_bitflips)
1443 memset(extraoob, 0xff, extraooblen);
1444
1445 return data_bitflips + ecc_bitflips + extraoob_bitflips;
1446}
1447EXPORT_SYMBOL(nand_check_erased_ecc_chunk);
1448
1449/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001450 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001451 * @mtd: mtd info structure
1452 * @chip: nand chip info structure
1453 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001454 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001455 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001456 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001457 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001458 */
1459static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001460 uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001461{
1462 chip->read_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07001463 if (oob_required)
1464 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001465 return 0;
1466}
1467
1468/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001469 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001470 * @mtd: mtd info structure
1471 * @chip: nand chip info structure
1472 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001473 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001474 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001475 *
1476 * We need a special oob layout and handling even when OOB isn't used.
1477 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001478static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001479 struct nand_chip *chip, uint8_t *buf,
1480 int oob_required, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001481{
1482 int eccsize = chip->ecc.size;
1483 int eccbytes = chip->ecc.bytes;
1484 uint8_t *oob = chip->oob_poi;
1485 int steps, size;
1486
1487 for (steps = chip->ecc.steps; steps > 0; steps--) {
1488 chip->read_buf(mtd, buf, eccsize);
1489 buf += eccsize;
1490
1491 if (chip->ecc.prepad) {
1492 chip->read_buf(mtd, oob, chip->ecc.prepad);
1493 oob += chip->ecc.prepad;
1494 }
1495
1496 chip->read_buf(mtd, oob, eccbytes);
1497 oob += eccbytes;
1498
1499 if (chip->ecc.postpad) {
1500 chip->read_buf(mtd, oob, chip->ecc.postpad);
1501 oob += chip->ecc.postpad;
1502 }
1503 }
1504
1505 size = mtd->oobsize - (oob - chip->oob_poi);
1506 if (size)
1507 chip->read_buf(mtd, oob, size);
1508
1509 return 0;
1510}
1511
1512/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001513 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001514 * @mtd: mtd info structure
1515 * @chip: nand chip info structure
1516 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001517 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001518 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001519 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001520static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001521 uint8_t *buf, int oob_required, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
Boris Brezillon846031d2016-02-03 20:11:00 +01001523 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001524 int eccbytes = chip->ecc.bytes;
1525 int eccsteps = chip->ecc.steps;
1526 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001527 uint8_t *ecc_calc = chip->buffers->ecccalc;
1528 uint8_t *ecc_code = chip->buffers->ecccode;
Mike Dunn3f91e942012-04-25 12:06:09 -07001529 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001530
Brian Norris1fbb9382012-05-02 10:14:55 -07001531 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001532
1533 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1534 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1535
Boris Brezillon846031d2016-02-03 20:11:00 +01001536 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1537 chip->ecc.total);
1538 if (ret)
1539 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001540
1541 eccsteps = chip->ecc.steps;
1542 p = buf;
1543
1544 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1545 int stat;
1546
1547 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001548 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001549 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001550 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001551 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001552 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1553 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001554 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001555 return max_bitflips;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001556}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558/**
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05301559 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001560 * @mtd: mtd info structure
1561 * @chip: nand chip info structure
1562 * @data_offs: offset of requested data within the page
1563 * @readlen: data length
1564 * @bufpoi: buffer to store read data
Huang Shijiee004deb2014-01-03 11:01:40 +08001565 * @page: page number to read
Alexey Korolev3d459552008-05-15 17:23:18 +01001566 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001567static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08001568 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi,
1569 int page)
Alexey Korolev3d459552008-05-15 17:23:18 +01001570{
Boris Brezillon846031d2016-02-03 20:11:00 +01001571 int start_step, end_step, num_steps, ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01001572 uint8_t *p;
1573 int data_col_addr, i, gaps = 0;
1574 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1575 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Boris Brezillon846031d2016-02-03 20:11:00 +01001576 int index, section = 0;
Mike Dunn3f91e942012-04-25 12:06:09 -07001577 unsigned int max_bitflips = 0;
Boris Brezillon846031d2016-02-03 20:11:00 +01001578 struct mtd_oob_region oobregion = { };
Alexey Korolev3d459552008-05-15 17:23:18 +01001579
Brian Norris7854d3f2011-06-23 14:12:08 -07001580 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001581 start_step = data_offs / chip->ecc.size;
1582 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1583 num_steps = end_step - start_step + 1;
Ron4a4163ca2014-03-16 04:01:07 +10301584 index = start_step * chip->ecc.bytes;
Alexey Korolev3d459552008-05-15 17:23:18 +01001585
Brian Norris8b6e50c2011-05-25 14:59:01 -07001586 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001587 datafrag_len = num_steps * chip->ecc.size;
1588 eccfrag_len = num_steps * chip->ecc.bytes;
1589
1590 data_col_addr = start_step * chip->ecc.size;
1591 /* If we read not a page aligned data */
1592 if (data_col_addr != 0)
1593 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1594
1595 p = bufpoi + data_col_addr;
1596 chip->read_buf(mtd, p, datafrag_len);
1597
Brian Norris8b6e50c2011-05-25 14:59:01 -07001598 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001599 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1600 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1601
Brian Norris8b6e50c2011-05-25 14:59:01 -07001602 /*
1603 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07001604 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07001605 */
Boris Brezillon846031d2016-02-03 20:11:00 +01001606 ret = mtd_ooblayout_find_eccregion(mtd, index, &section, &oobregion);
1607 if (ret)
1608 return ret;
1609
1610 if (oobregion.length < eccfrag_len)
1611 gaps = 1;
1612
Alexey Korolev3d459552008-05-15 17:23:18 +01001613 if (gaps) {
1614 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1615 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1616 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001617 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07001618 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07001619 * about buswidth alignment in read_buf.
1620 */
Boris Brezillon846031d2016-02-03 20:11:00 +01001621 aligned_pos = oobregion.offset & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001622 aligned_len = eccfrag_len;
Boris Brezillon846031d2016-02-03 20:11:00 +01001623 if (oobregion.offset & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001624 aligned_len++;
Boris Brezillon846031d2016-02-03 20:11:00 +01001625 if ((oobregion.offset + (num_steps * chip->ecc.bytes)) &
1626 (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001627 aligned_len++;
1628
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001629 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
Boris Brezillon846031d2016-02-03 20:11:00 +01001630 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001631 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1632 }
1633
Boris Brezillon846031d2016-02-03 20:11:00 +01001634 ret = mtd_ooblayout_get_eccbytes(mtd, chip->buffers->ecccode,
1635 chip->oob_poi, index, eccfrag_len);
1636 if (ret)
1637 return ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01001638
1639 p = bufpoi + data_col_addr;
1640 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1641 int stat;
1642
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001643 stat = chip->ecc.correct(mtd, p,
1644 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001645 if (stat == -EBADMSG &&
1646 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1647 /* check for empty pages with bitflips */
1648 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
1649 &chip->buffers->ecccode[i],
1650 chip->ecc.bytes,
1651 NULL, 0,
1652 chip->ecc.strength);
1653 }
1654
Mike Dunn3f91e942012-04-25 12:06:09 -07001655 if (stat < 0) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001656 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001657 } else {
Alexey Korolev3d459552008-05-15 17:23:18 +01001658 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001659 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1660 }
Alexey Korolev3d459552008-05-15 17:23:18 +01001661 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001662 return max_bitflips;
Alexey Korolev3d459552008-05-15 17:23:18 +01001663}
1664
1665/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001666 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001667 * @mtd: mtd info structure
1668 * @chip: nand chip info structure
1669 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001670 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001671 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001672 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001673 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001674 */
1675static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001676 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001677{
Boris Brezillon846031d2016-02-03 20:11:00 +01001678 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001679 int eccbytes = chip->ecc.bytes;
1680 int eccsteps = chip->ecc.steps;
1681 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001682 uint8_t *ecc_calc = chip->buffers->ecccalc;
1683 uint8_t *ecc_code = chip->buffers->ecccode;
Mike Dunn3f91e942012-04-25 12:06:09 -07001684 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001685
1686 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1687 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1688 chip->read_buf(mtd, p, eccsize);
1689 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1690 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001691 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001692
Boris Brezillon846031d2016-02-03 20:11:00 +01001693 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1694 chip->ecc.total);
1695 if (ret)
1696 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001697
1698 eccsteps = chip->ecc.steps;
1699 p = buf;
1700
1701 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1702 int stat;
1703
1704 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001705 if (stat == -EBADMSG &&
1706 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1707 /* check for empty pages with bitflips */
1708 stat = nand_check_erased_ecc_chunk(p, eccsize,
1709 &ecc_code[i], eccbytes,
1710 NULL, 0,
1711 chip->ecc.strength);
1712 }
1713
Mike Dunn3f91e942012-04-25 12:06:09 -07001714 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001715 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001716 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001717 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001718 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1719 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001720 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001721 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001722}
1723
1724/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001725 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07001726 * @mtd: mtd info structure
1727 * @chip: nand chip info structure
1728 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001729 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001730 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001731 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001732 * Hardware ECC for large page chips, require OOB to be read first. For this
1733 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1734 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1735 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1736 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001737 */
1738static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001739 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001740{
Boris Brezillon846031d2016-02-03 20:11:00 +01001741 int i, eccsize = chip->ecc.size, ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001742 int eccbytes = chip->ecc.bytes;
1743 int eccsteps = chip->ecc.steps;
1744 uint8_t *p = buf;
1745 uint8_t *ecc_code = chip->buffers->ecccode;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001746 uint8_t *ecc_calc = chip->buffers->ecccalc;
Mike Dunn3f91e942012-04-25 12:06:09 -07001747 unsigned int max_bitflips = 0;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001748
1749 /* Read the OOB area first */
1750 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1751 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1752 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1753
Boris Brezillon846031d2016-02-03 20:11:00 +01001754 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1755 chip->ecc.total);
1756 if (ret)
1757 return ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001758
1759 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1760 int stat;
1761
1762 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1763 chip->read_buf(mtd, p, eccsize);
1764 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1765
1766 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001767 if (stat == -EBADMSG &&
1768 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1769 /* check for empty pages with bitflips */
1770 stat = nand_check_erased_ecc_chunk(p, eccsize,
1771 &ecc_code[i], eccbytes,
1772 NULL, 0,
1773 chip->ecc.strength);
1774 }
1775
Mike Dunn3f91e942012-04-25 12:06:09 -07001776 if (stat < 0) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001777 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001778 } else {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001779 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001780 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1781 }
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001782 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001783 return max_bitflips;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001784}
1785
1786/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001787 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07001788 * @mtd: mtd info structure
1789 * @chip: nand chip info structure
1790 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001791 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001792 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001793 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001794 * The hw generator calculates the error syndrome automatically. Therefore we
1795 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001796 */
1797static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001798 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001799{
1800 int i, eccsize = chip->ecc.size;
1801 int eccbytes = chip->ecc.bytes;
1802 int eccsteps = chip->ecc.steps;
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001803 int eccpadbytes = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001804 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001805 uint8_t *oob = chip->oob_poi;
Mike Dunn3f91e942012-04-25 12:06:09 -07001806 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001807
1808 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1809 int stat;
1810
1811 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1812 chip->read_buf(mtd, p, eccsize);
1813
1814 if (chip->ecc.prepad) {
1815 chip->read_buf(mtd, oob, chip->ecc.prepad);
1816 oob += chip->ecc.prepad;
1817 }
1818
1819 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1820 chip->read_buf(mtd, oob, eccbytes);
1821 stat = chip->ecc.correct(mtd, p, oob, NULL);
1822
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001823 oob += eccbytes;
1824
1825 if (chip->ecc.postpad) {
1826 chip->read_buf(mtd, oob, chip->ecc.postpad);
1827 oob += chip->ecc.postpad;
1828 }
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001829
1830 if (stat == -EBADMSG &&
1831 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1832 /* check for empty pages with bitflips */
1833 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
1834 oob - eccpadbytes,
1835 eccpadbytes,
1836 NULL, 0,
1837 chip->ecc.strength);
1838 }
1839
1840 if (stat < 0) {
1841 mtd->ecc_stats.failed++;
1842 } else {
1843 mtd->ecc_stats.corrected += stat;
1844 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1845 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001846 }
1847
1848 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001849 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001850 if (i)
1851 chip->read_buf(mtd, oob, i);
1852
Mike Dunn3f91e942012-04-25 12:06:09 -07001853 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001854}
1855
1856/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001857 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Boris Brezillon846031d2016-02-03 20:11:00 +01001858 * @mtd: mtd info structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07001859 * @oob: oob destination address
1860 * @ops: oob ops structure
1861 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001862 */
Boris Brezillon846031d2016-02-03 20:11:00 +01001863static uint8_t *nand_transfer_oob(struct mtd_info *mtd, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001864 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001865{
Boris Brezillon846031d2016-02-03 20:11:00 +01001866 struct nand_chip *chip = mtd_to_nand(mtd);
1867 int ret;
1868
Florian Fainellif8ac0412010-09-07 13:23:43 +02001869 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001870
Brian Norris0612b9d2011-08-30 18:45:40 -07001871 case MTD_OPS_PLACE_OOB:
1872 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001873 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1874 return oob + len;
1875
Boris Brezillon846031d2016-02-03 20:11:00 +01001876 case MTD_OPS_AUTO_OOB:
1877 ret = mtd_ooblayout_get_databytes(mtd, oob, chip->oob_poi,
1878 ops->ooboffs, len);
1879 BUG_ON(ret);
1880 return oob + len;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001881
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001882 default:
1883 BUG();
1884 }
1885 return NULL;
1886}
1887
1888/**
Brian Norrisba84fb52014-01-03 15:13:33 -08001889 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
1890 * @mtd: MTD device structure
1891 * @retry_mode: the retry mode to use
1892 *
1893 * Some vendors supply a special command to shift the Vt threshold, to be used
1894 * when there are too many bitflips in a page (i.e., ECC error). After setting
1895 * a new threshold, the host should retry reading the page.
1896 */
1897static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
1898{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001899 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norrisba84fb52014-01-03 15:13:33 -08001900
1901 pr_debug("setting READ RETRY mode %d\n", retry_mode);
1902
1903 if (retry_mode >= chip->read_retries)
1904 return -EINVAL;
1905
1906 if (!chip->setup_read_retry)
1907 return -EOPNOTSUPP;
1908
1909 return chip->setup_read_retry(mtd, retry_mode);
1910}
1911
1912/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001913 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001914 * @mtd: MTD device structure
1915 * @from: offset to read from
1916 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001917 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001918 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001919 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001920static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1921 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001922{
Brian Norrise47f3db2012-05-02 10:14:56 -07001923 int chipnr, page, realpage, col, bytes, aligned, oob_required;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001924 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001925 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001926 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001927 uint32_t oobreadlen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01001928 uint32_t max_oobsize = mtd_oobavail(mtd, ops);
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001929
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001930 uint8_t *bufpoi, *oob, *buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04001931 int use_bufpoi;
Mike Dunnedbc45402012-04-25 12:06:11 -07001932 unsigned int max_bitflips = 0;
Brian Norrisba84fb52014-01-03 15:13:33 -08001933 int retry_mode = 0;
Brian Norrisb72f3df2013-12-03 11:04:14 -08001934 bool ecc_fail = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001936 chipnr = (int)(from >> chip->chip_shift);
1937 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001939 realpage = (int)(from >> chip->page_shift);
1940 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001942 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001944 buf = ops->datbuf;
1945 oob = ops->oobbuf;
Brian Norrise47f3db2012-05-02 10:14:56 -07001946 oob_required = oob ? 1 : 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001947
Florian Fainellif8ac0412010-09-07 13:23:43 +02001948 while (1) {
Brian Norrisb72f3df2013-12-03 11:04:14 -08001949 unsigned int ecc_failures = mtd->ecc_stats.failed;
1950
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001951 bytes = min(mtd->writesize - col, readlen);
1952 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001953
Kamal Dasu66507c72014-05-01 20:51:19 -04001954 if (!aligned)
1955 use_bufpoi = 1;
1956 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
1957 use_bufpoi = !virt_addr_valid(buf);
1958 else
1959 use_bufpoi = 0;
1960
Brian Norris8b6e50c2011-05-25 14:59:01 -07001961 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001962 if (realpage != chip->pagebuf || oob) {
Kamal Dasu66507c72014-05-01 20:51:19 -04001963 bufpoi = use_bufpoi ? chip->buffers->databuf : buf;
1964
1965 if (use_bufpoi && aligned)
1966 pr_debug("%s: using read bounce buffer for buf@%p\n",
1967 __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Brian Norrisba84fb52014-01-03 15:13:33 -08001969read_retry:
Marc Gonzalez3371d662016-11-15 10:56:20 +01001970 if (nand_standard_page_accessors(&chip->ecc))
1971 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Mike Dunnedbc45402012-04-25 12:06:11 -07001973 /*
1974 * Now read the page into the buffer. Absent an error,
1975 * the read methods return max bitflips per ecc step.
1976 */
Brian Norris0612b9d2011-08-30 18:45:40 -07001977 if (unlikely(ops->mode == MTD_OPS_RAW))
Brian Norris1fbb9382012-05-02 10:14:55 -07001978 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001979 oob_required,
1980 page);
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001981 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
1982 !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001983 ret = chip->ecc.read_subpage(mtd, chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08001984 col, bytes, bufpoi,
1985 page);
David Woodhouse956e9442006-09-25 17:12:39 +01001986 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001987 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001988 oob_required, page);
Brian Norris6d77b9d2011-09-07 13:13:40 -07001989 if (ret < 0) {
Kamal Dasu66507c72014-05-01 20:51:19 -04001990 if (use_bufpoi)
Brian Norris6d77b9d2011-09-07 13:13:40 -07001991 /* Invalidate page cache */
1992 chip->pagebuf = -1;
David Woodhousee0c7d762006-05-13 18:07:53 +01001993 break;
Brian Norris6d77b9d2011-09-07 13:13:40 -07001994 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001995
1996 /* Transfer not aligned data */
Kamal Dasu66507c72014-05-01 20:51:19 -04001997 if (use_bufpoi) {
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001998 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Brian Norrisb72f3df2013-12-03 11:04:14 -08001999 !(mtd->ecc_stats.failed - ecc_failures) &&
Mike Dunnedbc45402012-04-25 12:06:11 -07002000 (ops->mode != MTD_OPS_RAW)) {
Alexey Korolev3d459552008-05-15 17:23:18 +01002001 chip->pagebuf = realpage;
Mike Dunnedbc45402012-04-25 12:06:11 -07002002 chip->pagebuf_bitflips = ret;
2003 } else {
Brian Norris6d77b9d2011-09-07 13:13:40 -07002004 /* Invalidate page cache */
2005 chip->pagebuf = -1;
Mike Dunnedbc45402012-04-25 12:06:11 -07002006 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002007 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002009
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002010 if (unlikely(oob)) {
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02002011 int toread = min(oobreadlen, max_oobsize);
2012
2013 if (toread) {
Boris Brezillon846031d2016-02-03 20:11:00 +01002014 oob = nand_transfer_oob(mtd,
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02002015 oob, ops, toread);
2016 oobreadlen -= toread;
2017 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002018 }
Brian Norris5bc7c332013-03-13 09:51:31 -07002019
2020 if (chip->options & NAND_NEED_READRDY) {
2021 /* Apply delay or wait for ready/busy pin */
2022 if (!chip->dev_ready)
2023 udelay(chip->chip_delay);
2024 else
2025 nand_wait_ready(mtd);
2026 }
Brian Norrisb72f3df2013-12-03 11:04:14 -08002027
Brian Norrisba84fb52014-01-03 15:13:33 -08002028 if (mtd->ecc_stats.failed - ecc_failures) {
Brian Norris28fa65e2014-02-12 16:08:28 -08002029 if (retry_mode + 1 < chip->read_retries) {
Brian Norrisba84fb52014-01-03 15:13:33 -08002030 retry_mode++;
2031 ret = nand_setup_read_retry(mtd,
2032 retry_mode);
2033 if (ret < 0)
2034 break;
2035
2036 /* Reset failures; retry */
2037 mtd->ecc_stats.failed = ecc_failures;
2038 goto read_retry;
2039 } else {
2040 /* No more retry modes; real failure */
2041 ecc_fail = true;
2042 }
2043 }
2044
2045 buf += bytes;
Masahiro Yamada07604682017-03-30 15:45:47 +09002046 max_bitflips = max_t(unsigned int, max_bitflips, ret);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002047 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002048 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002049 buf += bytes;
Mike Dunnedbc45402012-04-25 12:06:11 -07002050 max_bitflips = max_t(unsigned int, max_bitflips,
2051 chip->pagebuf_bitflips);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002054 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002055
Brian Norrisba84fb52014-01-03 15:13:33 -08002056 /* Reset to retry mode 0 */
2057 if (retry_mode) {
2058 ret = nand_setup_read_retry(mtd, 0);
2059 if (ret < 0)
2060 break;
2061 retry_mode = 0;
2062 }
2063
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002064 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002065 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Brian Norris8b6e50c2011-05-25 14:59:01 -07002067 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 col = 0;
2069 /* Increment page address */
2070 realpage++;
2071
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002072 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 /* Check, if we cross a chip boundary */
2074 if (!page) {
2075 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002076 chip->select_chip(mtd, -1);
2077 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002080 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002082 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03002083 if (oob)
2084 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Mike Dunn3f91e942012-04-25 12:06:09 -07002086 if (ret < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002087 return ret;
2088
Brian Norrisb72f3df2013-12-03 11:04:14 -08002089 if (ecc_fail)
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02002090 return -EBADMSG;
2091
Mike Dunnedbc45402012-04-25 12:06:11 -07002092 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002093}
2094
2095/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002096 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07002097 * @mtd: MTD device structure
2098 * @from: offset to read from
2099 * @len: number of bytes to read
2100 * @retlen: pointer to variable to store the number of read bytes
2101 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002102 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002103 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002104 */
2105static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
2106 size_t *retlen, uint8_t *buf)
2107{
Brian Norris4a89ff82011-08-30 18:45:45 -07002108 struct mtd_oob_ops ops;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002109 int ret;
2110
Huang Shijie6a8214a2012-11-19 14:43:30 +08002111 nand_get_device(mtd, FL_READING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08002112 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002113 ops.len = len;
2114 ops.datbuf = buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002115 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002116 ret = nand_do_read_ops(mtd, from, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002117 *retlen = ops.retlen;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002118 nand_release_device(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002119 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
2122/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002123 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002124 * @mtd: mtd info structure
2125 * @chip: nand chip info structure
2126 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002127 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002128int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002129{
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002130 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002131 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002132 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002133}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002134EXPORT_SYMBOL(nand_read_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002135
2136/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002137 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002138 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07002139 * @mtd: mtd info structure
2140 * @chip: nand chip info structure
2141 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002142 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002143int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2144 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002145{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002146 int length = mtd->oobsize;
2147 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2148 int eccsize = chip->ecc.size;
Baruch Siach2ea69d22015-01-22 15:23:05 +02002149 uint8_t *bufpoi = chip->oob_poi;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002150 int i, toread, sndrnd = 0, pos;
2151
2152 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
2153 for (i = 0; i < chip->ecc.steps; i++) {
2154 if (sndrnd) {
2155 pos = eccsize + i * (eccsize + chunk);
2156 if (mtd->writesize > 512)
2157 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
2158 else
2159 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
2160 } else
2161 sndrnd = 1;
2162 toread = min_t(int, length, chunk);
2163 chip->read_buf(mtd, bufpoi, toread);
2164 bufpoi += toread;
2165 length -= toread;
2166 }
2167 if (length > 0)
2168 chip->read_buf(mtd, bufpoi, length);
2169
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002170 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002171}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002172EXPORT_SYMBOL(nand_read_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002173
2174/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002175 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002176 * @mtd: mtd info structure
2177 * @chip: nand chip info structure
2178 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002179 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002180int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002181{
2182 int status = 0;
2183 const uint8_t *buf = chip->oob_poi;
2184 int length = mtd->oobsize;
2185
2186 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
2187 chip->write_buf(mtd, buf, length);
2188 /* Send command to program the OOB data */
2189 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2190
2191 status = chip->waitfunc(mtd, chip);
2192
Savin Zlobec0d420f92006-06-21 11:51:20 +02002193 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002194}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002195EXPORT_SYMBOL(nand_write_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002196
2197/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002198 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002199 * with syndrome - only for large page flash
2200 * @mtd: mtd info structure
2201 * @chip: nand chip info structure
2202 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002203 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002204int nand_write_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2205 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002206{
2207 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2208 int eccsize = chip->ecc.size, length = mtd->oobsize;
2209 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
2210 const uint8_t *bufpoi = chip->oob_poi;
2211
2212 /*
2213 * data-ecc-data-ecc ... ecc-oob
2214 * or
2215 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
2216 */
2217 if (!chip->ecc.prepad && !chip->ecc.postpad) {
2218 pos = steps * (eccsize + chunk);
2219 steps = 0;
2220 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002221 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002222
2223 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
2224 for (i = 0; i < steps; i++) {
2225 if (sndcmd) {
2226 if (mtd->writesize <= 512) {
2227 uint32_t fill = 0xFFFFFFFF;
2228
2229 len = eccsize;
2230 while (len > 0) {
2231 int num = min_t(int, len, 4);
2232 chip->write_buf(mtd, (uint8_t *)&fill,
2233 num);
2234 len -= num;
2235 }
2236 } else {
2237 pos = eccsize + i * (eccsize + chunk);
2238 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
2239 }
2240 } else
2241 sndcmd = 1;
2242 len = min_t(int, length, chunk);
2243 chip->write_buf(mtd, bufpoi, len);
2244 bufpoi += len;
2245 length -= len;
2246 }
2247 if (length > 0)
2248 chip->write_buf(mtd, bufpoi, length);
2249
2250 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2251 status = chip->waitfunc(mtd, chip);
2252
2253 return status & NAND_STATUS_FAIL ? -EIO : 0;
2254}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002255EXPORT_SYMBOL(nand_write_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002256
2257/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002258 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002259 * @mtd: MTD device structure
2260 * @from: offset to read from
2261 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002263 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002265static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
2266 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
Brian Norrisc00a0992012-05-01 17:12:54 -07002268 int page, realpage, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002269 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris041e4572011-06-23 16:45:24 -07002270 struct mtd_ecc_stats stats;
Vitaly Wool70145682006-11-03 18:20:38 +03002271 int readlen = ops->ooblen;
2272 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002273 uint8_t *buf = ops->oobbuf;
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002274 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Brian Norris289c0522011-07-19 10:06:09 -07002276 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302277 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
Brian Norris041e4572011-06-23 16:45:24 -07002279 stats = mtd->ecc_stats;
2280
Boris BREZILLON29f10582016-03-07 10:46:52 +01002281 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02002282
2283 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002284 pr_debug("%s: attempt to start read outside oob\n",
2285 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002286 return -EINVAL;
2287 }
2288
2289 /* Do not allow reads past end of device */
2290 if (unlikely(from >= mtd->size ||
2291 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
2292 (from >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002293 pr_debug("%s: attempt to read beyond end of device\n",
2294 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002295 return -EINVAL;
2296 }
Vitaly Wool70145682006-11-03 18:20:38 +03002297
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002298 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002299 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002301 /* Shift to get page */
2302 realpage = (int)(from >> chip->page_shift);
2303 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Florian Fainellif8ac0412010-09-07 13:23:43 +02002305 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002306 if (ops->mode == MTD_OPS_RAW)
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002307 ret = chip->ecc.read_oob_raw(mtd, chip, page);
Brian Norrisc46f6482011-08-30 18:45:38 -07002308 else
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002309 ret = chip->ecc.read_oob(mtd, chip, page);
2310
2311 if (ret < 0)
2312 break;
Vitaly Wool70145682006-11-03 18:20:38 +03002313
2314 len = min(len, readlen);
Boris Brezillon846031d2016-02-03 20:11:00 +01002315 buf = nand_transfer_oob(mtd, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002316
Brian Norris5bc7c332013-03-13 09:51:31 -07002317 if (chip->options & NAND_NEED_READRDY) {
2318 /* Apply delay or wait for ready/busy pin */
2319 if (!chip->dev_ready)
2320 udelay(chip->chip_delay);
2321 else
2322 nand_wait_ready(mtd);
2323 }
2324
Vitaly Wool70145682006-11-03 18:20:38 +03002325 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02002326 if (!readlen)
2327 break;
2328
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002329 /* Increment page address */
2330 realpage++;
2331
2332 page = realpage & chip->pagemask;
2333 /* Check, if we cross a chip boundary */
2334 if (!page) {
2335 chipnr++;
2336 chip->select_chip(mtd, -1);
2337 chip->select_chip(mtd, chipnr);
2338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002340 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002342 ops->oobretlen = ops->ooblen - readlen;
2343
2344 if (ret < 0)
2345 return ret;
Brian Norris041e4572011-06-23 16:45:24 -07002346
2347 if (mtd->ecc_stats.failed - stats.failed)
2348 return -EBADMSG;
2349
2350 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351}
2352
2353/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002354 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002355 * @mtd: MTD device structure
2356 * @from: offset to read from
2357 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002359 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002361static int nand_read_oob(struct mtd_info *mtd, loff_t from,
2362 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363{
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07002364 int ret;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002365
2366 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002369 if (ops->datbuf && (from + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002370 pr_debug("%s: attempt to read beyond end of device\n",
2371 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 return -EINVAL;
2373 }
2374
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07002375 if (ops->mode != MTD_OPS_PLACE_OOB &&
2376 ops->mode != MTD_OPS_AUTO_OOB &&
2377 ops->mode != MTD_OPS_RAW)
2378 return -ENOTSUPP;
2379
Huang Shijie6a8214a2012-11-19 14:43:30 +08002380 nand_get_device(mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002382 if (!ops->datbuf)
2383 ret = nand_do_read_oob(mtd, from, ops);
2384 else
2385 ret = nand_do_read_ops(mtd, from, ops);
2386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002388 return ret;
2389}
2390
2391
2392/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002393 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002394 * @mtd: mtd info structure
2395 * @chip: nand chip info structure
2396 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002397 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002398 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002399 *
Brian Norris7854d3f2011-06-23 14:12:08 -07002400 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002401 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002402static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002403 const uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002404{
2405 chip->write_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07002406 if (oob_required)
2407 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002408
2409 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410}
2411
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002412/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002413 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002414 * @mtd: mtd info structure
2415 * @chip: nand chip info structure
2416 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002417 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002418 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002419 *
2420 * We need a special oob layout and handling even when ECC isn't checked.
2421 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002422static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002423 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002424 const uint8_t *buf, int oob_required,
2425 int page)
David Brownell52ff49d2009-03-04 12:01:36 -08002426{
2427 int eccsize = chip->ecc.size;
2428 int eccbytes = chip->ecc.bytes;
2429 uint8_t *oob = chip->oob_poi;
2430 int steps, size;
2431
2432 for (steps = chip->ecc.steps; steps > 0; steps--) {
2433 chip->write_buf(mtd, buf, eccsize);
2434 buf += eccsize;
2435
2436 if (chip->ecc.prepad) {
2437 chip->write_buf(mtd, oob, chip->ecc.prepad);
2438 oob += chip->ecc.prepad;
2439 }
2440
Boris BREZILLON60c3bc12014-02-01 19:10:28 +01002441 chip->write_buf(mtd, oob, eccbytes);
David Brownell52ff49d2009-03-04 12:01:36 -08002442 oob += eccbytes;
2443
2444 if (chip->ecc.postpad) {
2445 chip->write_buf(mtd, oob, chip->ecc.postpad);
2446 oob += chip->ecc.postpad;
2447 }
2448 }
2449
2450 size = mtd->oobsize - (oob - chip->oob_poi);
2451 if (size)
2452 chip->write_buf(mtd, oob, size);
Josh Wufdbad98d2012-06-25 18:07:45 +08002453
2454 return 0;
David Brownell52ff49d2009-03-04 12:01:36 -08002455}
2456/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002457 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002458 * @mtd: mtd info structure
2459 * @chip: nand chip info structure
2460 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002461 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002462 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002463 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002464static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002465 const uint8_t *buf, int oob_required,
2466 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002467{
Boris Brezillon846031d2016-02-03 20:11:00 +01002468 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002469 int eccbytes = chip->ecc.bytes;
2470 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002471 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002472 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002473
Brian Norris7854d3f2011-06-23 14:12:08 -07002474 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002475 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
2476 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002477
Boris Brezillon846031d2016-02-03 20:11:00 +01002478 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2479 chip->ecc.total);
2480 if (ret)
2481 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002482
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002483 return chip->ecc.write_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002484}
2485
2486/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002487 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002488 * @mtd: mtd info structure
2489 * @chip: nand chip info structure
2490 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002491 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002492 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002493 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002494static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002495 const uint8_t *buf, int oob_required,
2496 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002497{
Boris Brezillon846031d2016-02-03 20:11:00 +01002498 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002499 int eccbytes = chip->ecc.bytes;
2500 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002501 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002502 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002503
2504 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2505 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01002506 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002507 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2508 }
2509
Boris Brezillon846031d2016-02-03 20:11:00 +01002510 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2511 chip->ecc.total);
2512 if (ret)
2513 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002514
2515 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002516
2517 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002518}
2519
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302520
2521/**
Brian Norris73c8aaf2015-02-28 02:04:18 -08002522 * nand_write_subpage_hwecc - [REPLACEABLE] hardware ECC based subpage write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302523 * @mtd: mtd info structure
2524 * @chip: nand chip info structure
Brian Norrisd6a950802013-08-08 17:16:36 -07002525 * @offset: column address of subpage within the page
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302526 * @data_len: data length
Brian Norrisd6a950802013-08-08 17:16:36 -07002527 * @buf: data buffer
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302528 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002529 * @page: page number to write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302530 */
2531static int nand_write_subpage_hwecc(struct mtd_info *mtd,
2532 struct nand_chip *chip, uint32_t offset,
Brian Norrisd6a950802013-08-08 17:16:36 -07002533 uint32_t data_len, const uint8_t *buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002534 int oob_required, int page)
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302535{
2536 uint8_t *oob_buf = chip->oob_poi;
2537 uint8_t *ecc_calc = chip->buffers->ecccalc;
2538 int ecc_size = chip->ecc.size;
2539 int ecc_bytes = chip->ecc.bytes;
2540 int ecc_steps = chip->ecc.steps;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302541 uint32_t start_step = offset / ecc_size;
2542 uint32_t end_step = (offset + data_len - 1) / ecc_size;
2543 int oob_bytes = mtd->oobsize / ecc_steps;
Boris Brezillon846031d2016-02-03 20:11:00 +01002544 int step, ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302545
2546 for (step = 0; step < ecc_steps; step++) {
2547 /* configure controller for WRITE access */
2548 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2549
2550 /* write data (untouched subpages already masked by 0xFF) */
Brian Norrisd6a950802013-08-08 17:16:36 -07002551 chip->write_buf(mtd, buf, ecc_size);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302552
2553 /* mask ECC of un-touched subpages by padding 0xFF */
2554 if ((step < start_step) || (step > end_step))
2555 memset(ecc_calc, 0xff, ecc_bytes);
2556 else
Brian Norrisd6a950802013-08-08 17:16:36 -07002557 chip->ecc.calculate(mtd, buf, ecc_calc);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302558
2559 /* mask OOB of un-touched subpages by padding 0xFF */
2560 /* if oob_required, preserve OOB metadata of written subpage */
2561 if (!oob_required || (step < start_step) || (step > end_step))
2562 memset(oob_buf, 0xff, oob_bytes);
2563
Brian Norrisd6a950802013-08-08 17:16:36 -07002564 buf += ecc_size;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302565 ecc_calc += ecc_bytes;
2566 oob_buf += oob_bytes;
2567 }
2568
2569 /* copy calculated ECC for whole page to chip->buffer->oob */
2570 /* this include masked-value(0xFF) for unwritten subpages */
2571 ecc_calc = chip->buffers->ecccalc;
Boris Brezillon846031d2016-02-03 20:11:00 +01002572 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2573 chip->ecc.total);
2574 if (ret)
2575 return ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302576
2577 /* write OOB buffer to NAND device */
2578 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2579
2580 return 0;
2581}
2582
2583
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002584/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002585 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07002586 * @mtd: mtd info structure
2587 * @chip: nand chip info structure
2588 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002589 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002590 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002591 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002592 * The hw generator calculates the error syndrome automatically. Therefore we
2593 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002594 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002595static int nand_write_page_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07002596 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002597 const uint8_t *buf, int oob_required,
2598 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002599{
2600 int i, eccsize = chip->ecc.size;
2601 int eccbytes = chip->ecc.bytes;
2602 int eccsteps = chip->ecc.steps;
2603 const uint8_t *p = buf;
2604 uint8_t *oob = chip->oob_poi;
2605
2606 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2607
2608 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2609 chip->write_buf(mtd, p, eccsize);
2610
2611 if (chip->ecc.prepad) {
2612 chip->write_buf(mtd, oob, chip->ecc.prepad);
2613 oob += chip->ecc.prepad;
2614 }
2615
2616 chip->ecc.calculate(mtd, p, oob);
2617 chip->write_buf(mtd, oob, eccbytes);
2618 oob += eccbytes;
2619
2620 if (chip->ecc.postpad) {
2621 chip->write_buf(mtd, oob, chip->ecc.postpad);
2622 oob += chip->ecc.postpad;
2623 }
2624 }
2625
2626 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002627 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002628 if (i)
2629 chip->write_buf(mtd, oob, i);
Josh Wufdbad98d2012-06-25 18:07:45 +08002630
2631 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002632}
2633
2634/**
Boris Brezillonf107d7a2017-03-16 09:02:42 +01002635 * nand_write_page - write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002636 * @mtd: MTD device structure
2637 * @chip: NAND chip descriptor
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302638 * @offset: address offset within the page
2639 * @data_len: length of actual data to be written
Brian Norris8b6e50c2011-05-25 14:59:01 -07002640 * @buf: the data to write
Brian Norris1fbb9382012-05-02 10:14:55 -07002641 * @oob_required: must write chip->oob_poi to OOB
Brian Norris8b6e50c2011-05-25 14:59:01 -07002642 * @page: page number to write
2643 * @cached: cached programming
2644 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002645 */
2646static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302647 uint32_t offset, int data_len, const uint8_t *buf,
2648 int oob_required, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002649{
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302650 int status, subpage;
2651
2652 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2653 chip->ecc.write_subpage)
2654 subpage = offset || (data_len < mtd->writesize);
2655 else
2656 subpage = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002657
Marc Gonzalez3371d662016-11-15 10:56:20 +01002658 if (nand_standard_page_accessors(&chip->ecc))
2659 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002660
David Woodhouse956e9442006-09-25 17:12:39 +01002661 if (unlikely(raw))
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302662 status = chip->ecc.write_page_raw(mtd, chip, buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002663 oob_required, page);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302664 else if (subpage)
2665 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002666 buf, oob_required, page);
David Woodhouse956e9442006-09-25 17:12:39 +01002667 else
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002668 status = chip->ecc.write_page(mtd, chip, buf, oob_required,
2669 page);
Josh Wufdbad98d2012-06-25 18:07:45 +08002670
2671 if (status < 0)
2672 return status;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002673
2674 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002675 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002676 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002677 */
2678 cached = 0;
2679
Artem Bityutskiy3239a6c2013-03-04 14:56:18 +02002680 if (!cached || !NAND_HAS_CACHEPROG(chip)) {
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002681
Marc Gonzalez3371d662016-11-15 10:56:20 +01002682 if (nand_standard_page_accessors(&chip->ecc))
2683 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002684 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002685 /*
2686 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002687 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002688 */
2689 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2690 status = chip->errstat(mtd, chip, FL_WRITING, status,
2691 page);
2692
2693 if (status & NAND_STATUS_FAIL)
2694 return -EIO;
2695 } else {
2696 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002697 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002698 }
2699
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002700 return 0;
2701}
2702
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002703/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002704 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002705 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002706 * @oob: oob data buffer
2707 * @len: oob data write length
2708 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002709 */
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002710static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2711 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002712{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002713 struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon846031d2016-02-03 20:11:00 +01002714 int ret;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002715
2716 /*
2717 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2718 * data from a previous OOB read.
2719 */
2720 memset(chip->oob_poi, 0xff, mtd->oobsize);
2721
Florian Fainellif8ac0412010-09-07 13:23:43 +02002722 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002723
Brian Norris0612b9d2011-08-30 18:45:40 -07002724 case MTD_OPS_PLACE_OOB:
2725 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002726 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2727 return oob + len;
2728
Boris Brezillon846031d2016-02-03 20:11:00 +01002729 case MTD_OPS_AUTO_OOB:
2730 ret = mtd_ooblayout_set_databytes(mtd, oob, chip->oob_poi,
2731 ops->ooboffs, len);
2732 BUG_ON(ret);
2733 return oob + len;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002734
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002735 default:
2736 BUG();
2737 }
2738 return NULL;
2739}
2740
Florian Fainellif8ac0412010-09-07 13:23:43 +02002741#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002742
2743/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002744 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002745 * @mtd: MTD device structure
2746 * @to: offset to write to
2747 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002748 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002749 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002750 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002751static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2752 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002753{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002754 int chipnr, realpage, page, blockmask, column;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002755 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002756 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002757
2758 uint32_t oobwritelen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01002759 uint32_t oobmaxlen = mtd_oobavail(mtd, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002760
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002761 uint8_t *oob = ops->oobbuf;
2762 uint8_t *buf = ops->datbuf;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302763 int ret;
Brian Norrise47f3db2012-05-02 10:14:56 -07002764 int oob_required = oob ? 1 : 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002765
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002766 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002767 if (!writelen)
2768 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002769
Brian Norris8b6e50c2011-05-25 14:59:01 -07002770 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002771 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002772 pr_notice("%s: attempt to write non page aligned data\n",
2773 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002774 return -EINVAL;
2775 }
2776
Thomas Gleixner29072b92006-09-28 15:38:36 +02002777 column = to & (mtd->writesize - 1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002778
Thomas Gleixner6a930962006-06-28 00:11:45 +02002779 chipnr = (int)(to >> chip->chip_shift);
2780 chip->select_chip(mtd, chipnr);
2781
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002782 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002783 if (nand_check_wp(mtd)) {
2784 ret = -EIO;
2785 goto err_out;
2786 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002787
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002788 realpage = (int)(to >> chip->page_shift);
2789 page = realpage & chip->pagemask;
2790 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2791
2792 /* Invalidate the page cache, when we write to the cached page */
Brian Norris537ab1b2014-07-21 19:08:03 -07002793 if (to <= ((loff_t)chip->pagebuf << chip->page_shift) &&
2794 ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002795 chip->pagebuf = -1;
2796
Maxim Levitsky782ce792010-02-22 20:39:36 +02002797 /* Don't allow multipage oob writes with offset */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002798 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
2799 ret = -EINVAL;
2800 goto err_out;
2801 }
Maxim Levitsky782ce792010-02-22 20:39:36 +02002802
Florian Fainellif8ac0412010-09-07 13:23:43 +02002803 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002804 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002805 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002806 uint8_t *wbuf = buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04002807 int use_bufpoi;
Hector Palacios144f4c92016-07-18 10:39:18 +02002808 int part_pagewr = (column || writelen < mtd->writesize);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002809
Kamal Dasu66507c72014-05-01 20:51:19 -04002810 if (part_pagewr)
2811 use_bufpoi = 1;
2812 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
2813 use_bufpoi = !virt_addr_valid(buf);
2814 else
2815 use_bufpoi = 0;
2816
2817 /* Partial page write?, or need to use bounce buffer */
2818 if (use_bufpoi) {
2819 pr_debug("%s: using write bounce buffer for buf@%p\n",
2820 __func__, buf);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002821 cached = 0;
Kamal Dasu66507c72014-05-01 20:51:19 -04002822 if (part_pagewr)
2823 bytes = min_t(int, bytes - column, writelen);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002824 chip->pagebuf = -1;
2825 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2826 memcpy(&chip->buffers->databuf[column], buf, bytes);
2827 wbuf = chip->buffers->databuf;
2828 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002829
Maxim Levitsky782ce792010-02-22 20:39:36 +02002830 if (unlikely(oob)) {
2831 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002832 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002833 oobwritelen -= len;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002834 } else {
2835 /* We still need to erase leftover OOB data */
2836 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002837 }
Boris Brezillonf107d7a2017-03-16 09:02:42 +01002838
2839 ret = nand_write_page(mtd, chip, column, bytes, wbuf,
2840 oob_required, page, cached,
2841 (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002842 if (ret)
2843 break;
2844
2845 writelen -= bytes;
2846 if (!writelen)
2847 break;
2848
Thomas Gleixner29072b92006-09-28 15:38:36 +02002849 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002850 buf += bytes;
2851 realpage++;
2852
2853 page = realpage & chip->pagemask;
2854 /* Check, if we cross a chip boundary */
2855 if (!page) {
2856 chipnr++;
2857 chip->select_chip(mtd, -1);
2858 chip->select_chip(mtd, chipnr);
2859 }
2860 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002861
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002862 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002863 if (unlikely(oob))
2864 ops->oobretlen = ops->ooblen;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002865
2866err_out:
2867 chip->select_chip(mtd, -1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002868 return ret;
2869}
2870
2871/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002872 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002873 * @mtd: MTD device structure
2874 * @to: offset to write to
2875 * @len: number of bytes to write
2876 * @retlen: pointer to variable to store the number of written bytes
2877 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002878 *
2879 * NAND write with ECC. Used when performing writes in interrupt context, this
2880 * may for example be called by mtdoops when writing an oops while in panic.
2881 */
2882static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2883 size_t *retlen, const uint8_t *buf)
2884{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002885 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris4a89ff82011-08-30 18:45:45 -07002886 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002887 int ret;
2888
Brian Norris8b6e50c2011-05-25 14:59:01 -07002889 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002890 panic_nand_wait(mtd, chip, 400);
2891
Brian Norris8b6e50c2011-05-25 14:59:01 -07002892 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002893 panic_nand_get_device(chip, mtd, FL_WRITING);
2894
Brian Norris0ec56dc2015-02-28 02:02:30 -08002895 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002896 ops.len = len;
2897 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002898 ops.mode = MTD_OPS_PLACE_OOB;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002899
Brian Norris4a89ff82011-08-30 18:45:45 -07002900 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002901
Brian Norris4a89ff82011-08-30 18:45:45 -07002902 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002903 return ret;
2904}
2905
2906/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002907 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002908 * @mtd: MTD device structure
2909 * @to: offset to write to
2910 * @len: number of bytes to write
2911 * @retlen: pointer to variable to store the number of written bytes
2912 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002914 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002916static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002917 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918{
Brian Norris4a89ff82011-08-30 18:45:45 -07002919 struct mtd_oob_ops ops;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002920 int ret;
2921
Huang Shijie6a8214a2012-11-19 14:43:30 +08002922 nand_get_device(mtd, FL_WRITING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08002923 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002924 ops.len = len;
2925 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002926 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002927 ret = nand_do_write_ops(mtd, to, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002928 *retlen = ops.retlen;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002929 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002930 return ret;
2931}
2932
2933/**
2934 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002935 * @mtd: MTD device structure
2936 * @to: offset to write to
2937 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002938 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002939 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002940 */
2941static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2942 struct mtd_oob_ops *ops)
2943{
Adrian Hunter03736152007-01-31 17:58:29 +02002944 int chipnr, page, status, len;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002945 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Brian Norris289c0522011-07-19 10:06:09 -07002947 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302948 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
Boris BREZILLON29f10582016-03-07 10:46:52 +01002950 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02002951
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002953 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07002954 pr_debug("%s: attempt to write past end of page\n",
2955 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 return -EINVAL;
2957 }
2958
Adrian Hunter03736152007-01-31 17:58:29 +02002959 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002960 pr_debug("%s: attempt to start write outside oob\n",
2961 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002962 return -EINVAL;
2963 }
2964
Jason Liu775adc3d42011-02-25 13:06:18 +08002965 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002966 if (unlikely(to >= mtd->size ||
2967 ops->ooboffs + ops->ooblen >
2968 ((mtd->size >> chip->page_shift) -
2969 (to >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002970 pr_debug("%s: attempt to write beyond end of device\n",
2971 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002972 return -EINVAL;
2973 }
2974
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002975 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002976
2977 /*
2978 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2979 * of my DiskOnChip 2000 test units) will clear the whole data page too
2980 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2981 * it in the doc2000 driver in August 1999. dwmw2.
2982 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02002983 nand_reset(chip, chipnr);
2984
2985 chip->select_chip(mtd, chipnr);
2986
2987 /* Shift to get page */
2988 page = (int)(to >> chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
2990 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002991 if (nand_check_wp(mtd)) {
2992 chip->select_chip(mtd, -1);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002993 return -EROFS;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002994 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002995
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002997 if (page == chip->pagebuf)
2998 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02003000 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07003001
Brian Norris0612b9d2011-08-30 18:45:40 -07003002 if (ops->mode == MTD_OPS_RAW)
Brian Norris9ce244b2011-08-30 18:45:37 -07003003 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
3004 else
3005 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003006
Huang Shijieb0bb6902012-11-19 14:43:29 +08003007 chip->select_chip(mtd, -1);
3008
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003009 if (status)
3010 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Vitaly Wool70145682006-11-03 18:20:38 +03003012 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003014 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003015}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003017/**
3018 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07003019 * @mtd: MTD device structure
3020 * @to: offset to write to
3021 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003022 */
3023static int nand_write_oob(struct mtd_info *mtd, loff_t to,
3024 struct mtd_oob_ops *ops)
3025{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003026 int ret = -ENOTSUPP;
3027
3028 ops->retlen = 0;
3029
3030 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03003031 if (ops->datbuf && (to + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07003032 pr_debug("%s: attempt to write beyond end of device\n",
3033 __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003034 return -EINVAL;
3035 }
3036
Huang Shijie6a8214a2012-11-19 14:43:30 +08003037 nand_get_device(mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003038
Florian Fainellif8ac0412010-09-07 13:23:43 +02003039 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07003040 case MTD_OPS_PLACE_OOB:
3041 case MTD_OPS_AUTO_OOB:
3042 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003043 break;
3044
3045 default:
3046 goto out;
3047 }
3048
3049 if (!ops->datbuf)
3050 ret = nand_do_write_oob(mtd, to, ops);
3051 else
3052 ret = nand_do_write_ops(mtd, to, ops);
3053
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003054out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003055 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 return ret;
3057}
3058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059/**
Brian Norris49c50b92014-05-06 16:02:19 -07003060 * single_erase - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003061 * @mtd: MTD device structure
3062 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 *
Brian Norris49c50b92014-05-06 16:02:19 -07003064 * Standard erase command for NAND chips. Returns NAND status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 */
Brian Norris49c50b92014-05-06 16:02:19 -07003066static int single_erase(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003068 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003070 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
3071 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Brian Norris49c50b92014-05-06 16:02:19 -07003072
3073 return chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074}
3075
3076/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003078 * @mtd: MTD device structure
3079 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003081 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003083static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
David Woodhousee0c7d762006-05-13 18:07:53 +01003085 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003087
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003089 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003090 * @mtd: MTD device structure
3091 * @instr: erase instruction
3092 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003094 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003096int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
3097 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
Adrian Hunter69423d92008-12-10 13:37:21 +00003099 int page, status, pages_per_block, ret, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01003100 struct nand_chip *chip = mtd_to_nand(mtd);
Adrian Hunter69423d92008-12-10 13:37:21 +00003101 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
Brian Norris289c0522011-07-19 10:06:09 -07003103 pr_debug("%s: start = 0x%012llx, len = %llu\n",
3104 __func__, (unsigned long long)instr->addr,
3105 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05303107 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08003111 nand_get_device(mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
3113 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003114 page = (int)(instr->addr >> chip->page_shift);
3115 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
3117 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003118 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
3120 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003121 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 /* Check, if it is write protected */
3124 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07003125 pr_debug("%s: device is write protected!\n",
3126 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 instr->state = MTD_ERASE_FAILED;
3128 goto erase_exit;
3129 }
3130
3131 /* Loop through the pages */
3132 len = instr->len;
3133
3134 instr->state = MTD_ERASING;
3135
3136 while (len) {
Wolfram Sang12183a22011-12-21 23:01:20 +01003137 /* Check if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003138 if (nand_block_checkbad(mtd, ((loff_t) page) <<
Archit Taneja9f3e0422016-02-03 14:29:49 +05303139 chip->page_shift, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07003140 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
3141 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 instr->state = MTD_ERASE_FAILED;
3143 goto erase_exit;
3144 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003145
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003146 /*
3147 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07003148 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003149 */
3150 if (page <= chip->pagebuf && chip->pagebuf <
3151 (page + pages_per_block))
3152 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
Brian Norris49c50b92014-05-06 16:02:19 -07003154 status = chip->erase(mtd, page & chip->pagemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003156 /*
3157 * See if operation failed and additional status checks are
3158 * available
3159 */
3160 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
3161 status = chip->errstat(mtd, chip, FL_ERASING,
3162 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00003163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00003165 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07003166 pr_debug("%s: failed erase, page 0x%08x\n",
3167 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00003169 instr->fail_addr =
3170 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 goto erase_exit;
3172 }
David A. Marlin30f464b2005-01-17 18:35:25 +00003173
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 /* Increment page address and decrement length */
Dan Carpenterdaae74c2013-08-09 12:49:05 +03003175 len -= (1ULL << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 page += pages_per_block;
3177
3178 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003179 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003181 chip->select_chip(mtd, -1);
3182 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 }
3184 }
3185 instr->state = MTD_ERASE_DONE;
3186
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003187erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
3189 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
3191 /* Deselect and wake up anyone waiting on the device */
Huang Shijieb0bb6902012-11-19 14:43:29 +08003192 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 nand_release_device(mtd);
3194
David Woodhouse49defc02007-10-06 15:01:59 -04003195 /* Do call back function */
3196 if (!ret)
3197 mtd_erase_callback(instr);
3198
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 /* Return more or less happy */
3200 return ret;
3201}
3202
3203/**
3204 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07003205 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003207 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003209static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210{
Brian Norris289c0522011-07-19 10:06:09 -07003211 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
3213 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08003214 nand_get_device(mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01003216 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217}
3218
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003220 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003221 * @mtd: MTD device structure
3222 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003224static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225{
Archit Taneja9f3e0422016-02-03 14:29:49 +05303226 struct nand_chip *chip = mtd_to_nand(mtd);
3227 int chipnr = (int)(offs >> chip->chip_shift);
3228 int ret;
3229
3230 /* Select the NAND device */
3231 nand_get_device(mtd, FL_READING);
3232 chip->select_chip(mtd, chipnr);
3233
3234 ret = nand_block_checkbad(mtd, offs, 0);
3235
3236 chip->select_chip(mtd, -1);
3237 nand_release_device(mtd);
3238
3239 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240}
3241
3242/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003243 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003244 * @mtd: MTD device structure
3245 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003247static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 int ret;
3250
Florian Fainellif8ac0412010-09-07 13:23:43 +02003251 ret = nand_block_isbad(mtd, ofs);
3252 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07003253 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 if (ret > 0)
3255 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01003256 return ret;
3257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Brian Norris5a0edb22013-07-30 17:52:58 -07003259 return nand_block_markbad_lowlevel(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260}
3261
3262/**
Zach Brown56718422017-01-10 13:30:20 -06003263 * nand_max_bad_blocks - [MTD Interface] Max number of bad blocks for an mtd
3264 * @mtd: MTD device structure
3265 * @ofs: offset relative to mtd start
3266 * @len: length of mtd
3267 */
3268static int nand_max_bad_blocks(struct mtd_info *mtd, loff_t ofs, size_t len)
3269{
3270 struct nand_chip *chip = mtd_to_nand(mtd);
3271 u32 part_start_block;
3272 u32 part_end_block;
3273 u32 part_start_die;
3274 u32 part_end_die;
3275
3276 /*
3277 * max_bb_per_die and blocks_per_die used to determine
3278 * the maximum bad block count.
3279 */
3280 if (!chip->max_bb_per_die || !chip->blocks_per_die)
3281 return -ENOTSUPP;
3282
3283 /* Get the start and end of the partition in erase blocks. */
3284 part_start_block = mtd_div_by_eb(ofs, mtd);
3285 part_end_block = mtd_div_by_eb(len, mtd) + part_start_block - 1;
3286
3287 /* Get the start and end LUNs of the partition. */
3288 part_start_die = part_start_block / chip->blocks_per_die;
3289 part_end_die = part_end_block / chip->blocks_per_die;
3290
3291 /*
3292 * Look up the bad blocks per unit and multiply by the number of units
3293 * that the partition spans.
3294 */
3295 return chip->max_bb_per_die * (part_end_die - part_start_die + 1);
3296}
3297
3298/**
Huang Shijie7db03ec2012-09-13 14:57:52 +08003299 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
3300 * @mtd: MTD device structure
3301 * @chip: nand chip info structure
3302 * @addr: feature address.
3303 * @subfeature_param: the subfeature parameters, a four bytes array.
3304 */
3305static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
3306 int addr, uint8_t *subfeature_param)
3307{
3308 int status;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003309 int i;
Huang Shijie7db03ec2012-09-13 14:57:52 +08003310
David Mosbergerd914c932013-05-29 15:30:13 +03003311 if (!chip->onfi_version ||
3312 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3313 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003314 return -EINVAL;
3315
3316 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003317 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3318 chip->write_byte(mtd, subfeature_param[i]);
3319
Huang Shijie7db03ec2012-09-13 14:57:52 +08003320 status = chip->waitfunc(mtd, chip);
3321 if (status & NAND_STATUS_FAIL)
3322 return -EIO;
3323 return 0;
3324}
3325
3326/**
3327 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
3328 * @mtd: MTD device structure
3329 * @chip: nand chip info structure
3330 * @addr: feature address.
3331 * @subfeature_param: the subfeature parameters, a four bytes array.
3332 */
3333static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
3334 int addr, uint8_t *subfeature_param)
3335{
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003336 int i;
3337
David Mosbergerd914c932013-05-29 15:30:13 +03003338 if (!chip->onfi_version ||
3339 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3340 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003341 return -EINVAL;
3342
Huang Shijie7db03ec2012-09-13 14:57:52 +08003343 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003344 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3345 *subfeature_param++ = chip->read_byte(mtd);
Huang Shijie7db03ec2012-09-13 14:57:52 +08003346 return 0;
3347}
3348
3349/**
Vitaly Wool962034f2005-09-15 14:58:53 +01003350 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003351 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003352 */
3353static int nand_suspend(struct mtd_info *mtd)
3354{
Huang Shijie6a8214a2012-11-19 14:43:30 +08003355 return nand_get_device(mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01003356}
3357
3358/**
3359 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003360 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003361 */
3362static void nand_resume(struct mtd_info *mtd)
3363{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003364 struct nand_chip *chip = mtd_to_nand(mtd);
Vitaly Wool962034f2005-09-15 14:58:53 +01003365
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003366 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01003367 nand_release_device(mtd);
3368 else
Brian Norrisd0370212011-07-19 10:06:08 -07003369 pr_err("%s called for a chip which is not in suspended state\n",
3370 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01003371}
3372
Scott Branden72ea4032014-11-20 11:18:05 -08003373/**
3374 * nand_shutdown - [MTD Interface] Finish the current NAND operation and
3375 * prevent further operations
3376 * @mtd: MTD device structure
3377 */
3378static void nand_shutdown(struct mtd_info *mtd)
3379{
Brian Norris9ca641b2015-11-09 16:37:28 -08003380 nand_get_device(mtd, FL_PM_SUSPENDED);
Scott Branden72ea4032014-11-20 11:18:05 -08003381}
3382
Brian Norris8b6e50c2011-05-25 14:59:01 -07003383/* Set default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003384static void nand_set_defaults(struct nand_chip *chip)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003385{
Boris Brezillon29a198a2016-05-24 20:17:48 +02003386 unsigned int busw = chip->options & NAND_BUSWIDTH_16;
3387
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003389 if (!chip->chip_delay)
3390 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
3392 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003393 if (chip->cmdfunc == NULL)
3394 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395
3396 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003397 if (chip->waitfunc == NULL)
3398 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003400 if (!chip->select_chip)
3401 chip->select_chip = nand_select_chip;
Brian Norris68e80782013-07-18 01:17:02 -07003402
Huang Shijie4204ccc2013-08-16 10:10:07 +08003403 /* set for ONFI nand */
3404 if (!chip->onfi_set_features)
3405 chip->onfi_set_features = nand_onfi_set_features;
3406 if (!chip->onfi_get_features)
3407 chip->onfi_get_features = nand_onfi_get_features;
3408
Brian Norris68e80782013-07-18 01:17:02 -07003409 /* If called twice, pointers that depend on busw may need to be reset */
3410 if (!chip->read_byte || chip->read_byte == nand_read_byte)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003411 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
3412 if (!chip->read_word)
3413 chip->read_word = nand_read_word;
3414 if (!chip->block_bad)
3415 chip->block_bad = nand_block_bad;
3416 if (!chip->block_markbad)
3417 chip->block_markbad = nand_default_block_markbad;
Brian Norris68e80782013-07-18 01:17:02 -07003418 if (!chip->write_buf || chip->write_buf == nand_write_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003419 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003420 if (!chip->write_byte || chip->write_byte == nand_write_byte)
3421 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
Brian Norris68e80782013-07-18 01:17:02 -07003422 if (!chip->read_buf || chip->read_buf == nand_read_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003423 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003424 if (!chip->scan_bbt)
3425 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003426
3427 if (!chip->controller) {
3428 chip->controller = &chip->hwcontrol;
Marc Gonzalezd45bc582016-07-27 11:23:52 +02003429 nand_hw_control_init(chip->controller);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003430 }
3431
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003432}
3433
Brian Norris8b6e50c2011-05-25 14:59:01 -07003434/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003435static void sanitize_string(uint8_t *s, size_t len)
3436{
3437 ssize_t i;
3438
Brian Norris8b6e50c2011-05-25 14:59:01 -07003439 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003440 s[len - 1] = 0;
3441
Brian Norris8b6e50c2011-05-25 14:59:01 -07003442 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003443 for (i = 0; i < len - 1; i++) {
3444 if (s[i] < ' ' || s[i] > 127)
3445 s[i] = '?';
3446 }
3447
Brian Norris8b6e50c2011-05-25 14:59:01 -07003448 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003449 strim(s);
3450}
3451
3452static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
3453{
3454 int i;
3455 while (len--) {
3456 crc ^= *p++ << 8;
3457 for (i = 0; i < 8; i++)
3458 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
3459 }
3460
3461 return crc;
3462}
3463
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003464/* Parse the Extended Parameter Page. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003465static int nand_flash_detect_ext_param_page(struct nand_chip *chip,
3466 struct nand_onfi_params *p)
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003467{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003468 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003469 struct onfi_ext_param_page *ep;
3470 struct onfi_ext_section *s;
3471 struct onfi_ext_ecc_info *ecc;
3472 uint8_t *cursor;
3473 int ret = -EINVAL;
3474 int len;
3475 int i;
3476
3477 len = le16_to_cpu(p->ext_param_page_length) * 16;
3478 ep = kmalloc(len, GFP_KERNEL);
Brian Norris5cb13272013-09-16 17:59:20 -07003479 if (!ep)
3480 return -ENOMEM;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003481
3482 /* Send our own NAND_CMD_PARAM. */
3483 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3484
3485 /* Use the Change Read Column command to skip the ONFI param pages. */
3486 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
3487 sizeof(*p) * p->num_of_param_pages , -1);
3488
3489 /* Read out the Extended Parameter Page. */
3490 chip->read_buf(mtd, (uint8_t *)ep, len);
3491 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
3492 != le16_to_cpu(ep->crc))) {
3493 pr_debug("fail in the CRC.\n");
3494 goto ext_out;
3495 }
3496
3497 /*
3498 * Check the signature.
3499 * Do not strictly follow the ONFI spec, maybe changed in future.
3500 */
3501 if (strncmp(ep->sig, "EPPS", 4)) {
3502 pr_debug("The signature is invalid.\n");
3503 goto ext_out;
3504 }
3505
3506 /* find the ECC section. */
3507 cursor = (uint8_t *)(ep + 1);
3508 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
3509 s = ep->sections + i;
3510 if (s->type == ONFI_SECTION_TYPE_2)
3511 break;
3512 cursor += s->length * 16;
3513 }
3514 if (i == ONFI_EXT_SECTION_MAX) {
3515 pr_debug("We can not find the ECC section.\n");
3516 goto ext_out;
3517 }
3518
3519 /* get the info we want. */
3520 ecc = (struct onfi_ext_ecc_info *)cursor;
3521
Brian Norris4ae7d222013-09-16 18:20:21 -07003522 if (!ecc->codeword_size) {
3523 pr_debug("Invalid codeword size\n");
3524 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003525 }
3526
Brian Norris4ae7d222013-09-16 18:20:21 -07003527 chip->ecc_strength_ds = ecc->ecc_bits;
3528 chip->ecc_step_ds = 1 << ecc->codeword_size;
Brian Norris5cb13272013-09-16 17:59:20 -07003529 ret = 0;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003530
3531ext_out:
3532 kfree(ep);
3533 return ret;
3534}
3535
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003536/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003537 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003538 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003539static int nand_flash_detect_onfi(struct nand_chip *chip)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003540{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003541 struct mtd_info *mtd = nand_to_mtd(chip);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003542 struct nand_onfi_params *p = &chip->onfi_params;
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003543 int i, j;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003544 int val;
3545
Brian Norris7854d3f2011-06-23 14:12:08 -07003546 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003547 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
3548 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
3549 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
3550 return 0;
3551
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003552 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3553 for (i = 0; i < 3; i++) {
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003554 for (j = 0; j < sizeof(*p); j++)
3555 ((uint8_t *)p)[j] = chip->read_byte(mtd);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003556 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
3557 le16_to_cpu(p->crc)) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003558 break;
3559 }
3560 }
3561
Brian Norrisc7f23a72013-08-13 10:51:55 -07003562 if (i == 3) {
3563 pr_err("Could not find valid ONFI parameter page; aborting\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003564 return 0;
Brian Norrisc7f23a72013-08-13 10:51:55 -07003565 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003566
Brian Norris8b6e50c2011-05-25 14:59:01 -07003567 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003568 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003569 if (val & (1 << 5))
3570 chip->onfi_version = 23;
3571 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003572 chip->onfi_version = 22;
3573 else if (val & (1 << 3))
3574 chip->onfi_version = 21;
3575 else if (val & (1 << 2))
3576 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003577 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003578 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003579
3580 if (!chip->onfi_version) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003581 pr_info("unsupported ONFI version: %d\n", val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003582 return 0;
3583 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003584
3585 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3586 sanitize_string(p->model, sizeof(p->model));
3587 if (!mtd->name)
3588 mtd->name = p->model;
Brian Norris4355b702013-08-27 18:45:10 -07003589
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003590 mtd->writesize = le32_to_cpu(p->byte_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003591
3592 /*
3593 * pages_per_block and blocks_per_lun may not be a power-of-2 size
3594 * (don't ask me who thought of this...). MTD assumes that these
3595 * dimensions will be power-of-2, so just truncate the remaining area.
3596 */
3597 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3598 mtd->erasesize *= mtd->writesize;
3599
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003600 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003601
3602 /* See erasesize comment */
3603 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
Matthieu CASTET63795752012-03-19 15:35:25 +01003604 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
Huang Shijie13fbd172013-09-25 14:58:13 +08003605 chip->bits_per_cell = p->bits_per_cell;
Huang Shijiee2985fc2013-05-17 11:17:30 +08003606
Zach Brown34da5f52017-01-10 13:30:21 -06003607 chip->max_bb_per_die = le16_to_cpu(p->bb_per_lun);
3608 chip->blocks_per_die = le32_to_cpu(p->blocks_per_lun);
3609
Huang Shijiee2985fc2013-05-17 11:17:30 +08003610 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02003611 chip->options |= NAND_BUSWIDTH_16;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003612
Huang Shijie10c86ba2013-05-17 11:17:26 +08003613 if (p->ecc_bits != 0xff) {
3614 chip->ecc_strength_ds = p->ecc_bits;
3615 chip->ecc_step_ds = 512;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003616 } else if (chip->onfi_version >= 21 &&
3617 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
3618
3619 /*
3620 * The nand_flash_detect_ext_param_page() uses the
3621 * Change Read Column command which maybe not supported
3622 * by the chip->cmdfunc. So try to update the chip->cmdfunc
3623 * now. We do not replace user supplied command function.
3624 */
3625 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3626 chip->cmdfunc = nand_command_lp;
3627
3628 /* The Extended Parameter Page is supported since ONFI 2.1. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003629 if (nand_flash_detect_ext_param_page(chip, p))
Brian Norrisc7f23a72013-08-13 10:51:55 -07003630 pr_warn("Failed to detect ONFI extended param page\n");
3631 } else {
3632 pr_warn("Could not retrieve ONFI ECC requirements\n");
Huang Shijie10c86ba2013-05-17 11:17:26 +08003633 }
3634
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003635 return 1;
3636}
3637
3638/*
Huang Shijie91361812014-02-21 13:39:40 +08003639 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
3640 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003641static int nand_flash_detect_jedec(struct nand_chip *chip)
Huang Shijie91361812014-02-21 13:39:40 +08003642{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003643 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie91361812014-02-21 13:39:40 +08003644 struct nand_jedec_params *p = &chip->jedec_params;
3645 struct jedec_ecc_info *ecc;
3646 int val;
3647 int i, j;
3648
3649 /* Try JEDEC for unknown chip or LP */
3650 chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1);
3651 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' ||
3652 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' ||
3653 chip->read_byte(mtd) != 'C')
3654 return 0;
3655
3656 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1);
3657 for (i = 0; i < 3; i++) {
3658 for (j = 0; j < sizeof(*p); j++)
3659 ((uint8_t *)p)[j] = chip->read_byte(mtd);
3660
3661 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
3662 le16_to_cpu(p->crc))
3663 break;
3664 }
3665
3666 if (i == 3) {
3667 pr_err("Could not find valid JEDEC parameter page; aborting\n");
3668 return 0;
3669 }
3670
3671 /* Check version */
3672 val = le16_to_cpu(p->revision);
3673 if (val & (1 << 2))
3674 chip->jedec_version = 10;
3675 else if (val & (1 << 1))
3676 chip->jedec_version = 1; /* vendor specific version */
3677
3678 if (!chip->jedec_version) {
3679 pr_info("unsupported JEDEC version: %d\n", val);
3680 return 0;
3681 }
3682
3683 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3684 sanitize_string(p->model, sizeof(p->model));
3685 if (!mtd->name)
3686 mtd->name = p->model;
3687
3688 mtd->writesize = le32_to_cpu(p->byte_per_page);
3689
3690 /* Please reference to the comment for nand_flash_detect_onfi. */
3691 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3692 mtd->erasesize *= mtd->writesize;
3693
3694 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3695
3696 /* Please reference to the comment for nand_flash_detect_onfi. */
3697 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3698 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3699 chip->bits_per_cell = p->bits_per_cell;
3700
3701 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02003702 chip->options |= NAND_BUSWIDTH_16;
Huang Shijie91361812014-02-21 13:39:40 +08003703
3704 /* ECC info */
3705 ecc = &p->ecc_info[0];
3706
3707 if (ecc->codeword_size >= 9) {
3708 chip->ecc_strength_ds = ecc->ecc_bits;
3709 chip->ecc_step_ds = 1 << ecc->codeword_size;
3710 } else {
3711 pr_warn("Invalid codeword size\n");
3712 }
3713
3714 return 1;
3715}
3716
3717/*
Brian Norrise3b88bd2012-09-24 20:40:52 -07003718 * nand_id_has_period - Check if an ID string has a given wraparound period
3719 * @id_data: the ID string
3720 * @arrlen: the length of the @id_data array
3721 * @period: the period of repitition
3722 *
3723 * Check if an ID string is repeated within a given sequence of bytes at
3724 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Brian Norrisd4d4f1b2012-11-14 21:54:20 -08003725 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Brian Norrise3b88bd2012-09-24 20:40:52 -07003726 * if the repetition has a period of @period; otherwise, returns zero.
3727 */
3728static int nand_id_has_period(u8 *id_data, int arrlen, int period)
3729{
3730 int i, j;
3731 for (i = 0; i < period; i++)
3732 for (j = i + period; j < arrlen; j += period)
3733 if (id_data[i] != id_data[j])
3734 return 0;
3735 return 1;
3736}
3737
3738/*
3739 * nand_id_len - Get the length of an ID string returned by CMD_READID
3740 * @id_data: the ID string
3741 * @arrlen: the length of the @id_data array
3742
3743 * Returns the length of the ID string, according to known wraparound/trailing
3744 * zero patterns. If no pattern exists, returns the length of the array.
3745 */
3746static int nand_id_len(u8 *id_data, int arrlen)
3747{
3748 int last_nonzero, period;
3749
3750 /* Find last non-zero byte */
3751 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
3752 if (id_data[last_nonzero])
3753 break;
3754
3755 /* All zeros */
3756 if (last_nonzero < 0)
3757 return 0;
3758
3759 /* Calculate wraparound period */
3760 for (period = 1; period < arrlen; period++)
3761 if (nand_id_has_period(id_data, arrlen, period))
3762 break;
3763
3764 /* There's a repeated pattern */
3765 if (period < arrlen)
3766 return period;
3767
3768 /* There are trailing zeros */
3769 if (last_nonzero < arrlen - 1)
3770 return last_nonzero + 1;
3771
3772 /* No pattern detected */
3773 return arrlen;
3774}
3775
Huang Shijie7db906b2013-09-25 14:58:11 +08003776/* Extract the bits of per cell from the 3rd byte of the extended ID */
3777static int nand_get_bits_per_cell(u8 cellinfo)
3778{
3779 int bits;
3780
3781 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
3782 bits >>= NAND_CI_CELLTYPE_SHIFT;
3783 return bits + 1;
3784}
3785
Brian Norrise3b88bd2012-09-24 20:40:52 -07003786/*
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003787 * Many new NAND share similar device ID codes, which represent the size of the
3788 * chip. The rest of the parameters must be decoded according to generic or
3789 * manufacturer-specific "extended ID" decoding patterns.
3790 */
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003791void nand_decode_ext_id(struct nand_chip *chip)
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003792{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003793 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon9b2d61f2016-06-08 10:34:57 +02003794 int extid;
Boris Brezillon7f501f02016-05-24 19:20:05 +02003795 u8 *id_data = chip->id.data;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003796 /* The 3rd id byte holds MLC / multichip data */
Huang Shijie7db906b2013-09-25 14:58:11 +08003797 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003798 /* The 4th id byte is the important one */
3799 extid = id_data[3];
3800
Boris Brezillon01389b62016-06-08 10:30:18 +02003801 /* Calc pagesize */
3802 mtd->writesize = 1024 << (extid & 0x03);
3803 extid >>= 2;
3804 /* Calc oobsize */
3805 mtd->oobsize = (8 << (extid & 0x01)) * (mtd->writesize >> 9);
3806 extid >>= 2;
3807 /* Calc blocksize. Blocksize is multiples of 64KiB */
3808 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3809 extid >>= 2;
3810 /* Get buswidth information */
3811 if (extid & 0x1)
3812 chip->options |= NAND_BUSWIDTH_16;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003813}
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003814EXPORT_SYMBOL_GPL(nand_decode_ext_id);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003815
3816/*
Brian Norrisf23a4812012-09-24 20:40:51 -07003817 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
3818 * decodes a matching ID table entry and assigns the MTD size parameters for
3819 * the chip.
3820 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003821static void nand_decode_id(struct nand_chip *chip, struct nand_flash_dev *type)
Brian Norrisf23a4812012-09-24 20:40:51 -07003822{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003823 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norrisf23a4812012-09-24 20:40:51 -07003824
3825 mtd->erasesize = type->erasesize;
3826 mtd->writesize = type->pagesize;
3827 mtd->oobsize = mtd->writesize / 32;
Brian Norrisf23a4812012-09-24 20:40:51 -07003828
Huang Shijie1c195e92013-09-25 14:58:12 +08003829 /* All legacy ID NAND are small-page, SLC */
3830 chip->bits_per_cell = 1;
Brian Norrisf23a4812012-09-24 20:40:51 -07003831}
3832
3833/*
Brian Norris7e74c2d2012-09-24 20:40:49 -07003834 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
3835 * heuristic patterns using various detected parameters (e.g., manufacturer,
3836 * page size, cell-type information).
3837 */
Boris Brezillon7f501f02016-05-24 19:20:05 +02003838static void nand_decode_bbm_options(struct nand_chip *chip)
Brian Norris7e74c2d2012-09-24 20:40:49 -07003839{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003840 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07003841
3842 /* Set the bad block position */
3843 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
3844 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
3845 else
3846 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Brian Norris7e74c2d2012-09-24 20:40:49 -07003847}
3848
Huang Shijieec6e87e2013-03-15 11:01:00 +08003849static inline bool is_full_id_nand(struct nand_flash_dev *type)
3850{
3851 return type->id_len;
3852}
3853
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003854static bool find_full_id_nand(struct nand_chip *chip,
Boris Brezillon29a198a2016-05-24 20:17:48 +02003855 struct nand_flash_dev *type)
Huang Shijieec6e87e2013-03-15 11:01:00 +08003856{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003857 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon7f501f02016-05-24 19:20:05 +02003858 u8 *id_data = chip->id.data;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003859
Huang Shijieec6e87e2013-03-15 11:01:00 +08003860 if (!strncmp(type->id, id_data, type->id_len)) {
3861 mtd->writesize = type->pagesize;
3862 mtd->erasesize = type->erasesize;
3863 mtd->oobsize = type->oobsize;
3864
Huang Shijie7db906b2013-09-25 14:58:11 +08003865 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Huang Shijieec6e87e2013-03-15 11:01:00 +08003866 chip->chipsize = (uint64_t)type->chipsize << 20;
3867 chip->options |= type->options;
Huang Shijie57219342013-05-17 11:17:32 +08003868 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
3869 chip->ecc_step_ds = NAND_ECC_STEP(type);
Boris BREZILLON57a94e22014-09-22 20:11:50 +02003870 chip->onfi_timing_mode_default =
3871 type->onfi_timing_mode_default;
Huang Shijieec6e87e2013-03-15 11:01:00 +08003872
Cai Zhiyong092b6a12013-12-25 21:19:21 +08003873 if (!mtd->name)
3874 mtd->name = type->name;
3875
Huang Shijieec6e87e2013-03-15 11:01:00 +08003876 return true;
3877 }
3878 return false;
3879}
3880
Brian Norris7e74c2d2012-09-24 20:40:49 -07003881/*
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003882 * Manufacturer detection. Only used when the NAND is not ONFI or JEDEC
3883 * compliant and does not have a full-id or legacy-id entry in the nand_ids
3884 * table.
3885 */
3886static void nand_manufacturer_detect(struct nand_chip *chip)
3887{
3888 /*
3889 * Try manufacturer detection if available and use
3890 * nand_decode_ext_id() otherwise.
3891 */
3892 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
3893 chip->manufacturer.desc->ops->detect)
3894 chip->manufacturer.desc->ops->detect(chip);
3895 else
3896 nand_decode_ext_id(chip);
3897}
3898
3899/*
3900 * Manufacturer initialization. This function is called for all NANDs including
3901 * ONFI and JEDEC compliant ones.
3902 * Manufacturer drivers should put all their specific initialization code in
3903 * their ->init() hook.
3904 */
3905static int nand_manufacturer_init(struct nand_chip *chip)
3906{
3907 if (!chip->manufacturer.desc || !chip->manufacturer.desc->ops ||
3908 !chip->manufacturer.desc->ops->init)
3909 return 0;
3910
3911 return chip->manufacturer.desc->ops->init(chip);
3912}
3913
3914/*
3915 * Manufacturer cleanup. This function is called for all NANDs including
3916 * ONFI and JEDEC compliant ones.
3917 * Manufacturer drivers should put all their specific cleanup code in their
3918 * ->cleanup() hook.
3919 */
3920static void nand_manufacturer_cleanup(struct nand_chip *chip)
3921{
3922 /* Release manufacturer private data */
3923 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
3924 chip->manufacturer.desc->ops->cleanup)
3925 chip->manufacturer.desc->ops->cleanup(chip);
3926}
3927
3928/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003929 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003930 */
Boris Brezillon7bb42792016-05-24 20:55:33 +02003931static int nand_detect(struct nand_chip *chip, struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003932{
Boris Brezillonbcc678c2017-01-07 15:48:25 +01003933 const struct nand_manufacturer *manufacturer;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003934 struct mtd_info *mtd = nand_to_mtd(chip);
Cai Zhiyongbb770822013-12-25 20:11:15 +08003935 int busw;
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003936 int i, ret;
Boris Brezillon7f501f02016-05-24 19:20:05 +02003937 u8 *id_data = chip->id.data;
3938 u8 maf_id, dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939
Karl Beldanef89a882008-09-15 14:37:29 +02003940 /*
3941 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003942 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02003943 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02003944 nand_reset(chip, 0);
3945
3946 /* Select the device */
3947 chip->select_chip(mtd, 0);
Karl Beldanef89a882008-09-15 14:37:29 +02003948
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003950 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
3952 /* Read manufacturer and device IDs */
Boris Brezillon7f501f02016-05-24 19:20:05 +02003953 maf_id = chip->read_byte(mtd);
3954 dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955
Brian Norris8b6e50c2011-05-25 14:59:01 -07003956 /*
3957 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01003958 * interface concerns can cause random data which looks like a
3959 * possibly credible NAND flash to appear. If the two results do
3960 * not match, ignore the device completely.
3961 */
3962
3963 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3964
Brian Norris4aef9b72012-09-24 20:40:48 -07003965 /* Read entire ID string */
3966 for (i = 0; i < 8; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07003967 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01003968
Boris Brezillon7f501f02016-05-24 19:20:05 +02003969 if (id_data[0] != maf_id || id_data[1] != dev_id) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003970 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02003971 maf_id, dev_id, id_data[0], id_data[1]);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09003972 return -ENODEV;
Ben Dooksed8165c2008-04-14 14:58:58 +01003973 }
3974
Boris Brezillon7f501f02016-05-24 19:20:05 +02003975 chip->id.len = nand_id_len(id_data, 8);
3976
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003977 /* Try to identify manufacturer */
3978 manufacturer = nand_get_manufacturer(maf_id);
3979 chip->manufacturer.desc = manufacturer;
3980
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003981 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00003982 type = nand_flash_ids;
3983
Boris Brezillon29a198a2016-05-24 20:17:48 +02003984 /*
3985 * Save the NAND_BUSWIDTH_16 flag before letting auto-detection logic
3986 * override it.
3987 * This is required to make sure initial NAND bus width set by the
3988 * NAND controller driver is coherent with the real NAND bus width
3989 * (extracted by auto-detection code).
3990 */
3991 busw = chip->options & NAND_BUSWIDTH_16;
3992
3993 /*
3994 * The flag is only set (never cleared), reset it to its default value
3995 * before starting auto-detection.
3996 */
3997 chip->options &= ~NAND_BUSWIDTH_16;
3998
Huang Shijieec6e87e2013-03-15 11:01:00 +08003999 for (; type->name != NULL; type++) {
4000 if (is_full_id_nand(type)) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02004001 if (find_full_id_nand(chip, type))
Huang Shijieec6e87e2013-03-15 11:01:00 +08004002 goto ident_done;
Boris Brezillon7f501f02016-05-24 19:20:05 +02004003 } else if (dev_id == type->dev_id) {
Brian Norrisdb5b09f2015-05-22 10:43:12 -07004004 break;
Huang Shijieec6e87e2013-03-15 11:01:00 +08004005 }
4006 }
David Woodhouse5e81e882010-02-26 18:32:56 +00004007
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004008 chip->onfi_version = 0;
4009 if (!type->name || !type->pagesize) {
Masahiro Yamada35fc5192014-04-09 16:26:26 +09004010 /* Check if the chip is ONFI compliant */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004011 if (nand_flash_detect_onfi(chip))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004012 goto ident_done;
Huang Shijie91361812014-02-21 13:39:40 +08004013
4014 /* Check if the chip is JEDEC compliant */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004015 if (nand_flash_detect_jedec(chip))
Huang Shijie91361812014-02-21 13:39:40 +08004016 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004017 }
4018
David Woodhouse5e81e882010-02-26 18:32:56 +00004019 if (!type->name)
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004020 return -ENODEV;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004021
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02004022 if (!mtd->name)
4023 mtd->name = type->name;
4024
Adrian Hunter69423d92008-12-10 13:37:21 +00004025 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004026
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004027 if (!type->pagesize)
4028 nand_manufacturer_detect(chip);
4029 else
Boris Brezillon29a198a2016-05-24 20:17:48 +02004030 nand_decode_id(chip, type);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004031
Brian Norrisbf7a01b2012-07-13 09:28:24 -07004032 /* Get chip options */
4033 chip->options |= type->options;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004034
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004035ident_done:
4036
Matthieu CASTET64b37b22012-11-06 11:51:44 +01004037 if (chip->options & NAND_BUSWIDTH_AUTO) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02004038 WARN_ON(busw & NAND_BUSWIDTH_16);
4039 nand_set_defaults(chip);
Matthieu CASTET64b37b22012-11-06 11:51:44 +01004040 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
4041 /*
4042 * Check, if buswidth is correct. Hardware drivers should set
4043 * chip correct!
4044 */
Ezequiel Garcia20171642013-11-25 08:30:31 -03004045 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004046 maf_id, dev_id);
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004047 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4048 mtd->name);
Boris Brezillon29a198a2016-05-24 20:17:48 +02004049 pr_warn("bus width %d instead of %d bits\n", busw ? 16 : 8,
4050 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004051 return -EINVAL;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004052 }
4053
Boris Brezillon7f501f02016-05-24 19:20:05 +02004054 nand_decode_bbm_options(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07004055
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004056 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004057 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07004058 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004059 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004060
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004061 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004062 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00004063 if (chip->chipsize & 0xffffffff)
4064 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004065 else {
4066 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
4067 chip->chip_shift += 32 - 1;
4068 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004069
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03004070 chip->badblockbits = 8;
Brian Norris49c50b92014-05-06 16:02:19 -07004071 chip->erase = single_erase;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004072
Brian Norris8b6e50c2011-05-25 14:59:01 -07004073 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004074 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
4075 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004076
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004077 ret = nand_manufacturer_init(chip);
4078 if (ret)
4079 return ret;
4080
Ezequiel Garcia20171642013-11-25 08:30:31 -03004081 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004082 maf_id, dev_id);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004083
4084 if (chip->onfi_version)
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004085 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4086 chip->onfi_params.model);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004087 else if (chip->jedec_version)
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004088 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4089 chip->jedec_params.model);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004090 else
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004091 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4092 type->name);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004093
Rafał Miłecki3755a992014-10-21 00:01:04 +02004094 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
Huang Shijie3723e932013-09-25 14:58:14 +08004095 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Rafał Miłecki3755a992014-10-21 00:01:04 +02004096 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004097 return 0;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004098}
4099
Boris Brezillond48f62b2016-04-01 14:54:32 +02004100static const char * const nand_ecc_modes[] = {
4101 [NAND_ECC_NONE] = "none",
4102 [NAND_ECC_SOFT] = "soft",
4103 [NAND_ECC_HW] = "hw",
4104 [NAND_ECC_HW_SYNDROME] = "hw_syndrome",
4105 [NAND_ECC_HW_OOB_FIRST] = "hw_oob_first",
Boris Brezillond48f62b2016-04-01 14:54:32 +02004106};
4107
4108static int of_get_nand_ecc_mode(struct device_node *np)
4109{
4110 const char *pm;
4111 int err, i;
4112
4113 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4114 if (err < 0)
4115 return err;
4116
4117 for (i = 0; i < ARRAY_SIZE(nand_ecc_modes); i++)
4118 if (!strcasecmp(pm, nand_ecc_modes[i]))
4119 return i;
4120
Rafał Miłeckiae211bc2016-04-17 22:53:06 +02004121 /*
4122 * For backward compatibility we support few obsoleted values that don't
4123 * have their mappings into nand_ecc_modes_t anymore (they were merged
4124 * with other enums).
4125 */
4126 if (!strcasecmp(pm, "soft_bch"))
4127 return NAND_ECC_SOFT;
4128
Boris Brezillond48f62b2016-04-01 14:54:32 +02004129 return -ENODEV;
4130}
4131
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004132static const char * const nand_ecc_algos[] = {
4133 [NAND_ECC_HAMMING] = "hamming",
4134 [NAND_ECC_BCH] = "bch",
4135};
4136
Boris Brezillond48f62b2016-04-01 14:54:32 +02004137static int of_get_nand_ecc_algo(struct device_node *np)
4138{
4139 const char *pm;
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004140 int err, i;
Boris Brezillond48f62b2016-04-01 14:54:32 +02004141
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004142 err = of_property_read_string(np, "nand-ecc-algo", &pm);
4143 if (!err) {
4144 for (i = NAND_ECC_HAMMING; i < ARRAY_SIZE(nand_ecc_algos); i++)
4145 if (!strcasecmp(pm, nand_ecc_algos[i]))
4146 return i;
4147 return -ENODEV;
4148 }
Boris Brezillond48f62b2016-04-01 14:54:32 +02004149
4150 /*
4151 * For backward compatibility we also read "nand-ecc-mode" checking
4152 * for some obsoleted values that were specifying ECC algorithm.
4153 */
4154 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4155 if (err < 0)
4156 return err;
4157
4158 if (!strcasecmp(pm, "soft"))
4159 return NAND_ECC_HAMMING;
4160 else if (!strcasecmp(pm, "soft_bch"))
4161 return NAND_ECC_BCH;
4162
4163 return -ENODEV;
4164}
4165
4166static int of_get_nand_ecc_step_size(struct device_node *np)
4167{
4168 int ret;
4169 u32 val;
4170
4171 ret = of_property_read_u32(np, "nand-ecc-step-size", &val);
4172 return ret ? ret : val;
4173}
4174
4175static int of_get_nand_ecc_strength(struct device_node *np)
4176{
4177 int ret;
4178 u32 val;
4179
4180 ret = of_property_read_u32(np, "nand-ecc-strength", &val);
4181 return ret ? ret : val;
4182}
4183
4184static int of_get_nand_bus_width(struct device_node *np)
4185{
4186 u32 val;
4187
4188 if (of_property_read_u32(np, "nand-bus-width", &val))
4189 return 8;
4190
4191 switch (val) {
4192 case 8:
4193 case 16:
4194 return val;
4195 default:
4196 return -EIO;
4197 }
4198}
4199
4200static bool of_get_nand_on_flash_bbt(struct device_node *np)
4201{
4202 return of_property_read_bool(np, "nand-on-flash-bbt");
4203}
4204
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004205static int nand_dt_init(struct nand_chip *chip)
Brian Norris5844fee2015-01-23 00:22:27 -08004206{
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004207 struct device_node *dn = nand_get_flash_node(chip);
Rafał Miłecki79082452016-03-23 11:19:02 +01004208 int ecc_mode, ecc_algo, ecc_strength, ecc_step;
Brian Norris5844fee2015-01-23 00:22:27 -08004209
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004210 if (!dn)
4211 return 0;
4212
Brian Norris5844fee2015-01-23 00:22:27 -08004213 if (of_get_nand_bus_width(dn) == 16)
4214 chip->options |= NAND_BUSWIDTH_16;
4215
4216 if (of_get_nand_on_flash_bbt(dn))
4217 chip->bbt_options |= NAND_BBT_USE_FLASH;
4218
4219 ecc_mode = of_get_nand_ecc_mode(dn);
Rafał Miłecki79082452016-03-23 11:19:02 +01004220 ecc_algo = of_get_nand_ecc_algo(dn);
Brian Norris5844fee2015-01-23 00:22:27 -08004221 ecc_strength = of_get_nand_ecc_strength(dn);
4222 ecc_step = of_get_nand_ecc_step_size(dn);
4223
Brian Norris5844fee2015-01-23 00:22:27 -08004224 if (ecc_mode >= 0)
4225 chip->ecc.mode = ecc_mode;
4226
Rafał Miłecki79082452016-03-23 11:19:02 +01004227 if (ecc_algo >= 0)
4228 chip->ecc.algo = ecc_algo;
4229
Brian Norris5844fee2015-01-23 00:22:27 -08004230 if (ecc_strength >= 0)
4231 chip->ecc.strength = ecc_strength;
4232
4233 if (ecc_step > 0)
4234 chip->ecc.size = ecc_step;
4235
Boris Brezillonba78ee02016-06-08 17:04:22 +02004236 if (of_property_read_bool(dn, "nand-ecc-maximize"))
4237 chip->ecc.options |= NAND_ECC_MAXIMIZE;
4238
Brian Norris5844fee2015-01-23 00:22:27 -08004239 return 0;
4240}
4241
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004242/**
David Woodhouse3b85c322006-09-25 17:06:53 +01004243 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004244 * @mtd: MTD device structure
4245 * @maxchips: number of chips to scan for
4246 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004247 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004248 * This is the first phase of the normal nand_scan() function. It reads the
4249 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004250 *
4251 */
David Woodhouse5e81e882010-02-26 18:32:56 +00004252int nand_scan_ident(struct mtd_info *mtd, int maxchips,
4253 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004254{
Cai Zhiyongbb770822013-12-25 20:11:15 +08004255 int i, nand_maf_id, nand_dev_id;
Boris BREZILLON862eba52015-12-01 12:03:03 +01004256 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris5844fee2015-01-23 00:22:27 -08004257 int ret;
4258
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004259 ret = nand_dt_init(chip);
4260 if (ret)
4261 return ret;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004262
Brian Norrisf7a8e382016-01-05 10:39:45 -08004263 if (!mtd->name && mtd->dev.parent)
4264 mtd->name = dev_name(mtd->dev.parent);
4265
Andrey Smirnov76fe3342016-07-21 14:59:20 -07004266 if ((!chip->cmdfunc || !chip->select_chip) && !chip->cmd_ctrl) {
4267 /*
4268 * Default functions assigned for chip_select() and
4269 * cmdfunc() both expect cmd_ctrl() to be populated,
4270 * so we need to check that that's the case
4271 */
4272 pr_err("chip.cmd_ctrl() callback is not provided");
4273 return -EINVAL;
4274 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004275 /* Set the default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004276 nand_set_defaults(chip);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004277
4278 /* Read the flash type */
Boris Brezillon7bb42792016-05-24 20:55:33 +02004279 ret = nand_detect(chip, table);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004280 if (ret) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00004281 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07004282 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004283 chip->select_chip(mtd, -1);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004284 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 }
4286
Boris Brezillon73f907f2016-10-24 16:46:20 +02004287 /* Initialize the ->data_interface field. */
Boris Brezillond8e725d2016-09-15 10:32:50 +02004288 ret = nand_init_data_interface(chip);
4289 if (ret)
4290 return ret;
4291
Boris Brezillon73f907f2016-10-24 16:46:20 +02004292 /*
4293 * Setup the data interface correctly on the chip and controller side.
4294 * This explicit call to nand_setup_data_interface() is only required
4295 * for the first die, because nand_reset() has been called before
4296 * ->data_interface and ->default_onfi_timing_mode were set.
4297 * For the other dies, nand_reset() will automatically switch to the
4298 * best mode for us.
4299 */
4300 ret = nand_setup_data_interface(chip);
4301 if (ret)
4302 return ret;
4303
Boris Brezillon7f501f02016-05-24 19:20:05 +02004304 nand_maf_id = chip->id.data[0];
4305 nand_dev_id = chip->id.data[1];
4306
Huang Shijie07300162012-11-09 16:23:45 +08004307 chip->select_chip(mtd, -1);
4308
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004309 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01004310 for (i = 1; i < maxchips; i++) {
Karl Beldanef89a882008-09-15 14:37:29 +02004311 /* See comment in nand_get_flash_type for reset */
Boris Brezillon73f907f2016-10-24 16:46:20 +02004312 nand_reset(chip, i);
4313
4314 chip->select_chip(mtd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004316 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004318 if (nand_maf_id != chip->read_byte(mtd) ||
Huang Shijie07300162012-11-09 16:23:45 +08004319 nand_dev_id != chip->read_byte(mtd)) {
4320 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 break;
Huang Shijie07300162012-11-09 16:23:45 +08004322 }
4323 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 }
4325 if (i > 1)
Ezequiel Garcia20171642013-11-25 08:30:31 -03004326 pr_info("%d chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004327
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004329 chip->numchips = i;
4330 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
David Woodhouse3b85c322006-09-25 17:06:53 +01004332 return 0;
4333}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004334EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01004335
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004336static int nand_set_ecc_soft_ops(struct mtd_info *mtd)
4337{
4338 struct nand_chip *chip = mtd_to_nand(mtd);
4339 struct nand_ecc_ctrl *ecc = &chip->ecc;
4340
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004341 if (WARN_ON(ecc->mode != NAND_ECC_SOFT))
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004342 return -EINVAL;
4343
4344 switch (ecc->algo) {
4345 case NAND_ECC_HAMMING:
4346 ecc->calculate = nand_calculate_ecc;
4347 ecc->correct = nand_correct_data;
4348 ecc->read_page = nand_read_page_swecc;
4349 ecc->read_subpage = nand_read_subpage;
4350 ecc->write_page = nand_write_page_swecc;
4351 ecc->read_page_raw = nand_read_page_raw;
4352 ecc->write_page_raw = nand_write_page_raw;
4353 ecc->read_oob = nand_read_oob_std;
4354 ecc->write_oob = nand_write_oob_std;
4355 if (!ecc->size)
4356 ecc->size = 256;
4357 ecc->bytes = 3;
4358 ecc->strength = 1;
4359 return 0;
4360 case NAND_ECC_BCH:
4361 if (!mtd_nand_has_bch()) {
4362 WARN(1, "CONFIG_MTD_NAND_ECC_BCH not enabled\n");
4363 return -EINVAL;
4364 }
4365 ecc->calculate = nand_bch_calculate_ecc;
4366 ecc->correct = nand_bch_correct_data;
4367 ecc->read_page = nand_read_page_swecc;
4368 ecc->read_subpage = nand_read_subpage;
4369 ecc->write_page = nand_write_page_swecc;
4370 ecc->read_page_raw = nand_read_page_raw;
4371 ecc->write_page_raw = nand_write_page_raw;
4372 ecc->read_oob = nand_read_oob_std;
4373 ecc->write_oob = nand_write_oob_std;
Boris Brezillon8bbba482016-06-08 17:04:23 +02004374
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004375 /*
4376 * Board driver should supply ecc.size and ecc.strength
4377 * values to select how many bits are correctable.
4378 * Otherwise, default to 4 bits for large page devices.
4379 */
4380 if (!ecc->size && (mtd->oobsize >= 64)) {
4381 ecc->size = 512;
4382 ecc->strength = 4;
4383 }
4384
4385 /*
4386 * if no ecc placement scheme was provided pickup the default
4387 * large page one.
4388 */
4389 if (!mtd->ooblayout) {
4390 /* handle large page devices only */
4391 if (mtd->oobsize < 64) {
4392 WARN(1, "OOB layout is required when using software BCH on small pages\n");
4393 return -EINVAL;
4394 }
4395
4396 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
Boris Brezillon8bbba482016-06-08 17:04:23 +02004397
4398 }
4399
4400 /*
4401 * We can only maximize ECC config when the default layout is
4402 * used, otherwise we don't know how many bytes can really be
4403 * used.
4404 */
4405 if (mtd->ooblayout == &nand_ooblayout_lp_ops &&
4406 ecc->options & NAND_ECC_MAXIMIZE) {
4407 int steps, bytes;
4408
4409 /* Always prefer 1k blocks over 512bytes ones */
4410 ecc->size = 1024;
4411 steps = mtd->writesize / ecc->size;
4412
4413 /* Reserve 2 bytes for the BBM */
4414 bytes = (mtd->oobsize - 2) / steps;
4415 ecc->strength = bytes * 8 / fls(8 * ecc->size);
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004416 }
4417
4418 /* See nand_bch_init() for details. */
4419 ecc->bytes = 0;
4420 ecc->priv = nand_bch_init(mtd);
4421 if (!ecc->priv) {
4422 WARN(1, "BCH ECC initialization failed!\n");
4423 return -EINVAL;
4424 }
4425 return 0;
4426 default:
4427 WARN(1, "Unsupported ECC algorithm!\n");
4428 return -EINVAL;
4429 }
4430}
4431
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004432/*
4433 * Check if the chip configuration meet the datasheet requirements.
4434
4435 * If our configuration corrects A bits per B bytes and the minimum
4436 * required correction level is X bits per Y bytes, then we must ensure
4437 * both of the following are true:
4438 *
4439 * (1) A / B >= X / Y
4440 * (2) A >= X
4441 *
4442 * Requirement (1) ensures we can correct for the required bitflip density.
4443 * Requirement (2) ensures we can correct even when all bitflips are clumped
4444 * in the same sector.
4445 */
4446static bool nand_ecc_strength_good(struct mtd_info *mtd)
4447{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004448 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004449 struct nand_ecc_ctrl *ecc = &chip->ecc;
4450 int corr, ds_corr;
4451
4452 if (ecc->size == 0 || chip->ecc_step_ds == 0)
4453 /* Not enough information */
4454 return true;
4455
4456 /*
4457 * We get the number of corrected bits per page to compare
4458 * the correction density.
4459 */
4460 corr = (mtd->writesize * ecc->strength) / ecc->size;
4461 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
4462
4463 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
4464}
David Woodhouse3b85c322006-09-25 17:06:53 +01004465
Marc Gonzalez3371d662016-11-15 10:56:20 +01004466static bool invalid_ecc_page_accessors(struct nand_chip *chip)
4467{
4468 struct nand_ecc_ctrl *ecc = &chip->ecc;
4469
4470 if (nand_standard_page_accessors(ecc))
4471 return false;
4472
4473 /*
4474 * NAND_ECC_CUSTOM_PAGE_ACCESS flag is set, make sure the NAND
4475 * controller driver implements all the page accessors because
4476 * default helpers are not suitable when the core does not
4477 * send the READ0/PAGEPROG commands.
4478 */
4479 return (!ecc->read_page || !ecc->write_page ||
4480 !ecc->read_page_raw || !ecc->write_page_raw ||
4481 (NAND_HAS_SUBPAGE_READ(chip) && !ecc->read_subpage) ||
4482 (NAND_HAS_SUBPAGE_WRITE(chip) && !ecc->write_subpage &&
4483 ecc->hwctl && ecc->calculate));
4484}
4485
David Woodhouse3b85c322006-09-25 17:06:53 +01004486/**
4487 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004488 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01004489 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004490 * This is the second phase of the normal nand_scan() function. It fills out
4491 * all the uninitialized function pointers with the defaults and scans for a
4492 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01004493 */
4494int nand_scan_tail(struct mtd_info *mtd)
4495{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004496 struct nand_chip *chip = mtd_to_nand(mtd);
Huang Shijie97de79e02013-10-18 14:20:53 +08004497 struct nand_ecc_ctrl *ecc = &chip->ecc;
Huang Shijief02ea4e2014-01-13 14:27:12 +08004498 struct nand_buffers *nbuf;
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004499 int ret;
David Woodhouse3b85c322006-09-25 17:06:53 +01004500
Brian Norrise2414f42012-02-06 13:44:00 -08004501 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004502 if (WARN_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
4503 !(chip->bbt_options & NAND_BBT_USE_FLASH)))
4504 return -EINVAL;
Brian Norrise2414f42012-02-06 13:44:00 -08004505
Marc Gonzalez3371d662016-11-15 10:56:20 +01004506 if (invalid_ecc_page_accessors(chip)) {
4507 pr_err("Invalid ECC page accessors setup\n");
4508 return -EINVAL;
4509 }
4510
Huang Shijief02ea4e2014-01-13 14:27:12 +08004511 if (!(chip->options & NAND_OWN_BUFFERS)) {
4512 nbuf = kzalloc(sizeof(*nbuf) + mtd->writesize
4513 + mtd->oobsize * 3, GFP_KERNEL);
4514 if (!nbuf)
4515 return -ENOMEM;
4516 nbuf->ecccalc = (uint8_t *)(nbuf + 1);
4517 nbuf->ecccode = nbuf->ecccalc + mtd->oobsize;
4518 nbuf->databuf = nbuf->ecccode + mtd->oobsize;
4519
4520 chip->buffers = nbuf;
4521 } else {
4522 if (!chip->buffers)
4523 return -ENOMEM;
4524 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004525
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01004526 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01004527 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004528
4529 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004530 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004531 */
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004532 if (!mtd->ooblayout &&
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004533 !(ecc->mode == NAND_ECC_SOFT && ecc->algo == NAND_ECC_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004534 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 case 8:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 case 16:
Boris Brezillon41b207a2016-02-03 19:06:15 +01004537 mtd_set_ooblayout(mtd, &nand_ooblayout_sp_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 break;
4539 case 64:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004540 case 128:
Boris Brezillon41b207a2016-02-03 19:06:15 +01004541 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004542 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 default:
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004544 WARN(1, "No oob scheme defined for oobsize %d\n",
4545 mtd->oobsize);
4546 ret = -EINVAL;
4547 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 }
4549 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004550
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004551 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004552 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004553 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01004554 */
David Woodhouse956e9442006-09-25 17:12:39 +01004555
Huang Shijie97de79e02013-10-18 14:20:53 +08004556 switch (ecc->mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004557 case NAND_ECC_HW_OOB_FIRST:
4558 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Huang Shijie97de79e02013-10-18 14:20:53 +08004559 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004560 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
4561 ret = -EINVAL;
4562 goto err_free;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004563 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004564 if (!ecc->read_page)
4565 ecc->read_page = nand_read_page_hwecc_oob_first;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004566
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004567 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07004568 /* Use standard hwecc read page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08004569 if (!ecc->read_page)
4570 ecc->read_page = nand_read_page_hwecc;
4571 if (!ecc->write_page)
4572 ecc->write_page = nand_write_page_hwecc;
4573 if (!ecc->read_page_raw)
4574 ecc->read_page_raw = nand_read_page_raw;
4575 if (!ecc->write_page_raw)
4576 ecc->write_page_raw = nand_write_page_raw;
4577 if (!ecc->read_oob)
4578 ecc->read_oob = nand_read_oob_std;
4579 if (!ecc->write_oob)
4580 ecc->write_oob = nand_write_oob_std;
4581 if (!ecc->read_subpage)
4582 ecc->read_subpage = nand_read_subpage;
Helmut Schaa44991b32014-04-09 11:13:24 +02004583 if (!ecc->write_subpage && ecc->hwctl && ecc->calculate)
Huang Shijie97de79e02013-10-18 14:20:53 +08004584 ecc->write_subpage = nand_write_subpage_hwecc;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02004585
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004586 case NAND_ECC_HW_SYNDROME:
Huang Shijie97de79e02013-10-18 14:20:53 +08004587 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
4588 (!ecc->read_page ||
4589 ecc->read_page == nand_read_page_hwecc ||
4590 !ecc->write_page ||
4591 ecc->write_page == nand_write_page_hwecc)) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004592 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
4593 ret = -EINVAL;
4594 goto err_free;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004595 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07004596 /* Use standard syndrome read/write page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08004597 if (!ecc->read_page)
4598 ecc->read_page = nand_read_page_syndrome;
4599 if (!ecc->write_page)
4600 ecc->write_page = nand_write_page_syndrome;
4601 if (!ecc->read_page_raw)
4602 ecc->read_page_raw = nand_read_page_raw_syndrome;
4603 if (!ecc->write_page_raw)
4604 ecc->write_page_raw = nand_write_page_raw_syndrome;
4605 if (!ecc->read_oob)
4606 ecc->read_oob = nand_read_oob_syndrome;
4607 if (!ecc->write_oob)
4608 ecc->write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02004609
Huang Shijie97de79e02013-10-18 14:20:53 +08004610 if (mtd->writesize >= ecc->size) {
4611 if (!ecc->strength) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004612 WARN(1, "Driver must set ecc.strength when using hardware ECC\n");
4613 ret = -EINVAL;
4614 goto err_free;
Mike Dunne2788c92012-04-25 12:06:10 -07004615 }
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004616 break;
Mike Dunne2788c92012-04-25 12:06:10 -07004617 }
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004618 pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n",
4619 ecc->size, mtd->writesize);
Huang Shijie97de79e02013-10-18 14:20:53 +08004620 ecc->mode = NAND_ECC_SOFT;
Rafał Miłeckie9d4fae2016-04-17 22:53:02 +02004621 ecc->algo = NAND_ECC_HAMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004623 case NAND_ECC_SOFT:
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004624 ret = nand_set_ecc_soft_ops(mtd);
4625 if (ret) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004626 ret = -EINVAL;
4627 goto err_free;
Ivan Djelic193bd402011-03-11 11:05:33 +01004628 }
4629 break;
4630
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004631 case NAND_ECC_NONE:
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004632 pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n");
Huang Shijie97de79e02013-10-18 14:20:53 +08004633 ecc->read_page = nand_read_page_raw;
4634 ecc->write_page = nand_write_page_raw;
4635 ecc->read_oob = nand_read_oob_std;
4636 ecc->read_page_raw = nand_read_page_raw;
4637 ecc->write_page_raw = nand_write_page_raw;
4638 ecc->write_oob = nand_write_oob_std;
4639 ecc->size = mtd->writesize;
4640 ecc->bytes = 0;
4641 ecc->strength = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 break;
David Woodhouse956e9442006-09-25 17:12:39 +01004643
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644 default:
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004645 WARN(1, "Invalid NAND_ECC_MODE %d\n", ecc->mode);
4646 ret = -EINVAL;
4647 goto err_free;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649
Brian Norris9ce244b2011-08-30 18:45:37 -07004650 /* For many systems, the standard OOB write also works for raw */
Huang Shijie97de79e02013-10-18 14:20:53 +08004651 if (!ecc->read_oob_raw)
4652 ecc->read_oob_raw = ecc->read_oob;
4653 if (!ecc->write_oob_raw)
4654 ecc->write_oob_raw = ecc->write_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07004655
Boris Brezillon846031d2016-02-03 20:11:00 +01004656 /* propagate ecc info to mtd_info */
Boris Brezillon846031d2016-02-03 20:11:00 +01004657 mtd->ecc_strength = ecc->strength;
4658 mtd->ecc_step_size = ecc->size;
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004659
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004660 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004661 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07004662 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004663 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004664 ecc->steps = mtd->writesize / ecc->size;
4665 if (ecc->steps * ecc->size != mtd->writesize) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004666 WARN(1, "Invalid ECC parameters\n");
4667 ret = -EINVAL;
4668 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004670 ecc->total = ecc->steps * ecc->bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004671
Boris Brezillon846031d2016-02-03 20:11:00 +01004672 /*
4673 * The number of bytes available for a client to place data into
4674 * the out of band area.
4675 */
4676 ret = mtd_ooblayout_count_freebytes(mtd);
4677 if (ret < 0)
4678 ret = 0;
4679
4680 mtd->oobavail = ret;
4681
4682 /* ECC sanity check: warn if it's too weak */
4683 if (!nand_ecc_strength_good(mtd))
4684 pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n",
4685 mtd->name);
4686
Brian Norris8b6e50c2011-05-25 14:59:01 -07004687 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Huang Shijie1d0ed692013-09-25 14:58:10 +08004688 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
Huang Shijie97de79e02013-10-18 14:20:53 +08004689 switch (ecc->steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02004690 case 2:
4691 mtd->subpage_sft = 1;
4692 break;
4693 case 4:
4694 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004695 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02004696 mtd->subpage_sft = 2;
4697 break;
4698 }
4699 }
4700 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
4701
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02004702 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004703 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004706 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004708 /* Large page NAND with SOFT_ECC should support subpage reads */
Ron Lee4007e2d2014-04-25 15:01:35 +09304709 switch (ecc->mode) {
4710 case NAND_ECC_SOFT:
Ron Lee4007e2d2014-04-25 15:01:35 +09304711 if (chip->page_shift > 9)
4712 chip->options |= NAND_SUBPAGE_READ;
4713 break;
4714
4715 default:
4716 break;
4717 }
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004718
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 /* Fill in remaining MTD driver data */
Huang Shijie963d1c22013-09-25 14:58:21 +08004720 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02004721 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
4722 MTD_CAP_NANDFLASH;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004723 mtd->_erase = nand_erase;
4724 mtd->_point = NULL;
4725 mtd->_unpoint = NULL;
4726 mtd->_read = nand_read;
4727 mtd->_write = nand_write;
4728 mtd->_panic_write = panic_nand_write;
4729 mtd->_read_oob = nand_read_oob;
4730 mtd->_write_oob = nand_write_oob;
4731 mtd->_sync = nand_sync;
4732 mtd->_lock = NULL;
4733 mtd->_unlock = NULL;
4734 mtd->_suspend = nand_suspend;
4735 mtd->_resume = nand_resume;
Scott Branden72ea4032014-11-20 11:18:05 -08004736 mtd->_reboot = nand_shutdown;
Ezequiel Garcia8471bb72014-05-21 19:06:12 -03004737 mtd->_block_isreserved = nand_block_isreserved;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004738 mtd->_block_isbad = nand_block_isbad;
4739 mtd->_block_markbad = nand_block_markbad;
Zach Brown56718422017-01-10 13:30:20 -06004740 mtd->_max_bad_blocks = nand_max_bad_blocks;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01004741 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
Shmulik Ladkaniea3b2ea2012-06-08 18:29:06 +03004743 /*
4744 * Initialize bitflip_threshold to its default prior scan_bbt() call.
4745 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
4746 * properly set.
4747 */
4748 if (!mtd->bitflip_threshold)
Brian Norris240181f2015-01-12 12:51:29 -08004749 mtd->bitflip_threshold = DIV_ROUND_UP(mtd->ecc_strength * 3, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004751 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004752 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004753 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754
4755 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004756 return chip->scan_bbt(mtd);
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004757err_free:
4758 if (!(chip->options & NAND_OWN_BUFFERS))
4759 kfree(chip->buffers);
4760 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004762EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763
Brian Norris8b6e50c2011-05-25 14:59:01 -07004764/*
4765 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004766 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07004767 * to call us from in-kernel code if the core NAND support is modular.
4768 */
David Woodhouse3b85c322006-09-25 17:06:53 +01004769#ifdef MODULE
4770#define caller_is_module() (1)
4771#else
4772#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06004773 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01004774#endif
4775
4776/**
4777 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004778 * @mtd: MTD device structure
4779 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01004780 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004781 * This fills out all the uninitialized function pointers with the defaults.
4782 * The flash ID is read and the mtd/chip structures are filled with the
Ezequiel García20c07a52016-04-01 18:29:23 -03004783 * appropriate values.
David Woodhouse3b85c322006-09-25 17:06:53 +01004784 */
4785int nand_scan(struct mtd_info *mtd, int maxchips)
4786{
4787 int ret;
4788
David Woodhouse5e81e882010-02-26 18:32:56 +00004789 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01004790 if (!ret)
4791 ret = nand_scan_tail(mtd);
4792 return ret;
4793}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004794EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01004795
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796/**
Richard Weinbergerd44154f2016-09-21 11:44:41 +02004797 * nand_cleanup - [NAND Interface] Free resources held by the NAND device
4798 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -07004799 */
Richard Weinbergerd44154f2016-09-21 11:44:41 +02004800void nand_cleanup(struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801{
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004802 if (chip->ecc.mode == NAND_ECC_SOFT &&
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004803 chip->ecc.algo == NAND_ECC_BCH)
Ivan Djelic193bd402011-03-11 11:05:33 +01004804 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
4805
Boris Brezillond8e725d2016-09-15 10:32:50 +02004806 nand_release_data_interface(chip);
4807
Jesper Juhlfa671642005-11-07 01:01:27 -08004808 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004809 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004810 if (!(chip->options & NAND_OWN_BUFFERS))
4811 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07004812
4813 /* Free bad block descriptor memory */
4814 if (chip->badblock_pattern && chip->badblock_pattern->options
4815 & NAND_BBT_DYNAMICSTRUCT)
4816 kfree(chip->badblock_pattern);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004817
4818 /* Free manufacturer priv data. */
4819 nand_manufacturer_cleanup(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820}
Richard Weinbergerd44154f2016-09-21 11:44:41 +02004821EXPORT_SYMBOL_GPL(nand_cleanup);
4822
4823/**
4824 * nand_release - [NAND Interface] Unregister the MTD device and free resources
4825 * held by the NAND device
4826 * @mtd: MTD device structure
4827 */
4828void nand_release(struct mtd_info *mtd)
4829{
4830 mtd_device_unregister(mtd);
4831 nand_cleanup(mtd_to_nand(mtd));
4832}
David Woodhousee0c7d762006-05-13 18:07:53 +01004833EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08004834
David Woodhousee0c7d762006-05-13 18:07:53 +01004835MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004836MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
4837MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01004838MODULE_DESCRIPTION("Generic NAND flash driver code");