blob: b7daedee23b59001ecb03284918a4c0a11add72f [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:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return;
673
674 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200675 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200677 udelay(chip->chip_delay);
678 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200679 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200680 chip->cmd_ctrl(mtd,
681 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200682 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
683 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return;
685
David Woodhousee0c7d762006-05-13 18:07:53 +0100686 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000688 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 * If we don't have access to the busy pin, we apply the given
690 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100691 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200692 if (!chip->dev_ready) {
693 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700697 /*
698 * Apply this short delay always to ensure that we do wait tWB in
699 * any case on any machine.
700 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100701 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000702
703 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200706static void nand_ccs_delay(struct nand_chip *chip)
707{
708 /*
709 * The controller already takes care of waiting for tCCS when the RNDIN
710 * or RNDOUT command is sent, return directly.
711 */
712 if (!(chip->options & NAND_WAIT_TCCS))
713 return;
714
715 /*
716 * Wait tCCS_min if it is correctly defined, otherwise wait 500ns
717 * (which should be safe for all NANDs).
718 */
719 if (chip->data_interface && chip->data_interface->timings.sdr.tCCS_min)
720 ndelay(chip->data_interface->timings.sdr.tCCS_min / 1000);
721 else
722 ndelay(500);
723}
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725/**
726 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700727 * @mtd: MTD device structure
728 * @command: the command to be sent
729 * @column: the column address for this command, -1 if none
730 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200732 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700733 * devices. We don't have the separate regions as we have in the small page
734 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200736static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
737 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100739 register struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 /* Emulate NAND_CMD_READOOB */
742 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200743 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 command = NAND_CMD_READ0;
745 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000746
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200747 /* Command latch cycle */
Alexander Shiyanfb066ad2013-02-28 12:02:19 +0400748 chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200751 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 /* Serially input address */
754 if (column != -1) {
755 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800756 if (chip->options & NAND_BUSWIDTH_16 &&
757 !nand_opcode_8bits(command))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200759 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200760 ctrl &= ~NAND_CTRL_CHANGE;
Boris Brezillonfde85cf2016-06-15 13:09:51 +0200761
Brian Norrisf5b88de2016-10-03 09:49:35 -0700762 /* Only output a single addr cycle for 8bits opcodes. */
Boris Brezillonfde85cf2016-06-15 13:09:51 +0200763 if (!nand_opcode_8bits(command))
764 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200767 chip->cmd_ctrl(mtd, page_addr, ctrl);
768 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200769 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200771 if (chip->chipsize > (128 << 20))
772 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200773 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200776 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000777
778 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700779 * Program and erase have their own busy handlers status, sequential
Gerhard Sittig7a442f12014-03-29 14:36:22 +0100780 * in and status need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000781 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 case NAND_CMD_CACHEDPROG:
785 case NAND_CMD_PAGEPROG:
786 case NAND_CMD_ERASE1:
787 case NAND_CMD_ERASE2:
788 case NAND_CMD_SEQIN:
789 case NAND_CMD_STATUS:
Masahiro Yamada3158fa02017-03-23 09:17:49 +0900790 case NAND_CMD_READID:
David A. Marlin30f464b2005-01-17 18:35:25 +0000791 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200793 case NAND_CMD_RNDIN:
794 nand_ccs_delay(chip);
795 return;
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200798 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200800 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200801 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
802 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
803 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
804 NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200805 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
806 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return;
808
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200809 case NAND_CMD_RNDOUT:
810 /* No ready / busy check necessary */
811 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
812 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
813 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
814 NAND_NCE | NAND_CTRL_CHANGE);
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200815
816 nand_ccs_delay(chip);
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200817 return;
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200820 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
821 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
822 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
823 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000824
David Woodhousee0c7d762006-05-13 18:07:53 +0100825 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000827 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700829 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100830 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200831 if (!chip->dev_ready) {
832 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000836
Brian Norris8b6e50c2011-05-25 14:59:01 -0700837 /*
838 * Apply this short delay always to ensure that we do wait tWB in
839 * any case on any machine.
840 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100841 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000842
843 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
846/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200847 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700848 * @chip: the nand chip descriptor
849 * @mtd: MTD device structure
850 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200851 *
852 * Used when in panic, no locks are taken.
853 */
854static void panic_nand_get_device(struct nand_chip *chip,
855 struct mtd_info *mtd, int new_state)
856{
Brian Norris7854d3f2011-06-23 14:12:08 -0700857 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200858 chip->controller->active = chip;
859 chip->state = new_state;
860}
861
862/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700864 * @mtd: MTD device structure
865 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 *
867 * Get the device and lock it for exclusive access
868 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200869static int
Huang Shijie6a8214a2012-11-19 14:43:30 +0800870nand_get_device(struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100872 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200873 spinlock_t *lock = &chip->controller->lock;
874 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100875 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200876retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100877 spin_lock(lock);
878
vimal singhb8b3ee92009-07-09 20:41:22 +0530879 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200880 if (!chip->controller->active)
881 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200882
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200883 if (chip->controller->active == chip && chip->state == FL_READY) {
884 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100885 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100886 return 0;
887 }
888 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800889 if (chip->controller->active->state == FL_PM_SUSPENDED) {
890 chip->state = FL_PM_SUSPENDED;
891 spin_unlock(lock);
892 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800893 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100894 }
895 set_current_state(TASK_UNINTERRUPTIBLE);
896 add_wait_queue(wq, &wait);
897 spin_unlock(lock);
898 schedule();
899 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 goto retry;
901}
902
903/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700904 * panic_nand_wait - [GENERIC] wait until the command is done
905 * @mtd: MTD device structure
906 * @chip: NAND chip structure
907 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200908 *
909 * Wait for command done. This is a helper function for nand_wait used when
910 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400911 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200912 */
913static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
914 unsigned long timeo)
915{
916 int i;
917 for (i = 0; i < timeo; i++) {
918 if (chip->dev_ready) {
919 if (chip->dev_ready(mtd))
920 break;
921 } else {
922 if (chip->read_byte(mtd) & NAND_STATUS_READY)
923 break;
924 }
925 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200926 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200927}
928
929/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700930 * nand_wait - [DEFAULT] wait until the command is done
931 * @mtd: MTD device structure
932 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 *
Alex Smithb70af9b2015-10-06 14:52:07 +0100934 * Wait for command done. This applies to erase and program only.
Randy Dunlap844d3b42006-06-28 21:48:27 -0700935 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200936static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
938
Alex Smithb70af9b2015-10-06 14:52:07 +0100939 int status;
940 unsigned long timeo = 400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Brian Norris8b6e50c2011-05-25 14:59:01 -0700942 /*
943 * Apply this short delay always to ensure that we do wait tWB in any
944 * case on any machine.
945 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100946 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Artem Bityutskiy14c65782013-03-04 14:21:34 +0200948 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200950 if (in_interrupt() || oops_in_progress)
951 panic_nand_wait(mtd, chip, timeo);
952 else {
Huang Shijie6d2559f2013-01-30 10:03:56 +0800953 timeo = jiffies + msecs_to_jiffies(timeo);
Alex Smithb70af9b2015-10-06 14:52:07 +0100954 do {
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200955 if (chip->dev_ready) {
956 if (chip->dev_ready(mtd))
957 break;
958 } else {
959 if (chip->read_byte(mtd) & NAND_STATUS_READY)
960 break;
961 }
962 cond_resched();
Alex Smithb70af9b2015-10-06 14:52:07 +0100963 } while (time_before(jiffies, timeo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800965
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200966 status = (int)chip->read_byte(mtd);
Matthieu CASTETf251b8d2012-11-05 15:00:44 +0100967 /* This can happen if in case of timeout or buggy dev_ready */
968 WARN_ON(!(status & NAND_STATUS_READY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return status;
970}
971
972/**
Boris Brezillond8e725d2016-09-15 10:32:50 +0200973 * nand_reset_data_interface - Reset data interface and timings
974 * @chip: The NAND chip
975 *
976 * Reset the Data interface and timings to ONFI mode 0.
977 *
978 * Returns 0 for success or negative error code otherwise.
979 */
980static int nand_reset_data_interface(struct nand_chip *chip)
981{
982 struct mtd_info *mtd = nand_to_mtd(chip);
983 const struct nand_data_interface *conf;
984 int ret;
985
986 if (!chip->setup_data_interface)
987 return 0;
988
989 /*
990 * The ONFI specification says:
991 * "
992 * To transition from NV-DDR or NV-DDR2 to the SDR data
993 * interface, the host shall use the Reset (FFh) command
994 * using SDR timing mode 0. A device in any timing mode is
995 * required to recognize Reset (FFh) command issued in SDR
996 * timing mode 0.
997 * "
998 *
999 * Configure the data interface in SDR mode and set the
1000 * timings to timing mode 0.
1001 */
1002
1003 conf = nand_get_default_data_interface();
1004 ret = chip->setup_data_interface(mtd, conf, false);
1005 if (ret)
1006 pr_err("Failed to configure data interface to SDR timing mode 0\n");
1007
1008 return ret;
1009}
1010
1011/**
1012 * nand_setup_data_interface - Setup the best data interface and timings
1013 * @chip: The NAND chip
1014 *
1015 * Find and configure the best data interface and NAND timings supported by
1016 * the chip and the driver.
1017 * First tries to retrieve supported timing modes from ONFI information,
1018 * and if the NAND chip does not support ONFI, relies on the
1019 * ->onfi_timing_mode_default specified in the nand_ids table.
1020 *
1021 * Returns 0 for success or negative error code otherwise.
1022 */
1023static int nand_setup_data_interface(struct nand_chip *chip)
1024{
1025 struct mtd_info *mtd = nand_to_mtd(chip);
1026 int ret;
1027
1028 if (!chip->setup_data_interface || !chip->data_interface)
1029 return 0;
1030
1031 /*
1032 * Ensure the timing mode has been changed on the chip side
1033 * before changing timings on the controller side.
1034 */
1035 if (chip->onfi_version) {
1036 u8 tmode_param[ONFI_SUBFEATURE_PARAM_LEN] = {
1037 chip->onfi_timing_mode_default,
1038 };
1039
1040 ret = chip->onfi_set_features(mtd, chip,
1041 ONFI_FEATURE_ADDR_TIMING_MODE,
1042 tmode_param);
1043 if (ret)
1044 goto err;
1045 }
1046
1047 ret = chip->setup_data_interface(mtd, chip->data_interface, false);
1048err:
1049 return ret;
1050}
1051
1052/**
1053 * nand_init_data_interface - find the best data interface and timings
1054 * @chip: The NAND chip
1055 *
1056 * Find the best data interface and NAND timings supported by the chip
1057 * and the driver.
1058 * First tries to retrieve supported timing modes from ONFI information,
1059 * and if the NAND chip does not support ONFI, relies on the
1060 * ->onfi_timing_mode_default specified in the nand_ids table. After this
1061 * function nand_chip->data_interface is initialized with the best timing mode
1062 * available.
1063 *
1064 * Returns 0 for success or negative error code otherwise.
1065 */
1066static int nand_init_data_interface(struct nand_chip *chip)
1067{
1068 struct mtd_info *mtd = nand_to_mtd(chip);
1069 int modes, mode, ret;
1070
1071 if (!chip->setup_data_interface)
1072 return 0;
1073
1074 /*
1075 * First try to identify the best timings from ONFI parameters and
1076 * if the NAND does not support ONFI, fallback to the default ONFI
1077 * timing mode.
1078 */
1079 modes = onfi_get_async_timing_mode(chip);
1080 if (modes == ONFI_TIMING_MODE_UNKNOWN) {
1081 if (!chip->onfi_timing_mode_default)
1082 return 0;
1083
1084 modes = GENMASK(chip->onfi_timing_mode_default, 0);
1085 }
1086
1087 chip->data_interface = kzalloc(sizeof(*chip->data_interface),
1088 GFP_KERNEL);
1089 if (!chip->data_interface)
1090 return -ENOMEM;
1091
1092 for (mode = fls(modes) - 1; mode >= 0; mode--) {
1093 ret = onfi_init_data_interface(chip, chip->data_interface,
1094 NAND_SDR_IFACE, mode);
1095 if (ret)
1096 continue;
1097
1098 ret = chip->setup_data_interface(mtd, chip->data_interface,
1099 true);
1100 if (!ret) {
1101 chip->onfi_timing_mode_default = mode;
1102 break;
1103 }
1104 }
1105
1106 return 0;
1107}
1108
1109static void nand_release_data_interface(struct nand_chip *chip)
1110{
1111 kfree(chip->data_interface);
1112}
1113
1114/**
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001115 * nand_reset - Reset and initialize a NAND device
1116 * @chip: The NAND chip
Boris Brezillon73f907f2016-10-24 16:46:20 +02001117 * @chipnr: Internal die id
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001118 *
1119 * Returns 0 for success or negative error code otherwise
1120 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001121int nand_reset(struct nand_chip *chip, int chipnr)
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001122{
1123 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001124 int ret;
1125
1126 ret = nand_reset_data_interface(chip);
1127 if (ret)
1128 return ret;
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001129
Boris Brezillon73f907f2016-10-24 16:46:20 +02001130 /*
1131 * The CS line has to be released before we can apply the new NAND
1132 * interface settings, hence this weird ->select_chip() dance.
1133 */
1134 chip->select_chip(mtd, chipnr);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001135 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Boris Brezillon73f907f2016-10-24 16:46:20 +02001136 chip->select_chip(mtd, -1);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001137
Boris Brezillon73f907f2016-10-24 16:46:20 +02001138 chip->select_chip(mtd, chipnr);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001139 ret = nand_setup_data_interface(chip);
Boris Brezillon73f907f2016-10-24 16:46:20 +02001140 chip->select_chip(mtd, -1);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001141 if (ret)
1142 return ret;
1143
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001144 return 0;
1145}
1146
1147/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001148 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001149 * @mtd: mtd info
1150 * @ofs: offset to start unlock from
1151 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -07001152 * @invert: when = 0, unlock the range of blocks within the lower and
1153 * upper boundary address
1154 * when = 1, unlock the range of blocks outside the boundaries
1155 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +05301156 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001157 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301158 */
1159static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
1160 uint64_t len, int invert)
1161{
1162 int ret = 0;
1163 int status, page;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001164 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +05301165
1166 /* Submit address of first page to unlock */
1167 page = ofs >> chip->page_shift;
1168 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
1169
1170 /* Submit address of last page to unlock */
1171 page = (ofs + len) >> chip->page_shift;
1172 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
1173 (page | invert) & chip->pagemask);
1174
1175 /* Call wait ready function */
1176 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301177 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -04001178 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07001179 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301180 __func__, status);
1181 ret = -EIO;
1182 }
1183
1184 return ret;
1185}
1186
1187/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001188 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001189 * @mtd: mtd info
1190 * @ofs: offset to start unlock from
1191 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +05301192 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001193 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301194 */
1195int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1196{
1197 int ret = 0;
1198 int chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001199 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +05301200
Brian Norris289c0522011-07-19 10:06:09 -07001201 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301202 __func__, (unsigned long long)ofs, len);
1203
1204 if (check_offs_len(mtd, ofs, len))
Brian Norrisb1a23482015-02-28 02:02:27 -08001205 return -EINVAL;
Vimal Singh7d70f332010-02-08 15:50:49 +05301206
1207 /* Align to last block address if size addresses end of the device */
1208 if (ofs + len == mtd->size)
1209 len -= mtd->erasesize;
1210
Huang Shijie6a8214a2012-11-19 14:43:30 +08001211 nand_get_device(mtd, FL_UNLOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +05301212
1213 /* Shift to get chip number */
1214 chipnr = ofs >> chip->chip_shift;
1215
White Ding57d3a9a2014-07-24 00:10:45 +08001216 /*
1217 * Reset the chip.
1218 * If we want to check the WP through READ STATUS and check the bit 7
1219 * we must reset the chip
1220 * some operation can also clear the bit 7 of status register
1221 * eg. erase/program a locked block
1222 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001223 nand_reset(chip, chipnr);
1224
1225 chip->select_chip(mtd, chipnr);
White Ding57d3a9a2014-07-24 00:10:45 +08001226
Vimal Singh7d70f332010-02-08 15:50:49 +05301227 /* Check, if it is write protected */
1228 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001229 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301230 __func__);
1231 ret = -EIO;
1232 goto out;
1233 }
1234
1235 ret = __nand_unlock(mtd, ofs, len, 0);
1236
1237out:
Huang Shijieb0bb6902012-11-19 14:43:29 +08001238 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301239 nand_release_device(mtd);
1240
1241 return ret;
1242}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001243EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301244
1245/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001246 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001247 * @mtd: mtd info
1248 * @ofs: offset to start unlock from
1249 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +05301250 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001251 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
1252 * have this feature, but it allows only to lock all blocks, not for specified
1253 * range for block. Implementing 'lock' feature by making use of 'unlock', for
1254 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +05301255 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001256 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301257 */
1258int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1259{
1260 int ret = 0;
1261 int chipnr, status, page;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001262 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +05301263
Brian Norris289c0522011-07-19 10:06:09 -07001264 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301265 __func__, (unsigned long long)ofs, len);
1266
1267 if (check_offs_len(mtd, ofs, len))
Brian Norrisb1a23482015-02-28 02:02:27 -08001268 return -EINVAL;
Vimal Singh7d70f332010-02-08 15:50:49 +05301269
Huang Shijie6a8214a2012-11-19 14:43:30 +08001270 nand_get_device(mtd, FL_LOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +05301271
1272 /* Shift to get chip number */
1273 chipnr = ofs >> chip->chip_shift;
1274
White Ding57d3a9a2014-07-24 00:10:45 +08001275 /*
1276 * Reset the chip.
1277 * If we want to check the WP through READ STATUS and check the bit 7
1278 * we must reset the chip
1279 * some operation can also clear the bit 7 of status register
1280 * eg. erase/program a locked block
1281 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001282 nand_reset(chip, chipnr);
1283
1284 chip->select_chip(mtd, chipnr);
White Ding57d3a9a2014-07-24 00:10:45 +08001285
Vimal Singh7d70f332010-02-08 15:50:49 +05301286 /* Check, if it is write protected */
1287 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001288 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301289 __func__);
1290 status = MTD_ERASE_FAILED;
1291 ret = -EIO;
1292 goto out;
1293 }
1294
1295 /* Submit address of first page to lock */
1296 page = ofs >> chip->page_shift;
1297 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1298
1299 /* Call wait ready function */
1300 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301301 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -04001302 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07001303 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301304 __func__, status);
1305 ret = -EIO;
1306 goto out;
1307 }
1308
1309 ret = __nand_unlock(mtd, ofs, len, 0x1);
1310
1311out:
Huang Shijieb0bb6902012-11-19 14:43:29 +08001312 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301313 nand_release_device(mtd);
1314
1315 return ret;
1316}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001317EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301318
1319/**
Boris BREZILLON730a43f2015-09-03 18:03:38 +02001320 * nand_check_erased_buf - check if a buffer contains (almost) only 0xff data
1321 * @buf: buffer to test
1322 * @len: buffer length
1323 * @bitflips_threshold: maximum number of bitflips
1324 *
1325 * Check if a buffer contains only 0xff, which means the underlying region
1326 * has been erased and is ready to be programmed.
1327 * The bitflips_threshold specify the maximum number of bitflips before
1328 * considering the region is not erased.
1329 * Note: The logic of this function has been extracted from the memweight
1330 * implementation, except that nand_check_erased_buf function exit before
1331 * testing the whole buffer if the number of bitflips exceed the
1332 * bitflips_threshold value.
1333 *
1334 * Returns a positive number of bitflips less than or equal to
1335 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1336 * threshold.
1337 */
1338static int nand_check_erased_buf(void *buf, int len, int bitflips_threshold)
1339{
1340 const unsigned char *bitmap = buf;
1341 int bitflips = 0;
1342 int weight;
1343
1344 for (; len && ((uintptr_t)bitmap) % sizeof(long);
1345 len--, bitmap++) {
1346 weight = hweight8(*bitmap);
1347 bitflips += BITS_PER_BYTE - weight;
1348 if (unlikely(bitflips > bitflips_threshold))
1349 return -EBADMSG;
1350 }
1351
1352 for (; len >= sizeof(long);
1353 len -= sizeof(long), bitmap += sizeof(long)) {
1354 weight = hweight_long(*((unsigned long *)bitmap));
1355 bitflips += BITS_PER_LONG - weight;
1356 if (unlikely(bitflips > bitflips_threshold))
1357 return -EBADMSG;
1358 }
1359
1360 for (; len > 0; len--, bitmap++) {
1361 weight = hweight8(*bitmap);
1362 bitflips += BITS_PER_BYTE - weight;
1363 if (unlikely(bitflips > bitflips_threshold))
1364 return -EBADMSG;
1365 }
1366
1367 return bitflips;
1368}
1369
1370/**
1371 * nand_check_erased_ecc_chunk - check if an ECC chunk contains (almost) only
1372 * 0xff data
1373 * @data: data buffer to test
1374 * @datalen: data length
1375 * @ecc: ECC buffer
1376 * @ecclen: ECC length
1377 * @extraoob: extra OOB buffer
1378 * @extraooblen: extra OOB length
1379 * @bitflips_threshold: maximum number of bitflips
1380 *
1381 * Check if a data buffer and its associated ECC and OOB data contains only
1382 * 0xff pattern, which means the underlying region has been erased and is
1383 * ready to be programmed.
1384 * The bitflips_threshold specify the maximum number of bitflips before
1385 * considering the region as not erased.
1386 *
1387 * Note:
1388 * 1/ ECC algorithms are working on pre-defined block sizes which are usually
1389 * different from the NAND page size. When fixing bitflips, ECC engines will
1390 * report the number of errors per chunk, and the NAND core infrastructure
1391 * expect you to return the maximum number of bitflips for the whole page.
1392 * This is why you should always use this function on a single chunk and
1393 * not on the whole page. After checking each chunk you should update your
1394 * max_bitflips value accordingly.
1395 * 2/ When checking for bitflips in erased pages you should not only check
1396 * the payload data but also their associated ECC data, because a user might
1397 * have programmed almost all bits to 1 but a few. In this case, we
1398 * shouldn't consider the chunk as erased, and checking ECC bytes prevent
1399 * this case.
1400 * 3/ The extraoob argument is optional, and should be used if some of your OOB
1401 * data are protected by the ECC engine.
1402 * It could also be used if you support subpages and want to attach some
1403 * extra OOB data to an ECC chunk.
1404 *
1405 * Returns a positive number of bitflips less than or equal to
1406 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1407 * threshold. In case of success, the passed buffers are filled with 0xff.
1408 */
1409int nand_check_erased_ecc_chunk(void *data, int datalen,
1410 void *ecc, int ecclen,
1411 void *extraoob, int extraooblen,
1412 int bitflips_threshold)
1413{
1414 int data_bitflips = 0, ecc_bitflips = 0, extraoob_bitflips = 0;
1415
1416 data_bitflips = nand_check_erased_buf(data, datalen,
1417 bitflips_threshold);
1418 if (data_bitflips < 0)
1419 return data_bitflips;
1420
1421 bitflips_threshold -= data_bitflips;
1422
1423 ecc_bitflips = nand_check_erased_buf(ecc, ecclen, bitflips_threshold);
1424 if (ecc_bitflips < 0)
1425 return ecc_bitflips;
1426
1427 bitflips_threshold -= ecc_bitflips;
1428
1429 extraoob_bitflips = nand_check_erased_buf(extraoob, extraooblen,
1430 bitflips_threshold);
1431 if (extraoob_bitflips < 0)
1432 return extraoob_bitflips;
1433
1434 if (data_bitflips)
1435 memset(data, 0xff, datalen);
1436
1437 if (ecc_bitflips)
1438 memset(ecc, 0xff, ecclen);
1439
1440 if (extraoob_bitflips)
1441 memset(extraoob, 0xff, extraooblen);
1442
1443 return data_bitflips + ecc_bitflips + extraoob_bitflips;
1444}
1445EXPORT_SYMBOL(nand_check_erased_ecc_chunk);
1446
1447/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001448 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001449 * @mtd: mtd info structure
1450 * @chip: nand chip info structure
1451 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001452 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001453 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001454 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001455 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001456 */
1457static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001458 uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001459{
1460 chip->read_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07001461 if (oob_required)
1462 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001463 return 0;
1464}
1465
1466/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001467 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001468 * @mtd: mtd info structure
1469 * @chip: nand chip info structure
1470 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001471 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001472 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001473 *
1474 * We need a special oob layout and handling even when OOB isn't used.
1475 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001476static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001477 struct nand_chip *chip, uint8_t *buf,
1478 int oob_required, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001479{
1480 int eccsize = chip->ecc.size;
1481 int eccbytes = chip->ecc.bytes;
1482 uint8_t *oob = chip->oob_poi;
1483 int steps, size;
1484
1485 for (steps = chip->ecc.steps; steps > 0; steps--) {
1486 chip->read_buf(mtd, buf, eccsize);
1487 buf += eccsize;
1488
1489 if (chip->ecc.prepad) {
1490 chip->read_buf(mtd, oob, chip->ecc.prepad);
1491 oob += chip->ecc.prepad;
1492 }
1493
1494 chip->read_buf(mtd, oob, eccbytes);
1495 oob += eccbytes;
1496
1497 if (chip->ecc.postpad) {
1498 chip->read_buf(mtd, oob, chip->ecc.postpad);
1499 oob += chip->ecc.postpad;
1500 }
1501 }
1502
1503 size = mtd->oobsize - (oob - chip->oob_poi);
1504 if (size)
1505 chip->read_buf(mtd, oob, size);
1506
1507 return 0;
1508}
1509
1510/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001511 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001512 * @mtd: mtd info structure
1513 * @chip: nand chip info structure
1514 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001515 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001516 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001517 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001518static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001519 uint8_t *buf, int oob_required, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Boris Brezillon846031d2016-02-03 20:11:00 +01001521 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001522 int eccbytes = chip->ecc.bytes;
1523 int eccsteps = chip->ecc.steps;
1524 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001525 uint8_t *ecc_calc = chip->buffers->ecccalc;
1526 uint8_t *ecc_code = chip->buffers->ecccode;
Mike Dunn3f91e942012-04-25 12:06:09 -07001527 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001528
Brian Norris1fbb9382012-05-02 10:14:55 -07001529 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001530
1531 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1532 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1533
Boris Brezillon846031d2016-02-03 20:11:00 +01001534 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1535 chip->ecc.total);
1536 if (ret)
1537 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001538
1539 eccsteps = chip->ecc.steps;
1540 p = buf;
1541
1542 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1543 int stat;
1544
1545 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001546 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001547 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001548 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001549 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001550 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1551 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001552 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001553 return max_bitflips;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001554}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556/**
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05301557 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001558 * @mtd: mtd info structure
1559 * @chip: nand chip info structure
1560 * @data_offs: offset of requested data within the page
1561 * @readlen: data length
1562 * @bufpoi: buffer to store read data
Huang Shijiee004deb2014-01-03 11:01:40 +08001563 * @page: page number to read
Alexey Korolev3d459552008-05-15 17:23:18 +01001564 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001565static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08001566 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi,
1567 int page)
Alexey Korolev3d459552008-05-15 17:23:18 +01001568{
Boris Brezillon846031d2016-02-03 20:11:00 +01001569 int start_step, end_step, num_steps, ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01001570 uint8_t *p;
1571 int data_col_addr, i, gaps = 0;
1572 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1573 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Boris Brezillon846031d2016-02-03 20:11:00 +01001574 int index, section = 0;
Mike Dunn3f91e942012-04-25 12:06:09 -07001575 unsigned int max_bitflips = 0;
Boris Brezillon846031d2016-02-03 20:11:00 +01001576 struct mtd_oob_region oobregion = { };
Alexey Korolev3d459552008-05-15 17:23:18 +01001577
Brian Norris7854d3f2011-06-23 14:12:08 -07001578 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001579 start_step = data_offs / chip->ecc.size;
1580 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1581 num_steps = end_step - start_step + 1;
Ron4a4163ca2014-03-16 04:01:07 +10301582 index = start_step * chip->ecc.bytes;
Alexey Korolev3d459552008-05-15 17:23:18 +01001583
Brian Norris8b6e50c2011-05-25 14:59:01 -07001584 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001585 datafrag_len = num_steps * chip->ecc.size;
1586 eccfrag_len = num_steps * chip->ecc.bytes;
1587
1588 data_col_addr = start_step * chip->ecc.size;
1589 /* If we read not a page aligned data */
1590 if (data_col_addr != 0)
1591 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1592
1593 p = bufpoi + data_col_addr;
1594 chip->read_buf(mtd, p, datafrag_len);
1595
Brian Norris8b6e50c2011-05-25 14:59:01 -07001596 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001597 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1598 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1599
Brian Norris8b6e50c2011-05-25 14:59:01 -07001600 /*
1601 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07001602 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07001603 */
Boris Brezillon846031d2016-02-03 20:11:00 +01001604 ret = mtd_ooblayout_find_eccregion(mtd, index, &section, &oobregion);
1605 if (ret)
1606 return ret;
1607
1608 if (oobregion.length < eccfrag_len)
1609 gaps = 1;
1610
Alexey Korolev3d459552008-05-15 17:23:18 +01001611 if (gaps) {
1612 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1613 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1614 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001615 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07001616 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07001617 * about buswidth alignment in read_buf.
1618 */
Boris Brezillon846031d2016-02-03 20:11:00 +01001619 aligned_pos = oobregion.offset & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001620 aligned_len = eccfrag_len;
Boris Brezillon846031d2016-02-03 20:11:00 +01001621 if (oobregion.offset & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001622 aligned_len++;
Boris Brezillon846031d2016-02-03 20:11:00 +01001623 if ((oobregion.offset + (num_steps * chip->ecc.bytes)) &
1624 (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001625 aligned_len++;
1626
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001627 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
Boris Brezillon846031d2016-02-03 20:11:00 +01001628 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001629 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1630 }
1631
Boris Brezillon846031d2016-02-03 20:11:00 +01001632 ret = mtd_ooblayout_get_eccbytes(mtd, chip->buffers->ecccode,
1633 chip->oob_poi, index, eccfrag_len);
1634 if (ret)
1635 return ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01001636
1637 p = bufpoi + data_col_addr;
1638 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1639 int stat;
1640
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001641 stat = chip->ecc.correct(mtd, p,
1642 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001643 if (stat == -EBADMSG &&
1644 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1645 /* check for empty pages with bitflips */
1646 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
1647 &chip->buffers->ecccode[i],
1648 chip->ecc.bytes,
1649 NULL, 0,
1650 chip->ecc.strength);
1651 }
1652
Mike Dunn3f91e942012-04-25 12:06:09 -07001653 if (stat < 0) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001654 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001655 } else {
Alexey Korolev3d459552008-05-15 17:23:18 +01001656 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001657 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1658 }
Alexey Korolev3d459552008-05-15 17:23:18 +01001659 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001660 return max_bitflips;
Alexey Korolev3d459552008-05-15 17:23:18 +01001661}
1662
1663/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001664 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001665 * @mtd: mtd info structure
1666 * @chip: nand chip info structure
1667 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001668 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001669 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001670 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001671 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001672 */
1673static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001674 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001675{
Boris Brezillon846031d2016-02-03 20:11:00 +01001676 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001677 int eccbytes = chip->ecc.bytes;
1678 int eccsteps = chip->ecc.steps;
1679 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001680 uint8_t *ecc_calc = chip->buffers->ecccalc;
1681 uint8_t *ecc_code = chip->buffers->ecccode;
Mike Dunn3f91e942012-04-25 12:06:09 -07001682 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001683
1684 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1685 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1686 chip->read_buf(mtd, p, eccsize);
1687 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1688 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001689 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001690
Boris Brezillon846031d2016-02-03 20:11:00 +01001691 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1692 chip->ecc.total);
1693 if (ret)
1694 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001695
1696 eccsteps = chip->ecc.steps;
1697 p = buf;
1698
1699 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1700 int stat;
1701
1702 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001703 if (stat == -EBADMSG &&
1704 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1705 /* check for empty pages with bitflips */
1706 stat = nand_check_erased_ecc_chunk(p, eccsize,
1707 &ecc_code[i], eccbytes,
1708 NULL, 0,
1709 chip->ecc.strength);
1710 }
1711
Mike Dunn3f91e942012-04-25 12:06:09 -07001712 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001713 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001714 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001715 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001716 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1717 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001718 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001719 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001720}
1721
1722/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001723 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07001724 * @mtd: mtd info structure
1725 * @chip: nand chip info structure
1726 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001727 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001728 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001729 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001730 * Hardware ECC for large page chips, require OOB to be read first. For this
1731 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1732 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1733 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1734 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001735 */
1736static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001737 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001738{
Boris Brezillon846031d2016-02-03 20:11:00 +01001739 int i, eccsize = chip->ecc.size, ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001740 int eccbytes = chip->ecc.bytes;
1741 int eccsteps = chip->ecc.steps;
1742 uint8_t *p = buf;
1743 uint8_t *ecc_code = chip->buffers->ecccode;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001744 uint8_t *ecc_calc = chip->buffers->ecccalc;
Mike Dunn3f91e942012-04-25 12:06:09 -07001745 unsigned int max_bitflips = 0;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001746
1747 /* Read the OOB area first */
1748 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1749 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1750 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1751
Boris Brezillon846031d2016-02-03 20:11:00 +01001752 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1753 chip->ecc.total);
1754 if (ret)
1755 return ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001756
1757 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1758 int stat;
1759
1760 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1761 chip->read_buf(mtd, p, eccsize);
1762 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1763
1764 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001765 if (stat == -EBADMSG &&
1766 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1767 /* check for empty pages with bitflips */
1768 stat = nand_check_erased_ecc_chunk(p, eccsize,
1769 &ecc_code[i], eccbytes,
1770 NULL, 0,
1771 chip->ecc.strength);
1772 }
1773
Mike Dunn3f91e942012-04-25 12:06:09 -07001774 if (stat < 0) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001775 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001776 } else {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001777 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001778 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1779 }
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001780 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001781 return max_bitflips;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001782}
1783
1784/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001785 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07001786 * @mtd: mtd info structure
1787 * @chip: nand chip info structure
1788 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001789 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001790 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001791 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001792 * The hw generator calculates the error syndrome automatically. Therefore we
1793 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001794 */
1795static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001796 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001797{
1798 int i, eccsize = chip->ecc.size;
1799 int eccbytes = chip->ecc.bytes;
1800 int eccsteps = chip->ecc.steps;
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001801 int eccpadbytes = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001802 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001803 uint8_t *oob = chip->oob_poi;
Mike Dunn3f91e942012-04-25 12:06:09 -07001804 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001805
1806 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1807 int stat;
1808
1809 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1810 chip->read_buf(mtd, p, eccsize);
1811
1812 if (chip->ecc.prepad) {
1813 chip->read_buf(mtd, oob, chip->ecc.prepad);
1814 oob += chip->ecc.prepad;
1815 }
1816
1817 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1818 chip->read_buf(mtd, oob, eccbytes);
1819 stat = chip->ecc.correct(mtd, p, oob, NULL);
1820
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001821 oob += eccbytes;
1822
1823 if (chip->ecc.postpad) {
1824 chip->read_buf(mtd, oob, chip->ecc.postpad);
1825 oob += chip->ecc.postpad;
1826 }
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001827
1828 if (stat == -EBADMSG &&
1829 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1830 /* check for empty pages with bitflips */
1831 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
1832 oob - eccpadbytes,
1833 eccpadbytes,
1834 NULL, 0,
1835 chip->ecc.strength);
1836 }
1837
1838 if (stat < 0) {
1839 mtd->ecc_stats.failed++;
1840 } else {
1841 mtd->ecc_stats.corrected += stat;
1842 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1843 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001844 }
1845
1846 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001847 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001848 if (i)
1849 chip->read_buf(mtd, oob, i);
1850
Mike Dunn3f91e942012-04-25 12:06:09 -07001851 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001852}
1853
1854/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001855 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Boris Brezillon846031d2016-02-03 20:11:00 +01001856 * @mtd: mtd info structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07001857 * @oob: oob destination address
1858 * @ops: oob ops structure
1859 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001860 */
Boris Brezillon846031d2016-02-03 20:11:00 +01001861static uint8_t *nand_transfer_oob(struct mtd_info *mtd, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001862 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001863{
Boris Brezillon846031d2016-02-03 20:11:00 +01001864 struct nand_chip *chip = mtd_to_nand(mtd);
1865 int ret;
1866
Florian Fainellif8ac0412010-09-07 13:23:43 +02001867 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001868
Brian Norris0612b9d2011-08-30 18:45:40 -07001869 case MTD_OPS_PLACE_OOB:
1870 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001871 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1872 return oob + len;
1873
Boris Brezillon846031d2016-02-03 20:11:00 +01001874 case MTD_OPS_AUTO_OOB:
1875 ret = mtd_ooblayout_get_databytes(mtd, oob, chip->oob_poi,
1876 ops->ooboffs, len);
1877 BUG_ON(ret);
1878 return oob + len;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001879
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001880 default:
1881 BUG();
1882 }
1883 return NULL;
1884}
1885
1886/**
Brian Norrisba84fb52014-01-03 15:13:33 -08001887 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
1888 * @mtd: MTD device structure
1889 * @retry_mode: the retry mode to use
1890 *
1891 * Some vendors supply a special command to shift the Vt threshold, to be used
1892 * when there are too many bitflips in a page (i.e., ECC error). After setting
1893 * a new threshold, the host should retry reading the page.
1894 */
1895static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
1896{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001897 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norrisba84fb52014-01-03 15:13:33 -08001898
1899 pr_debug("setting READ RETRY mode %d\n", retry_mode);
1900
1901 if (retry_mode >= chip->read_retries)
1902 return -EINVAL;
1903
1904 if (!chip->setup_read_retry)
1905 return -EOPNOTSUPP;
1906
1907 return chip->setup_read_retry(mtd, retry_mode);
1908}
1909
1910/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001911 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001912 * @mtd: MTD device structure
1913 * @from: offset to read from
1914 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001915 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001916 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001917 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001918static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1919 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001920{
Brian Norrise47f3db2012-05-02 10:14:56 -07001921 int chipnr, page, realpage, col, bytes, aligned, oob_required;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001922 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001923 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001924 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001925 uint32_t oobreadlen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01001926 uint32_t max_oobsize = mtd_oobavail(mtd, ops);
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001927
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001928 uint8_t *bufpoi, *oob, *buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04001929 int use_bufpoi;
Mike Dunnedbc45402012-04-25 12:06:11 -07001930 unsigned int max_bitflips = 0;
Brian Norrisba84fb52014-01-03 15:13:33 -08001931 int retry_mode = 0;
Brian Norrisb72f3df2013-12-03 11:04:14 -08001932 bool ecc_fail = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001934 chipnr = (int)(from >> chip->chip_shift);
1935 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001937 realpage = (int)(from >> chip->page_shift);
1938 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001940 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001942 buf = ops->datbuf;
1943 oob = ops->oobbuf;
Brian Norrise47f3db2012-05-02 10:14:56 -07001944 oob_required = oob ? 1 : 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001945
Florian Fainellif8ac0412010-09-07 13:23:43 +02001946 while (1) {
Brian Norrisb72f3df2013-12-03 11:04:14 -08001947 unsigned int ecc_failures = mtd->ecc_stats.failed;
1948
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001949 bytes = min(mtd->writesize - col, readlen);
1950 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001951
Kamal Dasu66507c72014-05-01 20:51:19 -04001952 if (!aligned)
1953 use_bufpoi = 1;
1954 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
1955 use_bufpoi = !virt_addr_valid(buf);
1956 else
1957 use_bufpoi = 0;
1958
Brian Norris8b6e50c2011-05-25 14:59:01 -07001959 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001960 if (realpage != chip->pagebuf || oob) {
Kamal Dasu66507c72014-05-01 20:51:19 -04001961 bufpoi = use_bufpoi ? chip->buffers->databuf : buf;
1962
1963 if (use_bufpoi && aligned)
1964 pr_debug("%s: using read bounce buffer for buf@%p\n",
1965 __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Brian Norrisba84fb52014-01-03 15:13:33 -08001967read_retry:
Marc Gonzalez3371d662016-11-15 10:56:20 +01001968 if (nand_standard_page_accessors(&chip->ecc))
1969 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Mike Dunnedbc45402012-04-25 12:06:11 -07001971 /*
1972 * Now read the page into the buffer. Absent an error,
1973 * the read methods return max bitflips per ecc step.
1974 */
Brian Norris0612b9d2011-08-30 18:45:40 -07001975 if (unlikely(ops->mode == MTD_OPS_RAW))
Brian Norris1fbb9382012-05-02 10:14:55 -07001976 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001977 oob_required,
1978 page);
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001979 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
1980 !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001981 ret = chip->ecc.read_subpage(mtd, chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08001982 col, bytes, bufpoi,
1983 page);
David Woodhouse956e9442006-09-25 17:12:39 +01001984 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001985 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001986 oob_required, page);
Brian Norris6d77b9d2011-09-07 13:13:40 -07001987 if (ret < 0) {
Kamal Dasu66507c72014-05-01 20:51:19 -04001988 if (use_bufpoi)
Brian Norris6d77b9d2011-09-07 13:13:40 -07001989 /* Invalidate page cache */
1990 chip->pagebuf = -1;
David Woodhousee0c7d762006-05-13 18:07:53 +01001991 break;
Brian Norris6d77b9d2011-09-07 13:13:40 -07001992 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001993
Mike Dunnedbc45402012-04-25 12:06:11 -07001994 max_bitflips = max_t(unsigned int, max_bitflips, ret);
1995
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001996 /* Transfer not aligned data */
Kamal Dasu66507c72014-05-01 20:51:19 -04001997 if (use_bufpoi) {
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001998 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Brian Norrisb72f3df2013-12-03 11:04:14 -08001999 !(mtd->ecc_stats.failed - ecc_failures) &&
Mike Dunnedbc45402012-04-25 12:06:11 -07002000 (ops->mode != MTD_OPS_RAW)) {
Alexey Korolev3d459552008-05-15 17:23:18 +01002001 chip->pagebuf = realpage;
Mike Dunnedbc45402012-04-25 12:06:11 -07002002 chip->pagebuf_bitflips = ret;
2003 } else {
Brian Norris6d77b9d2011-09-07 13:13:40 -07002004 /* Invalidate page cache */
2005 chip->pagebuf = -1;
Mike Dunnedbc45402012-04-25 12:06:11 -07002006 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002007 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002009
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002010 if (unlikely(oob)) {
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02002011 int toread = min(oobreadlen, max_oobsize);
2012
2013 if (toread) {
Boris Brezillon846031d2016-02-03 20:11:00 +01002014 oob = nand_transfer_oob(mtd,
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02002015 oob, ops, toread);
2016 oobreadlen -= toread;
2017 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002018 }
Brian Norris5bc7c332013-03-13 09:51:31 -07002019
2020 if (chip->options & NAND_NEED_READRDY) {
2021 /* Apply delay or wait for ready/busy pin */
2022 if (!chip->dev_ready)
2023 udelay(chip->chip_delay);
2024 else
2025 nand_wait_ready(mtd);
2026 }
Brian Norrisb72f3df2013-12-03 11:04:14 -08002027
Brian Norrisba84fb52014-01-03 15:13:33 -08002028 if (mtd->ecc_stats.failed - ecc_failures) {
Brian Norris28fa65e2014-02-12 16:08:28 -08002029 if (retry_mode + 1 < chip->read_retries) {
Brian Norrisba84fb52014-01-03 15:13:33 -08002030 retry_mode++;
2031 ret = nand_setup_read_retry(mtd,
2032 retry_mode);
2033 if (ret < 0)
2034 break;
2035
2036 /* Reset failures; retry */
2037 mtd->ecc_stats.failed = ecc_failures;
2038 goto read_retry;
2039 } else {
2040 /* No more retry modes; real failure */
2041 ecc_fail = true;
2042 }
2043 }
2044
2045 buf += bytes;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002046 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002047 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002048 buf += bytes;
Mike Dunnedbc45402012-04-25 12:06:11 -07002049 max_bitflips = max_t(unsigned int, max_bitflips,
2050 chip->pagebuf_bitflips);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002053 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002054
Brian Norrisba84fb52014-01-03 15:13:33 -08002055 /* Reset to retry mode 0 */
2056 if (retry_mode) {
2057 ret = nand_setup_read_retry(mtd, 0);
2058 if (ret < 0)
2059 break;
2060 retry_mode = 0;
2061 }
2062
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002063 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002064 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Brian Norris8b6e50c2011-05-25 14:59:01 -07002066 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 col = 0;
2068 /* Increment page address */
2069 realpage++;
2070
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002071 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 /* Check, if we cross a chip boundary */
2073 if (!page) {
2074 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002075 chip->select_chip(mtd, -1);
2076 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002079 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002081 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03002082 if (oob)
2083 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Mike Dunn3f91e942012-04-25 12:06:09 -07002085 if (ret < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002086 return ret;
2087
Brian Norrisb72f3df2013-12-03 11:04:14 -08002088 if (ecc_fail)
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02002089 return -EBADMSG;
2090
Mike Dunnedbc45402012-04-25 12:06:11 -07002091 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002092}
2093
2094/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002095 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07002096 * @mtd: MTD device structure
2097 * @from: offset to read from
2098 * @len: number of bytes to read
2099 * @retlen: pointer to variable to store the number of read bytes
2100 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002101 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002102 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002103 */
2104static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
2105 size_t *retlen, uint8_t *buf)
2106{
Brian Norris4a89ff82011-08-30 18:45:45 -07002107 struct mtd_oob_ops ops;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002108 int ret;
2109
Huang Shijie6a8214a2012-11-19 14:43:30 +08002110 nand_get_device(mtd, FL_READING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08002111 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002112 ops.len = len;
2113 ops.datbuf = buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002114 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002115 ret = nand_do_read_ops(mtd, from, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002116 *retlen = ops.retlen;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002117 nand_release_device(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002118 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119}
2120
2121/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002122 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002123 * @mtd: mtd info structure
2124 * @chip: nand chip info structure
2125 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002126 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002127int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002128{
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002129 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002130 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002131 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002132}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002133EXPORT_SYMBOL(nand_read_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002134
2135/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002136 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002137 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07002138 * @mtd: mtd info structure
2139 * @chip: nand chip info structure
2140 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002141 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002142int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2143 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002144{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002145 int length = mtd->oobsize;
2146 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2147 int eccsize = chip->ecc.size;
Baruch Siach2ea69d22015-01-22 15:23:05 +02002148 uint8_t *bufpoi = chip->oob_poi;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002149 int i, toread, sndrnd = 0, pos;
2150
2151 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
2152 for (i = 0; i < chip->ecc.steps; i++) {
2153 if (sndrnd) {
2154 pos = eccsize + i * (eccsize + chunk);
2155 if (mtd->writesize > 512)
2156 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
2157 else
2158 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
2159 } else
2160 sndrnd = 1;
2161 toread = min_t(int, length, chunk);
2162 chip->read_buf(mtd, bufpoi, toread);
2163 bufpoi += toread;
2164 length -= toread;
2165 }
2166 if (length > 0)
2167 chip->read_buf(mtd, bufpoi, length);
2168
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03002169 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002170}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002171EXPORT_SYMBOL(nand_read_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002172
2173/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002174 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002175 * @mtd: mtd info structure
2176 * @chip: nand chip info structure
2177 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002178 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002179int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002180{
2181 int status = 0;
2182 const uint8_t *buf = chip->oob_poi;
2183 int length = mtd->oobsize;
2184
2185 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
2186 chip->write_buf(mtd, buf, length);
2187 /* Send command to program the OOB data */
2188 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2189
2190 status = chip->waitfunc(mtd, chip);
2191
Savin Zlobec0d420f92006-06-21 11:51:20 +02002192 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002193}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002194EXPORT_SYMBOL(nand_write_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002195
2196/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002197 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002198 * with syndrome - only for large page flash
2199 * @mtd: mtd info structure
2200 * @chip: nand chip info structure
2201 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002202 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002203int nand_write_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2204 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002205{
2206 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2207 int eccsize = chip->ecc.size, length = mtd->oobsize;
2208 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
2209 const uint8_t *bufpoi = chip->oob_poi;
2210
2211 /*
2212 * data-ecc-data-ecc ... ecc-oob
2213 * or
2214 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
2215 */
2216 if (!chip->ecc.prepad && !chip->ecc.postpad) {
2217 pos = steps * (eccsize + chunk);
2218 steps = 0;
2219 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002220 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002221
2222 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
2223 for (i = 0; i < steps; i++) {
2224 if (sndcmd) {
2225 if (mtd->writesize <= 512) {
2226 uint32_t fill = 0xFFFFFFFF;
2227
2228 len = eccsize;
2229 while (len > 0) {
2230 int num = min_t(int, len, 4);
2231 chip->write_buf(mtd, (uint8_t *)&fill,
2232 num);
2233 len -= num;
2234 }
2235 } else {
2236 pos = eccsize + i * (eccsize + chunk);
2237 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
2238 }
2239 } else
2240 sndcmd = 1;
2241 len = min_t(int, length, chunk);
2242 chip->write_buf(mtd, bufpoi, len);
2243 bufpoi += len;
2244 length -= len;
2245 }
2246 if (length > 0)
2247 chip->write_buf(mtd, bufpoi, length);
2248
2249 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2250 status = chip->waitfunc(mtd, chip);
2251
2252 return status & NAND_STATUS_FAIL ? -EIO : 0;
2253}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002254EXPORT_SYMBOL(nand_write_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002255
2256/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002257 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002258 * @mtd: MTD device structure
2259 * @from: offset to read from
2260 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002262 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002264static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
2265 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266{
Brian Norrisc00a0992012-05-01 17:12:54 -07002267 int page, realpage, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002268 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris041e4572011-06-23 16:45:24 -07002269 struct mtd_ecc_stats stats;
Vitaly Wool70145682006-11-03 18:20:38 +03002270 int readlen = ops->ooblen;
2271 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002272 uint8_t *buf = ops->oobbuf;
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002273 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Brian Norris289c0522011-07-19 10:06:09 -07002275 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302276 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Brian Norris041e4572011-06-23 16:45:24 -07002278 stats = mtd->ecc_stats;
2279
Boris BREZILLON29f10582016-03-07 10:46:52 +01002280 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02002281
2282 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002283 pr_debug("%s: attempt to start read outside oob\n",
2284 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002285 return -EINVAL;
2286 }
2287
2288 /* Do not allow reads past end of device */
2289 if (unlikely(from >= mtd->size ||
2290 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
2291 (from >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002292 pr_debug("%s: attempt to read beyond end of device\n",
2293 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002294 return -EINVAL;
2295 }
Vitaly Wool70145682006-11-03 18:20:38 +03002296
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002297 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002298 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002300 /* Shift to get page */
2301 realpage = (int)(from >> chip->page_shift);
2302 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Florian Fainellif8ac0412010-09-07 13:23:43 +02002304 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002305 if (ops->mode == MTD_OPS_RAW)
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002306 ret = chip->ecc.read_oob_raw(mtd, chip, page);
Brian Norrisc46f6482011-08-30 18:45:38 -07002307 else
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002308 ret = chip->ecc.read_oob(mtd, chip, page);
2309
2310 if (ret < 0)
2311 break;
Vitaly Wool70145682006-11-03 18:20:38 +03002312
2313 len = min(len, readlen);
Boris Brezillon846031d2016-02-03 20:11:00 +01002314 buf = nand_transfer_oob(mtd, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002315
Brian Norris5bc7c332013-03-13 09:51:31 -07002316 if (chip->options & NAND_NEED_READRDY) {
2317 /* Apply delay or wait for ready/busy pin */
2318 if (!chip->dev_ready)
2319 udelay(chip->chip_delay);
2320 else
2321 nand_wait_ready(mtd);
2322 }
2323
Vitaly Wool70145682006-11-03 18:20:38 +03002324 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02002325 if (!readlen)
2326 break;
2327
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002328 /* Increment page address */
2329 realpage++;
2330
2331 page = realpage & chip->pagemask;
2332 /* Check, if we cross a chip boundary */
2333 if (!page) {
2334 chipnr++;
2335 chip->select_chip(mtd, -1);
2336 chip->select_chip(mtd, chipnr);
2337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002339 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002341 ops->oobretlen = ops->ooblen - readlen;
2342
2343 if (ret < 0)
2344 return ret;
Brian Norris041e4572011-06-23 16:45:24 -07002345
2346 if (mtd->ecc_stats.failed - stats.failed)
2347 return -EBADMSG;
2348
2349 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350}
2351
2352/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002353 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002354 * @mtd: MTD device structure
2355 * @from: offset to read from
2356 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002358 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002360static int nand_read_oob(struct mtd_info *mtd, loff_t from,
2361 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362{
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07002363 int ret;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002364
2365 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002368 if (ops->datbuf && (from + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002369 pr_debug("%s: attempt to read beyond end of device\n",
2370 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 return -EINVAL;
2372 }
2373
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07002374 if (ops->mode != MTD_OPS_PLACE_OOB &&
2375 ops->mode != MTD_OPS_AUTO_OOB &&
2376 ops->mode != MTD_OPS_RAW)
2377 return -ENOTSUPP;
2378
Huang Shijie6a8214a2012-11-19 14:43:30 +08002379 nand_get_device(mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002381 if (!ops->datbuf)
2382 ret = nand_do_read_oob(mtd, from, ops);
2383 else
2384 ret = nand_do_read_ops(mtd, from, ops);
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002387 return ret;
2388}
2389
2390
2391/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002392 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002393 * @mtd: mtd info structure
2394 * @chip: nand chip info structure
2395 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002396 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002397 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002398 *
Brian Norris7854d3f2011-06-23 14:12:08 -07002399 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002400 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002401static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002402 const uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002403{
2404 chip->write_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07002405 if (oob_required)
2406 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002407
2408 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409}
2410
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002411/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002412 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002413 * @mtd: mtd info structure
2414 * @chip: nand chip info structure
2415 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002416 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002417 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002418 *
2419 * We need a special oob layout and handling even when ECC isn't checked.
2420 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002421static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002422 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002423 const uint8_t *buf, int oob_required,
2424 int page)
David Brownell52ff49d2009-03-04 12:01:36 -08002425{
2426 int eccsize = chip->ecc.size;
2427 int eccbytes = chip->ecc.bytes;
2428 uint8_t *oob = chip->oob_poi;
2429 int steps, size;
2430
2431 for (steps = chip->ecc.steps; steps > 0; steps--) {
2432 chip->write_buf(mtd, buf, eccsize);
2433 buf += eccsize;
2434
2435 if (chip->ecc.prepad) {
2436 chip->write_buf(mtd, oob, chip->ecc.prepad);
2437 oob += chip->ecc.prepad;
2438 }
2439
Boris BREZILLON60c3bc12014-02-01 19:10:28 +01002440 chip->write_buf(mtd, oob, eccbytes);
David Brownell52ff49d2009-03-04 12:01:36 -08002441 oob += eccbytes;
2442
2443 if (chip->ecc.postpad) {
2444 chip->write_buf(mtd, oob, chip->ecc.postpad);
2445 oob += chip->ecc.postpad;
2446 }
2447 }
2448
2449 size = mtd->oobsize - (oob - chip->oob_poi);
2450 if (size)
2451 chip->write_buf(mtd, oob, size);
Josh Wufdbad98d2012-06-25 18:07:45 +08002452
2453 return 0;
David Brownell52ff49d2009-03-04 12:01:36 -08002454}
2455/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002456 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002457 * @mtd: mtd info structure
2458 * @chip: nand chip info structure
2459 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002460 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002461 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002462 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002463static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002464 const uint8_t *buf, int oob_required,
2465 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002466{
Boris Brezillon846031d2016-02-03 20:11:00 +01002467 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002468 int eccbytes = chip->ecc.bytes;
2469 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002470 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002471 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002472
Brian Norris7854d3f2011-06-23 14:12:08 -07002473 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002474 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
2475 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002476
Boris Brezillon846031d2016-02-03 20:11:00 +01002477 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2478 chip->ecc.total);
2479 if (ret)
2480 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002481
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002482 return chip->ecc.write_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002483}
2484
2485/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002486 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002487 * @mtd: mtd info structure
2488 * @chip: nand chip info structure
2489 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002490 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002491 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002492 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002493static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002494 const uint8_t *buf, int oob_required,
2495 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002496{
Boris Brezillon846031d2016-02-03 20:11:00 +01002497 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002498 int eccbytes = chip->ecc.bytes;
2499 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002500 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002501 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002502
2503 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2504 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01002505 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002506 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2507 }
2508
Boris Brezillon846031d2016-02-03 20:11:00 +01002509 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2510 chip->ecc.total);
2511 if (ret)
2512 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002513
2514 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002515
2516 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002517}
2518
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302519
2520/**
Brian Norris73c8aaf2015-02-28 02:04:18 -08002521 * nand_write_subpage_hwecc - [REPLACEABLE] hardware ECC based subpage write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302522 * @mtd: mtd info structure
2523 * @chip: nand chip info structure
Brian Norrisd6a950802013-08-08 17:16:36 -07002524 * @offset: column address of subpage within the page
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302525 * @data_len: data length
Brian Norrisd6a950802013-08-08 17:16:36 -07002526 * @buf: data buffer
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302527 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002528 * @page: page number to write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302529 */
2530static int nand_write_subpage_hwecc(struct mtd_info *mtd,
2531 struct nand_chip *chip, uint32_t offset,
Brian Norrisd6a950802013-08-08 17:16:36 -07002532 uint32_t data_len, const uint8_t *buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002533 int oob_required, int page)
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302534{
2535 uint8_t *oob_buf = chip->oob_poi;
2536 uint8_t *ecc_calc = chip->buffers->ecccalc;
2537 int ecc_size = chip->ecc.size;
2538 int ecc_bytes = chip->ecc.bytes;
2539 int ecc_steps = chip->ecc.steps;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302540 uint32_t start_step = offset / ecc_size;
2541 uint32_t end_step = (offset + data_len - 1) / ecc_size;
2542 int oob_bytes = mtd->oobsize / ecc_steps;
Boris Brezillon846031d2016-02-03 20:11:00 +01002543 int step, ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302544
2545 for (step = 0; step < ecc_steps; step++) {
2546 /* configure controller for WRITE access */
2547 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2548
2549 /* write data (untouched subpages already masked by 0xFF) */
Brian Norrisd6a950802013-08-08 17:16:36 -07002550 chip->write_buf(mtd, buf, ecc_size);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302551
2552 /* mask ECC of un-touched subpages by padding 0xFF */
2553 if ((step < start_step) || (step > end_step))
2554 memset(ecc_calc, 0xff, ecc_bytes);
2555 else
Brian Norrisd6a950802013-08-08 17:16:36 -07002556 chip->ecc.calculate(mtd, buf, ecc_calc);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302557
2558 /* mask OOB of un-touched subpages by padding 0xFF */
2559 /* if oob_required, preserve OOB metadata of written subpage */
2560 if (!oob_required || (step < start_step) || (step > end_step))
2561 memset(oob_buf, 0xff, oob_bytes);
2562
Brian Norrisd6a950802013-08-08 17:16:36 -07002563 buf += ecc_size;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302564 ecc_calc += ecc_bytes;
2565 oob_buf += oob_bytes;
2566 }
2567
2568 /* copy calculated ECC for whole page to chip->buffer->oob */
2569 /* this include masked-value(0xFF) for unwritten subpages */
2570 ecc_calc = chip->buffers->ecccalc;
Boris Brezillon846031d2016-02-03 20:11:00 +01002571 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2572 chip->ecc.total);
2573 if (ret)
2574 return ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302575
2576 /* write OOB buffer to NAND device */
2577 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2578
2579 return 0;
2580}
2581
2582
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002583/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002584 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07002585 * @mtd: mtd info structure
2586 * @chip: nand chip info structure
2587 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002588 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002589 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002590 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002591 * The hw generator calculates the error syndrome automatically. Therefore we
2592 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002593 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002594static int nand_write_page_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07002595 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002596 const uint8_t *buf, int oob_required,
2597 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002598{
2599 int i, eccsize = chip->ecc.size;
2600 int eccbytes = chip->ecc.bytes;
2601 int eccsteps = chip->ecc.steps;
2602 const uint8_t *p = buf;
2603 uint8_t *oob = chip->oob_poi;
2604
2605 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2606
2607 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2608 chip->write_buf(mtd, p, eccsize);
2609
2610 if (chip->ecc.prepad) {
2611 chip->write_buf(mtd, oob, chip->ecc.prepad);
2612 oob += chip->ecc.prepad;
2613 }
2614
2615 chip->ecc.calculate(mtd, p, oob);
2616 chip->write_buf(mtd, oob, eccbytes);
2617 oob += eccbytes;
2618
2619 if (chip->ecc.postpad) {
2620 chip->write_buf(mtd, oob, chip->ecc.postpad);
2621 oob += chip->ecc.postpad;
2622 }
2623 }
2624
2625 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002626 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002627 if (i)
2628 chip->write_buf(mtd, oob, i);
Josh Wufdbad98d2012-06-25 18:07:45 +08002629
2630 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002631}
2632
2633/**
David Woodhouse956e9442006-09-25 17:12:39 +01002634 * nand_write_page - [REPLACEABLE] write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002635 * @mtd: MTD device structure
2636 * @chip: NAND chip descriptor
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302637 * @offset: address offset within the page
2638 * @data_len: length of actual data to be written
Brian Norris8b6e50c2011-05-25 14:59:01 -07002639 * @buf: the data to write
Brian Norris1fbb9382012-05-02 10:14:55 -07002640 * @oob_required: must write chip->oob_poi to OOB
Brian Norris8b6e50c2011-05-25 14:59:01 -07002641 * @page: page number to write
2642 * @cached: cached programming
2643 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002644 */
2645static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302646 uint32_t offset, int data_len, const uint8_t *buf,
2647 int oob_required, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002648{
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302649 int status, subpage;
2650
2651 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2652 chip->ecc.write_subpage)
2653 subpage = offset || (data_len < mtd->writesize);
2654 else
2655 subpage = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002656
Marc Gonzalez3371d662016-11-15 10:56:20 +01002657 if (nand_standard_page_accessors(&chip->ecc))
2658 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002659
David Woodhouse956e9442006-09-25 17:12:39 +01002660 if (unlikely(raw))
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302661 status = chip->ecc.write_page_raw(mtd, chip, buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002662 oob_required, page);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302663 else if (subpage)
2664 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002665 buf, oob_required, page);
David Woodhouse956e9442006-09-25 17:12:39 +01002666 else
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002667 status = chip->ecc.write_page(mtd, chip, buf, oob_required,
2668 page);
Josh Wufdbad98d2012-06-25 18:07:45 +08002669
2670 if (status < 0)
2671 return status;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002672
2673 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002674 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002675 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002676 */
2677 cached = 0;
2678
Artem Bityutskiy3239a6c2013-03-04 14:56:18 +02002679 if (!cached || !NAND_HAS_CACHEPROG(chip)) {
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002680
Marc Gonzalez3371d662016-11-15 10:56:20 +01002681 if (nand_standard_page_accessors(&chip->ecc))
2682 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002683 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002684 /*
2685 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002686 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002687 */
2688 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2689 status = chip->errstat(mtd, chip, FL_WRITING, status,
2690 page);
2691
2692 if (status & NAND_STATUS_FAIL)
2693 return -EIO;
2694 } else {
2695 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002696 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002697 }
2698
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002699 return 0;
2700}
2701
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002702/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002703 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002704 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002705 * @oob: oob data buffer
2706 * @len: oob data write length
2707 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002708 */
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002709static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2710 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002711{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002712 struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon846031d2016-02-03 20:11:00 +01002713 int ret;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002714
2715 /*
2716 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2717 * data from a previous OOB read.
2718 */
2719 memset(chip->oob_poi, 0xff, mtd->oobsize);
2720
Florian Fainellif8ac0412010-09-07 13:23:43 +02002721 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002722
Brian Norris0612b9d2011-08-30 18:45:40 -07002723 case MTD_OPS_PLACE_OOB:
2724 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002725 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2726 return oob + len;
2727
Boris Brezillon846031d2016-02-03 20:11:00 +01002728 case MTD_OPS_AUTO_OOB:
2729 ret = mtd_ooblayout_set_databytes(mtd, oob, chip->oob_poi,
2730 ops->ooboffs, len);
2731 BUG_ON(ret);
2732 return oob + len;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002733
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002734 default:
2735 BUG();
2736 }
2737 return NULL;
2738}
2739
Florian Fainellif8ac0412010-09-07 13:23:43 +02002740#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002741
2742/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002743 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002744 * @mtd: MTD device structure
2745 * @to: offset to write to
2746 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002747 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002748 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002749 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002750static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2751 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002752{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002753 int chipnr, realpage, page, blockmask, column;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002754 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002755 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002756
2757 uint32_t oobwritelen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01002758 uint32_t oobmaxlen = mtd_oobavail(mtd, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002759
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002760 uint8_t *oob = ops->oobbuf;
2761 uint8_t *buf = ops->datbuf;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302762 int ret;
Brian Norrise47f3db2012-05-02 10:14:56 -07002763 int oob_required = oob ? 1 : 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002764
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002765 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002766 if (!writelen)
2767 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002768
Brian Norris8b6e50c2011-05-25 14:59:01 -07002769 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002770 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002771 pr_notice("%s: attempt to write non page aligned data\n",
2772 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002773 return -EINVAL;
2774 }
2775
Thomas Gleixner29072b92006-09-28 15:38:36 +02002776 column = to & (mtd->writesize - 1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002777
Thomas Gleixner6a930962006-06-28 00:11:45 +02002778 chipnr = (int)(to >> chip->chip_shift);
2779 chip->select_chip(mtd, chipnr);
2780
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002781 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002782 if (nand_check_wp(mtd)) {
2783 ret = -EIO;
2784 goto err_out;
2785 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002786
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002787 realpage = (int)(to >> chip->page_shift);
2788 page = realpage & chip->pagemask;
2789 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2790
2791 /* Invalidate the page cache, when we write to the cached page */
Brian Norris537ab1b2014-07-21 19:08:03 -07002792 if (to <= ((loff_t)chip->pagebuf << chip->page_shift) &&
2793 ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002794 chip->pagebuf = -1;
2795
Maxim Levitsky782ce792010-02-22 20:39:36 +02002796 /* Don't allow multipage oob writes with offset */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002797 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
2798 ret = -EINVAL;
2799 goto err_out;
2800 }
Maxim Levitsky782ce792010-02-22 20:39:36 +02002801
Florian Fainellif8ac0412010-09-07 13:23:43 +02002802 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002803 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002804 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002805 uint8_t *wbuf = buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04002806 int use_bufpoi;
Hector Palacios144f4c92016-07-18 10:39:18 +02002807 int part_pagewr = (column || writelen < mtd->writesize);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002808
Kamal Dasu66507c72014-05-01 20:51:19 -04002809 if (part_pagewr)
2810 use_bufpoi = 1;
2811 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
2812 use_bufpoi = !virt_addr_valid(buf);
2813 else
2814 use_bufpoi = 0;
2815
2816 /* Partial page write?, or need to use bounce buffer */
2817 if (use_bufpoi) {
2818 pr_debug("%s: using write bounce buffer for buf@%p\n",
2819 __func__, buf);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002820 cached = 0;
Kamal Dasu66507c72014-05-01 20:51:19 -04002821 if (part_pagewr)
2822 bytes = min_t(int, bytes - column, writelen);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002823 chip->pagebuf = -1;
2824 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2825 memcpy(&chip->buffers->databuf[column], buf, bytes);
2826 wbuf = chip->buffers->databuf;
2827 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002828
Maxim Levitsky782ce792010-02-22 20:39:36 +02002829 if (unlikely(oob)) {
2830 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002831 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002832 oobwritelen -= len;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002833 } else {
2834 /* We still need to erase leftover OOB data */
2835 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002836 }
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302837 ret = chip->write_page(mtd, chip, column, bytes, wbuf,
2838 oob_required, page, cached,
2839 (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002840 if (ret)
2841 break;
2842
2843 writelen -= bytes;
2844 if (!writelen)
2845 break;
2846
Thomas Gleixner29072b92006-09-28 15:38:36 +02002847 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002848 buf += bytes;
2849 realpage++;
2850
2851 page = realpage & chip->pagemask;
2852 /* Check, if we cross a chip boundary */
2853 if (!page) {
2854 chipnr++;
2855 chip->select_chip(mtd, -1);
2856 chip->select_chip(mtd, chipnr);
2857 }
2858 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002859
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002860 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002861 if (unlikely(oob))
2862 ops->oobretlen = ops->ooblen;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002863
2864err_out:
2865 chip->select_chip(mtd, -1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002866 return ret;
2867}
2868
2869/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002870 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002871 * @mtd: MTD device structure
2872 * @to: offset to write to
2873 * @len: number of bytes to write
2874 * @retlen: pointer to variable to store the number of written bytes
2875 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002876 *
2877 * NAND write with ECC. Used when performing writes in interrupt context, this
2878 * may for example be called by mtdoops when writing an oops while in panic.
2879 */
2880static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2881 size_t *retlen, const uint8_t *buf)
2882{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002883 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris4a89ff82011-08-30 18:45:45 -07002884 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002885 int ret;
2886
Brian Norris8b6e50c2011-05-25 14:59:01 -07002887 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002888 panic_nand_wait(mtd, chip, 400);
2889
Brian Norris8b6e50c2011-05-25 14:59:01 -07002890 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002891 panic_nand_get_device(chip, mtd, FL_WRITING);
2892
Brian Norris0ec56dc2015-02-28 02:02:30 -08002893 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002894 ops.len = len;
2895 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002896 ops.mode = MTD_OPS_PLACE_OOB;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002897
Brian Norris4a89ff82011-08-30 18:45:45 -07002898 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002899
Brian Norris4a89ff82011-08-30 18:45:45 -07002900 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002901 return ret;
2902}
2903
2904/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002905 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002906 * @mtd: MTD device structure
2907 * @to: offset to write to
2908 * @len: number of bytes to write
2909 * @retlen: pointer to variable to store the number of written bytes
2910 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002912 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002914static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002915 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916{
Brian Norris4a89ff82011-08-30 18:45:45 -07002917 struct mtd_oob_ops ops;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002918 int ret;
2919
Huang Shijie6a8214a2012-11-19 14:43:30 +08002920 nand_get_device(mtd, FL_WRITING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08002921 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002922 ops.len = len;
2923 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08002924 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002925 ret = nand_do_write_ops(mtd, to, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002926 *retlen = ops.retlen;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002927 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002928 return ret;
2929}
2930
2931/**
2932 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002933 * @mtd: MTD device structure
2934 * @to: offset to write to
2935 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002936 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002937 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002938 */
2939static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2940 struct mtd_oob_ops *ops)
2941{
Adrian Hunter03736152007-01-31 17:58:29 +02002942 int chipnr, page, status, len;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002943 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
Brian Norris289c0522011-07-19 10:06:09 -07002945 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302946 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Boris BREZILLON29f10582016-03-07 10:46:52 +01002948 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02002949
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002951 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07002952 pr_debug("%s: attempt to write past end of page\n",
2953 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 return -EINVAL;
2955 }
2956
Adrian Hunter03736152007-01-31 17:58:29 +02002957 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002958 pr_debug("%s: attempt to start write outside oob\n",
2959 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002960 return -EINVAL;
2961 }
2962
Jason Liu775adc3d42011-02-25 13:06:18 +08002963 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002964 if (unlikely(to >= mtd->size ||
2965 ops->ooboffs + ops->ooblen >
2966 ((mtd->size >> chip->page_shift) -
2967 (to >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002968 pr_debug("%s: attempt to write beyond end of device\n",
2969 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002970 return -EINVAL;
2971 }
2972
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002973 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002974
2975 /*
2976 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2977 * of my DiskOnChip 2000 test units) will clear the whole data page too
2978 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2979 * it in the doc2000 driver in August 1999. dwmw2.
2980 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02002981 nand_reset(chip, chipnr);
2982
2983 chip->select_chip(mtd, chipnr);
2984
2985 /* Shift to get page */
2986 page = (int)(to >> chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
2988 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002989 if (nand_check_wp(mtd)) {
2990 chip->select_chip(mtd, -1);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002991 return -EROFS;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002992 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002993
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002995 if (page == chip->pagebuf)
2996 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02002998 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07002999
Brian Norris0612b9d2011-08-30 18:45:40 -07003000 if (ops->mode == MTD_OPS_RAW)
Brian Norris9ce244b2011-08-30 18:45:37 -07003001 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
3002 else
3003 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003004
Huang Shijieb0bb6902012-11-19 14:43:29 +08003005 chip->select_chip(mtd, -1);
3006
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003007 if (status)
3008 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Vitaly Wool70145682006-11-03 18:20:38 +03003010 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003012 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003013}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003015/**
3016 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07003017 * @mtd: MTD device structure
3018 * @to: offset to write to
3019 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003020 */
3021static int nand_write_oob(struct mtd_info *mtd, loff_t to,
3022 struct mtd_oob_ops *ops)
3023{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003024 int ret = -ENOTSUPP;
3025
3026 ops->retlen = 0;
3027
3028 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03003029 if (ops->datbuf && (to + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07003030 pr_debug("%s: attempt to write beyond end of device\n",
3031 __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003032 return -EINVAL;
3033 }
3034
Huang Shijie6a8214a2012-11-19 14:43:30 +08003035 nand_get_device(mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003036
Florian Fainellif8ac0412010-09-07 13:23:43 +02003037 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07003038 case MTD_OPS_PLACE_OOB:
3039 case MTD_OPS_AUTO_OOB:
3040 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003041 break;
3042
3043 default:
3044 goto out;
3045 }
3046
3047 if (!ops->datbuf)
3048 ret = nand_do_write_oob(mtd, to, ops);
3049 else
3050 ret = nand_do_write_ops(mtd, to, ops);
3051
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003052out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003053 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 return ret;
3055}
3056
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057/**
Brian Norris49c50b92014-05-06 16:02:19 -07003058 * single_erase - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003059 * @mtd: MTD device structure
3060 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 *
Brian Norris49c50b92014-05-06 16:02:19 -07003062 * Standard erase command for NAND chips. Returns NAND status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 */
Brian Norris49c50b92014-05-06 16:02:19 -07003064static int single_erase(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003066 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003068 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
3069 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Brian Norris49c50b92014-05-06 16:02:19 -07003070
3071 return chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072}
3073
3074/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003076 * @mtd: MTD device structure
3077 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003079 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003081static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
David Woodhousee0c7d762006-05-13 18:07:53 +01003083 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003087 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003088 * @mtd: MTD device structure
3089 * @instr: erase instruction
3090 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003092 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003094int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
3095 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096{
Adrian Hunter69423d92008-12-10 13:37:21 +00003097 int page, status, pages_per_block, ret, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01003098 struct nand_chip *chip = mtd_to_nand(mtd);
Adrian Hunter69423d92008-12-10 13:37:21 +00003099 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
Brian Norris289c0522011-07-19 10:06:09 -07003101 pr_debug("%s: start = 0x%012llx, len = %llu\n",
3102 __func__, (unsigned long long)instr->addr,
3103 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05303105 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08003109 nand_get_device(mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
3111 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003112 page = (int)(instr->addr >> chip->page_shift);
3113 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
3115 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003116 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
3118 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003119 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 /* Check, if it is write protected */
3122 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07003123 pr_debug("%s: device is write protected!\n",
3124 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 instr->state = MTD_ERASE_FAILED;
3126 goto erase_exit;
3127 }
3128
3129 /* Loop through the pages */
3130 len = instr->len;
3131
3132 instr->state = MTD_ERASING;
3133
3134 while (len) {
Wolfram Sang12183a22011-12-21 23:01:20 +01003135 /* Check if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003136 if (nand_block_checkbad(mtd, ((loff_t) page) <<
Archit Taneja9f3e0422016-02-03 14:29:49 +05303137 chip->page_shift, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07003138 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
3139 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 instr->state = MTD_ERASE_FAILED;
3141 goto erase_exit;
3142 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003143
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003144 /*
3145 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07003146 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003147 */
3148 if (page <= chip->pagebuf && chip->pagebuf <
3149 (page + pages_per_block))
3150 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Brian Norris49c50b92014-05-06 16:02:19 -07003152 status = chip->erase(mtd, page & chip->pagemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003154 /*
3155 * See if operation failed and additional status checks are
3156 * available
3157 */
3158 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
3159 status = chip->errstat(mtd, chip, FL_ERASING,
3160 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00003161
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00003163 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07003164 pr_debug("%s: failed erase, page 0x%08x\n",
3165 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00003167 instr->fail_addr =
3168 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 goto erase_exit;
3170 }
David A. Marlin30f464b2005-01-17 18:35:25 +00003171
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 /* Increment page address and decrement length */
Dan Carpenterdaae74c2013-08-09 12:49:05 +03003173 len -= (1ULL << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 page += pages_per_block;
3175
3176 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003177 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003179 chip->select_chip(mtd, -1);
3180 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 }
3182 }
3183 instr->state = MTD_ERASE_DONE;
3184
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003185erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
3187 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
3189 /* Deselect and wake up anyone waiting on the device */
Huang Shijieb0bb6902012-11-19 14:43:29 +08003190 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 nand_release_device(mtd);
3192
David Woodhouse49defc02007-10-06 15:01:59 -04003193 /* Do call back function */
3194 if (!ret)
3195 mtd_erase_callback(instr);
3196
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 /* Return more or less happy */
3198 return ret;
3199}
3200
3201/**
3202 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07003203 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003205 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003207static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208{
Brian Norris289c0522011-07-19 10:06:09 -07003209 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
3211 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08003212 nand_get_device(mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01003214 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215}
3216
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003218 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003219 * @mtd: MTD device structure
3220 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003222static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223{
Archit Taneja9f3e0422016-02-03 14:29:49 +05303224 struct nand_chip *chip = mtd_to_nand(mtd);
3225 int chipnr = (int)(offs >> chip->chip_shift);
3226 int ret;
3227
3228 /* Select the NAND device */
3229 nand_get_device(mtd, FL_READING);
3230 chip->select_chip(mtd, chipnr);
3231
3232 ret = nand_block_checkbad(mtd, offs, 0);
3233
3234 chip->select_chip(mtd, -1);
3235 nand_release_device(mtd);
3236
3237 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238}
3239
3240/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003241 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003242 * @mtd: MTD device structure
3243 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003245static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 int ret;
3248
Florian Fainellif8ac0412010-09-07 13:23:43 +02003249 ret = nand_block_isbad(mtd, ofs);
3250 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07003251 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 if (ret > 0)
3253 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01003254 return ret;
3255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
Brian Norris5a0edb22013-07-30 17:52:58 -07003257 return nand_block_markbad_lowlevel(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258}
3259
3260/**
Zach Brown56718422017-01-10 13:30:20 -06003261 * nand_max_bad_blocks - [MTD Interface] Max number of bad blocks for an mtd
3262 * @mtd: MTD device structure
3263 * @ofs: offset relative to mtd start
3264 * @len: length of mtd
3265 */
3266static int nand_max_bad_blocks(struct mtd_info *mtd, loff_t ofs, size_t len)
3267{
3268 struct nand_chip *chip = mtd_to_nand(mtd);
3269 u32 part_start_block;
3270 u32 part_end_block;
3271 u32 part_start_die;
3272 u32 part_end_die;
3273
3274 /*
3275 * max_bb_per_die and blocks_per_die used to determine
3276 * the maximum bad block count.
3277 */
3278 if (!chip->max_bb_per_die || !chip->blocks_per_die)
3279 return -ENOTSUPP;
3280
3281 /* Get the start and end of the partition in erase blocks. */
3282 part_start_block = mtd_div_by_eb(ofs, mtd);
3283 part_end_block = mtd_div_by_eb(len, mtd) + part_start_block - 1;
3284
3285 /* Get the start and end LUNs of the partition. */
3286 part_start_die = part_start_block / chip->blocks_per_die;
3287 part_end_die = part_end_block / chip->blocks_per_die;
3288
3289 /*
3290 * Look up the bad blocks per unit and multiply by the number of units
3291 * that the partition spans.
3292 */
3293 return chip->max_bb_per_die * (part_end_die - part_start_die + 1);
3294}
3295
3296/**
Huang Shijie7db03ec2012-09-13 14:57:52 +08003297 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
3298 * @mtd: MTD device structure
3299 * @chip: nand chip info structure
3300 * @addr: feature address.
3301 * @subfeature_param: the subfeature parameters, a four bytes array.
3302 */
3303static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
3304 int addr, uint8_t *subfeature_param)
3305{
3306 int status;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003307 int i;
Huang Shijie7db03ec2012-09-13 14:57:52 +08003308
David Mosbergerd914c932013-05-29 15:30:13 +03003309 if (!chip->onfi_version ||
3310 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3311 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003312 return -EINVAL;
3313
3314 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003315 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3316 chip->write_byte(mtd, subfeature_param[i]);
3317
Huang Shijie7db03ec2012-09-13 14:57:52 +08003318 status = chip->waitfunc(mtd, chip);
3319 if (status & NAND_STATUS_FAIL)
3320 return -EIO;
3321 return 0;
3322}
3323
3324/**
3325 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
3326 * @mtd: MTD device structure
3327 * @chip: nand chip info structure
3328 * @addr: feature address.
3329 * @subfeature_param: the subfeature parameters, a four bytes array.
3330 */
3331static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
3332 int addr, uint8_t *subfeature_param)
3333{
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003334 int i;
3335
David Mosbergerd914c932013-05-29 15:30:13 +03003336 if (!chip->onfi_version ||
3337 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3338 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003339 return -EINVAL;
3340
Huang Shijie7db03ec2012-09-13 14:57:52 +08003341 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003342 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3343 *subfeature_param++ = chip->read_byte(mtd);
Huang Shijie7db03ec2012-09-13 14:57:52 +08003344 return 0;
3345}
3346
3347/**
Vitaly Wool962034f2005-09-15 14:58:53 +01003348 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003349 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003350 */
3351static int nand_suspend(struct mtd_info *mtd)
3352{
Huang Shijie6a8214a2012-11-19 14:43:30 +08003353 return nand_get_device(mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01003354}
3355
3356/**
3357 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003358 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003359 */
3360static void nand_resume(struct mtd_info *mtd)
3361{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003362 struct nand_chip *chip = mtd_to_nand(mtd);
Vitaly Wool962034f2005-09-15 14:58:53 +01003363
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003364 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01003365 nand_release_device(mtd);
3366 else
Brian Norrisd0370212011-07-19 10:06:08 -07003367 pr_err("%s called for a chip which is not in suspended state\n",
3368 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01003369}
3370
Scott Branden72ea4032014-11-20 11:18:05 -08003371/**
3372 * nand_shutdown - [MTD Interface] Finish the current NAND operation and
3373 * prevent further operations
3374 * @mtd: MTD device structure
3375 */
3376static void nand_shutdown(struct mtd_info *mtd)
3377{
Brian Norris9ca641b2015-11-09 16:37:28 -08003378 nand_get_device(mtd, FL_PM_SUSPENDED);
Scott Branden72ea4032014-11-20 11:18:05 -08003379}
3380
Brian Norris8b6e50c2011-05-25 14:59:01 -07003381/* Set default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003382static void nand_set_defaults(struct nand_chip *chip)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003383{
Boris Brezillon29a198a2016-05-24 20:17:48 +02003384 unsigned int busw = chip->options & NAND_BUSWIDTH_16;
3385
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003387 if (!chip->chip_delay)
3388 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389
3390 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003391 if (chip->cmdfunc == NULL)
3392 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
3394 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003395 if (chip->waitfunc == NULL)
3396 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003398 if (!chip->select_chip)
3399 chip->select_chip = nand_select_chip;
Brian Norris68e80782013-07-18 01:17:02 -07003400
Huang Shijie4204ccc2013-08-16 10:10:07 +08003401 /* set for ONFI nand */
3402 if (!chip->onfi_set_features)
3403 chip->onfi_set_features = nand_onfi_set_features;
3404 if (!chip->onfi_get_features)
3405 chip->onfi_get_features = nand_onfi_get_features;
3406
Brian Norris68e80782013-07-18 01:17:02 -07003407 /* If called twice, pointers that depend on busw may need to be reset */
3408 if (!chip->read_byte || chip->read_byte == nand_read_byte)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003409 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
3410 if (!chip->read_word)
3411 chip->read_word = nand_read_word;
3412 if (!chip->block_bad)
3413 chip->block_bad = nand_block_bad;
3414 if (!chip->block_markbad)
3415 chip->block_markbad = nand_default_block_markbad;
Brian Norris68e80782013-07-18 01:17:02 -07003416 if (!chip->write_buf || chip->write_buf == nand_write_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003417 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003418 if (!chip->write_byte || chip->write_byte == nand_write_byte)
3419 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
Brian Norris68e80782013-07-18 01:17:02 -07003420 if (!chip->read_buf || chip->read_buf == nand_read_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003421 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003422 if (!chip->scan_bbt)
3423 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003424
3425 if (!chip->controller) {
3426 chip->controller = &chip->hwcontrol;
Marc Gonzalezd45bc582016-07-27 11:23:52 +02003427 nand_hw_control_init(chip->controller);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003428 }
3429
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003430}
3431
Brian Norris8b6e50c2011-05-25 14:59:01 -07003432/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003433static void sanitize_string(uint8_t *s, size_t len)
3434{
3435 ssize_t i;
3436
Brian Norris8b6e50c2011-05-25 14:59:01 -07003437 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003438 s[len - 1] = 0;
3439
Brian Norris8b6e50c2011-05-25 14:59:01 -07003440 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003441 for (i = 0; i < len - 1; i++) {
3442 if (s[i] < ' ' || s[i] > 127)
3443 s[i] = '?';
3444 }
3445
Brian Norris8b6e50c2011-05-25 14:59:01 -07003446 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003447 strim(s);
3448}
3449
3450static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
3451{
3452 int i;
3453 while (len--) {
3454 crc ^= *p++ << 8;
3455 for (i = 0; i < 8; i++)
3456 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
3457 }
3458
3459 return crc;
3460}
3461
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003462/* Parse the Extended Parameter Page. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003463static int nand_flash_detect_ext_param_page(struct nand_chip *chip,
3464 struct nand_onfi_params *p)
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003465{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003466 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003467 struct onfi_ext_param_page *ep;
3468 struct onfi_ext_section *s;
3469 struct onfi_ext_ecc_info *ecc;
3470 uint8_t *cursor;
3471 int ret = -EINVAL;
3472 int len;
3473 int i;
3474
3475 len = le16_to_cpu(p->ext_param_page_length) * 16;
3476 ep = kmalloc(len, GFP_KERNEL);
Brian Norris5cb13272013-09-16 17:59:20 -07003477 if (!ep)
3478 return -ENOMEM;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003479
3480 /* Send our own NAND_CMD_PARAM. */
3481 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3482
3483 /* Use the Change Read Column command to skip the ONFI param pages. */
3484 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
3485 sizeof(*p) * p->num_of_param_pages , -1);
3486
3487 /* Read out the Extended Parameter Page. */
3488 chip->read_buf(mtd, (uint8_t *)ep, len);
3489 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
3490 != le16_to_cpu(ep->crc))) {
3491 pr_debug("fail in the CRC.\n");
3492 goto ext_out;
3493 }
3494
3495 /*
3496 * Check the signature.
3497 * Do not strictly follow the ONFI spec, maybe changed in future.
3498 */
3499 if (strncmp(ep->sig, "EPPS", 4)) {
3500 pr_debug("The signature is invalid.\n");
3501 goto ext_out;
3502 }
3503
3504 /* find the ECC section. */
3505 cursor = (uint8_t *)(ep + 1);
3506 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
3507 s = ep->sections + i;
3508 if (s->type == ONFI_SECTION_TYPE_2)
3509 break;
3510 cursor += s->length * 16;
3511 }
3512 if (i == ONFI_EXT_SECTION_MAX) {
3513 pr_debug("We can not find the ECC section.\n");
3514 goto ext_out;
3515 }
3516
3517 /* get the info we want. */
3518 ecc = (struct onfi_ext_ecc_info *)cursor;
3519
Brian Norris4ae7d222013-09-16 18:20:21 -07003520 if (!ecc->codeword_size) {
3521 pr_debug("Invalid codeword size\n");
3522 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003523 }
3524
Brian Norris4ae7d222013-09-16 18:20:21 -07003525 chip->ecc_strength_ds = ecc->ecc_bits;
3526 chip->ecc_step_ds = 1 << ecc->codeword_size;
Brian Norris5cb13272013-09-16 17:59:20 -07003527 ret = 0;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003528
3529ext_out:
3530 kfree(ep);
3531 return ret;
3532}
3533
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003534/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003535 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003536 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003537static int nand_flash_detect_onfi(struct nand_chip *chip)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003538{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003539 struct mtd_info *mtd = nand_to_mtd(chip);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003540 struct nand_onfi_params *p = &chip->onfi_params;
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003541 int i, j;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003542 int val;
3543
Brian Norris7854d3f2011-06-23 14:12:08 -07003544 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003545 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
3546 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
3547 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
3548 return 0;
3549
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003550 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3551 for (i = 0; i < 3; i++) {
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003552 for (j = 0; j < sizeof(*p); j++)
3553 ((uint8_t *)p)[j] = chip->read_byte(mtd);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003554 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
3555 le16_to_cpu(p->crc)) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003556 break;
3557 }
3558 }
3559
Brian Norrisc7f23a72013-08-13 10:51:55 -07003560 if (i == 3) {
3561 pr_err("Could not find valid ONFI parameter page; aborting\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003562 return 0;
Brian Norrisc7f23a72013-08-13 10:51:55 -07003563 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003564
Brian Norris8b6e50c2011-05-25 14:59:01 -07003565 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003566 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003567 if (val & (1 << 5))
3568 chip->onfi_version = 23;
3569 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003570 chip->onfi_version = 22;
3571 else if (val & (1 << 3))
3572 chip->onfi_version = 21;
3573 else if (val & (1 << 2))
3574 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003575 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003576 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003577
3578 if (!chip->onfi_version) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003579 pr_info("unsupported ONFI version: %d\n", val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003580 return 0;
3581 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003582
3583 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3584 sanitize_string(p->model, sizeof(p->model));
3585 if (!mtd->name)
3586 mtd->name = p->model;
Brian Norris4355b702013-08-27 18:45:10 -07003587
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003588 mtd->writesize = le32_to_cpu(p->byte_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003589
3590 /*
3591 * pages_per_block and blocks_per_lun may not be a power-of-2 size
3592 * (don't ask me who thought of this...). MTD assumes that these
3593 * dimensions will be power-of-2, so just truncate the remaining area.
3594 */
3595 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3596 mtd->erasesize *= mtd->writesize;
3597
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003598 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003599
3600 /* See erasesize comment */
3601 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
Matthieu CASTET63795752012-03-19 15:35:25 +01003602 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
Huang Shijie13fbd172013-09-25 14:58:13 +08003603 chip->bits_per_cell = p->bits_per_cell;
Huang Shijiee2985fc2013-05-17 11:17:30 +08003604
Zach Brown34da5f52017-01-10 13:30:21 -06003605 chip->max_bb_per_die = le16_to_cpu(p->bb_per_lun);
3606 chip->blocks_per_die = le32_to_cpu(p->blocks_per_lun);
3607
Huang Shijiee2985fc2013-05-17 11:17:30 +08003608 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02003609 chip->options |= NAND_BUSWIDTH_16;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003610
Huang Shijie10c86ba2013-05-17 11:17:26 +08003611 if (p->ecc_bits != 0xff) {
3612 chip->ecc_strength_ds = p->ecc_bits;
3613 chip->ecc_step_ds = 512;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003614 } else if (chip->onfi_version >= 21 &&
3615 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
3616
3617 /*
3618 * The nand_flash_detect_ext_param_page() uses the
3619 * Change Read Column command which maybe not supported
3620 * by the chip->cmdfunc. So try to update the chip->cmdfunc
3621 * now. We do not replace user supplied command function.
3622 */
3623 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3624 chip->cmdfunc = nand_command_lp;
3625
3626 /* The Extended Parameter Page is supported since ONFI 2.1. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003627 if (nand_flash_detect_ext_param_page(chip, p))
Brian Norrisc7f23a72013-08-13 10:51:55 -07003628 pr_warn("Failed to detect ONFI extended param page\n");
3629 } else {
3630 pr_warn("Could not retrieve ONFI ECC requirements\n");
Huang Shijie10c86ba2013-05-17 11:17:26 +08003631 }
3632
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003633 return 1;
3634}
3635
3636/*
Huang Shijie91361812014-02-21 13:39:40 +08003637 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
3638 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003639static int nand_flash_detect_jedec(struct nand_chip *chip)
Huang Shijie91361812014-02-21 13:39:40 +08003640{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003641 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie91361812014-02-21 13:39:40 +08003642 struct nand_jedec_params *p = &chip->jedec_params;
3643 struct jedec_ecc_info *ecc;
3644 int val;
3645 int i, j;
3646
3647 /* Try JEDEC for unknown chip or LP */
3648 chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1);
3649 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' ||
3650 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' ||
3651 chip->read_byte(mtd) != 'C')
3652 return 0;
3653
3654 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1);
3655 for (i = 0; i < 3; i++) {
3656 for (j = 0; j < sizeof(*p); j++)
3657 ((uint8_t *)p)[j] = chip->read_byte(mtd);
3658
3659 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
3660 le16_to_cpu(p->crc))
3661 break;
3662 }
3663
3664 if (i == 3) {
3665 pr_err("Could not find valid JEDEC parameter page; aborting\n");
3666 return 0;
3667 }
3668
3669 /* Check version */
3670 val = le16_to_cpu(p->revision);
3671 if (val & (1 << 2))
3672 chip->jedec_version = 10;
3673 else if (val & (1 << 1))
3674 chip->jedec_version = 1; /* vendor specific version */
3675
3676 if (!chip->jedec_version) {
3677 pr_info("unsupported JEDEC version: %d\n", val);
3678 return 0;
3679 }
3680
3681 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3682 sanitize_string(p->model, sizeof(p->model));
3683 if (!mtd->name)
3684 mtd->name = p->model;
3685
3686 mtd->writesize = le32_to_cpu(p->byte_per_page);
3687
3688 /* Please reference to the comment for nand_flash_detect_onfi. */
3689 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3690 mtd->erasesize *= mtd->writesize;
3691
3692 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3693
3694 /* Please reference to the comment for nand_flash_detect_onfi. */
3695 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3696 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3697 chip->bits_per_cell = p->bits_per_cell;
3698
3699 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02003700 chip->options |= NAND_BUSWIDTH_16;
Huang Shijie91361812014-02-21 13:39:40 +08003701
3702 /* ECC info */
3703 ecc = &p->ecc_info[0];
3704
3705 if (ecc->codeword_size >= 9) {
3706 chip->ecc_strength_ds = ecc->ecc_bits;
3707 chip->ecc_step_ds = 1 << ecc->codeword_size;
3708 } else {
3709 pr_warn("Invalid codeword size\n");
3710 }
3711
3712 return 1;
3713}
3714
3715/*
Brian Norrise3b88bd2012-09-24 20:40:52 -07003716 * nand_id_has_period - Check if an ID string has a given wraparound period
3717 * @id_data: the ID string
3718 * @arrlen: the length of the @id_data array
3719 * @period: the period of repitition
3720 *
3721 * Check if an ID string is repeated within a given sequence of bytes at
3722 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Brian Norrisd4d4f1b2012-11-14 21:54:20 -08003723 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Brian Norrise3b88bd2012-09-24 20:40:52 -07003724 * if the repetition has a period of @period; otherwise, returns zero.
3725 */
3726static int nand_id_has_period(u8 *id_data, int arrlen, int period)
3727{
3728 int i, j;
3729 for (i = 0; i < period; i++)
3730 for (j = i + period; j < arrlen; j += period)
3731 if (id_data[i] != id_data[j])
3732 return 0;
3733 return 1;
3734}
3735
3736/*
3737 * nand_id_len - Get the length of an ID string returned by CMD_READID
3738 * @id_data: the ID string
3739 * @arrlen: the length of the @id_data array
3740
3741 * Returns the length of the ID string, according to known wraparound/trailing
3742 * zero patterns. If no pattern exists, returns the length of the array.
3743 */
3744static int nand_id_len(u8 *id_data, int arrlen)
3745{
3746 int last_nonzero, period;
3747
3748 /* Find last non-zero byte */
3749 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
3750 if (id_data[last_nonzero])
3751 break;
3752
3753 /* All zeros */
3754 if (last_nonzero < 0)
3755 return 0;
3756
3757 /* Calculate wraparound period */
3758 for (period = 1; period < arrlen; period++)
3759 if (nand_id_has_period(id_data, arrlen, period))
3760 break;
3761
3762 /* There's a repeated pattern */
3763 if (period < arrlen)
3764 return period;
3765
3766 /* There are trailing zeros */
3767 if (last_nonzero < arrlen - 1)
3768 return last_nonzero + 1;
3769
3770 /* No pattern detected */
3771 return arrlen;
3772}
3773
Huang Shijie7db906b2013-09-25 14:58:11 +08003774/* Extract the bits of per cell from the 3rd byte of the extended ID */
3775static int nand_get_bits_per_cell(u8 cellinfo)
3776{
3777 int bits;
3778
3779 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
3780 bits >>= NAND_CI_CELLTYPE_SHIFT;
3781 return bits + 1;
3782}
3783
Brian Norrise3b88bd2012-09-24 20:40:52 -07003784/*
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003785 * Many new NAND share similar device ID codes, which represent the size of the
3786 * chip. The rest of the parameters must be decoded according to generic or
3787 * manufacturer-specific "extended ID" decoding patterns.
3788 */
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003789void nand_decode_ext_id(struct nand_chip *chip)
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003790{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003791 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon9b2d61f2016-06-08 10:34:57 +02003792 int extid;
Boris Brezillon7f501f02016-05-24 19:20:05 +02003793 u8 *id_data = chip->id.data;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003794 /* The 3rd id byte holds MLC / multichip data */
Huang Shijie7db906b2013-09-25 14:58:11 +08003795 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003796 /* The 4th id byte is the important one */
3797 extid = id_data[3];
3798
Boris Brezillon01389b62016-06-08 10:30:18 +02003799 /* Calc pagesize */
3800 mtd->writesize = 1024 << (extid & 0x03);
3801 extid >>= 2;
3802 /* Calc oobsize */
3803 mtd->oobsize = (8 << (extid & 0x01)) * (mtd->writesize >> 9);
3804 extid >>= 2;
3805 /* Calc blocksize. Blocksize is multiples of 64KiB */
3806 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3807 extid >>= 2;
3808 /* Get buswidth information */
3809 if (extid & 0x1)
3810 chip->options |= NAND_BUSWIDTH_16;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003811}
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003812EXPORT_SYMBOL_GPL(nand_decode_ext_id);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003813
3814/*
Brian Norrisf23a4812012-09-24 20:40:51 -07003815 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
3816 * decodes a matching ID table entry and assigns the MTD size parameters for
3817 * the chip.
3818 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02003819static void nand_decode_id(struct nand_chip *chip, struct nand_flash_dev *type)
Brian Norrisf23a4812012-09-24 20:40:51 -07003820{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003821 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norrisf23a4812012-09-24 20:40:51 -07003822
3823 mtd->erasesize = type->erasesize;
3824 mtd->writesize = type->pagesize;
3825 mtd->oobsize = mtd->writesize / 32;
Brian Norrisf23a4812012-09-24 20:40:51 -07003826
Huang Shijie1c195e92013-09-25 14:58:12 +08003827 /* All legacy ID NAND are small-page, SLC */
3828 chip->bits_per_cell = 1;
Brian Norrisf23a4812012-09-24 20:40:51 -07003829}
3830
3831/*
Brian Norris7e74c2d2012-09-24 20:40:49 -07003832 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
3833 * heuristic patterns using various detected parameters (e.g., manufacturer,
3834 * page size, cell-type information).
3835 */
Boris Brezillon7f501f02016-05-24 19:20:05 +02003836static void nand_decode_bbm_options(struct nand_chip *chip)
Brian Norris7e74c2d2012-09-24 20:40:49 -07003837{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003838 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07003839
3840 /* Set the bad block position */
3841 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
3842 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
3843 else
3844 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Brian Norris7e74c2d2012-09-24 20:40:49 -07003845}
3846
Huang Shijieec6e87e2013-03-15 11:01:00 +08003847static inline bool is_full_id_nand(struct nand_flash_dev *type)
3848{
3849 return type->id_len;
3850}
3851
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003852static bool find_full_id_nand(struct nand_chip *chip,
Boris Brezillon29a198a2016-05-24 20:17:48 +02003853 struct nand_flash_dev *type)
Huang Shijieec6e87e2013-03-15 11:01:00 +08003854{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003855 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon7f501f02016-05-24 19:20:05 +02003856 u8 *id_data = chip->id.data;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003857
Huang Shijieec6e87e2013-03-15 11:01:00 +08003858 if (!strncmp(type->id, id_data, type->id_len)) {
3859 mtd->writesize = type->pagesize;
3860 mtd->erasesize = type->erasesize;
3861 mtd->oobsize = type->oobsize;
3862
Huang Shijie7db906b2013-09-25 14:58:11 +08003863 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Huang Shijieec6e87e2013-03-15 11:01:00 +08003864 chip->chipsize = (uint64_t)type->chipsize << 20;
3865 chip->options |= type->options;
Huang Shijie57219342013-05-17 11:17:32 +08003866 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
3867 chip->ecc_step_ds = NAND_ECC_STEP(type);
Boris BREZILLON57a94e22014-09-22 20:11:50 +02003868 chip->onfi_timing_mode_default =
3869 type->onfi_timing_mode_default;
Huang Shijieec6e87e2013-03-15 11:01:00 +08003870
Cai Zhiyong092b6a12013-12-25 21:19:21 +08003871 if (!mtd->name)
3872 mtd->name = type->name;
3873
Huang Shijieec6e87e2013-03-15 11:01:00 +08003874 return true;
3875 }
3876 return false;
3877}
3878
Brian Norris7e74c2d2012-09-24 20:40:49 -07003879/*
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003880 * Manufacturer detection. Only used when the NAND is not ONFI or JEDEC
3881 * compliant and does not have a full-id or legacy-id entry in the nand_ids
3882 * table.
3883 */
3884static void nand_manufacturer_detect(struct nand_chip *chip)
3885{
3886 /*
3887 * Try manufacturer detection if available and use
3888 * nand_decode_ext_id() otherwise.
3889 */
3890 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
3891 chip->manufacturer.desc->ops->detect)
3892 chip->manufacturer.desc->ops->detect(chip);
3893 else
3894 nand_decode_ext_id(chip);
3895}
3896
3897/*
3898 * Manufacturer initialization. This function is called for all NANDs including
3899 * ONFI and JEDEC compliant ones.
3900 * Manufacturer drivers should put all their specific initialization code in
3901 * their ->init() hook.
3902 */
3903static int nand_manufacturer_init(struct nand_chip *chip)
3904{
3905 if (!chip->manufacturer.desc || !chip->manufacturer.desc->ops ||
3906 !chip->manufacturer.desc->ops->init)
3907 return 0;
3908
3909 return chip->manufacturer.desc->ops->init(chip);
3910}
3911
3912/*
3913 * Manufacturer cleanup. This function is called for all NANDs including
3914 * ONFI and JEDEC compliant ones.
3915 * Manufacturer drivers should put all their specific cleanup code in their
3916 * ->cleanup() hook.
3917 */
3918static void nand_manufacturer_cleanup(struct nand_chip *chip)
3919{
3920 /* Release manufacturer private data */
3921 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
3922 chip->manufacturer.desc->ops->cleanup)
3923 chip->manufacturer.desc->ops->cleanup(chip);
3924}
3925
3926/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003927 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003928 */
Boris Brezillon7bb42792016-05-24 20:55:33 +02003929static int nand_detect(struct nand_chip *chip, struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003930{
Boris Brezillonbcc678c2017-01-07 15:48:25 +01003931 const struct nand_manufacturer *manufacturer;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02003932 struct mtd_info *mtd = nand_to_mtd(chip);
Cai Zhiyongbb770822013-12-25 20:11:15 +08003933 int busw;
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003934 int i, ret;
Boris Brezillon7f501f02016-05-24 19:20:05 +02003935 u8 *id_data = chip->id.data;
3936 u8 maf_id, dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
Karl Beldanef89a882008-09-15 14:37:29 +02003938 /*
3939 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003940 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02003941 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02003942 nand_reset(chip, 0);
3943
3944 /* Select the device */
3945 chip->select_chip(mtd, 0);
Karl Beldanef89a882008-09-15 14:37:29 +02003946
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003948 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949
3950 /* Read manufacturer and device IDs */
Boris Brezillon7f501f02016-05-24 19:20:05 +02003951 maf_id = chip->read_byte(mtd);
3952 dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Brian Norris8b6e50c2011-05-25 14:59:01 -07003954 /*
3955 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01003956 * interface concerns can cause random data which looks like a
3957 * possibly credible NAND flash to appear. If the two results do
3958 * not match, ignore the device completely.
3959 */
3960
3961 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3962
Brian Norris4aef9b72012-09-24 20:40:48 -07003963 /* Read entire ID string */
3964 for (i = 0; i < 8; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07003965 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01003966
Boris Brezillon7f501f02016-05-24 19:20:05 +02003967 if (id_data[0] != maf_id || id_data[1] != dev_id) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003968 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02003969 maf_id, dev_id, id_data[0], id_data[1]);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09003970 return -ENODEV;
Ben Dooksed8165c2008-04-14 14:58:58 +01003971 }
3972
Boris Brezillon7f501f02016-05-24 19:20:05 +02003973 chip->id.len = nand_id_len(id_data, 8);
3974
Boris Brezillonabbe26d2016-06-08 09:32:55 +02003975 /* Try to identify manufacturer */
3976 manufacturer = nand_get_manufacturer(maf_id);
3977 chip->manufacturer.desc = manufacturer;
3978
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003979 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00003980 type = nand_flash_ids;
3981
Boris Brezillon29a198a2016-05-24 20:17:48 +02003982 /*
3983 * Save the NAND_BUSWIDTH_16 flag before letting auto-detection logic
3984 * override it.
3985 * This is required to make sure initial NAND bus width set by the
3986 * NAND controller driver is coherent with the real NAND bus width
3987 * (extracted by auto-detection code).
3988 */
3989 busw = chip->options & NAND_BUSWIDTH_16;
3990
3991 /*
3992 * The flag is only set (never cleared), reset it to its default value
3993 * before starting auto-detection.
3994 */
3995 chip->options &= ~NAND_BUSWIDTH_16;
3996
Huang Shijieec6e87e2013-03-15 11:01:00 +08003997 for (; type->name != NULL; type++) {
3998 if (is_full_id_nand(type)) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02003999 if (find_full_id_nand(chip, type))
Huang Shijieec6e87e2013-03-15 11:01:00 +08004000 goto ident_done;
Boris Brezillon7f501f02016-05-24 19:20:05 +02004001 } else if (dev_id == type->dev_id) {
Brian Norrisdb5b09f2015-05-22 10:43:12 -07004002 break;
Huang Shijieec6e87e2013-03-15 11:01:00 +08004003 }
4004 }
David Woodhouse5e81e882010-02-26 18:32:56 +00004005
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004006 chip->onfi_version = 0;
4007 if (!type->name || !type->pagesize) {
Masahiro Yamada35fc5192014-04-09 16:26:26 +09004008 /* Check if the chip is ONFI compliant */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004009 if (nand_flash_detect_onfi(chip))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02004010 goto ident_done;
Huang Shijie91361812014-02-21 13:39:40 +08004011
4012 /* Check if the chip is JEDEC compliant */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004013 if (nand_flash_detect_jedec(chip))
Huang Shijie91361812014-02-21 13:39:40 +08004014 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004015 }
4016
David Woodhouse5e81e882010-02-26 18:32:56 +00004017 if (!type->name)
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004018 return -ENODEV;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004019
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02004020 if (!mtd->name)
4021 mtd->name = type->name;
4022
Adrian Hunter69423d92008-12-10 13:37:21 +00004023 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004024
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004025 if (!type->pagesize)
4026 nand_manufacturer_detect(chip);
4027 else
Boris Brezillon29a198a2016-05-24 20:17:48 +02004028 nand_decode_id(chip, type);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004029
Brian Norrisbf7a01b2012-07-13 09:28:24 -07004030 /* Get chip options */
4031 chip->options |= type->options;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004032
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004033ident_done:
4034
Matthieu CASTET64b37b22012-11-06 11:51:44 +01004035 if (chip->options & NAND_BUSWIDTH_AUTO) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02004036 WARN_ON(busw & NAND_BUSWIDTH_16);
4037 nand_set_defaults(chip);
Matthieu CASTET64b37b22012-11-06 11:51:44 +01004038 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
4039 /*
4040 * Check, if buswidth is correct. Hardware drivers should set
4041 * chip correct!
4042 */
Ezequiel Garcia20171642013-11-25 08:30:31 -03004043 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004044 maf_id, dev_id);
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004045 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4046 mtd->name);
Boris Brezillon29a198a2016-05-24 20:17:48 +02004047 pr_warn("bus width %d instead of %d bits\n", busw ? 16 : 8,
4048 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004049 return -EINVAL;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004050 }
4051
Boris Brezillon7f501f02016-05-24 19:20:05 +02004052 nand_decode_bbm_options(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07004053
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004054 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004055 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07004056 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004057 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004058
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004059 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004060 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00004061 if (chip->chipsize & 0xffffffff)
4062 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004063 else {
4064 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
4065 chip->chip_shift += 32 - 1;
4066 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004067
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03004068 chip->badblockbits = 8;
Brian Norris49c50b92014-05-06 16:02:19 -07004069 chip->erase = single_erase;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004070
Brian Norris8b6e50c2011-05-25 14:59:01 -07004071 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004072 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
4073 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004074
Boris Brezillonabbe26d2016-06-08 09:32:55 +02004075 ret = nand_manufacturer_init(chip);
4076 if (ret)
4077 return ret;
4078
Ezequiel Garcia20171642013-11-25 08:30:31 -03004079 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02004080 maf_id, dev_id);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004081
4082 if (chip->onfi_version)
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004083 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4084 chip->onfi_params.model);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004085 else if (chip->jedec_version)
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004086 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4087 chip->jedec_params.model);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004088 else
Boris Brezillonbcc678c2017-01-07 15:48:25 +01004089 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
4090 type->name);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08004091
Rafał Miłecki3755a992014-10-21 00:01:04 +02004092 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
Huang Shijie3723e932013-09-25 14:58:14 +08004093 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Rafał Miłecki3755a992014-10-21 00:01:04 +02004094 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004095 return 0;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004096}
4097
Boris Brezillond48f62b2016-04-01 14:54:32 +02004098static const char * const nand_ecc_modes[] = {
4099 [NAND_ECC_NONE] = "none",
4100 [NAND_ECC_SOFT] = "soft",
4101 [NAND_ECC_HW] = "hw",
4102 [NAND_ECC_HW_SYNDROME] = "hw_syndrome",
4103 [NAND_ECC_HW_OOB_FIRST] = "hw_oob_first",
Boris Brezillond48f62b2016-04-01 14:54:32 +02004104};
4105
4106static int of_get_nand_ecc_mode(struct device_node *np)
4107{
4108 const char *pm;
4109 int err, i;
4110
4111 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4112 if (err < 0)
4113 return err;
4114
4115 for (i = 0; i < ARRAY_SIZE(nand_ecc_modes); i++)
4116 if (!strcasecmp(pm, nand_ecc_modes[i]))
4117 return i;
4118
Rafał Miłeckiae211bc2016-04-17 22:53:06 +02004119 /*
4120 * For backward compatibility we support few obsoleted values that don't
4121 * have their mappings into nand_ecc_modes_t anymore (they were merged
4122 * with other enums).
4123 */
4124 if (!strcasecmp(pm, "soft_bch"))
4125 return NAND_ECC_SOFT;
4126
Boris Brezillond48f62b2016-04-01 14:54:32 +02004127 return -ENODEV;
4128}
4129
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004130static const char * const nand_ecc_algos[] = {
4131 [NAND_ECC_HAMMING] = "hamming",
4132 [NAND_ECC_BCH] = "bch",
4133};
4134
Boris Brezillond48f62b2016-04-01 14:54:32 +02004135static int of_get_nand_ecc_algo(struct device_node *np)
4136{
4137 const char *pm;
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004138 int err, i;
Boris Brezillond48f62b2016-04-01 14:54:32 +02004139
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02004140 err = of_property_read_string(np, "nand-ecc-algo", &pm);
4141 if (!err) {
4142 for (i = NAND_ECC_HAMMING; i < ARRAY_SIZE(nand_ecc_algos); i++)
4143 if (!strcasecmp(pm, nand_ecc_algos[i]))
4144 return i;
4145 return -ENODEV;
4146 }
Boris Brezillond48f62b2016-04-01 14:54:32 +02004147
4148 /*
4149 * For backward compatibility we also read "nand-ecc-mode" checking
4150 * for some obsoleted values that were specifying ECC algorithm.
4151 */
4152 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4153 if (err < 0)
4154 return err;
4155
4156 if (!strcasecmp(pm, "soft"))
4157 return NAND_ECC_HAMMING;
4158 else if (!strcasecmp(pm, "soft_bch"))
4159 return NAND_ECC_BCH;
4160
4161 return -ENODEV;
4162}
4163
4164static int of_get_nand_ecc_step_size(struct device_node *np)
4165{
4166 int ret;
4167 u32 val;
4168
4169 ret = of_property_read_u32(np, "nand-ecc-step-size", &val);
4170 return ret ? ret : val;
4171}
4172
4173static int of_get_nand_ecc_strength(struct device_node *np)
4174{
4175 int ret;
4176 u32 val;
4177
4178 ret = of_property_read_u32(np, "nand-ecc-strength", &val);
4179 return ret ? ret : val;
4180}
4181
4182static int of_get_nand_bus_width(struct device_node *np)
4183{
4184 u32 val;
4185
4186 if (of_property_read_u32(np, "nand-bus-width", &val))
4187 return 8;
4188
4189 switch (val) {
4190 case 8:
4191 case 16:
4192 return val;
4193 default:
4194 return -EIO;
4195 }
4196}
4197
4198static bool of_get_nand_on_flash_bbt(struct device_node *np)
4199{
4200 return of_property_read_bool(np, "nand-on-flash-bbt");
4201}
4202
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004203static int nand_dt_init(struct nand_chip *chip)
Brian Norris5844fee2015-01-23 00:22:27 -08004204{
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004205 struct device_node *dn = nand_get_flash_node(chip);
Rafał Miłecki79082452016-03-23 11:19:02 +01004206 int ecc_mode, ecc_algo, ecc_strength, ecc_step;
Brian Norris5844fee2015-01-23 00:22:27 -08004207
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004208 if (!dn)
4209 return 0;
4210
Brian Norris5844fee2015-01-23 00:22:27 -08004211 if (of_get_nand_bus_width(dn) == 16)
4212 chip->options |= NAND_BUSWIDTH_16;
4213
4214 if (of_get_nand_on_flash_bbt(dn))
4215 chip->bbt_options |= NAND_BBT_USE_FLASH;
4216
4217 ecc_mode = of_get_nand_ecc_mode(dn);
Rafał Miłecki79082452016-03-23 11:19:02 +01004218 ecc_algo = of_get_nand_ecc_algo(dn);
Brian Norris5844fee2015-01-23 00:22:27 -08004219 ecc_strength = of_get_nand_ecc_strength(dn);
4220 ecc_step = of_get_nand_ecc_step_size(dn);
4221
Brian Norris5844fee2015-01-23 00:22:27 -08004222 if (ecc_mode >= 0)
4223 chip->ecc.mode = ecc_mode;
4224
Rafał Miłecki79082452016-03-23 11:19:02 +01004225 if (ecc_algo >= 0)
4226 chip->ecc.algo = ecc_algo;
4227
Brian Norris5844fee2015-01-23 00:22:27 -08004228 if (ecc_strength >= 0)
4229 chip->ecc.strength = ecc_strength;
4230
4231 if (ecc_step > 0)
4232 chip->ecc.size = ecc_step;
4233
Boris Brezillonba78ee02016-06-08 17:04:22 +02004234 if (of_property_read_bool(dn, "nand-ecc-maximize"))
4235 chip->ecc.options |= NAND_ECC_MAXIMIZE;
4236
Brian Norris5844fee2015-01-23 00:22:27 -08004237 return 0;
4238}
4239
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004240/**
David Woodhouse3b85c322006-09-25 17:06:53 +01004241 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004242 * @mtd: MTD device structure
4243 * @maxchips: number of chips to scan for
4244 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004245 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004246 * This is the first phase of the normal nand_scan() function. It reads the
4247 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004248 *
4249 */
David Woodhouse5e81e882010-02-26 18:32:56 +00004250int nand_scan_ident(struct mtd_info *mtd, int maxchips,
4251 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004252{
Cai Zhiyongbb770822013-12-25 20:11:15 +08004253 int i, nand_maf_id, nand_dev_id;
Boris BREZILLON862eba52015-12-01 12:03:03 +01004254 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris5844fee2015-01-23 00:22:27 -08004255 int ret;
4256
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01004257 ret = nand_dt_init(chip);
4258 if (ret)
4259 return ret;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004260
Brian Norrisf7a8e382016-01-05 10:39:45 -08004261 if (!mtd->name && mtd->dev.parent)
4262 mtd->name = dev_name(mtd->dev.parent);
4263
Andrey Smirnov76fe3342016-07-21 14:59:20 -07004264 if ((!chip->cmdfunc || !chip->select_chip) && !chip->cmd_ctrl) {
4265 /*
4266 * Default functions assigned for chip_select() and
4267 * cmdfunc() both expect cmd_ctrl() to be populated,
4268 * so we need to check that that's the case
4269 */
4270 pr_err("chip.cmd_ctrl() callback is not provided");
4271 return -EINVAL;
4272 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004273 /* Set the default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004274 nand_set_defaults(chip);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004275
4276 /* Read the flash type */
Boris Brezillon7bb42792016-05-24 20:55:33 +02004277 ret = nand_detect(chip, table);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004278 if (ret) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00004279 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07004280 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004281 chip->select_chip(mtd, -1);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09004282 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 }
4284
Boris Brezillon73f907f2016-10-24 16:46:20 +02004285 /* Initialize the ->data_interface field. */
Boris Brezillond8e725d2016-09-15 10:32:50 +02004286 ret = nand_init_data_interface(chip);
4287 if (ret)
4288 return ret;
4289
Boris Brezillon73f907f2016-10-24 16:46:20 +02004290 /*
4291 * Setup the data interface correctly on the chip and controller side.
4292 * This explicit call to nand_setup_data_interface() is only required
4293 * for the first die, because nand_reset() has been called before
4294 * ->data_interface and ->default_onfi_timing_mode were set.
4295 * For the other dies, nand_reset() will automatically switch to the
4296 * best mode for us.
4297 */
4298 ret = nand_setup_data_interface(chip);
4299 if (ret)
4300 return ret;
4301
Boris Brezillon7f501f02016-05-24 19:20:05 +02004302 nand_maf_id = chip->id.data[0];
4303 nand_dev_id = chip->id.data[1];
4304
Huang Shijie07300162012-11-09 16:23:45 +08004305 chip->select_chip(mtd, -1);
4306
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004307 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01004308 for (i = 1; i < maxchips; i++) {
Karl Beldanef89a882008-09-15 14:37:29 +02004309 /* See comment in nand_get_flash_type for reset */
Boris Brezillon73f907f2016-10-24 16:46:20 +02004310 nand_reset(chip, i);
4311
4312 chip->select_chip(mtd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004314 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004316 if (nand_maf_id != chip->read_byte(mtd) ||
Huang Shijie07300162012-11-09 16:23:45 +08004317 nand_dev_id != chip->read_byte(mtd)) {
4318 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 break;
Huang Shijie07300162012-11-09 16:23:45 +08004320 }
4321 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 }
4323 if (i > 1)
Ezequiel Garcia20171642013-11-25 08:30:31 -03004324 pr_info("%d chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004325
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004327 chip->numchips = i;
4328 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329
David Woodhouse3b85c322006-09-25 17:06:53 +01004330 return 0;
4331}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004332EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01004333
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004334static int nand_set_ecc_soft_ops(struct mtd_info *mtd)
4335{
4336 struct nand_chip *chip = mtd_to_nand(mtd);
4337 struct nand_ecc_ctrl *ecc = &chip->ecc;
4338
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004339 if (WARN_ON(ecc->mode != NAND_ECC_SOFT))
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004340 return -EINVAL;
4341
4342 switch (ecc->algo) {
4343 case NAND_ECC_HAMMING:
4344 ecc->calculate = nand_calculate_ecc;
4345 ecc->correct = nand_correct_data;
4346 ecc->read_page = nand_read_page_swecc;
4347 ecc->read_subpage = nand_read_subpage;
4348 ecc->write_page = nand_write_page_swecc;
4349 ecc->read_page_raw = nand_read_page_raw;
4350 ecc->write_page_raw = nand_write_page_raw;
4351 ecc->read_oob = nand_read_oob_std;
4352 ecc->write_oob = nand_write_oob_std;
4353 if (!ecc->size)
4354 ecc->size = 256;
4355 ecc->bytes = 3;
4356 ecc->strength = 1;
4357 return 0;
4358 case NAND_ECC_BCH:
4359 if (!mtd_nand_has_bch()) {
4360 WARN(1, "CONFIG_MTD_NAND_ECC_BCH not enabled\n");
4361 return -EINVAL;
4362 }
4363 ecc->calculate = nand_bch_calculate_ecc;
4364 ecc->correct = nand_bch_correct_data;
4365 ecc->read_page = nand_read_page_swecc;
4366 ecc->read_subpage = nand_read_subpage;
4367 ecc->write_page = nand_write_page_swecc;
4368 ecc->read_page_raw = nand_read_page_raw;
4369 ecc->write_page_raw = nand_write_page_raw;
4370 ecc->read_oob = nand_read_oob_std;
4371 ecc->write_oob = nand_write_oob_std;
Boris Brezillon8bbba482016-06-08 17:04:23 +02004372
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004373 /*
4374 * Board driver should supply ecc.size and ecc.strength
4375 * values to select how many bits are correctable.
4376 * Otherwise, default to 4 bits for large page devices.
4377 */
4378 if (!ecc->size && (mtd->oobsize >= 64)) {
4379 ecc->size = 512;
4380 ecc->strength = 4;
4381 }
4382
4383 /*
4384 * if no ecc placement scheme was provided pickup the default
4385 * large page one.
4386 */
4387 if (!mtd->ooblayout) {
4388 /* handle large page devices only */
4389 if (mtd->oobsize < 64) {
4390 WARN(1, "OOB layout is required when using software BCH on small pages\n");
4391 return -EINVAL;
4392 }
4393
4394 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
Boris Brezillon8bbba482016-06-08 17:04:23 +02004395
4396 }
4397
4398 /*
4399 * We can only maximize ECC config when the default layout is
4400 * used, otherwise we don't know how many bytes can really be
4401 * used.
4402 */
4403 if (mtd->ooblayout == &nand_ooblayout_lp_ops &&
4404 ecc->options & NAND_ECC_MAXIMIZE) {
4405 int steps, bytes;
4406
4407 /* Always prefer 1k blocks over 512bytes ones */
4408 ecc->size = 1024;
4409 steps = mtd->writesize / ecc->size;
4410
4411 /* Reserve 2 bytes for the BBM */
4412 bytes = (mtd->oobsize - 2) / steps;
4413 ecc->strength = bytes * 8 / fls(8 * ecc->size);
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004414 }
4415
4416 /* See nand_bch_init() for details. */
4417 ecc->bytes = 0;
4418 ecc->priv = nand_bch_init(mtd);
4419 if (!ecc->priv) {
4420 WARN(1, "BCH ECC initialization failed!\n");
4421 return -EINVAL;
4422 }
4423 return 0;
4424 default:
4425 WARN(1, "Unsupported ECC algorithm!\n");
4426 return -EINVAL;
4427 }
4428}
4429
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004430/*
4431 * Check if the chip configuration meet the datasheet requirements.
4432
4433 * If our configuration corrects A bits per B bytes and the minimum
4434 * required correction level is X bits per Y bytes, then we must ensure
4435 * both of the following are true:
4436 *
4437 * (1) A / B >= X / Y
4438 * (2) A >= X
4439 *
4440 * Requirement (1) ensures we can correct for the required bitflip density.
4441 * Requirement (2) ensures we can correct even when all bitflips are clumped
4442 * in the same sector.
4443 */
4444static bool nand_ecc_strength_good(struct mtd_info *mtd)
4445{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004446 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004447 struct nand_ecc_ctrl *ecc = &chip->ecc;
4448 int corr, ds_corr;
4449
4450 if (ecc->size == 0 || chip->ecc_step_ds == 0)
4451 /* Not enough information */
4452 return true;
4453
4454 /*
4455 * We get the number of corrected bits per page to compare
4456 * the correction density.
4457 */
4458 corr = (mtd->writesize * ecc->strength) / ecc->size;
4459 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
4460
4461 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
4462}
David Woodhouse3b85c322006-09-25 17:06:53 +01004463
Marc Gonzalez3371d662016-11-15 10:56:20 +01004464static bool invalid_ecc_page_accessors(struct nand_chip *chip)
4465{
4466 struct nand_ecc_ctrl *ecc = &chip->ecc;
4467
4468 if (nand_standard_page_accessors(ecc))
4469 return false;
4470
4471 /*
4472 * NAND_ECC_CUSTOM_PAGE_ACCESS flag is set, make sure the NAND
4473 * controller driver implements all the page accessors because
4474 * default helpers are not suitable when the core does not
4475 * send the READ0/PAGEPROG commands.
4476 */
4477 return (!ecc->read_page || !ecc->write_page ||
4478 !ecc->read_page_raw || !ecc->write_page_raw ||
4479 (NAND_HAS_SUBPAGE_READ(chip) && !ecc->read_subpage) ||
4480 (NAND_HAS_SUBPAGE_WRITE(chip) && !ecc->write_subpage &&
4481 ecc->hwctl && ecc->calculate));
4482}
4483
David Woodhouse3b85c322006-09-25 17:06:53 +01004484/**
4485 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004486 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01004487 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004488 * This is the second phase of the normal nand_scan() function. It fills out
4489 * all the uninitialized function pointers with the defaults and scans for a
4490 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01004491 */
4492int nand_scan_tail(struct mtd_info *mtd)
4493{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004494 struct nand_chip *chip = mtd_to_nand(mtd);
Huang Shijie97de79e02013-10-18 14:20:53 +08004495 struct nand_ecc_ctrl *ecc = &chip->ecc;
Huang Shijief02ea4e2014-01-13 14:27:12 +08004496 struct nand_buffers *nbuf;
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004497 int ret;
David Woodhouse3b85c322006-09-25 17:06:53 +01004498
Brian Norrise2414f42012-02-06 13:44:00 -08004499 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004500 if (WARN_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
4501 !(chip->bbt_options & NAND_BBT_USE_FLASH)))
4502 return -EINVAL;
Brian Norrise2414f42012-02-06 13:44:00 -08004503
Marc Gonzalez3371d662016-11-15 10:56:20 +01004504 if (invalid_ecc_page_accessors(chip)) {
4505 pr_err("Invalid ECC page accessors setup\n");
4506 return -EINVAL;
4507 }
4508
Huang Shijief02ea4e2014-01-13 14:27:12 +08004509 if (!(chip->options & NAND_OWN_BUFFERS)) {
4510 nbuf = kzalloc(sizeof(*nbuf) + mtd->writesize
4511 + mtd->oobsize * 3, GFP_KERNEL);
4512 if (!nbuf)
4513 return -ENOMEM;
4514 nbuf->ecccalc = (uint8_t *)(nbuf + 1);
4515 nbuf->ecccode = nbuf->ecccalc + mtd->oobsize;
4516 nbuf->databuf = nbuf->ecccode + mtd->oobsize;
4517
4518 chip->buffers = nbuf;
4519 } else {
4520 if (!chip->buffers)
4521 return -ENOMEM;
4522 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004523
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01004524 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01004525 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004526
4527 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004528 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004529 */
Rafał Miłecki06f384c2016-04-17 22:53:05 +02004530 if (!mtd->ooblayout &&
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02004531 !(ecc->mode == NAND_ECC_SOFT && ecc->algo == NAND_ECC_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004532 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 case 8:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 case 16:
Boris Brezillon41b207a2016-02-03 19:06:15 +01004535 mtd_set_ooblayout(mtd, &nand_ooblayout_sp_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 break;
4537 case 64:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004538 case 128:
Boris Brezillon41b207a2016-02-03 19:06:15 +01004539 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004540 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 default:
Ezequiel García11eaf6d2016-04-01 18:29:24 -03004542 WARN(1, "No oob scheme defined for oobsize %d\n",
4543 mtd->oobsize);
4544 ret = -EINVAL;
4545 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 }
4547 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004548
David Woodhouse956e9442006-09-25 17:12:39 +01004549 if (!chip->write_page)
4550 chip->write_page = nand_write_page;
4551
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");