blob: 36258e69a3897b085fb94029df6cabde3f9d4354 [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
Mike Dunnedbc45402012-04-25 12:06:11 -07001996 max_bitflips = max_t(unsigned int, max_bitflips, ret);
1997
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001998 /* Transfer not aligned data */
Kamal Dasu66507c72014-05-01 20:51:19 -04001999 if (use_bufpoi) {
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05002000 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Brian Norrisb72f3df2013-12-03 11:04:14 -08002001 !(mtd->ecc_stats.failed - ecc_failures) &&
Mike Dunnedbc45402012-04-25 12:06:11 -07002002 (ops->mode != MTD_OPS_RAW)) {
Alexey Korolev3d459552008-05-15 17:23:18 +01002003 chip->pagebuf = realpage;
Mike Dunnedbc45402012-04-25 12:06:11 -07002004 chip->pagebuf_bitflips = ret;
2005 } else {
Brian Norris6d77b9d2011-09-07 13:13:40 -07002006 /* Invalidate page cache */
2007 chip->pagebuf = -1;
Mike Dunnedbc45402012-04-25 12:06:11 -07002008 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002009 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002011
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002012 if (unlikely(oob)) {
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02002013 int toread = min(oobreadlen, max_oobsize);
2014
2015 if (toread) {
Boris Brezillon846031d2016-02-03 20:11:00 +01002016 oob = nand_transfer_oob(mtd,
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02002017 oob, ops, toread);
2018 oobreadlen -= toread;
2019 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002020 }
Brian Norris5bc7c332013-03-13 09:51:31 -07002021
2022 if (chip->options & NAND_NEED_READRDY) {
2023 /* Apply delay or wait for ready/busy pin */
2024 if (!chip->dev_ready)
2025 udelay(chip->chip_delay);
2026 else
2027 nand_wait_ready(mtd);
2028 }
Brian Norrisb72f3df2013-12-03 11:04:14 -08002029
Brian Norrisba84fb52014-01-03 15:13:33 -08002030 if (mtd->ecc_stats.failed - ecc_failures) {
Brian Norris28fa65e2014-02-12 16:08:28 -08002031 if (retry_mode + 1 < chip->read_retries) {
Brian Norrisba84fb52014-01-03 15:13:33 -08002032 retry_mode++;
2033 ret = nand_setup_read_retry(mtd,
2034 retry_mode);
2035 if (ret < 0)
2036 break;
2037
2038 /* Reset failures; retry */
2039 mtd->ecc_stats.failed = ecc_failures;
2040 goto read_retry;
2041 } else {
2042 /* No more retry modes; real failure */
2043 ecc_fail = true;
2044 }
2045 }
2046
2047 buf += bytes;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002048 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002049 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002050 buf += bytes;
Mike Dunnedbc45402012-04-25 12:06:11 -07002051 max_bitflips = max_t(unsigned int, max_bitflips,
2052 chip->pagebuf_bitflips);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002055 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002056
Brian Norrisba84fb52014-01-03 15:13:33 -08002057 /* Reset to retry mode 0 */
2058 if (retry_mode) {
2059 ret = nand_setup_read_retry(mtd, 0);
2060 if (ret < 0)
2061 break;
2062 retry_mode = 0;
2063 }
2064
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002065 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002066 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Brian Norris8b6e50c2011-05-25 14:59:01 -07002068 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 col = 0;
2070 /* Increment page address */
2071 realpage++;
2072
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002073 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 /* Check, if we cross a chip boundary */
2075 if (!page) {
2076 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002077 chip->select_chip(mtd, -1);
2078 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002081 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002083 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03002084 if (oob)
2085 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Mike Dunn3f91e942012-04-25 12:06:09 -07002087 if (ret < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002088 return ret;
2089
Brian Norrisb72f3df2013-12-03 11:04:14 -08002090 if (ecc_fail)
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02002091 return -EBADMSG;
2092
Mike Dunnedbc45402012-04-25 12:06:11 -07002093 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002094}
2095
2096/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002097 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07002098 * @mtd: MTD device structure
2099 * @from: offset to read from
2100 * @len: number of bytes to read
2101 * @retlen: pointer to variable to store the number of read bytes
2102 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002103 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002104 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002105 */
2106static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
2107 size_t *retlen, uint8_t *buf)
2108{
Brian Norris4a89ff82011-08-30 18:45:45 -07002109 struct mtd_oob_ops ops;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002110 int ret;
2111
Huang Shijie6a8214a2012-11-19 14:43:30 +08002112 nand_get_device(mtd, FL_READING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08002113 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002114 ops.len = len;
2115 ops.datbuf = buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002116 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002117 ret = nand_do_read_ops(mtd, from, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002118 *retlen = ops.retlen;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002119 nand_release_device(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002120 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121}
2122
2123/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002124 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002125 * @mtd: mtd info structure
2126 * @chip: nand chip info structure
2127 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002128 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002129int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002130{
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002131 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002132 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002133 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002134}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002135EXPORT_SYMBOL(nand_read_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002136
2137/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002138 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002139 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07002140 * @mtd: mtd info structure
2141 * @chip: nand chip info structure
2142 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002143 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002144int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2145 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002146{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002147 int length = mtd->oobsize;
2148 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2149 int eccsize = chip->ecc.size;
Baruch Siach2ea69d22015-01-22 15:23:05 +02002150 uint8_t *bufpoi = chip->oob_poi;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002151 int i, toread, sndrnd = 0, pos;
2152
2153 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
2154 for (i = 0; i < chip->ecc.steps; i++) {
2155 if (sndrnd) {
2156 pos = eccsize + i * (eccsize + chunk);
2157 if (mtd->writesize > 512)
2158 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
2159 else
2160 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
2161 } else
2162 sndrnd = 1;
2163 toread = min_t(int, length, chunk);
2164 chip->read_buf(mtd, bufpoi, toread);
2165 bufpoi += toread;
2166 length -= toread;
2167 }
2168 if (length > 0)
2169 chip->read_buf(mtd, bufpoi, length);
2170
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002171 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002172}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002173EXPORT_SYMBOL(nand_read_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002174
2175/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002176 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002177 * @mtd: mtd info structure
2178 * @chip: nand chip info structure
2179 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002180 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002181int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002182{
2183 int status = 0;
2184 const uint8_t *buf = chip->oob_poi;
2185 int length = mtd->oobsize;
2186
2187 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
2188 chip->write_buf(mtd, buf, length);
2189 /* Send command to program the OOB data */
2190 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2191
2192 status = chip->waitfunc(mtd, chip);
2193
Savin Zlobec0d420f92006-06-21 11:51:20 +02002194 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002195}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002196EXPORT_SYMBOL(nand_write_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002197
2198/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002199 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002200 * with syndrome - only for large page flash
2201 * @mtd: mtd info structure
2202 * @chip: nand chip info structure
2203 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002204 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002205int nand_write_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2206 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002207{
2208 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2209 int eccsize = chip->ecc.size, length = mtd->oobsize;
2210 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
2211 const uint8_t *bufpoi = chip->oob_poi;
2212
2213 /*
2214 * data-ecc-data-ecc ... ecc-oob
2215 * or
2216 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
2217 */
2218 if (!chip->ecc.prepad && !chip->ecc.postpad) {
2219 pos = steps * (eccsize + chunk);
2220 steps = 0;
2221 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002222 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002223
2224 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
2225 for (i = 0; i < steps; i++) {
2226 if (sndcmd) {
2227 if (mtd->writesize <= 512) {
2228 uint32_t fill = 0xFFFFFFFF;
2229
2230 len = eccsize;
2231 while (len > 0) {
2232 int num = min_t(int, len, 4);
2233 chip->write_buf(mtd, (uint8_t *)&fill,
2234 num);
2235 len -= num;
2236 }
2237 } else {
2238 pos = eccsize + i * (eccsize + chunk);
2239 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
2240 }
2241 } else
2242 sndcmd = 1;
2243 len = min_t(int, length, chunk);
2244 chip->write_buf(mtd, bufpoi, len);
2245 bufpoi += len;
2246 length -= len;
2247 }
2248 if (length > 0)
2249 chip->write_buf(mtd, bufpoi, length);
2250
2251 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2252 status = chip->waitfunc(mtd, chip);
2253
2254 return status & NAND_STATUS_FAIL ? -EIO : 0;
2255}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002256EXPORT_SYMBOL(nand_write_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002257
2258/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002259 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002260 * @mtd: MTD device structure
2261 * @from: offset to read from
2262 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002264 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002266static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
2267 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268{
Brian Norrisc00a0992012-05-01 17:12:54 -07002269 int page, realpage, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002270 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris041e4572011-06-23 16:45:24 -07002271 struct mtd_ecc_stats stats;
Vitaly Wool70145682006-11-03 18:20:38 +03002272 int readlen = ops->ooblen;
2273 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002274 uint8_t *buf = ops->oobbuf;
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002275 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
Brian Norris289c0522011-07-19 10:06:09 -07002277 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302278 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Brian Norris041e4572011-06-23 16:45:24 -07002280 stats = mtd->ecc_stats;
2281
Boris BREZILLON29f10582016-03-07 10:46:52 +01002282 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02002283
2284 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002285 pr_debug("%s: attempt to start read outside oob\n",
2286 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002287 return -EINVAL;
2288 }
2289
2290 /* Do not allow reads past end of device */
2291 if (unlikely(from >= mtd->size ||
2292 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
2293 (from >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002294 pr_debug("%s: attempt to read beyond end of device\n",
2295 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002296 return -EINVAL;
2297 }
Vitaly Wool70145682006-11-03 18:20:38 +03002298
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002299 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002300 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002302 /* Shift to get page */
2303 realpage = (int)(from >> chip->page_shift);
2304 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Florian Fainellif8ac0412010-09-07 13:23:43 +02002306 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002307 if (ops->mode == MTD_OPS_RAW)
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002308 ret = chip->ecc.read_oob_raw(mtd, chip, page);
Brian Norrisc46f6482011-08-30 18:45:38 -07002309 else
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002310 ret = chip->ecc.read_oob(mtd, chip, page);
2311
2312 if (ret < 0)
2313 break;
Vitaly Wool70145682006-11-03 18:20:38 +03002314
2315 len = min(len, readlen);
Boris Brezillon846031d2016-02-03 20:11:00 +01002316 buf = nand_transfer_oob(mtd, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002317
Brian Norris5bc7c332013-03-13 09:51:31 -07002318 if (chip->options & NAND_NEED_READRDY) {
2319 /* Apply delay or wait for ready/busy pin */
2320 if (!chip->dev_ready)
2321 udelay(chip->chip_delay);
2322 else
2323 nand_wait_ready(mtd);
2324 }
2325
Vitaly Wool70145682006-11-03 18:20:38 +03002326 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02002327 if (!readlen)
2328 break;
2329
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002330 /* Increment page address */
2331 realpage++;
2332
2333 page = realpage & chip->pagemask;
2334 /* Check, if we cross a chip boundary */
2335 if (!page) {
2336 chipnr++;
2337 chip->select_chip(mtd, -1);
2338 chip->select_chip(mtd, chipnr);
2339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002341 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002343 ops->oobretlen = ops->ooblen - readlen;
2344
2345 if (ret < 0)
2346 return ret;
Brian Norris041e4572011-06-23 16:45:24 -07002347
2348 if (mtd->ecc_stats.failed - stats.failed)
2349 return -EBADMSG;
2350
2351 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352}
2353
2354/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002355 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002356 * @mtd: MTD device structure
2357 * @from: offset to read from
2358 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002360 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002362static int nand_read_oob(struct mtd_info *mtd, loff_t from,
2363 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364{
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07002365 int ret;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002366
2367 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002370 if (ops->datbuf && (from + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002371 pr_debug("%s: attempt to read beyond end of device\n",
2372 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 return -EINVAL;
2374 }
2375
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07002376 if (ops->mode != MTD_OPS_PLACE_OOB &&
2377 ops->mode != MTD_OPS_AUTO_OOB &&
2378 ops->mode != MTD_OPS_RAW)
2379 return -ENOTSUPP;
2380
Huang Shijie6a8214a2012-11-19 14:43:30 +08002381 nand_get_device(mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002383 if (!ops->datbuf)
2384 ret = nand_do_read_oob(mtd, from, ops);
2385 else
2386 ret = nand_do_read_ops(mtd, from, ops);
2387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002389 return ret;
2390}
2391
2392
2393/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002394 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002395 * @mtd: mtd info structure
2396 * @chip: nand chip info structure
2397 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002398 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002399 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002400 *
Brian Norris7854d3f2011-06-23 14:12:08 -07002401 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002402 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002403static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002404 const uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002405{
2406 chip->write_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07002407 if (oob_required)
2408 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002409
2410 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411}
2412
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002413/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002414 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002415 * @mtd: mtd info structure
2416 * @chip: nand chip info structure
2417 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002418 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002419 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002420 *
2421 * We need a special oob layout and handling even when ECC isn't checked.
2422 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002423static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002424 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002425 const uint8_t *buf, int oob_required,
2426 int page)
David Brownell52ff49d2009-03-04 12:01:36 -08002427{
2428 int eccsize = chip->ecc.size;
2429 int eccbytes = chip->ecc.bytes;
2430 uint8_t *oob = chip->oob_poi;
2431 int steps, size;
2432
2433 for (steps = chip->ecc.steps; steps > 0; steps--) {
2434 chip->write_buf(mtd, buf, eccsize);
2435 buf += eccsize;
2436
2437 if (chip->ecc.prepad) {
2438 chip->write_buf(mtd, oob, chip->ecc.prepad);
2439 oob += chip->ecc.prepad;
2440 }
2441
Boris BREZILLON60c3bc12014-02-01 19:10:28 +01002442 chip->write_buf(mtd, oob, eccbytes);
David Brownell52ff49d2009-03-04 12:01:36 -08002443 oob += eccbytes;
2444
2445 if (chip->ecc.postpad) {
2446 chip->write_buf(mtd, oob, chip->ecc.postpad);
2447 oob += chip->ecc.postpad;
2448 }
2449 }
2450
2451 size = mtd->oobsize - (oob - chip->oob_poi);
2452 if (size)
2453 chip->write_buf(mtd, oob, size);
Josh Wufdbad98d2012-06-25 18:07:45 +08002454
2455 return 0;
David Brownell52ff49d2009-03-04 12:01:36 -08002456}
2457/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002458 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002459 * @mtd: mtd info structure
2460 * @chip: nand chip info structure
2461 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002462 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002463 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002464 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002465static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002466 const uint8_t *buf, int oob_required,
2467 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002468{
Boris Brezillon846031d2016-02-03 20:11:00 +01002469 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002470 int eccbytes = chip->ecc.bytes;
2471 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002472 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002473 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002474
Brian Norris7854d3f2011-06-23 14:12:08 -07002475 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002476 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
2477 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002478
Boris Brezillon846031d2016-02-03 20:11:00 +01002479 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2480 chip->ecc.total);
2481 if (ret)
2482 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002483
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002484 return chip->ecc.write_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002485}
2486
2487/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002488 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002489 * @mtd: mtd info structure
2490 * @chip: nand chip info structure
2491 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002492 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002493 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002494 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002495static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002496 const uint8_t *buf, int oob_required,
2497 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002498{
Boris Brezillon846031d2016-02-03 20:11:00 +01002499 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002500 int eccbytes = chip->ecc.bytes;
2501 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002502 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002503 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002504
2505 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2506 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01002507 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002508 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2509 }
2510
Boris Brezillon846031d2016-02-03 20:11:00 +01002511 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2512 chip->ecc.total);
2513 if (ret)
2514 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002515
2516 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002517
2518 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002519}
2520
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302521
2522/**
Brian Norris73c8aaf2015-02-28 02:04:18 -08002523 * nand_write_subpage_hwecc - [REPLACEABLE] hardware ECC based subpage write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302524 * @mtd: mtd info structure
2525 * @chip: nand chip info structure
Brian Norrisd6a950802013-08-08 17:16:36 -07002526 * @offset: column address of subpage within the page
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302527 * @data_len: data length
Brian Norrisd6a950802013-08-08 17:16:36 -07002528 * @buf: data buffer
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302529 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002530 * @page: page number to write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302531 */
2532static int nand_write_subpage_hwecc(struct mtd_info *mtd,
2533 struct nand_chip *chip, uint32_t offset,
Brian Norrisd6a950802013-08-08 17:16:36 -07002534 uint32_t data_len, const uint8_t *buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002535 int oob_required, int page)
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302536{
2537 uint8_t *oob_buf = chip->oob_poi;
2538 uint8_t *ecc_calc = chip->buffers->ecccalc;
2539 int ecc_size = chip->ecc.size;
2540 int ecc_bytes = chip->ecc.bytes;
2541 int ecc_steps = chip->ecc.steps;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302542 uint32_t start_step = offset / ecc_size;
2543 uint32_t end_step = (offset + data_len - 1) / ecc_size;
2544 int oob_bytes = mtd->oobsize / ecc_steps;
Boris Brezillon846031d2016-02-03 20:11:00 +01002545 int step, ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302546
2547 for (step = 0; step < ecc_steps; step++) {
2548 /* configure controller for WRITE access */
2549 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2550
2551 /* write data (untouched subpages already masked by 0xFF) */
Brian Norrisd6a950802013-08-08 17:16:36 -07002552 chip->write_buf(mtd, buf, ecc_size);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302553
2554 /* mask ECC of un-touched subpages by padding 0xFF */
2555 if ((step < start_step) || (step > end_step))
2556 memset(ecc_calc, 0xff, ecc_bytes);
2557 else
Brian Norrisd6a950802013-08-08 17:16:36 -07002558 chip->ecc.calculate(mtd, buf, ecc_calc);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302559
2560 /* mask OOB of un-touched subpages by padding 0xFF */
2561 /* if oob_required, preserve OOB metadata of written subpage */
2562 if (!oob_required || (step < start_step) || (step > end_step))
2563 memset(oob_buf, 0xff, oob_bytes);
2564
Brian Norrisd6a950802013-08-08 17:16:36 -07002565 buf += ecc_size;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302566 ecc_calc += ecc_bytes;
2567 oob_buf += oob_bytes;
2568 }
2569
2570 /* copy calculated ECC for whole page to chip->buffer->oob */
2571 /* this include masked-value(0xFF) for unwritten subpages */
2572 ecc_calc = chip->buffers->ecccalc;
Boris Brezillon846031d2016-02-03 20:11:00 +01002573 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2574 chip->ecc.total);
2575 if (ret)
2576 return ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302577
2578 /* write OOB buffer to NAND device */
2579 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2580
2581 return 0;
2582}
2583
2584
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002585/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002586 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07002587 * @mtd: mtd info structure
2588 * @chip: nand chip info structure
2589 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002590 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002591 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002592 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002593 * The hw generator calculates the error syndrome automatically. Therefore we
2594 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002595 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002596static int nand_write_page_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07002597 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002598 const uint8_t *buf, int oob_required,
2599 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002600{
2601 int i, eccsize = chip->ecc.size;
2602 int eccbytes = chip->ecc.bytes;
2603 int eccsteps = chip->ecc.steps;
2604 const uint8_t *p = buf;
2605 uint8_t *oob = chip->oob_poi;
2606
2607 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2608
2609 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2610 chip->write_buf(mtd, p, eccsize);
2611
2612 if (chip->ecc.prepad) {
2613 chip->write_buf(mtd, oob, chip->ecc.prepad);
2614 oob += chip->ecc.prepad;
2615 }
2616
2617 chip->ecc.calculate(mtd, p, oob);
2618 chip->write_buf(mtd, oob, eccbytes);
2619 oob += eccbytes;
2620
2621 if (chip->ecc.postpad) {
2622 chip->write_buf(mtd, oob, chip->ecc.postpad);
2623 oob += chip->ecc.postpad;
2624 }
2625 }
2626
2627 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002628 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002629 if (i)
2630 chip->write_buf(mtd, oob, i);
Josh Wufdbad98d2012-06-25 18:07:45 +08002631
2632 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002633}
2634
2635/**
Boris Brezillonf107d7a2017-03-16 09:02:42 +01002636 * nand_write_page - write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002637 * @mtd: MTD device structure
2638 * @chip: NAND chip descriptor
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302639 * @offset: address offset within the page
2640 * @data_len: length of actual data to be written
Brian Norris8b6e50c2011-05-25 14:59:01 -07002641 * @buf: the data to write
Brian Norris1fbb9382012-05-02 10:14:55 -07002642 * @oob_required: must write chip->oob_poi to OOB
Brian Norris8b6e50c2011-05-25 14:59:01 -07002643 * @page: page number to write
2644 * @cached: cached programming
2645 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002646 */
2647static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302648 uint32_t offset, int data_len, const uint8_t *buf,
2649 int oob_required, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002650{
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302651 int status, subpage;
2652
2653 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2654 chip->ecc.write_subpage)
2655 subpage = offset || (data_len < mtd->writesize);
2656 else
2657 subpage = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002658
Marc Gonzalez3371d662016-11-15 10:56:20 +01002659 if (nand_standard_page_accessors(&chip->ecc))
2660 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002661
David Woodhouse956e9442006-09-25 17:12:39 +01002662 if (unlikely(raw))
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302663 status = chip->ecc.write_page_raw(mtd, chip, buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002664 oob_required, page);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302665 else if (subpage)
2666 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002667 buf, oob_required, page);
David Woodhouse956e9442006-09-25 17:12:39 +01002668 else
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002669 status = chip->ecc.write_page(mtd, chip, buf, oob_required,
2670 page);
Josh Wufdbad98d2012-06-25 18:07:45 +08002671
2672 if (status < 0)
2673 return status;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002674
2675 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002676 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002677 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002678 */
2679 cached = 0;
2680
Artem Bityutskiy3239a6c2013-03-04 14:56:18 +02002681 if (!cached || !NAND_HAS_CACHEPROG(chip)) {
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002682
Marc Gonzalez3371d662016-11-15 10:56:20 +01002683 if (nand_standard_page_accessors(&chip->ecc))
2684 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002685 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002686 /*
2687 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002688 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002689 */
2690 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2691 status = chip->errstat(mtd, chip, FL_WRITING, status,
2692 page);
2693
2694 if (status & NAND_STATUS_FAIL)
2695 return -EIO;
2696 } else {
2697 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002698 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002699 }
2700
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002701 return 0;
2702}
2703
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002704/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002705 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002706 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002707 * @oob: oob data buffer
2708 * @len: oob data write length
2709 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002710 */
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002711static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2712 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002713{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002714 struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon846031d2016-02-03 20:11:00 +01002715 int ret;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002716
2717 /*
2718 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2719 * data from a previous OOB read.
2720 */
2721 memset(chip->oob_poi, 0xff, mtd->oobsize);
2722
Florian Fainellif8ac0412010-09-07 13:23:43 +02002723 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002724
Brian Norris0612b9d2011-08-30 18:45:40 -07002725 case MTD_OPS_PLACE_OOB:
2726 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002727 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2728 return oob + len;
2729
Boris Brezillon846031d2016-02-03 20:11:00 +01002730 case MTD_OPS_AUTO_OOB:
2731 ret = mtd_ooblayout_set_databytes(mtd, oob, chip->oob_poi,
2732 ops->ooboffs, len);
2733 BUG_ON(ret);
2734 return oob + len;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002735
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002736 default:
2737 BUG();
2738 }
2739 return NULL;
2740}
2741
Florian Fainellif8ac0412010-09-07 13:23:43 +02002742#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002743
2744/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002745 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002746 * @mtd: MTD device structure
2747 * @to: offset to write to
2748 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002749 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002750 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002751 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002752static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2753 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002754{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002755 int chipnr, realpage, page, blockmask, column;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002756 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002757 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002758
2759 uint32_t oobwritelen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01002760 uint32_t oobmaxlen = mtd_oobavail(mtd, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002761
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002762 uint8_t *oob = ops->oobbuf;
2763 uint8_t *buf = ops->datbuf;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302764 int ret;
Brian Norrise47f3db2012-05-02 10:14:56 -07002765 int oob_required = oob ? 1 : 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002766
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002767 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002768 if (!writelen)
2769 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002770
Brian Norris8b6e50c2011-05-25 14:59:01 -07002771 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002772 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002773 pr_notice("%s: attempt to write non page aligned data\n",
2774 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002775 return -EINVAL;
2776 }
2777
Thomas Gleixner29072b92006-09-28 15:38:36 +02002778 column = to & (mtd->writesize - 1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002779
Thomas Gleixner6a930962006-06-28 00:11:45 +02002780 chipnr = (int)(to >> chip->chip_shift);
2781 chip->select_chip(mtd, chipnr);
2782
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002783 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002784 if (nand_check_wp(mtd)) {
2785 ret = -EIO;
2786 goto err_out;
2787 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002788
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002789 realpage = (int)(to >> chip->page_shift);
2790 page = realpage & chip->pagemask;
2791 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2792
2793 /* Invalidate the page cache, when we write to the cached page */
Brian Norris537ab1b2014-07-21 19:08:03 -07002794 if (to <= ((loff_t)chip->pagebuf << chip->page_shift) &&
2795 ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002796 chip->pagebuf = -1;
2797
Maxim Levitsky782ce792010-02-22 20:39:36 +02002798 /* Don't allow multipage oob writes with offset */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002799 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
2800 ret = -EINVAL;
2801 goto err_out;
2802 }
Maxim Levitsky782ce792010-02-22 20:39:36 +02002803
Florian Fainellif8ac0412010-09-07 13:23:43 +02002804 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002805 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002806 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002807 uint8_t *wbuf = buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04002808 int use_bufpoi;
Hector Palacios144f4c92016-07-18 10:39:18 +02002809 int part_pagewr = (column || writelen < mtd->writesize);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002810
Kamal Dasu66507c72014-05-01 20:51:19 -04002811 if (part_pagewr)
2812 use_bufpoi = 1;
2813 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
2814 use_bufpoi = !virt_addr_valid(buf);
2815 else
2816 use_bufpoi = 0;
2817
2818 /* Partial page write?, or need to use bounce buffer */
2819 if (use_bufpoi) {
2820 pr_debug("%s: using write bounce buffer for buf@%p\n",
2821 __func__, buf);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002822 cached = 0;
Kamal Dasu66507c72014-05-01 20:51:19 -04002823 if (part_pagewr)
2824 bytes = min_t(int, bytes - column, writelen);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002825 chip->pagebuf = -1;
2826 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2827 memcpy(&chip->buffers->databuf[column], buf, bytes);
2828 wbuf = chip->buffers->databuf;
2829 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002830
Maxim Levitsky782ce792010-02-22 20:39:36 +02002831 if (unlikely(oob)) {
2832 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002833 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002834 oobwritelen -= len;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002835 } else {
2836 /* We still need to erase leftover OOB data */
2837 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002838 }
Boris Brezillonf107d7a2017-03-16 09:02:42 +01002839
2840 ret = nand_write_page(mtd, chip, column, bytes, wbuf,
2841 oob_required, page, cached,
2842 (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002843 if (ret)
2844 break;
2845
2846 writelen -= bytes;
2847 if (!writelen)
2848 break;
2849
Thomas Gleixner29072b92006-09-28 15:38:36 +02002850 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002851 buf += bytes;
2852 realpage++;
2853
2854 page = realpage & chip->pagemask;
2855 /* Check, if we cross a chip boundary */
2856 if (!page) {
2857 chipnr++;
2858 chip->select_chip(mtd, -1);
2859 chip->select_chip(mtd, chipnr);
2860 }
2861 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002862
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002863 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002864 if (unlikely(oob))
2865 ops->oobretlen = ops->ooblen;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002866
2867err_out:
2868 chip->select_chip(mtd, -1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002869 return ret;
2870}
2871
2872/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002873 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002874 * @mtd: MTD device structure
2875 * @to: offset to write to
2876 * @len: number of bytes to write
2877 * @retlen: pointer to variable to store the number of written bytes
2878 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002879 *
2880 * NAND write with ECC. Used when performing writes in interrupt context, this
2881 * may for example be called by mtdoops when writing an oops while in panic.
2882 */
2883static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2884 size_t *retlen, const uint8_t *buf)
2885{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002886 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris4a89ff82011-08-30 18:45:45 -07002887 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002888 int ret;
2889
Brian Norris8b6e50c2011-05-25 14:59:01 -07002890 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002891 panic_nand_wait(mtd, chip, 400);
2892
Brian Norris8b6e50c2011-05-25 14:59:01 -07002893 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002894 panic_nand_get_device(chip, mtd, FL_WRITING);
2895
Brian Norris0ec56dc2015-02-28 02:02:30 -08002896 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002897 ops.len = len;
2898 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002899 ops.mode = MTD_OPS_PLACE_OOB;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002900
Brian Norris4a89ff82011-08-30 18:45:45 -07002901 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002902
Brian Norris4a89ff82011-08-30 18:45:45 -07002903 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002904 return ret;
2905}
2906
2907/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002908 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002909 * @mtd: MTD device structure
2910 * @to: offset to write to
2911 * @len: number of bytes to write
2912 * @retlen: pointer to variable to store the number of written bytes
2913 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002915 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002917static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002918 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919{
Brian Norris4a89ff82011-08-30 18:45:45 -07002920 struct mtd_oob_ops ops;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002921 int ret;
2922
Huang Shijie6a8214a2012-11-19 14:43:30 +08002923 nand_get_device(mtd, FL_WRITING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08002924 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002925 ops.len = len;
2926 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002927 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002928 ret = nand_do_write_ops(mtd, to, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002929 *retlen = ops.retlen;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002930 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002931 return ret;
2932}
2933
2934/**
2935 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002936 * @mtd: MTD device structure
2937 * @to: offset to write to
2938 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002939 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002940 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002941 */
2942static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2943 struct mtd_oob_ops *ops)
2944{
Adrian Hunter03736152007-01-31 17:58:29 +02002945 int chipnr, page, status, len;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002946 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Brian Norris289c0522011-07-19 10:06:09 -07002948 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302949 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Boris BREZILLON29f10582016-03-07 10:46:52 +01002951 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02002952
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002954 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07002955 pr_debug("%s: attempt to write past end of page\n",
2956 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 return -EINVAL;
2958 }
2959
Adrian Hunter03736152007-01-31 17:58:29 +02002960 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002961 pr_debug("%s: attempt to start write outside oob\n",
2962 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002963 return -EINVAL;
2964 }
2965
Jason Liu775adc3d42011-02-25 13:06:18 +08002966 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002967 if (unlikely(to >= mtd->size ||
2968 ops->ooboffs + ops->ooblen >
2969 ((mtd->size >> chip->page_shift) -
2970 (to >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002971 pr_debug("%s: attempt to write beyond end of device\n",
2972 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002973 return -EINVAL;
2974 }
2975
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002976 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002977
2978 /*
2979 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2980 * of my DiskOnChip 2000 test units) will clear the whole data page too
2981 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2982 * it in the doc2000 driver in August 1999. dwmw2.
2983 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02002984 nand_reset(chip, chipnr);
2985
2986 chip->select_chip(mtd, chipnr);
2987
2988 /* Shift to get page */
2989 page = (int)(to >> chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002992 if (nand_check_wp(mtd)) {
2993 chip->select_chip(mtd, -1);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002994 return -EROFS;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002995 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002996
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002998 if (page == chip->pagebuf)
2999 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02003001 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07003002
Brian Norris0612b9d2011-08-30 18:45:40 -07003003 if (ops->mode == MTD_OPS_RAW)
Brian Norris9ce244b2011-08-30 18:45:37 -07003004 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
3005 else
3006 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003007
Huang Shijieb0bb6902012-11-19 14:43:29 +08003008 chip->select_chip(mtd, -1);
3009
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003010 if (status)
3011 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Vitaly Wool70145682006-11-03 18:20:38 +03003013 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003015 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003016}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003018/**
3019 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07003020 * @mtd: MTD device structure
3021 * @to: offset to write to
3022 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003023 */
3024static int nand_write_oob(struct mtd_info *mtd, loff_t to,
3025 struct mtd_oob_ops *ops)
3026{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003027 int ret = -ENOTSUPP;
3028
3029 ops->retlen = 0;
3030
3031 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03003032 if (ops->datbuf && (to + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07003033 pr_debug("%s: attempt to write beyond end of device\n",
3034 __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003035 return -EINVAL;
3036 }
3037
Huang Shijie6a8214a2012-11-19 14:43:30 +08003038 nand_get_device(mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003039
Florian Fainellif8ac0412010-09-07 13:23:43 +02003040 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07003041 case MTD_OPS_PLACE_OOB:
3042 case MTD_OPS_AUTO_OOB:
3043 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003044 break;
3045
3046 default:
3047 goto out;
3048 }
3049
3050 if (!ops->datbuf)
3051 ret = nand_do_write_oob(mtd, to, ops);
3052 else
3053 ret = nand_do_write_ops(mtd, to, ops);
3054
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003055out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003056 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 return ret;
3058}
3059
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060/**
Brian Norris49c50b92014-05-06 16:02:19 -07003061 * single_erase - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003062 * @mtd: MTD device structure
3063 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 *
Brian Norris49c50b92014-05-06 16:02:19 -07003065 * Standard erase command for NAND chips. Returns NAND status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 */
Brian Norris49c50b92014-05-06 16:02:19 -07003067static int single_erase(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003069 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003071 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
3072 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Brian Norris49c50b92014-05-06 16:02:19 -07003073
3074 return chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075}
3076
3077/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003079 * @mtd: MTD device structure
3080 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003082 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003084static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
David Woodhousee0c7d762006-05-13 18:07:53 +01003086 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003088
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003090 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003091 * @mtd: MTD device structure
3092 * @instr: erase instruction
3093 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003095 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003097int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
3098 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099{
Adrian Hunter69423d92008-12-10 13:37:21 +00003100 int page, status, pages_per_block, ret, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01003101 struct nand_chip *chip = mtd_to_nand(mtd);
Adrian Hunter69423d92008-12-10 13:37:21 +00003102 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
Brian Norris289c0522011-07-19 10:06:09 -07003104 pr_debug("%s: start = 0x%012llx, len = %llu\n",
3105 __func__, (unsigned long long)instr->addr,
3106 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05303108 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08003112 nand_get_device(mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
3114 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003115 page = (int)(instr->addr >> chip->page_shift);
3116 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
3118 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003119 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
3121 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003122 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 /* Check, if it is write protected */
3125 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07003126 pr_debug("%s: device is write protected!\n",
3127 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 instr->state = MTD_ERASE_FAILED;
3129 goto erase_exit;
3130 }
3131
3132 /* Loop through the pages */
3133 len = instr->len;
3134
3135 instr->state = MTD_ERASING;
3136
3137 while (len) {
Wolfram Sang12183a22011-12-21 23:01:20 +01003138 /* Check if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003139 if (nand_block_checkbad(mtd, ((loff_t) page) <<
Archit Taneja9f3e0422016-02-03 14:29:49 +05303140 chip->page_shift, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07003141 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
3142 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 instr->state = MTD_ERASE_FAILED;
3144 goto erase_exit;
3145 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003146
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003147 /*
3148 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07003149 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003150 */
3151 if (page <= chip->pagebuf && chip->pagebuf <
3152 (page + pages_per_block))
3153 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Brian Norris49c50b92014-05-06 16:02:19 -07003155 status = chip->erase(mtd, page & chip->pagemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003157 /*
3158 * See if operation failed and additional status checks are
3159 * available
3160 */
3161 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
3162 status = chip->errstat(mtd, chip, FL_ERASING,
3163 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00003164
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00003166 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07003167 pr_debug("%s: failed erase, page 0x%08x\n",
3168 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00003170 instr->fail_addr =
3171 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 goto erase_exit;
3173 }
David A. Marlin30f464b2005-01-17 18:35:25 +00003174
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 /* Increment page address and decrement length */
Dan Carpenterdaae74c2013-08-09 12:49:05 +03003176 len -= (1ULL << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 page += pages_per_block;
3178
3179 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003180 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003182 chip->select_chip(mtd, -1);
3183 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 }
3185 }
3186 instr->state = MTD_ERASE_DONE;
3187
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003188erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
3190 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
3192 /* Deselect and wake up anyone waiting on the device */
Huang Shijieb0bb6902012-11-19 14:43:29 +08003193 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 nand_release_device(mtd);
3195
David Woodhouse49defc02007-10-06 15:01:59 -04003196 /* Do call back function */
3197 if (!ret)
3198 mtd_erase_callback(instr);
3199
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 /* Return more or less happy */
3201 return ret;
3202}
3203
3204/**
3205 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07003206 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003208 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003210static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211{
Brian Norris289c0522011-07-19 10:06:09 -07003212 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
3214 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08003215 nand_get_device(mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01003217 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218}
3219
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003221 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003222 * @mtd: MTD device structure
3223 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003225static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226{
Archit Taneja9f3e0422016-02-03 14:29:49 +05303227 struct nand_chip *chip = mtd_to_nand(mtd);
3228 int chipnr = (int)(offs >> chip->chip_shift);
3229 int ret;
3230
3231 /* Select the NAND device */
3232 nand_get_device(mtd, FL_READING);
3233 chip->select_chip(mtd, chipnr);
3234
3235 ret = nand_block_checkbad(mtd, offs, 0);
3236
3237 chip->select_chip(mtd, -1);
3238 nand_release_device(mtd);
3239
3240 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241}
3242
3243/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003244 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003245 * @mtd: MTD device structure
3246 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003248static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 int ret;
3251
Florian Fainellif8ac0412010-09-07 13:23:43 +02003252 ret = nand_block_isbad(mtd, ofs);
3253 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07003254 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 if (ret > 0)
3256 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01003257 return ret;
3258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Brian Norris5a0edb22013-07-30 17:52:58 -07003260 return nand_block_markbad_lowlevel(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261}
3262
3263/**
Zach Brown56718422017-01-10 13:30:20 -06003264 * nand_max_bad_blocks - [MTD Interface] Max number of bad blocks for an mtd
3265 * @mtd: MTD device structure
3266 * @ofs: offset relative to mtd start
3267 * @len: length of mtd
3268 */
3269static int nand_max_bad_blocks(struct mtd_info *mtd, loff_t ofs, size_t len)
3270{
3271 struct nand_chip *chip = mtd_to_nand(mtd);
3272 u32 part_start_block;
3273 u32 part_end_block;
3274 u32 part_start_die;
3275 u32 part_end_die;
3276
3277 /*
3278 * max_bb_per_die and blocks_per_die used to determine
3279 * the maximum bad block count.
3280 */
3281 if (!chip->max_bb_per_die || !chip->blocks_per_die)
3282 return -ENOTSUPP;
3283
3284 /* Get the start and end of the partition in erase blocks. */
3285 part_start_block = mtd_div_by_eb(ofs, mtd);
3286 part_end_block = mtd_div_by_eb(len, mtd) + part_start_block - 1;
3287
3288 /* Get the start and end LUNs of the partition. */
3289 part_start_die = part_start_block / chip->blocks_per_die;
3290 part_end_die = part_end_block / chip->blocks_per_die;
3291
3292 /*
3293 * Look up the bad blocks per unit and multiply by the number of units
3294 * that the partition spans.
3295 */
3296 return chip->max_bb_per_die * (part_end_die - part_start_die + 1);
3297}
3298
3299/**
Huang Shijie7db03ec2012-09-13 14:57:52 +08003300 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
3301 * @mtd: MTD device structure
3302 * @chip: nand chip info structure
3303 * @addr: feature address.
3304 * @subfeature_param: the subfeature parameters, a four bytes array.
3305 */
3306static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
3307 int addr, uint8_t *subfeature_param)
3308{
3309 int status;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003310 int i;
Huang Shijie7db03ec2012-09-13 14:57:52 +08003311
David Mosbergerd914c932013-05-29 15:30:13 +03003312 if (!chip->onfi_version ||
3313 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3314 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003315 return -EINVAL;
3316
3317 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003318 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3319 chip->write_byte(mtd, subfeature_param[i]);
3320
Huang Shijie7db03ec2012-09-13 14:57:52 +08003321 status = chip->waitfunc(mtd, chip);
3322 if (status & NAND_STATUS_FAIL)
3323 return -EIO;
3324 return 0;
3325}
3326
3327/**
3328 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
3329 * @mtd: MTD device structure
3330 * @chip: nand chip info structure
3331 * @addr: feature address.
3332 * @subfeature_param: the subfeature parameters, a four bytes array.
3333 */
3334static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
3335 int addr, uint8_t *subfeature_param)
3336{
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003337 int i;
3338
David Mosbergerd914c932013-05-29 15:30:13 +03003339 if (!chip->onfi_version ||
3340 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3341 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003342 return -EINVAL;
3343
Huang Shijie7db03ec2012-09-13 14:57:52 +08003344 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003345 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3346 *subfeature_param++ = chip->read_byte(mtd);
Huang Shijie7db03ec2012-09-13 14:57:52 +08003347 return 0;
3348}
3349
3350/**
Vitaly Wool962034f2005-09-15 14:58:53 +01003351 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003352 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003353 */
3354static int nand_suspend(struct mtd_info *mtd)
3355{
Huang Shijie6a8214a2012-11-19 14:43:30 +08003356 return nand_get_device(mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01003357}
3358
3359/**
3360 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003361 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003362 */
3363static void nand_resume(struct mtd_info *mtd)
3364{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003365 struct nand_chip *chip = mtd_to_nand(mtd);
Vitaly Wool962034f2005-09-15 14:58:53 +01003366
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003367 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01003368 nand_release_device(mtd);
3369 else
Brian Norrisd0370212011-07-19 10:06:08 -07003370 pr_err("%s called for a chip which is not in suspended state\n",
3371 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01003372}
3373
Scott Branden72ea4032014-11-20 11:18:05 -08003374/**
3375 * nand_shutdown - [MTD Interface] Finish the current NAND operation and
3376 * prevent further operations
3377 * @mtd: MTD device structure
3378 */
3379static void nand_shutdown(struct mtd_info *mtd)
3380{
Brian Norris9ca641b2015-11-09 16:37:28 -08003381 nand_get_device(mtd, FL_PM_SUSPENDED);
Scott Branden72ea4032014-11-20 11:18:05 -08003382}
3383
Brian Norris8b6e50c2011-05-25 14:59:01 -07003384/* Set default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003385static void nand_set_defaults(struct nand_chip *chip)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003386{
Boris Brezillon29a198a2016-05-24 20:17:48 +02003387 unsigned int busw = chip->options & NAND_BUSWIDTH_16;
3388
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003390 if (!chip->chip_delay)
3391 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
3393 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003394 if (chip->cmdfunc == NULL)
3395 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
3397 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003398 if (chip->waitfunc == NULL)
3399 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003401 if (!chip->select_chip)
3402 chip->select_chip = nand_select_chip;
Brian Norris68e80782013-07-18 01:17:02 -07003403
Huang Shijie4204ccc2013-08-16 10:10:07 +08003404 /* set for ONFI nand */
3405 if (!chip->onfi_set_features)
3406 chip->onfi_set_features = nand_onfi_set_features;
3407 if (!chip->onfi_get_features)
3408 chip->onfi_get_features = nand_onfi_get_features;
3409
Brian Norris68e80782013-07-18 01:17:02 -07003410 /* If called twice, pointers that depend on busw may need to be reset */
3411 if (!chip->read_byte || chip->read_byte == nand_read_byte)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003412 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
3413 if (!chip->read_word)
3414 chip->read_word = nand_read_word;
3415 if (!chip->block_bad)
3416 chip->block_bad = nand_block_bad;
3417 if (!chip->block_markbad)
3418 chip->block_markbad = nand_default_block_markbad;
Brian Norris68e80782013-07-18 01:17:02 -07003419 if (!chip->write_buf || chip->write_buf == nand_write_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003420 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003421 if (!chip->write_byte || chip->write_byte == nand_write_byte)
3422 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
Brian Norris68e80782013-07-18 01:17:02 -07003423 if (!chip->read_buf || chip->read_buf == nand_read_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003424 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003425 if (!chip->scan_bbt)
3426 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003427
3428 if (!chip->controller) {
3429 chip->controller = &chip->hwcontrol;
Marc Gonzalezd45bc582016-07-27 11:23:52 +02003430 nand_hw_control_init(chip->controller);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003431 }
3432
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003433}
3434
Brian Norris8b6e50c2011-05-25 14:59:01 -07003435/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003436static void sanitize_string(uint8_t *s, size_t len)
3437{
3438 ssize_t i;
3439
Brian Norris8b6e50c2011-05-25 14:59:01 -07003440 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003441 s[len - 1] = 0;
3442
Brian Norris8b6e50c2011-05-25 14:59:01 -07003443 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003444 for (i = 0; i < len - 1; i++) {
3445 if (s[i] < ' ' || s[i] > 127)
3446 s[i] = '?';
3447 }
3448
Brian Norris8b6e50c2011-05-25 14:59:01 -07003449 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003450 strim(s);
3451}
3452
3453static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
3454{
3455 int i;
3456 while (len--) {
3457 crc ^= *p++ << 8;
3458 for (i = 0; i < 8; i++)
3459 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
3460 }
3461
3462 return crc;
3463}
3464
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003465/* Parse the Extended Parameter Page. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003466static int nand_flash_detect_ext_param_page(struct nand_chip *chip,
3467 struct nand_onfi_params *p)
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003468{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003469 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003470 struct onfi_ext_param_page *ep;
3471 struct onfi_ext_section *s;
3472 struct onfi_ext_ecc_info *ecc;
3473 uint8_t *cursor;
3474 int ret = -EINVAL;
3475 int len;
3476 int i;
3477
3478 len = le16_to_cpu(p->ext_param_page_length) * 16;
3479 ep = kmalloc(len, GFP_KERNEL);
Brian Norris5cb13272013-09-16 17:59:20 -07003480 if (!ep)
3481 return -ENOMEM;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003482
3483 /* Send our own NAND_CMD_PARAM. */
3484 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3485
3486 /* Use the Change Read Column command to skip the ONFI param pages. */
3487 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
3488 sizeof(*p) * p->num_of_param_pages , -1);
3489
3490 /* Read out the Extended Parameter Page. */
3491 chip->read_buf(mtd, (uint8_t *)ep, len);
3492 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
3493 != le16_to_cpu(ep->crc))) {
3494 pr_debug("fail in the CRC.\n");
3495 goto ext_out;
3496 }
3497
3498 /*
3499 * Check the signature.
3500 * Do not strictly follow the ONFI spec, maybe changed in future.
3501 */
3502 if (strncmp(ep->sig, "EPPS", 4)) {
3503 pr_debug("The signature is invalid.\n");
3504 goto ext_out;
3505 }
3506
3507 /* find the ECC section. */
3508 cursor = (uint8_t *)(ep + 1);
3509 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
3510 s = ep->sections + i;
3511 if (s->type == ONFI_SECTION_TYPE_2)
3512 break;
3513 cursor += s->length * 16;
3514 }
3515 if (i == ONFI_EXT_SECTION_MAX) {
3516 pr_debug("We can not find the ECC section.\n");
3517 goto ext_out;
3518 }
3519
3520 /* get the info we want. */
3521 ecc = (struct onfi_ext_ecc_info *)cursor;
3522
Brian Norris4ae7d222013-09-16 18:20:21 -07003523 if (!ecc->codeword_size) {
3524 pr_debug("Invalid codeword size\n");
3525 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003526 }
3527
Brian Norris4ae7d222013-09-16 18:20:21 -07003528 chip->ecc_strength_ds = ecc->ecc_bits;
3529 chip->ecc_step_ds = 1 << ecc->codeword_size;
Brian Norris5cb13272013-09-16 17:59:20 -07003530 ret = 0;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003531
3532ext_out:
3533 kfree(ep);
3534 return ret;
3535}
3536
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003537/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003538 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003539 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003540static int nand_flash_detect_onfi(struct nand_chip *chip)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003541{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003542 struct mtd_info *mtd = nand_to_mtd(chip);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003543 struct nand_onfi_params *p = &chip->onfi_params;
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003544 int i, j;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003545 int val;
3546
Brian Norris7854d3f2011-06-23 14:12:08 -07003547 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003548 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
3549 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
3550 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
3551 return 0;
3552
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003553 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3554 for (i = 0; i < 3; i++) {
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003555 for (j = 0; j < sizeof(*p); j++)
3556 ((uint8_t *)p)[j] = chip->read_byte(mtd);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003557 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
3558 le16_to_cpu(p->crc)) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003559 break;
3560 }
3561 }
3562
Brian Norrisc7f23a72013-08-13 10:51:55 -07003563 if (i == 3) {
3564 pr_err("Could not find valid ONFI parameter page; aborting\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003565 return 0;
Brian Norrisc7f23a72013-08-13 10:51:55 -07003566 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003567
Brian Norris8b6e50c2011-05-25 14:59:01 -07003568 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003569 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003570 if (val & (1 << 5))
3571 chip->onfi_version = 23;
3572 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003573 chip->onfi_version = 22;
3574 else if (val & (1 << 3))
3575 chip->onfi_version = 21;
3576 else if (val & (1 << 2))
3577 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003578 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003579 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003580
3581 if (!chip->onfi_version) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003582 pr_info("unsupported ONFI version: %d\n", val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003583 return 0;
3584 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003585
3586 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3587 sanitize_string(p->model, sizeof(p->model));
3588 if (!mtd->name)
3589 mtd->name = p->model;
Brian Norris4355b702013-08-27 18:45:10 -07003590
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003591 mtd->writesize = le32_to_cpu(p->byte_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003592
3593 /*
3594 * pages_per_block and blocks_per_lun may not be a power-of-2 size
3595 * (don't ask me who thought of this...). MTD assumes that these
3596 * dimensions will be power-of-2, so just truncate the remaining area.
3597 */
3598 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3599 mtd->erasesize *= mtd->writesize;
3600
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003601 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003602
3603 /* See erasesize comment */
3604 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
Matthieu CASTET63795752012-03-19 15:35:25 +01003605 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
Huang Shijie13fbd172013-09-25 14:58:13 +08003606 chip->bits_per_cell = p->bits_per_cell;
Huang Shijiee2985fc2013-05-17 11:17:30 +08003607
Zach Brown34da5f52017-01-10 13:30:21 -06003608 chip->max_bb_per_die = le16_to_cpu(p->bb_per_lun);
3609 chip->blocks_per_die = le32_to_cpu(p->blocks_per_lun);
3610
Huang Shijiee2985fc2013-05-17 11:17:30 +08003611 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02003612 chip->options |= NAND_BUSWIDTH_16;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003613
Huang Shijie10c86ba2013-05-17 11:17:26 +08003614 if (p->ecc_bits != 0xff) {
3615 chip->ecc_strength_ds = p->ecc_bits;
3616 chip->ecc_step_ds = 512;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003617 } else if (chip->onfi_version >= 21 &&
3618 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
3619
3620 /*
3621 * The nand_flash_detect_ext_param_page() uses the
3622 * Change Read Column command which maybe not supported
3623 * by the chip->cmdfunc. So try to update the chip->cmdfunc
3624 * now. We do not replace user supplied command function.
3625 */
3626 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3627 chip->cmdfunc = nand_command_lp;
3628
3629 /* The Extended Parameter Page is supported since ONFI 2.1. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003630 if (nand_flash_detect_ext_param_page(chip, p))
Brian Norrisc7f23a72013-08-13 10:51:55 -07003631 pr_warn("Failed to detect ONFI extended param page\n");
3632 } else {
3633 pr_warn("Could not retrieve ONFI ECC requirements\n");
Huang Shijie10c86ba2013-05-17 11:17:26 +08003634 }
3635
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003636 return 1;
3637}
3638
3639/*
Huang Shijie91361812014-02-21 13:39:40 +08003640 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
3641 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003642static int nand_flash_detect_jedec(struct nand_chip *chip)
Huang Shijie91361812014-02-21 13:39:40 +08003643{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003644 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie91361812014-02-21 13:39:40 +08003645 struct nand_jedec_params *p = &chip->jedec_params;
3646 struct jedec_ecc_info *ecc;
3647 int val;
3648 int i, j;
3649
3650 /* Try JEDEC for unknown chip or LP */
3651 chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1);
3652 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' ||
3653 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' ||
3654 chip->read_byte(mtd) != 'C')
3655 return 0;
3656
3657 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1);
3658 for (i = 0; i < 3; i++) {
3659 for (j = 0; j < sizeof(*p); j++)
3660 ((uint8_t *)p)[j] = chip->read_byte(mtd);
3661
3662 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
3663 le16_to_cpu(p->crc))
3664 break;
3665 }
3666
3667 if (i == 3) {
3668 pr_err("Could not find valid JEDEC parameter page; aborting\n");
3669 return 0;
3670 }
3671
3672 /* Check version */
3673 val = le16_to_cpu(p->revision);
3674 if (val & (1 << 2))
3675 chip->jedec_version = 10;
3676 else if (val & (1 << 1))
3677 chip->jedec_version = 1; /* vendor specific version */
3678
3679 if (!chip->jedec_version) {
3680 pr_info("unsupported JEDEC version: %d\n", val);
3681 return 0;
3682 }
3683
3684 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3685 sanitize_string(p->model, sizeof(p->model));
3686 if (!mtd->name)
3687 mtd->name = p->model;
3688
3689 mtd->writesize = le32_to_cpu(p->byte_per_page);
3690
3691 /* Please reference to the comment for nand_flash_detect_onfi. */
3692 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3693 mtd->erasesize *= mtd->writesize;
3694
3695 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3696
3697 /* Please reference to the comment for nand_flash_detect_onfi. */
3698 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3699 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3700 chip->bits_per_cell = p->bits_per_cell;
3701
3702 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02003703 chip->options |= NAND_BUSWIDTH_16;
Huang Shijie91361812014-02-21 13:39:40 +08003704
3705 /* ECC info */
3706 ecc = &p->ecc_info[0];
3707
3708 if (ecc->codeword_size >= 9) {
3709 chip->ecc_strength_ds = ecc->ecc_bits;
3710 chip->ecc_step_ds = 1 << ecc->codeword_size;
3711 } else {
3712 pr_warn("Invalid codeword size\n");
3713 }
3714
3715 return 1;
3716}
3717
3718/*
Brian Norrise3b88bd2012-09-24 20:40:52 -07003719 * nand_id_has_period - Check if an ID string has a given wraparound period
3720 * @id_data: the ID string
3721 * @arrlen: the length of the @id_data array
3722 * @period: the period of repitition
3723 *
3724 * Check if an ID string is repeated within a given sequence of bytes at
3725 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Brian Norrisd4d4f1b2012-11-14 21:54:20 -08003726 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Brian Norrise3b88bd2012-09-24 20:40:52 -07003727 * if the repetition has a period of @period; otherwise, returns zero.
3728 */
3729static int nand_id_has_period(u8 *id_data, int arrlen, int period)
3730{
3731 int i, j;
3732 for (i = 0; i < period; i++)
3733 for (j = i + period; j < arrlen; j += period)
3734 if (id_data[i] != id_data[j])
3735 return 0;
3736 return 1;
3737}
3738
3739/*
3740 * nand_id_len - Get the length of an ID string returned by CMD_READID
3741 * @id_data: the ID string
3742 * @arrlen: the length of the @id_data array
3743
3744 * Returns the length of the ID string, according to known wraparound/trailing
3745 * zero patterns. If no pattern exists, returns the length of the array.
3746 */
3747static int nand_id_len(u8 *id_data, int arrlen)
3748{
3749 int last_nonzero, period;
3750
3751 /* Find last non-zero byte */
3752 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
3753 if (id_data[last_nonzero])
3754 break;
3755
3756 /* All zeros */
3757 if (last_nonzero < 0)
3758 return 0;
3759
3760 /* Calculate wraparound period */
3761 for (period = 1; period < arrlen; period++)
3762 if (nand_id_has_period(id_data, arrlen, period))
3763 break;
3764
3765 /* There's a repeated pattern */
3766 if (period < arrlen)
3767 return period;
3768
3769 /* There are trailing zeros */
3770 if (last_nonzero < arrlen - 1)
3771 return last_nonzero + 1;
3772
3773 /* No pattern detected */
3774 return arrlen;
3775}
3776
Huang Shijie7db906b2013-09-25 14:58:11 +08003777/* Extract the bits of per cell from the 3rd byte of the extended ID */
3778static int nand_get_bits_per_cell(u8 cellinfo)
3779{
3780 int bits;
3781
3782 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
3783 bits >>= NAND_CI_CELLTYPE_SHIFT;
3784 return bits + 1;
3785}
3786
Brian Norrise3b88bd2012-09-24 20:40:52 -07003787/*
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003788 * Many new NAND share similar device ID codes, which represent the size of the
3789 * chip. The rest of the parameters must be decoded according to generic or
3790 * manufacturer-specific "extended ID" decoding patterns.
3791 */
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003792void nand_decode_ext_id(struct nand_chip *chip)
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003793{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003794 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon9b2d61f2016-06-08 10:34:57 +02003795 int extid;
Boris Brezillon7f501f02016-05-24 19:20:05 +02003796 u8 *id_data = chip->id.data;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003797 /* The 3rd id byte holds MLC / multichip data */
Huang Shijie7db906b2013-09-25 14:58:11 +08003798 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003799 /* The 4th id byte is the important one */
3800 extid = id_data[3];
3801
Boris Brezillon01389b62016-06-08 10:30:18 +02003802 /* Calc pagesize */
3803 mtd->writesize = 1024 << (extid & 0x03);
3804 extid >>= 2;
3805 /* Calc oobsize */
3806 mtd->oobsize = (8 << (extid & 0x01)) * (mtd->writesize >> 9);
3807 extid >>= 2;
3808 /* Calc blocksize. Blocksize is multiples of 64KiB */
3809 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3810 extid >>= 2;
3811 /* Get buswidth information */
3812 if (extid & 0x1)
3813 chip->options |= NAND_BUSWIDTH_16;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003814}
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003815EXPORT_SYMBOL_GPL(nand_decode_ext_id);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003816
3817/*
Brian Norrisf23a4812012-09-24 20:40:51 -07003818 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
3819 * decodes a matching ID table entry and assigns the MTD size parameters for
3820 * the chip.
3821 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003822static void nand_decode_id(struct nand_chip *chip, struct nand_flash_dev *type)
Brian Norrisf23a4812012-09-24 20:40:51 -07003823{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003824 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norrisf23a4812012-09-24 20:40:51 -07003825
3826 mtd->erasesize = type->erasesize;
3827 mtd->writesize = type->pagesize;
3828 mtd->oobsize = mtd->writesize / 32;
Brian Norrisf23a4812012-09-24 20:40:51 -07003829
Huang Shijie1c195e92013-09-25 14:58:12 +08003830 /* All legacy ID NAND are small-page, SLC */
3831 chip->bits_per_cell = 1;
Brian Norrisf23a4812012-09-24 20:40:51 -07003832}
3833
3834/*
Brian Norris7e74c2d2012-09-24 20:40:49 -07003835 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
3836 * heuristic patterns using various detected parameters (e.g., manufacturer,
3837 * page size, cell-type information).
3838 */
Boris Brezillon7f501f02016-05-24 19:20:05 +02003839static void nand_decode_bbm_options(struct nand_chip *chip)
Brian Norris7e74c2d2012-09-24 20:40:49 -07003840{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003841 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07003842
3843 /* Set the bad block position */
3844 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
3845 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
3846 else
3847 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Brian Norris7e74c2d2012-09-24 20:40:49 -07003848}
3849
Huang Shijieec6e87e2013-03-15 11:01:00 +08003850static inline bool is_full_id_nand(struct nand_flash_dev *type)
3851{
3852 return type->id_len;
3853}
3854
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003855static bool find_full_id_nand(struct nand_chip *chip,
Boris Brezillon29a198a2016-05-24 20:17:48 +02003856 struct nand_flash_dev *type)
Huang Shijieec6e87e2013-03-15 11:01:00 +08003857{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003858 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon7f501f02016-05-24 19:20:05 +02003859 u8 *id_data = chip->id.data;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003860
Huang Shijieec6e87e2013-03-15 11:01:00 +08003861 if (!strncmp(type->id, id_data, type->id_len)) {
3862 mtd->writesize = type->pagesize;
3863 mtd->erasesize = type->erasesize;
3864 mtd->oobsize = type->oobsize;
3865
Huang Shijie7db906b2013-09-25 14:58:11 +08003866 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Huang Shijieec6e87e2013-03-15 11:01:00 +08003867 chip->chipsize = (uint64_t)type->chipsize << 20;
3868 chip->options |= type->options;
Huang Shijie57219342013-05-17 11:17:32 +08003869 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
3870 chip->ecc_step_ds = NAND_ECC_STEP(type);
Boris BREZILLON57a94e22014-09-22 20:11:50 +02003871 chip->onfi_timing_mode_default =
3872 type->onfi_timing_mode_default;
Huang Shijieec6e87e2013-03-15 11:01:00 +08003873
Cai Zhiyong092b6a12013-12-25 21:19:21 +08003874 if (!mtd->name)
3875 mtd->name = type->name;
3876
Huang Shijieec6e87e2013-03-15 11:01:00 +08003877 return true;
3878 }
3879 return false;
3880}
3881
Brian Norris7e74c2d2012-09-24 20:40:49 -07003882/*
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003883 * Manufacturer detection. Only used when the NAND is not ONFI or JEDEC
3884 * compliant and does not have a full-id or legacy-id entry in the nand_ids
3885 * table.
3886 */
3887static void nand_manufacturer_detect(struct nand_chip *chip)
3888{
3889 /*
3890 * Try manufacturer detection if available and use
3891 * nand_decode_ext_id() otherwise.
3892 */
3893 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
3894 chip->manufacturer.desc->ops->detect)
3895 chip->manufacturer.desc->ops->detect(chip);
3896 else
3897 nand_decode_ext_id(chip);
3898}
3899
3900/*
3901 * Manufacturer initialization. This function is called for all NANDs including
3902 * ONFI and JEDEC compliant ones.
3903 * Manufacturer drivers should put all their specific initialization code in
3904 * their ->init() hook.
3905 */
3906static int nand_manufacturer_init(struct nand_chip *chip)
3907{
3908 if (!chip->manufacturer.desc || !chip->manufacturer.desc->ops ||
3909 !chip->manufacturer.desc->ops->init)
3910 return 0;
3911
3912 return chip->manufacturer.desc->ops->init(chip);
3913}
3914
3915/*
3916 * Manufacturer cleanup. This function is called for all NANDs including
3917 * ONFI and JEDEC compliant ones.
3918 * Manufacturer drivers should put all their specific cleanup code in their
3919 * ->cleanup() hook.
3920 */
3921static void nand_manufacturer_cleanup(struct nand_chip *chip)
3922{
3923 /* Release manufacturer private data */
3924 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
3925 chip->manufacturer.desc->ops->cleanup)
3926 chip->manufacturer.desc->ops->cleanup(chip);
3927}
3928
3929/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003930 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003931 */
Boris Brezillon7bb42792016-05-24 20:55:33 +02003932static int nand_detect(struct nand_chip *chip, struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003933{
Boris Brezillonbcc678c2017-01-07 15:48:25 +01003934 const struct nand_manufacturer *manufacturer;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003935 struct mtd_info *mtd = nand_to_mtd(chip);
Cai Zhiyongbb770822013-12-25 20:11:15 +08003936 int busw;
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003937 int i, ret;
Boris Brezillon7f501f02016-05-24 19:20:05 +02003938 u8 *id_data = chip->id.data;
3939 u8 maf_id, dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
Karl Beldanef89a882008-09-15 14:37:29 +02003941 /*
3942 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003943 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02003944 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02003945 nand_reset(chip, 0);
3946
3947 /* Select the device */
3948 chip->select_chip(mtd, 0);
Karl Beldanef89a882008-09-15 14:37:29 +02003949
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003951 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
3953 /* Read manufacturer and device IDs */
Boris Brezillon7f501f02016-05-24 19:20:05 +02003954 maf_id = chip->read_byte(mtd);
3955 dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Brian Norris8b6e50c2011-05-25 14:59:01 -07003957 /*
3958 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01003959 * interface concerns can cause random data which looks like a
3960 * possibly credible NAND flash to appear. If the two results do
3961 * not match, ignore the device completely.
3962 */
3963
3964 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3965
Brian Norris4aef9b72012-09-24 20:40:48 -07003966 /* Read entire ID string */
3967 for (i = 0; i < 8; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07003968 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01003969
Boris Brezillon7f501f02016-05-24 19:20:05 +02003970 if (id_data[0] != maf_id || id_data[1] != dev_id) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003971 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02003972 maf_id, dev_id, id_data[0], id_data[1]);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09003973 return -ENODEV;
Ben Dooksed8165c2008-04-14 14:58:58 +01003974 }
3975
Boris Brezillon7f501f02016-05-24 19:20:05 +02003976 chip->id.len = nand_id_len(id_data, 8);
3977
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003978 /* Try to identify manufacturer */
3979 manufacturer = nand_get_manufacturer(maf_id);
3980 chip->manufacturer.desc = manufacturer;
3981
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003982 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00003983 type = nand_flash_ids;
3984
Boris Brezillon29a198a2016-05-24 20:17:48 +02003985 /*
3986 * Save the NAND_BUSWIDTH_16 flag before letting auto-detection logic
3987 * override it.
3988 * This is required to make sure initial NAND bus width set by the
3989 * NAND controller driver is coherent with the real NAND bus width
3990 * (extracted by auto-detection code).
3991 */
3992 busw = chip->options & NAND_BUSWIDTH_16;
3993
3994 /*
3995 * The flag is only set (never cleared), reset it to its default value
3996 * before starting auto-detection.
3997 */
3998 chip->options &= ~NAND_BUSWIDTH_16;
3999
Huang Shijieec6e87e2013-03-15 11:01:00 +08004000 for (; type->name != NULL; type++) {
4001 if (is_full_id_nand(type)) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02004002 if (find_full_id_nand(chip, type))
Huang Shijieec6e87e2013-03-15 11:01:00 +08004003 goto ident_done;
Boris Brezillon7f501f02016-05-24 19:20:05 +02004004 } else if (dev_id == type->dev_id) {
Brian Norrisdb5b09f2015-05-22 10:43:12 -07004005 break;
Huang Shijieec6e87e2013-03-15 11:01:00 +08004006 }
4007 }
David Woodhouse5e81e882010-02-26 18:32:56 +00004008
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004009 chip->onfi_version = 0;
4010 if (!type->name || !type->pagesize) {
Masahiro Yamada35fc5192014-04-09 16:26:26 +09004011 /* Check if the chip is ONFI compliant */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004012 if (nand_flash_detect_onfi(chip))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004013 goto ident_done;
Huang Shijie91361812014-02-21 13:39:40 +08004014
4015 /* Check if the chip is JEDEC compliant */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004016 if (nand_flash_detect_jedec(chip))
Huang Shijie91361812014-02-21 13:39:40 +08004017 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004018 }
4019
David Woodhouse5e81e882010-02-26 18:32:56 +00004020 if (!type->name)
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004021 return -ENODEV;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004022
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02004023 if (!mtd->name)
4024 mtd->name = type->name;
4025
Adrian Hunter69423d92008-12-10 13:37:21 +00004026 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004027
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004028 if (!type->pagesize)
4029 nand_manufacturer_detect(chip);
4030 else
Boris Brezillon29a198a2016-05-24 20:17:48 +02004031 nand_decode_id(chip, type);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004032
Brian Norrisbf7a01b2012-07-13 09:28:24 -07004033 /* Get chip options */
4034 chip->options |= type->options;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004035
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004036ident_done:
4037
Matthieu CASTET64b37b22012-11-06 11:51:44 +01004038 if (chip->options & NAND_BUSWIDTH_AUTO) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02004039 WARN_ON(busw & NAND_BUSWIDTH_16);
4040 nand_set_defaults(chip);
Matthieu CASTET64b37b22012-11-06 11:51:44 +01004041 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
4042 /*
4043 * Check, if buswidth is correct. Hardware drivers should set
4044 * chip correct!
4045 */
Ezequiel Garcia20171642013-11-25 08:30:31 -03004046 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004047 maf_id, dev_id);
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004048 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4049 mtd->name);
Boris Brezillon29a198a2016-05-24 20:17:48 +02004050 pr_warn("bus width %d instead of %d bits\n", busw ? 16 : 8,
4051 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004052 return -EINVAL;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004053 }
4054
Boris Brezillon7f501f02016-05-24 19:20:05 +02004055 nand_decode_bbm_options(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07004056
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004057 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004058 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07004059 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004060 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004061
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004062 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004063 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00004064 if (chip->chipsize & 0xffffffff)
4065 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004066 else {
4067 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
4068 chip->chip_shift += 32 - 1;
4069 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004070
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03004071 chip->badblockbits = 8;
Brian Norris49c50b92014-05-06 16:02:19 -07004072 chip->erase = single_erase;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004073
Brian Norris8b6e50c2011-05-25 14:59:01 -07004074 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004075 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
4076 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004077
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004078 ret = nand_manufacturer_init(chip);
4079 if (ret)
4080 return ret;
4081
Ezequiel Garcia20171642013-11-25 08:30:31 -03004082 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004083 maf_id, dev_id);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004084
4085 if (chip->onfi_version)
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004086 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4087 chip->onfi_params.model);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004088 else if (chip->jedec_version)
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004089 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4090 chip->jedec_params.model);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004091 else
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004092 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4093 type->name);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004094
Rafał Miłecki3755a992014-10-21 00:01:04 +02004095 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
Huang Shijie3723e932013-09-25 14:58:14 +08004096 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Rafał Miłecki3755a992014-10-21 00:01:04 +02004097 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004098 return 0;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004099}
4100
Boris Brezillond48f62b2016-04-01 14:54:32 +02004101static const char * const nand_ecc_modes[] = {
4102 [NAND_ECC_NONE] = "none",
4103 [NAND_ECC_SOFT] = "soft",
4104 [NAND_ECC_HW] = "hw",
4105 [NAND_ECC_HW_SYNDROME] = "hw_syndrome",
4106 [NAND_ECC_HW_OOB_FIRST] = "hw_oob_first",
Boris Brezillond48f62b2016-04-01 14:54:32 +02004107};
4108
4109static int of_get_nand_ecc_mode(struct device_node *np)
4110{
4111 const char *pm;
4112 int err, i;
4113
4114 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4115 if (err < 0)
4116 return err;
4117
4118 for (i = 0; i < ARRAY_SIZE(nand_ecc_modes); i++)
4119 if (!strcasecmp(pm, nand_ecc_modes[i]))
4120 return i;
4121
Rafał Miłeckiae211bc2016-04-17 22:53:06 +02004122 /*
4123 * For backward compatibility we support few obsoleted values that don't
4124 * have their mappings into nand_ecc_modes_t anymore (they were merged
4125 * with other enums).
4126 */
4127 if (!strcasecmp(pm, "soft_bch"))
4128 return NAND_ECC_SOFT;
4129
Boris Brezillond48f62b2016-04-01 14:54:32 +02004130 return -ENODEV;
4131}
4132
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004133static const char * const nand_ecc_algos[] = {
4134 [NAND_ECC_HAMMING] = "hamming",
4135 [NAND_ECC_BCH] = "bch",
4136};
4137
Boris Brezillond48f62b2016-04-01 14:54:32 +02004138static int of_get_nand_ecc_algo(struct device_node *np)
4139{
4140 const char *pm;
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004141 int err, i;
Boris Brezillond48f62b2016-04-01 14:54:32 +02004142
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004143 err = of_property_read_string(np, "nand-ecc-algo", &pm);
4144 if (!err) {
4145 for (i = NAND_ECC_HAMMING; i < ARRAY_SIZE(nand_ecc_algos); i++)
4146 if (!strcasecmp(pm, nand_ecc_algos[i]))
4147 return i;
4148 return -ENODEV;
4149 }
Boris Brezillond48f62b2016-04-01 14:54:32 +02004150
4151 /*
4152 * For backward compatibility we also read "nand-ecc-mode" checking
4153 * for some obsoleted values that were specifying ECC algorithm.
4154 */
4155 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4156 if (err < 0)
4157 return err;
4158
4159 if (!strcasecmp(pm, "soft"))
4160 return NAND_ECC_HAMMING;
4161 else if (!strcasecmp(pm, "soft_bch"))
4162 return NAND_ECC_BCH;
4163
4164 return -ENODEV;
4165}
4166
4167static int of_get_nand_ecc_step_size(struct device_node *np)
4168{
4169 int ret;
4170 u32 val;
4171
4172 ret = of_property_read_u32(np, "nand-ecc-step-size", &val);
4173 return ret ? ret : val;
4174}
4175
4176static int of_get_nand_ecc_strength(struct device_node *np)
4177{
4178 int ret;
4179 u32 val;
4180
4181 ret = of_property_read_u32(np, "nand-ecc-strength", &val);
4182 return ret ? ret : val;
4183}
4184
4185static int of_get_nand_bus_width(struct device_node *np)
4186{
4187 u32 val;
4188
4189 if (of_property_read_u32(np, "nand-bus-width", &val))
4190 return 8;
4191
4192 switch (val) {
4193 case 8:
4194 case 16:
4195 return val;
4196 default:
4197 return -EIO;
4198 }
4199}
4200
4201static bool of_get_nand_on_flash_bbt(struct device_node *np)
4202{
4203 return of_property_read_bool(np, "nand-on-flash-bbt");
4204}
4205
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004206static int nand_dt_init(struct nand_chip *chip)
Brian Norris5844fee2015-01-23 00:22:27 -08004207{
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004208 struct device_node *dn = nand_get_flash_node(chip);
Rafał Miłecki79082452016-03-23 11:19:02 +01004209 int ecc_mode, ecc_algo, ecc_strength, ecc_step;
Brian Norris5844fee2015-01-23 00:22:27 -08004210
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004211 if (!dn)
4212 return 0;
4213
Brian Norris5844fee2015-01-23 00:22:27 -08004214 if (of_get_nand_bus_width(dn) == 16)
4215 chip->options |= NAND_BUSWIDTH_16;
4216
4217 if (of_get_nand_on_flash_bbt(dn))
4218 chip->bbt_options |= NAND_BBT_USE_FLASH;
4219
4220 ecc_mode = of_get_nand_ecc_mode(dn);
Rafał Miłecki79082452016-03-23 11:19:02 +01004221 ecc_algo = of_get_nand_ecc_algo(dn);
Brian Norris5844fee2015-01-23 00:22:27 -08004222 ecc_strength = of_get_nand_ecc_strength(dn);
4223 ecc_step = of_get_nand_ecc_step_size(dn);
4224
Brian Norris5844fee2015-01-23 00:22:27 -08004225 if (ecc_mode >= 0)
4226 chip->ecc.mode = ecc_mode;
4227
Rafał Miłecki79082452016-03-23 11:19:02 +01004228 if (ecc_algo >= 0)
4229 chip->ecc.algo = ecc_algo;
4230
Brian Norris5844fee2015-01-23 00:22:27 -08004231 if (ecc_strength >= 0)
4232 chip->ecc.strength = ecc_strength;
4233
4234 if (ecc_step > 0)
4235 chip->ecc.size = ecc_step;
4236
Boris Brezillonba78ee02016-06-08 17:04:22 +02004237 if (of_property_read_bool(dn, "nand-ecc-maximize"))
4238 chip->ecc.options |= NAND_ECC_MAXIMIZE;
4239
Brian Norris5844fee2015-01-23 00:22:27 -08004240 return 0;
4241}
4242
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004243/**
David Woodhouse3b85c322006-09-25 17:06:53 +01004244 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004245 * @mtd: MTD device structure
4246 * @maxchips: number of chips to scan for
4247 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004248 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004249 * This is the first phase of the normal nand_scan() function. It reads the
4250 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004251 *
4252 */
David Woodhouse5e81e882010-02-26 18:32:56 +00004253int nand_scan_ident(struct mtd_info *mtd, int maxchips,
4254 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004255{
Cai Zhiyongbb770822013-12-25 20:11:15 +08004256 int i, nand_maf_id, nand_dev_id;
Boris BREZILLON862eba52015-12-01 12:03:03 +01004257 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris5844fee2015-01-23 00:22:27 -08004258 int ret;
4259
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004260 ret = nand_dt_init(chip);
4261 if (ret)
4262 return ret;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004263
Brian Norrisf7a8e382016-01-05 10:39:45 -08004264 if (!mtd->name && mtd->dev.parent)
4265 mtd->name = dev_name(mtd->dev.parent);
4266
Andrey Smirnov76fe3342016-07-21 14:59:20 -07004267 if ((!chip->cmdfunc || !chip->select_chip) && !chip->cmd_ctrl) {
4268 /*
4269 * Default functions assigned for chip_select() and
4270 * cmdfunc() both expect cmd_ctrl() to be populated,
4271 * so we need to check that that's the case
4272 */
4273 pr_err("chip.cmd_ctrl() callback is not provided");
4274 return -EINVAL;
4275 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004276 /* Set the default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004277 nand_set_defaults(chip);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004278
4279 /* Read the flash type */
Boris Brezillon7bb42792016-05-24 20:55:33 +02004280 ret = nand_detect(chip, table);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004281 if (ret) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00004282 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07004283 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004284 chip->select_chip(mtd, -1);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004285 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 }
4287
Boris Brezillon73f907f2016-10-24 16:46:20 +02004288 /* Initialize the ->data_interface field. */
Boris Brezillond8e725d2016-09-15 10:32:50 +02004289 ret = nand_init_data_interface(chip);
4290 if (ret)
4291 return ret;
4292
Boris Brezillon73f907f2016-10-24 16:46:20 +02004293 /*
4294 * Setup the data interface correctly on the chip and controller side.
4295 * This explicit call to nand_setup_data_interface() is only required
4296 * for the first die, because nand_reset() has been called before
4297 * ->data_interface and ->default_onfi_timing_mode were set.
4298 * For the other dies, nand_reset() will automatically switch to the
4299 * best mode for us.
4300 */
4301 ret = nand_setup_data_interface(chip);
4302 if (ret)
4303 return ret;
4304
Boris Brezillon7f501f02016-05-24 19:20:05 +02004305 nand_maf_id = chip->id.data[0];
4306 nand_dev_id = chip->id.data[1];
4307
Huang Shijie07300162012-11-09 16:23:45 +08004308 chip->select_chip(mtd, -1);
4309
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004310 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01004311 for (i = 1; i < maxchips; i++) {
Karl Beldanef89a882008-09-15 14:37:29 +02004312 /* See comment in nand_get_flash_type for reset */
Boris Brezillon73f907f2016-10-24 16:46:20 +02004313 nand_reset(chip, i);
4314
4315 chip->select_chip(mtd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004317 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004319 if (nand_maf_id != chip->read_byte(mtd) ||
Huang Shijie07300162012-11-09 16:23:45 +08004320 nand_dev_id != chip->read_byte(mtd)) {
4321 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 break;
Huang Shijie07300162012-11-09 16:23:45 +08004323 }
4324 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 }
4326 if (i > 1)
Ezequiel Garcia20171642013-11-25 08:30:31 -03004327 pr_info("%d chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004328
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004330 chip->numchips = i;
4331 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332
David Woodhouse3b85c322006-09-25 17:06:53 +01004333 return 0;
4334}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004335EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01004336
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004337static int nand_set_ecc_soft_ops(struct mtd_info *mtd)
4338{
4339 struct nand_chip *chip = mtd_to_nand(mtd);
4340 struct nand_ecc_ctrl *ecc = &chip->ecc;
4341
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004342 if (WARN_ON(ecc->mode != NAND_ECC_SOFT))
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004343 return -EINVAL;
4344
4345 switch (ecc->algo) {
4346 case NAND_ECC_HAMMING:
4347 ecc->calculate = nand_calculate_ecc;
4348 ecc->correct = nand_correct_data;
4349 ecc->read_page = nand_read_page_swecc;
4350 ecc->read_subpage = nand_read_subpage;
4351 ecc->write_page = nand_write_page_swecc;
4352 ecc->read_page_raw = nand_read_page_raw;
4353 ecc->write_page_raw = nand_write_page_raw;
4354 ecc->read_oob = nand_read_oob_std;
4355 ecc->write_oob = nand_write_oob_std;
4356 if (!ecc->size)
4357 ecc->size = 256;
4358 ecc->bytes = 3;
4359 ecc->strength = 1;
4360 return 0;
4361 case NAND_ECC_BCH:
4362 if (!mtd_nand_has_bch()) {
4363 WARN(1, "CONFIG_MTD_NAND_ECC_BCH not enabled\n");
4364 return -EINVAL;
4365 }
4366 ecc->calculate = nand_bch_calculate_ecc;
4367 ecc->correct = nand_bch_correct_data;
4368 ecc->read_page = nand_read_page_swecc;
4369 ecc->read_subpage = nand_read_subpage;
4370 ecc->write_page = nand_write_page_swecc;
4371 ecc->read_page_raw = nand_read_page_raw;
4372 ecc->write_page_raw = nand_write_page_raw;
4373 ecc->read_oob = nand_read_oob_std;
4374 ecc->write_oob = nand_write_oob_std;
Boris Brezillon8bbba482016-06-08 17:04:23 +02004375
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004376 /*
4377 * Board driver should supply ecc.size and ecc.strength
4378 * values to select how many bits are correctable.
4379 * Otherwise, default to 4 bits for large page devices.
4380 */
4381 if (!ecc->size && (mtd->oobsize >= 64)) {
4382 ecc->size = 512;
4383 ecc->strength = 4;
4384 }
4385
4386 /*
4387 * if no ecc placement scheme was provided pickup the default
4388 * large page one.
4389 */
4390 if (!mtd->ooblayout) {
4391 /* handle large page devices only */
4392 if (mtd->oobsize < 64) {
4393 WARN(1, "OOB layout is required when using software BCH on small pages\n");
4394 return -EINVAL;
4395 }
4396
4397 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
Boris Brezillon8bbba482016-06-08 17:04:23 +02004398
4399 }
4400
4401 /*
4402 * We can only maximize ECC config when the default layout is
4403 * used, otherwise we don't know how many bytes can really be
4404 * used.
4405 */
4406 if (mtd->ooblayout == &nand_ooblayout_lp_ops &&
4407 ecc->options & NAND_ECC_MAXIMIZE) {
4408 int steps, bytes;
4409
4410 /* Always prefer 1k blocks over 512bytes ones */
4411 ecc->size = 1024;
4412 steps = mtd->writesize / ecc->size;
4413
4414 /* Reserve 2 bytes for the BBM */
4415 bytes = (mtd->oobsize - 2) / steps;
4416 ecc->strength = bytes * 8 / fls(8 * ecc->size);
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004417 }
4418
4419 /* See nand_bch_init() for details. */
4420 ecc->bytes = 0;
4421 ecc->priv = nand_bch_init(mtd);
4422 if (!ecc->priv) {
4423 WARN(1, "BCH ECC initialization failed!\n");
4424 return -EINVAL;
4425 }
4426 return 0;
4427 default:
4428 WARN(1, "Unsupported ECC algorithm!\n");
4429 return -EINVAL;
4430 }
4431}
4432
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004433/*
4434 * Check if the chip configuration meet the datasheet requirements.
4435
4436 * If our configuration corrects A bits per B bytes and the minimum
4437 * required correction level is X bits per Y bytes, then we must ensure
4438 * both of the following are true:
4439 *
4440 * (1) A / B >= X / Y
4441 * (2) A >= X
4442 *
4443 * Requirement (1) ensures we can correct for the required bitflip density.
4444 * Requirement (2) ensures we can correct even when all bitflips are clumped
4445 * in the same sector.
4446 */
4447static bool nand_ecc_strength_good(struct mtd_info *mtd)
4448{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004449 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004450 struct nand_ecc_ctrl *ecc = &chip->ecc;
4451 int corr, ds_corr;
4452
4453 if (ecc->size == 0 || chip->ecc_step_ds == 0)
4454 /* Not enough information */
4455 return true;
4456
4457 /*
4458 * We get the number of corrected bits per page to compare
4459 * the correction density.
4460 */
4461 corr = (mtd->writesize * ecc->strength) / ecc->size;
4462 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
4463
4464 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
4465}
David Woodhouse3b85c322006-09-25 17:06:53 +01004466
Marc Gonzalez3371d662016-11-15 10:56:20 +01004467static bool invalid_ecc_page_accessors(struct nand_chip *chip)
4468{
4469 struct nand_ecc_ctrl *ecc = &chip->ecc;
4470
4471 if (nand_standard_page_accessors(ecc))
4472 return false;
4473
4474 /*
4475 * NAND_ECC_CUSTOM_PAGE_ACCESS flag is set, make sure the NAND
4476 * controller driver implements all the page accessors because
4477 * default helpers are not suitable when the core does not
4478 * send the READ0/PAGEPROG commands.
4479 */
4480 return (!ecc->read_page || !ecc->write_page ||
4481 !ecc->read_page_raw || !ecc->write_page_raw ||
4482 (NAND_HAS_SUBPAGE_READ(chip) && !ecc->read_subpage) ||
4483 (NAND_HAS_SUBPAGE_WRITE(chip) && !ecc->write_subpage &&
4484 ecc->hwctl && ecc->calculate));
4485}
4486
David Woodhouse3b85c322006-09-25 17:06:53 +01004487/**
4488 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004489 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01004490 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004491 * This is the second phase of the normal nand_scan() function. It fills out
4492 * all the uninitialized function pointers with the defaults and scans for a
4493 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01004494 */
4495int nand_scan_tail(struct mtd_info *mtd)
4496{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004497 struct nand_chip *chip = mtd_to_nand(mtd);
Huang Shijie97de79e02013-10-18 14:20:53 +08004498 struct nand_ecc_ctrl *ecc = &chip->ecc;
Huang Shijief02ea4e2014-01-13 14:27:12 +08004499 struct nand_buffers *nbuf;
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004500 int ret;
David Woodhouse3b85c322006-09-25 17:06:53 +01004501
Brian Norrise2414f42012-02-06 13:44:00 -08004502 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004503 if (WARN_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
4504 !(chip->bbt_options & NAND_BBT_USE_FLASH)))
4505 return -EINVAL;
Brian Norrise2414f42012-02-06 13:44:00 -08004506
Marc Gonzalez3371d662016-11-15 10:56:20 +01004507 if (invalid_ecc_page_accessors(chip)) {
4508 pr_err("Invalid ECC page accessors setup\n");
4509 return -EINVAL;
4510 }
4511
Huang Shijief02ea4e2014-01-13 14:27:12 +08004512 if (!(chip->options & NAND_OWN_BUFFERS)) {
4513 nbuf = kzalloc(sizeof(*nbuf) + mtd->writesize
4514 + mtd->oobsize * 3, GFP_KERNEL);
4515 if (!nbuf)
4516 return -ENOMEM;
4517 nbuf->ecccalc = (uint8_t *)(nbuf + 1);
4518 nbuf->ecccode = nbuf->ecccalc + mtd->oobsize;
4519 nbuf->databuf = nbuf->ecccode + mtd->oobsize;
4520
4521 chip->buffers = nbuf;
4522 } else {
4523 if (!chip->buffers)
4524 return -ENOMEM;
4525 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004526
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01004527 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01004528 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004529
4530 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004531 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004532 */
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004533 if (!mtd->ooblayout &&
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004534 !(ecc->mode == NAND_ECC_SOFT && ecc->algo == NAND_ECC_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004535 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 case 8:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 case 16:
Boris Brezillon41b207a2016-02-03 19:06:15 +01004538 mtd_set_ooblayout(mtd, &nand_ooblayout_sp_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 break;
4540 case 64:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004541 case 128:
Boris Brezillon41b207a2016-02-03 19:06:15 +01004542 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004543 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 default:
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004545 WARN(1, "No oob scheme defined for oobsize %d\n",
4546 mtd->oobsize);
4547 ret = -EINVAL;
4548 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549 }
4550 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004551
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004552 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004553 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004554 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01004555 */
David Woodhouse956e9442006-09-25 17:12:39 +01004556
Huang Shijie97de79e02013-10-18 14:20:53 +08004557 switch (ecc->mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004558 case NAND_ECC_HW_OOB_FIRST:
4559 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Huang Shijie97de79e02013-10-18 14:20:53 +08004560 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004561 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
4562 ret = -EINVAL;
4563 goto err_free;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004564 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004565 if (!ecc->read_page)
4566 ecc->read_page = nand_read_page_hwecc_oob_first;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004567
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004568 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07004569 /* Use standard hwecc read page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08004570 if (!ecc->read_page)
4571 ecc->read_page = nand_read_page_hwecc;
4572 if (!ecc->write_page)
4573 ecc->write_page = nand_write_page_hwecc;
4574 if (!ecc->read_page_raw)
4575 ecc->read_page_raw = nand_read_page_raw;
4576 if (!ecc->write_page_raw)
4577 ecc->write_page_raw = nand_write_page_raw;
4578 if (!ecc->read_oob)
4579 ecc->read_oob = nand_read_oob_std;
4580 if (!ecc->write_oob)
4581 ecc->write_oob = nand_write_oob_std;
4582 if (!ecc->read_subpage)
4583 ecc->read_subpage = nand_read_subpage;
Helmut Schaa44991b32014-04-09 11:13:24 +02004584 if (!ecc->write_subpage && ecc->hwctl && ecc->calculate)
Huang Shijie97de79e02013-10-18 14:20:53 +08004585 ecc->write_subpage = nand_write_subpage_hwecc;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02004586
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004587 case NAND_ECC_HW_SYNDROME:
Huang Shijie97de79e02013-10-18 14:20:53 +08004588 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
4589 (!ecc->read_page ||
4590 ecc->read_page == nand_read_page_hwecc ||
4591 !ecc->write_page ||
4592 ecc->write_page == nand_write_page_hwecc)) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004593 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
4594 ret = -EINVAL;
4595 goto err_free;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004596 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07004597 /* Use standard syndrome read/write page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08004598 if (!ecc->read_page)
4599 ecc->read_page = nand_read_page_syndrome;
4600 if (!ecc->write_page)
4601 ecc->write_page = nand_write_page_syndrome;
4602 if (!ecc->read_page_raw)
4603 ecc->read_page_raw = nand_read_page_raw_syndrome;
4604 if (!ecc->write_page_raw)
4605 ecc->write_page_raw = nand_write_page_raw_syndrome;
4606 if (!ecc->read_oob)
4607 ecc->read_oob = nand_read_oob_syndrome;
4608 if (!ecc->write_oob)
4609 ecc->write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02004610
Huang Shijie97de79e02013-10-18 14:20:53 +08004611 if (mtd->writesize >= ecc->size) {
4612 if (!ecc->strength) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004613 WARN(1, "Driver must set ecc.strength when using hardware ECC\n");
4614 ret = -EINVAL;
4615 goto err_free;
Mike Dunne2788c92012-04-25 12:06:10 -07004616 }
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004617 break;
Mike Dunne2788c92012-04-25 12:06:10 -07004618 }
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004619 pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n",
4620 ecc->size, mtd->writesize);
Huang Shijie97de79e02013-10-18 14:20:53 +08004621 ecc->mode = NAND_ECC_SOFT;
Rafał Miłeckie9d4fae2016-04-17 22:53:02 +02004622 ecc->algo = NAND_ECC_HAMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004624 case NAND_ECC_SOFT:
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004625 ret = nand_set_ecc_soft_ops(mtd);
4626 if (ret) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004627 ret = -EINVAL;
4628 goto err_free;
Ivan Djelic193bd402011-03-11 11:05:33 +01004629 }
4630 break;
4631
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004632 case NAND_ECC_NONE:
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004633 pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n");
Huang Shijie97de79e02013-10-18 14:20:53 +08004634 ecc->read_page = nand_read_page_raw;
4635 ecc->write_page = nand_write_page_raw;
4636 ecc->read_oob = nand_read_oob_std;
4637 ecc->read_page_raw = nand_read_page_raw;
4638 ecc->write_page_raw = nand_write_page_raw;
4639 ecc->write_oob = nand_write_oob_std;
4640 ecc->size = mtd->writesize;
4641 ecc->bytes = 0;
4642 ecc->strength = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 break;
David Woodhouse956e9442006-09-25 17:12:39 +01004644
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 default:
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004646 WARN(1, "Invalid NAND_ECC_MODE %d\n", ecc->mode);
4647 ret = -EINVAL;
4648 goto err_free;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650
Brian Norris9ce244b2011-08-30 18:45:37 -07004651 /* For many systems, the standard OOB write also works for raw */
Huang Shijie97de79e02013-10-18 14:20:53 +08004652 if (!ecc->read_oob_raw)
4653 ecc->read_oob_raw = ecc->read_oob;
4654 if (!ecc->write_oob_raw)
4655 ecc->write_oob_raw = ecc->write_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07004656
Boris Brezillon846031d2016-02-03 20:11:00 +01004657 /* propagate ecc info to mtd_info */
Boris Brezillon846031d2016-02-03 20:11:00 +01004658 mtd->ecc_strength = ecc->strength;
4659 mtd->ecc_step_size = ecc->size;
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004660
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004661 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004662 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07004663 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004664 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004665 ecc->steps = mtd->writesize / ecc->size;
4666 if (ecc->steps * ecc->size != mtd->writesize) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004667 WARN(1, "Invalid ECC parameters\n");
4668 ret = -EINVAL;
4669 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004671 ecc->total = ecc->steps * ecc->bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004672
Boris Brezillon846031d2016-02-03 20:11:00 +01004673 /*
4674 * The number of bytes available for a client to place data into
4675 * the out of band area.
4676 */
4677 ret = mtd_ooblayout_count_freebytes(mtd);
4678 if (ret < 0)
4679 ret = 0;
4680
4681 mtd->oobavail = ret;
4682
4683 /* ECC sanity check: warn if it's too weak */
4684 if (!nand_ecc_strength_good(mtd))
4685 pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n",
4686 mtd->name);
4687
Brian Norris8b6e50c2011-05-25 14:59:01 -07004688 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Huang Shijie1d0ed692013-09-25 14:58:10 +08004689 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
Huang Shijie97de79e02013-10-18 14:20:53 +08004690 switch (ecc->steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02004691 case 2:
4692 mtd->subpage_sft = 1;
4693 break;
4694 case 4:
4695 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004696 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02004697 mtd->subpage_sft = 2;
4698 break;
4699 }
4700 }
4701 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
4702
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02004703 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004704 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004707 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004709 /* Large page NAND with SOFT_ECC should support subpage reads */
Ron Lee4007e2d2014-04-25 15:01:35 +09304710 switch (ecc->mode) {
4711 case NAND_ECC_SOFT:
Ron Lee4007e2d2014-04-25 15:01:35 +09304712 if (chip->page_shift > 9)
4713 chip->options |= NAND_SUBPAGE_READ;
4714 break;
4715
4716 default:
4717 break;
4718 }
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004719
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 /* Fill in remaining MTD driver data */
Huang Shijie963d1c22013-09-25 14:58:21 +08004721 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02004722 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
4723 MTD_CAP_NANDFLASH;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004724 mtd->_erase = nand_erase;
4725 mtd->_point = NULL;
4726 mtd->_unpoint = NULL;
4727 mtd->_read = nand_read;
4728 mtd->_write = nand_write;
4729 mtd->_panic_write = panic_nand_write;
4730 mtd->_read_oob = nand_read_oob;
4731 mtd->_write_oob = nand_write_oob;
4732 mtd->_sync = nand_sync;
4733 mtd->_lock = NULL;
4734 mtd->_unlock = NULL;
4735 mtd->_suspend = nand_suspend;
4736 mtd->_resume = nand_resume;
Scott Branden72ea4032014-11-20 11:18:05 -08004737 mtd->_reboot = nand_shutdown;
Ezequiel Garcia8471bb72014-05-21 19:06:12 -03004738 mtd->_block_isreserved = nand_block_isreserved;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004739 mtd->_block_isbad = nand_block_isbad;
4740 mtd->_block_markbad = nand_block_markbad;
Zach Brown56718422017-01-10 13:30:20 -06004741 mtd->_max_bad_blocks = nand_max_bad_blocks;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01004742 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
Shmulik Ladkaniea3b2ea2012-06-08 18:29:06 +03004744 /*
4745 * Initialize bitflip_threshold to its default prior scan_bbt() call.
4746 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
4747 * properly set.
4748 */
4749 if (!mtd->bitflip_threshold)
Brian Norris240181f2015-01-12 12:51:29 -08004750 mtd->bitflip_threshold = DIV_ROUND_UP(mtd->ecc_strength * 3, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004752 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004753 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004754 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755
4756 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004757 return chip->scan_bbt(mtd);
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004758err_free:
4759 if (!(chip->options & NAND_OWN_BUFFERS))
4760 kfree(chip->buffers);
4761 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004763EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764
Brian Norris8b6e50c2011-05-25 14:59:01 -07004765/*
4766 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004767 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07004768 * to call us from in-kernel code if the core NAND support is modular.
4769 */
David Woodhouse3b85c322006-09-25 17:06:53 +01004770#ifdef MODULE
4771#define caller_is_module() (1)
4772#else
4773#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06004774 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01004775#endif
4776
4777/**
4778 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004779 * @mtd: MTD device structure
4780 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01004781 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004782 * This fills out all the uninitialized function pointers with the defaults.
4783 * The flash ID is read and the mtd/chip structures are filled with the
Ezequiel García20c07a52016-04-01 18:29:23 -03004784 * appropriate values.
David Woodhouse3b85c322006-09-25 17:06:53 +01004785 */
4786int nand_scan(struct mtd_info *mtd, int maxchips)
4787{
4788 int ret;
4789
David Woodhouse5e81e882010-02-26 18:32:56 +00004790 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01004791 if (!ret)
4792 ret = nand_scan_tail(mtd);
4793 return ret;
4794}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004795EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01004796
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797/**
Richard Weinbergerd44154f2016-09-21 11:44:41 +02004798 * nand_cleanup - [NAND Interface] Free resources held by the NAND device
4799 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -07004800 */
Richard Weinbergerd44154f2016-09-21 11:44:41 +02004801void nand_cleanup(struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802{
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004803 if (chip->ecc.mode == NAND_ECC_SOFT &&
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004804 chip->ecc.algo == NAND_ECC_BCH)
Ivan Djelic193bd402011-03-11 11:05:33 +01004805 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
4806
Boris Brezillond8e725d2016-09-15 10:32:50 +02004807 nand_release_data_interface(chip);
4808
Jesper Juhlfa671642005-11-07 01:01:27 -08004809 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004810 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004811 if (!(chip->options & NAND_OWN_BUFFERS))
4812 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07004813
4814 /* Free bad block descriptor memory */
4815 if (chip->badblock_pattern && chip->badblock_pattern->options
4816 & NAND_BBT_DYNAMICSTRUCT)
4817 kfree(chip->badblock_pattern);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004818
4819 /* Free manufacturer priv data. */
4820 nand_manufacturer_cleanup(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821}
Richard Weinbergerd44154f2016-09-21 11:44:41 +02004822EXPORT_SYMBOL_GPL(nand_cleanup);
4823
4824/**
4825 * nand_release - [NAND Interface] Unregister the MTD device and free resources
4826 * held by the NAND device
4827 * @mtd: MTD device structure
4828 */
4829void nand_release(struct mtd_info *mtd)
4830{
4831 mtd_device_unregister(mtd);
4832 nand_cleanup(mtd_to_nand(mtd));
4833}
David Woodhousee0c7d762006-05-13 18:07:53 +01004834EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08004835
David Woodhousee0c7d762006-05-13 18:07:53 +01004836MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004837MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
4838MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01004839MODULE_DESCRIPTION("Generic NAND flash driver code");