blob: 9be0f98c12444f872f50dc9f4e2590b04452aa18 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Overview:
3 * This is the generic MTD driver for NAND flash devices. It should be
4 * capable of working with almost all NAND chips currently available.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Additional technical information is available on
maximilian attems8b2b4032007-07-28 13:07:16 +02007 * http://www.linux-mtd.infradead.org/doc/nand.html
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020010 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020012 * Credits:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000013 * David Woodhouse for adding multichip support
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
16 * rework for 2K page size chips
17 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020018 * TODO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Enable cached programming for 2k page size chips
20 * Check, if mtd->ecctype should be set to MTD_ECC_HW
Brian Norris7854d3f2011-06-23 14:12:08 -070021 * if we have HW ECC support.
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +030022 * BBT table is not serialized, has to be fixed
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License version 2 as
26 * published by the Free Software Foundation.
27 *
28 */
29
Ezequiel Garcia20171642013-11-25 08:30:31 -030030#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
David Woodhouse552d9202006-05-14 01:20:46 +010032#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/delay.h>
34#include <linux/errno.h>
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +020035#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/sched.h>
37#include <linux/slab.h>
Kamal Dasu66507c72014-05-01 20:51:19 -040038#include <linux/mm.h>
Ingo Molnar38b8d202017-02-08 18:51:31 +010039#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/types.h>
41#include <linux/mtd/mtd.h>
Boris Brezillond4092d72017-08-04 17:29:10 +020042#include <linux/mtd/rawnand.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/mtd/nand_ecc.h>
Ivan Djelic193bd402011-03-11 11:05:33 +010044#include <linux/mtd/nand_bch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/interrupt.h>
46#include <linux/bitops.h>
Florian Fainelli7351d3a2010-09-07 13:23:45 +020047#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mtd/partitions.h>
Boris Brezillond48f62b2016-04-01 14:54:32 +020049#include <linux/of.h>
Thomas Gleixner81ec5362007-12-12 17:27:03 +010050
Huang Shijie6a8214a2012-11-19 14:43:30 +080051static int nand_get_device(struct mtd_info *mtd, int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Thomas Gleixner8593fbc2006-05-29 03:26:58 +020053static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
54 struct mtd_oob_ops *ops);
55
Boris Brezillon41b207a2016-02-03 19:06:15 +010056/* Define default oob placement schemes for large and small page devices */
57static int nand_ooblayout_ecc_sp(struct mtd_info *mtd, int section,
58 struct mtd_oob_region *oobregion)
59{
60 struct nand_chip *chip = mtd_to_nand(mtd);
61 struct nand_ecc_ctrl *ecc = &chip->ecc;
62
63 if (section > 1)
64 return -ERANGE;
65
66 if (!section) {
67 oobregion->offset = 0;
Miquel Raynalf7f8c172017-07-05 08:51:09 +020068 if (mtd->oobsize == 16)
69 oobregion->length = 4;
70 else
71 oobregion->length = 3;
Boris Brezillon41b207a2016-02-03 19:06:15 +010072 } else {
Miquel Raynalf7f8c172017-07-05 08:51:09 +020073 if (mtd->oobsize == 8)
74 return -ERANGE;
75
Boris Brezillon41b207a2016-02-03 19:06:15 +010076 oobregion->offset = 6;
77 oobregion->length = ecc->total - 4;
78 }
79
80 return 0;
81}
82
83static int nand_ooblayout_free_sp(struct mtd_info *mtd, int section,
84 struct mtd_oob_region *oobregion)
85{
86 if (section > 1)
87 return -ERANGE;
88
89 if (mtd->oobsize == 16) {
90 if (section)
91 return -ERANGE;
92
93 oobregion->length = 8;
94 oobregion->offset = 8;
95 } else {
96 oobregion->length = 2;
97 if (!section)
98 oobregion->offset = 3;
99 else
100 oobregion->offset = 6;
101 }
102
103 return 0;
104}
105
106const struct mtd_ooblayout_ops nand_ooblayout_sp_ops = {
107 .ecc = nand_ooblayout_ecc_sp,
108 .free = nand_ooblayout_free_sp,
109};
110EXPORT_SYMBOL_GPL(nand_ooblayout_sp_ops);
111
112static int nand_ooblayout_ecc_lp(struct mtd_info *mtd, int section,
113 struct mtd_oob_region *oobregion)
114{
115 struct nand_chip *chip = mtd_to_nand(mtd);
116 struct nand_ecc_ctrl *ecc = &chip->ecc;
117
Miquel Raynal882fd152017-08-26 17:19:15 +0200118 if (section || !ecc->total)
Boris Brezillon41b207a2016-02-03 19:06:15 +0100119 return -ERANGE;
120
121 oobregion->length = ecc->total;
122 oobregion->offset = mtd->oobsize - oobregion->length;
123
124 return 0;
125}
126
127static int nand_ooblayout_free_lp(struct mtd_info *mtd, int section,
128 struct mtd_oob_region *oobregion)
129{
130 struct nand_chip *chip = mtd_to_nand(mtd);
131 struct nand_ecc_ctrl *ecc = &chip->ecc;
132
133 if (section)
134 return -ERANGE;
135
136 oobregion->length = mtd->oobsize - ecc->total - 2;
137 oobregion->offset = 2;
138
139 return 0;
140}
141
142const struct mtd_ooblayout_ops nand_ooblayout_lp_ops = {
143 .ecc = nand_ooblayout_ecc_lp,
144 .free = nand_ooblayout_free_lp,
145};
146EXPORT_SYMBOL_GPL(nand_ooblayout_lp_ops);
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200147
Alexander Couzens6a623e02017-05-02 12:19:00 +0200148/*
149 * Support the old "large page" layout used for 1-bit Hamming ECC where ECC
150 * are placed at a fixed offset.
151 */
152static int nand_ooblayout_ecc_lp_hamming(struct mtd_info *mtd, int section,
153 struct mtd_oob_region *oobregion)
154{
155 struct nand_chip *chip = mtd_to_nand(mtd);
156 struct nand_ecc_ctrl *ecc = &chip->ecc;
157
158 if (section)
159 return -ERANGE;
160
161 switch (mtd->oobsize) {
162 case 64:
163 oobregion->offset = 40;
164 break;
165 case 128:
166 oobregion->offset = 80;
167 break;
168 default:
169 return -EINVAL;
170 }
171
172 oobregion->length = ecc->total;
173 if (oobregion->offset + oobregion->length > mtd->oobsize)
174 return -ERANGE;
175
176 return 0;
177}
178
179static int nand_ooblayout_free_lp_hamming(struct mtd_info *mtd, int section,
180 struct mtd_oob_region *oobregion)
181{
182 struct nand_chip *chip = mtd_to_nand(mtd);
183 struct nand_ecc_ctrl *ecc = &chip->ecc;
184 int ecc_offset = 0;
185
186 if (section < 0 || section > 1)
187 return -ERANGE;
188
189 switch (mtd->oobsize) {
190 case 64:
191 ecc_offset = 40;
192 break;
193 case 128:
194 ecc_offset = 80;
195 break;
196 default:
197 return -EINVAL;
198 }
199
200 if (section == 0) {
201 oobregion->offset = 2;
202 oobregion->length = ecc_offset - 2;
203 } else {
204 oobregion->offset = ecc_offset + ecc->total;
205 oobregion->length = mtd->oobsize - oobregion->offset;
206 }
207
208 return 0;
209}
210
Colin Ian Kingd4ed3b92017-05-04 13:11:00 +0100211static const struct mtd_ooblayout_ops nand_ooblayout_lp_hamming_ops = {
Alexander Couzens6a623e02017-05-02 12:19:00 +0200212 .ecc = nand_ooblayout_ecc_lp_hamming,
213 .free = nand_ooblayout_free_lp_hamming,
214};
215
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530216static int check_offs_len(struct mtd_info *mtd,
217 loff_t ofs, uint64_t len)
218{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100219 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530220 int ret = 0;
221
222 /* Start address must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300223 if (ofs & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700224 pr_debug("%s: unaligned address\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530225 ret = -EINVAL;
226 }
227
228 /* Length must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300229 if (len & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700230 pr_debug("%s: length not block aligned\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530231 ret = -EINVAL;
232 }
233
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530234 return ret;
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/**
238 * nand_release_device - [GENERIC] release chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700239 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000240 *
Huang Shijieb0bb6902012-11-19 14:43:29 +0800241 * Release chip lock and wake up anyone waiting on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100243static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100245 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200247 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200248 spin_lock(&chip->controller->lock);
249 chip->controller->active = NULL;
250 chip->state = FL_READY;
251 wake_up(&chip->controller->wq);
252 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255/**
256 * nand_read_byte - [DEFAULT] read one byte from the chip
Boris Brezillon7e534322018-09-06 14:05:22 +0200257 * @chip: NAND chip object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700259 * Default read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 */
Boris Brezillon7e534322018-09-06 14:05:22 +0200261static uint8_t nand_read_byte(struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200263 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266/**
Masanari Iida064a7692012-11-09 23:20:58 +0900267 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Boris Brezillon7e534322018-09-06 14:05:22 +0200268 * @chip: NAND chip object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700270 * Default read function for 16bit buswidth with endianness conversion.
271 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
Boris Brezillon7e534322018-09-06 14:05:22 +0200273static uint8_t nand_read_byte16(struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200275 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 * nand_select_chip - [DEFAULT] control CE line
Boris Brezillon758b56f2018-09-06 14:05:24 +0200280 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -0700281 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 *
283 * Default select function for 1 chip devices.
284 */
Boris Brezillon758b56f2018-09-06 14:05:24 +0200285static void nand_select_chip(struct nand_chip *chip, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200287 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 case -1:
Boris Brezillon0f808c12018-09-06 14:05:26 +0200289 chip->cmd_ctrl(chip, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 break;
291 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 break;
293
294 default:
295 BUG();
296 }
297}
298
299/**
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100300 * nand_write_byte - [DEFAULT] write single byte to chip
Boris Brezillonc0739d82018-09-06 14:05:23 +0200301 * @chip: NAND chip object
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100302 * @byte: value to write
303 *
304 * Default function to write a byte to I/O[7:0]
305 */
Boris Brezillonc0739d82018-09-06 14:05:23 +0200306static void nand_write_byte(struct nand_chip *chip, uint8_t byte)
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100307{
Boris Brezillonc0739d82018-09-06 14:05:23 +0200308 chip->write_buf(chip, &byte, 1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100309}
310
311/**
312 * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16
Boris Brezillonc0739d82018-09-06 14:05:23 +0200313 * @chip: NAND chip object
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100314 * @byte: value to write
315 *
316 * Default function to write a byte to I/O[7:0] on a 16-bit wide chip.
317 */
Boris Brezillonc0739d82018-09-06 14:05:23 +0200318static void nand_write_byte16(struct nand_chip *chip, uint8_t byte)
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100319{
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100320 uint16_t word = byte;
321
322 /*
323 * It's not entirely clear what should happen to I/O[15:8] when writing
324 * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads:
325 *
326 * When the host supports a 16-bit bus width, only data is
327 * transferred at the 16-bit width. All address and command line
328 * transfers shall use only the lower 8-bits of the data bus. During
329 * command transfers, the host may place any value on the upper
330 * 8-bits of the data bus. During address transfers, the host shall
331 * set the upper 8-bits of the data bus to 00h.
332 *
Miquel Raynalb9587582018-03-19 14:47:19 +0100333 * One user of the write_byte callback is nand_set_features. The
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100334 * four parameters are specified to be written to I/O[7:0], but this is
335 * neither an address nor a command transfer. Let's assume a 0 on the
336 * upper I/O lines is OK.
337 */
Boris Brezillonc0739d82018-09-06 14:05:23 +0200338 chip->write_buf(chip, (uint8_t *)&word, 2);
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100339}
340
341/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 * nand_write_buf - [DEFAULT] write buffer to chip
Boris Brezillonc0739d82018-09-06 14:05:23 +0200343 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -0700344 * @buf: data buffer
345 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700347 * Default write function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 */
Boris Brezillonc0739d82018-09-06 14:05:23 +0200349static void nand_write_buf(struct nand_chip *chip, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Alexander Shiyan76413832013-04-13 09:32:13 +0400351 iowrite8_rep(chip->IO_ADDR_W, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000355 * nand_read_buf - [DEFAULT] read chip data into buffer
Boris Brezillon7e534322018-09-06 14:05:22 +0200356 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -0700357 * @buf: buffer to store date
358 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700360 * Default read function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 */
Boris Brezillon7e534322018-09-06 14:05:22 +0200362static void nand_read_buf(struct nand_chip *chip, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Alexander Shiyan76413832013-04-13 09:32:13 +0400364 ioread8_rep(chip->IO_ADDR_R, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
367/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 * nand_write_buf16 - [DEFAULT] write buffer to chip
Boris Brezillonc0739d82018-09-06 14:05:23 +0200369 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -0700370 * @buf: data buffer
371 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700373 * Default write function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 */
Boris Brezillonc0739d82018-09-06 14:05:23 +0200375static void nand_write_buf16(struct nand_chip *chip, const uint8_t *buf,
376 int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 u16 *p = (u16 *) buf;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000379
Alexander Shiyan76413832013-04-13 09:32:13 +0400380 iowrite16_rep(chip->IO_ADDR_W, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
383/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000384 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Boris Brezillon7e534322018-09-06 14:05:22 +0200385 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -0700386 * @buf: buffer to store date
387 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700389 * Default read function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 */
Boris Brezillon7e534322018-09-06 14:05:22 +0200391static void nand_read_buf16(struct nand_chip *chip, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 u16 *p = (u16 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Alexander Shiyan76413832013-04-13 09:32:13 +0400395 ioread16_rep(chip->IO_ADDR_R, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Boris Brezillonc17556f2018-09-06 14:05:25 +0200400 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -0700401 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000403 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 */
Boris Brezillonc17556f2018-09-06 14:05:25 +0200405static int nand_block_bad(struct nand_chip *chip, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Boris Brezillonc17556f2018-09-06 14:05:25 +0200407 struct mtd_info *mtd = nand_to_mtd(chip);
Masahiro Yamadac120e752017-03-23 05:07:01 +0900408 int page, page_end, res;
Masahiro Yamadac120e752017-03-23 05:07:01 +0900409 u8 bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Brian Norris5fb15492011-05-31 16:31:21 -0700411 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700412 ofs += mtd->erasesize - mtd->writesize;
413
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100414 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
Masahiro Yamadac120e752017-03-23 05:07:01 +0900415 page_end = page + (chip->bbt_options & NAND_BBT_SCAN2NDPAGE ? 2 : 1);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100416
Masahiro Yamadac120e752017-03-23 05:07:01 +0900417 for (; page < page_end; page++) {
Boris Brezillonb9761682018-09-06 14:05:20 +0200418 res = chip->ecc.read_oob(chip, page);
Abhishek Sahue9893e62018-06-13 14:32:36 +0530419 if (res < 0)
Masahiro Yamadac120e752017-03-23 05:07:01 +0900420 return res;
421
422 bad = chip->oob_poi[chip->badblockpos];
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000423
Brian Norriscdbec052012-01-13 18:11:48 -0800424 if (likely(chip->badblockbits == 8))
425 res = bad != 0xFF;
426 else
427 res = hweight8(bad) < chip->badblockbits;
Masahiro Yamadac120e752017-03-23 05:07:01 +0900428 if (res)
429 return res;
430 }
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200431
Masahiro Yamadac120e752017-03-23 05:07:01 +0900432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435/**
Brian Norris5a0edb22013-07-30 17:52:58 -0700436 * nand_default_block_markbad - [DEFAULT] mark a block bad via bad block marker
Boris Brezillonc17556f2018-09-06 14:05:25 +0200437 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -0700438 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700440 * This is the default implementation, which can be overridden by a hardware
Brian Norris5a0edb22013-07-30 17:52:58 -0700441 * specific driver. It provides the details for writing a bad block marker to a
442 * block.
443 */
Boris Brezillonc17556f2018-09-06 14:05:25 +0200444static int nand_default_block_markbad(struct nand_chip *chip, loff_t ofs)
Brian Norris5a0edb22013-07-30 17:52:58 -0700445{
Boris Brezillonc17556f2018-09-06 14:05:25 +0200446 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norris5a0edb22013-07-30 17:52:58 -0700447 struct mtd_oob_ops ops;
448 uint8_t buf[2] = { 0, 0 };
449 int ret = 0, res, i = 0;
450
Brian Norris0ec56dc2015-02-28 02:02:30 -0800451 memset(&ops, 0, sizeof(ops));
Brian Norris5a0edb22013-07-30 17:52:58 -0700452 ops.oobbuf = buf;
453 ops.ooboffs = chip->badblockpos;
454 if (chip->options & NAND_BUSWIDTH_16) {
455 ops.ooboffs &= ~0x01;
456 ops.len = ops.ooblen = 2;
457 } else {
458 ops.len = ops.ooblen = 1;
459 }
460 ops.mode = MTD_OPS_PLACE_OOB;
461
462 /* Write to first/last page(s) if necessary */
463 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
464 ofs += mtd->erasesize - mtd->writesize;
465 do {
466 res = nand_do_write_oob(mtd, ofs, &ops);
467 if (!ret)
468 ret = res;
469
470 i++;
471 ofs += mtd->writesize;
472 } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2);
473
474 return ret;
475}
476
477/**
478 * nand_block_markbad_lowlevel - mark a block bad
479 * @mtd: MTD device structure
480 * @ofs: offset from device start
481 *
482 * This function performs the generic NAND bad block marking steps (i.e., bad
483 * block table(s) and/or marker(s)). We only allow the hardware driver to
484 * specify how to write bad block markers to OOB (chip->block_markbad).
485 *
Brian Norrisb32843b2013-07-30 17:52:59 -0700486 * We try operations in the following order:
Mauro Carvalho Chehabb6f6c292017-05-13 07:40:36 -0300487 *
Brian Norrise2414f42012-02-06 13:44:00 -0800488 * (1) erase the affected block, to allow OOB marker to be written cleanly
Brian Norrisb32843b2013-07-30 17:52:59 -0700489 * (2) write bad block marker to OOB area of affected block (unless flag
490 * NAND_BBT_NO_OOB_BBM is present)
491 * (3) update the BBT
Mauro Carvalho Chehabb6f6c292017-05-13 07:40:36 -0300492 *
Brian Norrisb32843b2013-07-30 17:52:59 -0700493 * Note that we retain the first error encountered in (2) or (3), finish the
Brian Norrise2414f42012-02-06 13:44:00 -0800494 * procedures, and dump the error in the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495*/
Brian Norris5a0edb22013-07-30 17:52:58 -0700496static int nand_block_markbad_lowlevel(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100498 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norrisb32843b2013-07-30 17:52:59 -0700499 int res, ret = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000500
Brian Norrisb32843b2013-07-30 17:52:59 -0700501 if (!(chip->bbt_options & NAND_BBT_NO_OOB_BBM)) {
Brian Norris00918422012-01-13 18:11:47 -0800502 struct erase_info einfo;
503
504 /* Attempt erase before marking OOB */
505 memset(&einfo, 0, sizeof(einfo));
Brian Norris00918422012-01-13 18:11:47 -0800506 einfo.addr = ofs;
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300507 einfo.len = 1ULL << chip->phys_erase_shift;
Brian Norris00918422012-01-13 18:11:47 -0800508 nand_erase_nand(mtd, &einfo, 0);
Brian Norris00918422012-01-13 18:11:47 -0800509
Brian Norrisb32843b2013-07-30 17:52:59 -0700510 /* Write bad block marker to OOB */
Huang Shijie6a8214a2012-11-19 14:43:30 +0800511 nand_get_device(mtd, FL_WRITING);
Boris Brezillonc17556f2018-09-06 14:05:25 +0200512 ret = chip->block_markbad(chip, ofs);
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300513 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200514 }
Brian Norrise2414f42012-02-06 13:44:00 -0800515
Brian Norrisb32843b2013-07-30 17:52:59 -0700516 /* Mark block bad in BBT */
517 if (chip->bbt) {
518 res = nand_markbad_bbt(mtd, ofs);
Brian Norrise2414f42012-02-06 13:44:00 -0800519 if (!ret)
520 ret = res;
521 }
522
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200523 if (!ret)
524 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300525
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200526 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000529/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700531 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700533 * Check, if the device is write protected. The function expects, that the
534 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100536static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100538 struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon97d90da2017-11-30 18:01:29 +0100539 u8 status;
540 int ret;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200541
Brian Norris8b6e50c2011-05-25 14:59:01 -0700542 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200543 if (chip->options & NAND_BROKEN_XD)
544 return 0;
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* Check the WP bit */
Boris Brezillon97d90da2017-11-30 18:01:29 +0100547 ret = nand_status_op(chip, &status);
548 if (ret)
549 return ret;
550
551 return status & NAND_STATUS_WP ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554/**
Gu Zhengc30e1f72014-09-03 17:49:10 +0800555 * nand_block_isreserved - [GENERIC] Check if a block is marked reserved.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700556 * @mtd: MTD device structure
557 * @ofs: offset from device start
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300558 *
Gu Zhengc30e1f72014-09-03 17:49:10 +0800559 * Check if the block is marked as reserved.
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300560 */
561static int nand_block_isreserved(struct mtd_info *mtd, loff_t ofs)
562{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100563 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300564
565 if (!chip->bbt)
566 return 0;
567 /* Return info from the table */
568 return nand_isreserved_bbt(mtd, ofs);
569}
570
571/**
572 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
573 * @mtd: MTD device structure
574 * @ofs: offset from device start
Brian Norris8b6e50c2011-05-25 14:59:01 -0700575 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 *
577 * Check, if the block is bad. Either by reading the bad block table or
578 * calling of the scan function.
579 */
Archit Taneja9f3e0422016-02-03 14:29:49 +0530580static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100582 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000583
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200584 if (!chip->bbt)
Boris Brezillonc17556f2018-09-06 14:05:25 +0200585 return chip->block_bad(chip, ofs);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100588 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200591/**
592 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700593 * @mtd: MTD device structure
594 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200595 *
596 * Helper function for nand_wait_ready used when needing to wait in interrupt
597 * context.
598 */
599static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
600{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100601 struct nand_chip *chip = mtd_to_nand(mtd);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200602 int i;
603
604 /* Wait for the device to get ready */
605 for (i = 0; i < timeo; i++) {
Boris Brezillon50a487e2018-09-06 14:05:27 +0200606 if (chip->dev_ready(chip))
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200607 break;
608 touch_softlockup_watchdog();
609 mdelay(1);
610 }
611}
612
Alex Smithb70af9b2015-10-06 14:52:07 +0100613/**
614 * nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Boris Brezillon2b356ab2018-09-06 14:05:16 +0200615 * @chip: NAND chip object
Alex Smithb70af9b2015-10-06 14:52:07 +0100616 *
617 * Wait for the ready pin after a command, and warn if a timeout occurs.
618 */
Boris Brezillon2b356ab2018-09-06 14:05:16 +0200619void nand_wait_ready(struct nand_chip *chip)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000620{
Boris Brezillon2b356ab2018-09-06 14:05:16 +0200621 struct mtd_info *mtd = nand_to_mtd(chip);
Alex Smithb70af9b2015-10-06 14:52:07 +0100622 unsigned long timeo = 400;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000623
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200624 if (in_interrupt() || oops_in_progress)
Alex Smithb70af9b2015-10-06 14:52:07 +0100625 return panic_nand_wait_ready(mtd, timeo);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200626
Brian Norris7854d3f2011-06-23 14:12:08 -0700627 /* Wait until command is processed or timeout occurs */
Alex Smithb70af9b2015-10-06 14:52:07 +0100628 timeo = jiffies + msecs_to_jiffies(timeo);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000629 do {
Boris Brezillon50a487e2018-09-06 14:05:27 +0200630 if (chip->dev_ready(chip))
Ezequiel Garcia4c7e0542016-04-12 17:46:41 -0300631 return;
Alex Smithb70af9b2015-10-06 14:52:07 +0100632 cond_resched();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000633 } while (time_before(jiffies, timeo));
Alex Smithb70af9b2015-10-06 14:52:07 +0100634
Boris Brezillon50a487e2018-09-06 14:05:27 +0200635 if (!chip->dev_ready(chip))
Brian Norris9ebfdf52016-03-04 17:19:23 -0800636 pr_warn_ratelimited("timeout while waiting for chip to become ready\n");
Thomas Gleixner3b887752005-02-22 21:56:49 +0000637}
David Woodhouse4b648b02006-09-25 17:05:24 +0100638EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640/**
Roger Quadros60c70d62015-02-23 17:26:39 +0200641 * nand_wait_status_ready - [GENERIC] Wait for the ready status after commands.
642 * @mtd: MTD device structure
643 * @timeo: Timeout in ms
644 *
645 * Wait for status ready (i.e. command done) or timeout.
646 */
647static void nand_wait_status_ready(struct mtd_info *mtd, unsigned long timeo)
648{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100649 register struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon97d90da2017-11-30 18:01:29 +0100650 int ret;
Roger Quadros60c70d62015-02-23 17:26:39 +0200651
652 timeo = jiffies + msecs_to_jiffies(timeo);
653 do {
Boris Brezillon97d90da2017-11-30 18:01:29 +0100654 u8 status;
655
656 ret = nand_read_data_op(chip, &status, sizeof(status), true);
657 if (ret)
658 return;
659
660 if (status & NAND_STATUS_READY)
Roger Quadros60c70d62015-02-23 17:26:39 +0200661 break;
662 touch_softlockup_watchdog();
663 } while (time_before(jiffies, timeo));
664};
665
666/**
Miquel Raynal8878b122017-11-09 14:16:45 +0100667 * nand_soft_waitrdy - Poll STATUS reg until RDY bit is set to 1
668 * @chip: NAND chip structure
669 * @timeout_ms: Timeout in ms
670 *
671 * Poll the STATUS register using ->exec_op() until the RDY bit becomes 1.
672 * If that does not happen whitin the specified timeout, -ETIMEDOUT is
673 * returned.
674 *
675 * This helper is intended to be used when the controller does not have access
676 * to the NAND R/B pin.
677 *
678 * Be aware that calling this helper from an ->exec_op() implementation means
679 * ->exec_op() must be re-entrant.
680 *
681 * Return 0 if the NAND chip is ready, a negative error otherwise.
682 */
683int nand_soft_waitrdy(struct nand_chip *chip, unsigned long timeout_ms)
684{
Boris Brezillon3057fce2018-05-04 21:24:31 +0200685 const struct nand_sdr_timings *timings;
Miquel Raynal8878b122017-11-09 14:16:45 +0100686 u8 status = 0;
687 int ret;
688
689 if (!chip->exec_op)
690 return -ENOTSUPP;
691
Boris Brezillon3057fce2018-05-04 21:24:31 +0200692 /* Wait tWB before polling the STATUS reg. */
693 timings = nand_get_sdr_timings(&chip->data_interface);
694 ndelay(PSEC_TO_NSEC(timings->tWB_max));
695
Miquel Raynal8878b122017-11-09 14:16:45 +0100696 ret = nand_status_op(chip, NULL);
697 if (ret)
698 return ret;
699
700 timeout_ms = jiffies + msecs_to_jiffies(timeout_ms);
701 do {
702 ret = nand_read_data_op(chip, &status, sizeof(status), true);
703 if (ret)
704 break;
705
706 if (status & NAND_STATUS_READY)
707 break;
708
709 /*
710 * Typical lowest execution time for a tR on most NANDs is 10us,
711 * use this as polling delay before doing something smarter (ie.
712 * deriving a delay from the timeout value, timeout_ms/ratio).
713 */
714 udelay(10);
715 } while (time_before(jiffies, timeout_ms));
716
717 /*
718 * We have to exit READ_STATUS mode in order to read real data on the
719 * bus in case the WAITRDY instruction is preceding a DATA_IN
720 * instruction.
721 */
722 nand_exit_status_op(chip);
723
724 if (ret)
725 return ret;
726
727 return status & NAND_STATUS_READY ? 0 : -ETIMEDOUT;
728};
729EXPORT_SYMBOL_GPL(nand_soft_waitrdy);
730
731/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 * nand_command - [DEFAULT] Send command to NAND device
Boris Brezillon5295cf22018-09-06 14:05:28 +0200733 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -0700734 * @command: the command to be sent
735 * @column: the column address for this command, -1 if none
736 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700738 * Send command to NAND device. This function is used for small page devices
Artem Bityutskiy51148f12013-03-05 15:00:51 +0200739 * (512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 */
Boris Brezillon5295cf22018-09-06 14:05:28 +0200741static void nand_command(struct nand_chip *chip, unsigned int command,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200742 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Boris Brezillon5295cf22018-09-06 14:05:28 +0200744 struct mtd_info *mtd = nand_to_mtd(chip);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200745 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Brian Norris8b6e50c2011-05-25 14:59:01 -0700747 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (command == NAND_CMD_SEQIN) {
749 int readcmd;
750
Joern Engel28318772006-05-22 23:18:05 +0200751 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200753 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 readcmd = NAND_CMD_READOOB;
755 } else if (column < 256) {
756 /* First 256 bytes --> READ0 */
757 readcmd = NAND_CMD_READ0;
758 } else {
759 column -= 256;
760 readcmd = NAND_CMD_READ1;
761 }
Boris Brezillon0f808c12018-09-06 14:05:26 +0200762 chip->cmd_ctrl(chip, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200763 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
Miquel Raynaldf467892017-11-08 17:00:27 +0100765 if (command != NAND_CMD_NONE)
Boris Brezillon0f808c12018-09-06 14:05:26 +0200766 chip->cmd_ctrl(chip, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Brian Norris8b6e50c2011-05-25 14:59:01 -0700768 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200769 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
770 /* Serially input address */
771 if (column != -1) {
772 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800773 if (chip->options & NAND_BUSWIDTH_16 &&
774 !nand_opcode_8bits(command))
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200775 column >>= 1;
Boris Brezillon0f808c12018-09-06 14:05:26 +0200776 chip->cmd_ctrl(chip, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200777 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200779 if (page_addr != -1) {
Boris Brezillon0f808c12018-09-06 14:05:26 +0200780 chip->cmd_ctrl(chip, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200781 ctrl &= ~NAND_CTRL_CHANGE;
Boris Brezillon0f808c12018-09-06 14:05:26 +0200782 chip->cmd_ctrl(chip, page_addr >> 8, ctrl);
Masahiro Yamada14157f82017-09-13 11:05:50 +0900783 if (chip->options & NAND_ROW_ADDR_3)
Boris Brezillon0f808c12018-09-06 14:05:26 +0200784 chip->cmd_ctrl(chip, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200785 }
Boris Brezillon0f808c12018-09-06 14:05:26 +0200786 chip->cmd_ctrl(chip, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000787
788 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700789 * Program and erase have their own busy handlers status and sequential
790 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100791 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000793
Miquel Raynaldf467892017-11-08 17:00:27 +0100794 case NAND_CMD_NONE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 case NAND_CMD_PAGEPROG:
796 case NAND_CMD_ERASE1:
797 case NAND_CMD_ERASE2:
798 case NAND_CMD_SEQIN:
799 case NAND_CMD_STATUS:
Masahiro Yamada3158fa02017-03-23 09:17:49 +0900800 case NAND_CMD_READID:
Masahiro Yamadac5d664a2017-03-23 09:17:50 +0900801 case NAND_CMD_SET_FEATURES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return;
803
804 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200805 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200807 udelay(chip->chip_delay);
Boris Brezillon0f808c12018-09-06 14:05:26 +0200808 chip->cmd_ctrl(chip, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200809 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Boris Brezillon0f808c12018-09-06 14:05:26 +0200810 chip->cmd_ctrl(chip,
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200811 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200812 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
813 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return;
815
David Woodhousee0c7d762006-05-13 18:07:53 +0100816 /* This applies to read commands */
Boris Brezillon2165c4a2017-05-16 18:35:45 +0200817 case NAND_CMD_READ0:
818 /*
819 * READ0 is sometimes used to exit GET STATUS mode. When this
820 * is the case no address cycles are requested, and we can use
821 * this information to detect that we should not wait for the
822 * device to be ready.
823 */
824 if (column == -1 && page_addr == -1)
825 return;
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000828 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 * If we don't have access to the busy pin, we apply the given
830 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100831 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200832 if (!chip->dev_ready) {
833 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
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
Boris Brezillon2b356ab2018-09-06 14:05:16 +0200843 nand_wait_ready(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200846static void nand_ccs_delay(struct nand_chip *chip)
847{
848 /*
849 * The controller already takes care of waiting for tCCS when the RNDIN
850 * or RNDOUT command is sent, return directly.
851 */
852 if (!(chip->options & NAND_WAIT_TCCS))
853 return;
854
855 /*
856 * Wait tCCS_min if it is correctly defined, otherwise wait 500ns
857 * (which should be safe for all NANDs).
858 */
Miquel Raynal17fa8042017-11-30 18:01:31 +0100859 if (chip->setup_data_interface)
860 ndelay(chip->data_interface.timings.sdr.tCCS_min / 1000);
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200861 else
862 ndelay(500);
863}
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865/**
866 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Boris Brezillon5295cf22018-09-06 14:05:28 +0200867 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -0700868 * @command: the command to be sent
869 * @column: the column address for this command, -1 if none
870 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200872 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700873 * devices. We don't have the separate regions as we have in the small page
874 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 */
Boris Brezillon5295cf22018-09-06 14:05:28 +0200876static void nand_command_lp(struct nand_chip *chip, unsigned int command,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200877 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Boris Brezillon5295cf22018-09-06 14:05:28 +0200879 struct mtd_info *mtd = nand_to_mtd(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 /* Emulate NAND_CMD_READOOB */
882 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200883 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 command = NAND_CMD_READ0;
885 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000886
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200887 /* Command latch cycle */
Miquel Raynaldf467892017-11-08 17:00:27 +0100888 if (command != NAND_CMD_NONE)
Boris Brezillon0f808c12018-09-06 14:05:26 +0200889 chip->cmd_ctrl(chip, command,
Miquel Raynaldf467892017-11-08 17:00:27 +0100890 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200893 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 /* Serially input address */
896 if (column != -1) {
897 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800898 if (chip->options & NAND_BUSWIDTH_16 &&
899 !nand_opcode_8bits(command))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 column >>= 1;
Boris Brezillon0f808c12018-09-06 14:05:26 +0200901 chip->cmd_ctrl(chip, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200902 ctrl &= ~NAND_CTRL_CHANGE;
Boris Brezillonfde85cf2016-06-15 13:09:51 +0200903
Brian Norrisf5b88de2016-10-03 09:49:35 -0700904 /* Only output a single addr cycle for 8bits opcodes. */
Boris Brezillonfde85cf2016-06-15 13:09:51 +0200905 if (!nand_opcode_8bits(command))
Boris Brezillon0f808c12018-09-06 14:05:26 +0200906 chip->cmd_ctrl(chip, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (page_addr != -1) {
Boris Brezillon0f808c12018-09-06 14:05:26 +0200909 chip->cmd_ctrl(chip, page_addr, ctrl);
910 chip->cmd_ctrl(chip, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200911 NAND_NCE | NAND_ALE);
Masahiro Yamada14157f82017-09-13 11:05:50 +0900912 if (chip->options & NAND_ROW_ADDR_3)
Boris Brezillon0f808c12018-09-06 14:05:26 +0200913 chip->cmd_ctrl(chip, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200914 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
Boris Brezillon0f808c12018-09-06 14:05:26 +0200917 chip->cmd_ctrl(chip, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000918
919 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700920 * Program and erase have their own busy handlers status, sequential
Gerhard Sittig7a442f12014-03-29 14:36:22 +0100921 * in and status need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000922 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000924
Miquel Raynaldf467892017-11-08 17:00:27 +0100925 case NAND_CMD_NONE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 case NAND_CMD_CACHEDPROG:
927 case NAND_CMD_PAGEPROG:
928 case NAND_CMD_ERASE1:
929 case NAND_CMD_ERASE2:
930 case NAND_CMD_SEQIN:
931 case NAND_CMD_STATUS:
Masahiro Yamada3158fa02017-03-23 09:17:49 +0900932 case NAND_CMD_READID:
Masahiro Yamadac5d664a2017-03-23 09:17:50 +0900933 case NAND_CMD_SET_FEATURES:
David A. Marlin30f464b2005-01-17 18:35:25 +0000934 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200936 case NAND_CMD_RNDIN:
937 nand_ccs_delay(chip);
938 return;
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200941 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200943 udelay(chip->chip_delay);
Boris Brezillon0f808c12018-09-06 14:05:26 +0200944 chip->cmd_ctrl(chip, NAND_CMD_STATUS,
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200945 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Boris Brezillon0f808c12018-09-06 14:05:26 +0200946 chip->cmd_ctrl(chip, NAND_CMD_NONE,
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200947 NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200948 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
949 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return;
951
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200952 case NAND_CMD_RNDOUT:
953 /* No ready / busy check necessary */
Boris Brezillon0f808c12018-09-06 14:05:26 +0200954 chip->cmd_ctrl(chip, NAND_CMD_RNDOUTSTART,
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200955 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Boris Brezillon0f808c12018-09-06 14:05:26 +0200956 chip->cmd_ctrl(chip, NAND_CMD_NONE,
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200957 NAND_NCE | NAND_CTRL_CHANGE);
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200958
959 nand_ccs_delay(chip);
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200960 return;
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 case NAND_CMD_READ0:
Boris Brezillon2165c4a2017-05-16 18:35:45 +0200963 /*
964 * READ0 is sometimes used to exit GET STATUS mode. When this
965 * is the case no address cycles are requested, and we can use
966 * this information to detect that READSTART should not be
967 * issued.
968 */
969 if (column == -1 && page_addr == -1)
970 return;
971
Boris Brezillon0f808c12018-09-06 14:05:26 +0200972 chip->cmd_ctrl(chip, NAND_CMD_READSTART,
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200973 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Boris Brezillon0f808c12018-09-06 14:05:26 +0200974 chip->cmd_ctrl(chip, NAND_CMD_NONE,
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200975 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000976
David Woodhousee0c7d762006-05-13 18:07:53 +0100977 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000979 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700981 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100982 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200983 if (!chip->dev_ready) {
984 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000988
Brian Norris8b6e50c2011-05-25 14:59:01 -0700989 /*
990 * Apply this short delay always to ensure that we do wait tWB in
991 * any case on any machine.
992 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100993 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000994
Boris Brezillon2b356ab2018-09-06 14:05:16 +0200995 nand_wait_ready(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
998/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200999 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -07001000 * @chip: the nand chip descriptor
1001 * @mtd: MTD device structure
1002 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001003 *
1004 * Used when in panic, no locks are taken.
1005 */
1006static void panic_nand_get_device(struct nand_chip *chip,
1007 struct mtd_info *mtd, int new_state)
1008{
Brian Norris7854d3f2011-06-23 14:12:08 -07001009 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001010 chip->controller->active = chip;
1011 chip->state = new_state;
1012}
1013
1014/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -07001016 * @mtd: MTD device structure
1017 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 *
1019 * Get the device and lock it for exclusive access
1020 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +02001021static int
Huang Shijie6a8214a2012-11-19 14:43:30 +08001022nand_get_device(struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001024 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001025 spinlock_t *lock = &chip->controller->lock;
1026 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +01001027 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001028retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +01001029 spin_lock(lock);
1030
vimal singhb8b3ee92009-07-09 20:41:22 +05301031 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001032 if (!chip->controller->active)
1033 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +02001034
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001035 if (chip->controller->active == chip && chip->state == FL_READY) {
1036 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +01001037 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +01001038 return 0;
1039 }
1040 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -08001041 if (chip->controller->active->state == FL_PM_SUSPENDED) {
1042 chip->state = FL_PM_SUSPENDED;
1043 spin_unlock(lock);
1044 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -08001045 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +01001046 }
1047 set_current_state(TASK_UNINTERRUPTIBLE);
1048 add_wait_queue(wq, &wait);
1049 spin_unlock(lock);
1050 schedule();
1051 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 goto retry;
1053}
1054
1055/**
Brian Norris8b6e50c2011-05-25 14:59:01 -07001056 * panic_nand_wait - [GENERIC] wait until the command is done
1057 * @mtd: MTD device structure
1058 * @chip: NAND chip structure
1059 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001060 *
1061 * Wait for command done. This is a helper function for nand_wait used when
1062 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001063 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001064 */
Boris Brezillonf1d46942018-09-06 14:05:29 +02001065static void panic_nand_wait(struct nand_chip *chip, unsigned long timeo)
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001066{
1067 int i;
1068 for (i = 0; i < timeo; i++) {
1069 if (chip->dev_ready) {
Boris Brezillon50a487e2018-09-06 14:05:27 +02001070 if (chip->dev_ready(chip))
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001071 break;
1072 } else {
Boris Brezillon97d90da2017-11-30 18:01:29 +01001073 int ret;
1074 u8 status;
1075
1076 ret = nand_read_data_op(chip, &status, sizeof(status),
1077 true);
1078 if (ret)
1079 return;
1080
1081 if (status & NAND_STATUS_READY)
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001082 break;
1083 }
1084 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +02001085 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001086}
1087
1088/**
Brian Norris8b6e50c2011-05-25 14:59:01 -07001089 * nand_wait - [DEFAULT] wait until the command is done
1090 * @mtd: MTD device structure
1091 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 *
Alex Smithb70af9b2015-10-06 14:52:07 +01001093 * Wait for command done. This applies to erase and program only.
Randy Dunlap844d3b42006-06-28 21:48:27 -07001094 */
Boris Brezillonf1d46942018-09-06 14:05:29 +02001095static int nand_wait(struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
1097
Alex Smithb70af9b2015-10-06 14:52:07 +01001098 unsigned long timeo = 400;
Boris Brezillon97d90da2017-11-30 18:01:29 +01001099 u8 status;
1100 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Brian Norris8b6e50c2011-05-25 14:59:01 -07001102 /*
1103 * Apply this short delay always to ensure that we do wait tWB in any
1104 * case on any machine.
1105 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001106 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Boris Brezillon97d90da2017-11-30 18:01:29 +01001108 ret = nand_status_op(chip, NULL);
1109 if (ret)
1110 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001112 if (in_interrupt() || oops_in_progress)
Boris Brezillonf1d46942018-09-06 14:05:29 +02001113 panic_nand_wait(chip, timeo);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001114 else {
Huang Shijie6d2559f2013-01-30 10:03:56 +08001115 timeo = jiffies + msecs_to_jiffies(timeo);
Alex Smithb70af9b2015-10-06 14:52:07 +01001116 do {
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001117 if (chip->dev_ready) {
Boris Brezillon50a487e2018-09-06 14:05:27 +02001118 if (chip->dev_ready(chip))
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001119 break;
1120 } else {
Boris Brezillon97d90da2017-11-30 18:01:29 +01001121 ret = nand_read_data_op(chip, &status,
1122 sizeof(status), true);
1123 if (ret)
1124 return ret;
1125
1126 if (status & NAND_STATUS_READY)
Simon Kagstrom2af7c652009-10-05 15:55:52 +02001127 break;
1128 }
1129 cond_resched();
Alex Smithb70af9b2015-10-06 14:52:07 +01001130 } while (time_before(jiffies, timeo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
Richard Purdie8fe833c2006-03-31 02:31:14 -08001132
Boris Brezillon97d90da2017-11-30 18:01:29 +01001133 ret = nand_read_data_op(chip, &status, sizeof(status), true);
1134 if (ret)
1135 return ret;
1136
Matthieu CASTETf251b8d2012-11-05 15:00:44 +01001137 /* This can happen if in case of timeout or buggy dev_ready */
1138 WARN_ON(!(status & NAND_STATUS_READY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return status;
1140}
1141
Miquel Raynal789157e2018-03-19 14:47:28 +01001142static bool nand_supports_get_features(struct nand_chip *chip, int addr)
Miquel Raynal97baea12018-03-19 14:47:20 +01001143{
Miquel Raynal789157e2018-03-19 14:47:28 +01001144 return (chip->parameters.supports_set_get_features &&
1145 test_bit(addr, chip->parameters.get_feature_list));
1146}
1147
1148static bool nand_supports_set_features(struct nand_chip *chip, int addr)
1149{
1150 return (chip->parameters.supports_set_get_features &&
1151 test_bit(addr, chip->parameters.set_feature_list));
Miquel Raynal97baea12018-03-19 14:47:20 +01001152}
1153
1154/**
1155 * nand_get_features - wrapper to perform a GET_FEATURE
1156 * @chip: NAND chip info structure
1157 * @addr: feature address
1158 * @subfeature_param: the subfeature parameters, a four bytes array
1159 *
1160 * Returns 0 for success, a negative error otherwise. Returns -ENOTSUPP if the
1161 * operation cannot be handled.
1162 */
1163int nand_get_features(struct nand_chip *chip, int addr,
1164 u8 *subfeature_param)
1165{
1166 struct mtd_info *mtd = nand_to_mtd(chip);
1167
Miquel Raynal789157e2018-03-19 14:47:28 +01001168 if (!nand_supports_get_features(chip, addr))
Miquel Raynal97baea12018-03-19 14:47:20 +01001169 return -ENOTSUPP;
1170
1171 return chip->get_features(mtd, chip, addr, subfeature_param);
1172}
1173EXPORT_SYMBOL_GPL(nand_get_features);
1174
1175/**
1176 * nand_set_features - wrapper to perform a SET_FEATURE
1177 * @chip: NAND chip info structure
1178 * @addr: feature address
1179 * @subfeature_param: the subfeature parameters, a four bytes array
1180 *
1181 * Returns 0 for success, a negative error otherwise. Returns -ENOTSUPP if the
1182 * operation cannot be handled.
1183 */
1184int nand_set_features(struct nand_chip *chip, int addr,
1185 u8 *subfeature_param)
1186{
1187 struct mtd_info *mtd = nand_to_mtd(chip);
1188
Miquel Raynal789157e2018-03-19 14:47:28 +01001189 if (!nand_supports_set_features(chip, addr))
Miquel Raynal97baea12018-03-19 14:47:20 +01001190 return -ENOTSUPP;
1191
1192 return chip->set_features(mtd, chip, addr, subfeature_param);
1193}
1194EXPORT_SYMBOL_GPL(nand_set_features);
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196/**
Boris Brezillond8e725d2016-09-15 10:32:50 +02001197 * nand_reset_data_interface - Reset data interface and timings
1198 * @chip: The NAND chip
Boris Brezillon104e4422017-03-16 09:35:58 +01001199 * @chipnr: Internal die id
Boris Brezillond8e725d2016-09-15 10:32:50 +02001200 *
1201 * Reset the Data interface and timings to ONFI mode 0.
1202 *
1203 * Returns 0 for success or negative error code otherwise.
1204 */
Boris Brezillon104e4422017-03-16 09:35:58 +01001205static int nand_reset_data_interface(struct nand_chip *chip, int chipnr)
Boris Brezillond8e725d2016-09-15 10:32:50 +02001206{
1207 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001208 int ret;
1209
1210 if (!chip->setup_data_interface)
1211 return 0;
1212
1213 /*
1214 * The ONFI specification says:
1215 * "
1216 * To transition from NV-DDR or NV-DDR2 to the SDR data
1217 * interface, the host shall use the Reset (FFh) command
1218 * using SDR timing mode 0. A device in any timing mode is
1219 * required to recognize Reset (FFh) command issued in SDR
1220 * timing mode 0.
1221 * "
1222 *
1223 * Configure the data interface in SDR mode and set the
1224 * timings to timing mode 0.
1225 */
1226
Miquel Raynal17fa8042017-11-30 18:01:31 +01001227 onfi_fill_data_interface(chip, NAND_SDR_IFACE, 0);
1228 ret = chip->setup_data_interface(mtd, chipnr, &chip->data_interface);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001229 if (ret)
1230 pr_err("Failed to configure data interface to SDR timing mode 0\n");
1231
1232 return ret;
1233}
1234
1235/**
1236 * nand_setup_data_interface - Setup the best data interface and timings
1237 * @chip: The NAND chip
Boris Brezillon104e4422017-03-16 09:35:58 +01001238 * @chipnr: Internal die id
Boris Brezillond8e725d2016-09-15 10:32:50 +02001239 *
1240 * Find and configure the best data interface and NAND timings supported by
1241 * the chip and the driver.
1242 * First tries to retrieve supported timing modes from ONFI information,
1243 * and if the NAND chip does not support ONFI, relies on the
1244 * ->onfi_timing_mode_default specified in the nand_ids table.
1245 *
1246 * Returns 0 for success or negative error code otherwise.
1247 */
Boris Brezillon104e4422017-03-16 09:35:58 +01001248static int nand_setup_data_interface(struct nand_chip *chip, int chipnr)
Boris Brezillond8e725d2016-09-15 10:32:50 +02001249{
1250 struct mtd_info *mtd = nand_to_mtd(chip);
Miquel Raynal97baea12018-03-19 14:47:20 +01001251 u8 tmode_param[ONFI_SUBFEATURE_PARAM_LEN] = {
1252 chip->onfi_timing_mode_default,
1253 };
Boris Brezillond8e725d2016-09-15 10:32:50 +02001254 int ret;
1255
Miquel Raynal17fa8042017-11-30 18:01:31 +01001256 if (!chip->setup_data_interface)
Boris Brezillond8e725d2016-09-15 10:32:50 +02001257 return 0;
1258
Miquel Raynal993447b2018-03-19 14:47:21 +01001259 /* Change the mode on the chip side (if supported by the NAND chip) */
Miquel Raynal789157e2018-03-19 14:47:28 +01001260 if (nand_supports_set_features(chip, ONFI_FEATURE_ADDR_TIMING_MODE)) {
Boris Brezillon758b56f2018-09-06 14:05:24 +02001261 chip->select_chip(chip, chipnr);
Miquel Raynal993447b2018-03-19 14:47:21 +01001262 ret = nand_set_features(chip, ONFI_FEATURE_ADDR_TIMING_MODE,
1263 tmode_param);
Boris Brezillon758b56f2018-09-06 14:05:24 +02001264 chip->select_chip(chip, -1);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001265 if (ret)
Miquel Raynal993447b2018-03-19 14:47:21 +01001266 return ret;
Boris Brezillond8e725d2016-09-15 10:32:50 +02001267 }
1268
Miquel Raynal97baea12018-03-19 14:47:20 +01001269 /* Change the mode on the controller side */
Miquel Raynal17fa8042017-11-30 18:01:31 +01001270 ret = chip->setup_data_interface(mtd, chipnr, &chip->data_interface);
Miquel Raynal415ae782018-03-19 14:47:24 +01001271 if (ret)
1272 return ret;
1273
1274 /* Check the mode has been accepted by the chip, if supported */
Miquel Raynal789157e2018-03-19 14:47:28 +01001275 if (!nand_supports_get_features(chip, ONFI_FEATURE_ADDR_TIMING_MODE))
Miquel Raynal415ae782018-03-19 14:47:24 +01001276 return 0;
1277
1278 memset(tmode_param, 0, ONFI_SUBFEATURE_PARAM_LEN);
Boris Brezillon758b56f2018-09-06 14:05:24 +02001279 chip->select_chip(chip, chipnr);
Miquel Raynal415ae782018-03-19 14:47:24 +01001280 ret = nand_get_features(chip, ONFI_FEATURE_ADDR_TIMING_MODE,
1281 tmode_param);
Boris Brezillon758b56f2018-09-06 14:05:24 +02001282 chip->select_chip(chip, -1);
Miquel Raynal415ae782018-03-19 14:47:24 +01001283 if (ret)
1284 goto err_reset_chip;
1285
1286 if (tmode_param[0] != chip->onfi_timing_mode_default) {
1287 pr_warn("timing mode %d not acknowledged by the NAND chip\n",
1288 chip->onfi_timing_mode_default);
1289 goto err_reset_chip;
1290 }
1291
1292 return 0;
1293
1294err_reset_chip:
1295 /*
1296 * Fallback to mode 0 if the chip explicitly did not ack the chosen
1297 * timing mode.
1298 */
1299 nand_reset_data_interface(chip, chipnr);
Boris Brezillon758b56f2018-09-06 14:05:24 +02001300 chip->select_chip(chip, chipnr);
Miquel Raynal415ae782018-03-19 14:47:24 +01001301 nand_reset_op(chip);
Boris Brezillon758b56f2018-09-06 14:05:24 +02001302 chip->select_chip(chip, -1);
Miquel Raynal415ae782018-03-19 14:47:24 +01001303
Boris Brezillond8e725d2016-09-15 10:32:50 +02001304 return ret;
1305}
1306
1307/**
1308 * nand_init_data_interface - find the best data interface and timings
1309 * @chip: The NAND chip
1310 *
1311 * Find the best data interface and NAND timings supported by the chip
1312 * and the driver.
1313 * First tries to retrieve supported timing modes from ONFI information,
1314 * and if the NAND chip does not support ONFI, relies on the
1315 * ->onfi_timing_mode_default specified in the nand_ids table. After this
1316 * function nand_chip->data_interface is initialized with the best timing mode
1317 * available.
1318 *
1319 * Returns 0 for success or negative error code otherwise.
1320 */
1321static int nand_init_data_interface(struct nand_chip *chip)
1322{
1323 struct mtd_info *mtd = nand_to_mtd(chip);
1324 int modes, mode, ret;
1325
1326 if (!chip->setup_data_interface)
1327 return 0;
1328
1329 /*
1330 * First try to identify the best timings from ONFI parameters and
1331 * if the NAND does not support ONFI, fallback to the default ONFI
1332 * timing mode.
1333 */
1334 modes = onfi_get_async_timing_mode(chip);
1335 if (modes == ONFI_TIMING_MODE_UNKNOWN) {
1336 if (!chip->onfi_timing_mode_default)
1337 return 0;
1338
1339 modes = GENMASK(chip->onfi_timing_mode_default, 0);
1340 }
1341
Boris Brezillond8e725d2016-09-15 10:32:50 +02001342
1343 for (mode = fls(modes) - 1; mode >= 0; mode--) {
Miquel Raynal17fa8042017-11-30 18:01:31 +01001344 ret = onfi_fill_data_interface(chip, NAND_SDR_IFACE, mode);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001345 if (ret)
1346 continue;
1347
Miquel Raynald787b8b2017-12-22 18:12:41 +01001348 /*
1349 * Pass NAND_DATA_IFACE_CHECK_ONLY to only check if the
1350 * controller supports the requested timings.
1351 */
Boris Brezillon104e4422017-03-16 09:35:58 +01001352 ret = chip->setup_data_interface(mtd,
1353 NAND_DATA_IFACE_CHECK_ONLY,
Miquel Raynal17fa8042017-11-30 18:01:31 +01001354 &chip->data_interface);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001355 if (!ret) {
1356 chip->onfi_timing_mode_default = mode;
1357 break;
1358 }
1359 }
1360
1361 return 0;
1362}
1363
Boris Brezillond8e725d2016-09-15 10:32:50 +02001364/**
Miquel Raynal8878b122017-11-09 14:16:45 +01001365 * nand_fill_column_cycles - fill the column cycles of an address
1366 * @chip: The NAND chip
1367 * @addrs: Array of address cycles to fill
1368 * @offset_in_page: The offset in the page
1369 *
1370 * Fills the first or the first two bytes of the @addrs field depending
1371 * on the NAND bus width and the page size.
1372 *
1373 * Returns the number of cycles needed to encode the column, or a negative
1374 * error code in case one of the arguments is invalid.
1375 */
1376static int nand_fill_column_cycles(struct nand_chip *chip, u8 *addrs,
1377 unsigned int offset_in_page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
Miquel Raynal8878b122017-11-09 14:16:45 +01001379 struct mtd_info *mtd = nand_to_mtd(chip);
1380
1381 /* Make sure the offset is less than the actual page size. */
1382 if (offset_in_page > mtd->writesize + mtd->oobsize)
1383 return -EINVAL;
1384
1385 /*
1386 * On small page NANDs, there's a dedicated command to access the OOB
1387 * area, and the column address is relative to the start of the OOB
1388 * area, not the start of the page. Asjust the address accordingly.
1389 */
1390 if (mtd->writesize <= 512 && offset_in_page >= mtd->writesize)
1391 offset_in_page -= mtd->writesize;
1392
1393 /*
1394 * The offset in page is expressed in bytes, if the NAND bus is 16-bit
1395 * wide, then it must be divided by 2.
1396 */
1397 if (chip->options & NAND_BUSWIDTH_16) {
1398 if (WARN_ON(offset_in_page % 2))
1399 return -EINVAL;
1400
1401 offset_in_page /= 2;
1402 }
1403
1404 addrs[0] = offset_in_page;
1405
1406 /*
1407 * Small page NANDs use 1 cycle for the columns, while large page NANDs
1408 * need 2
1409 */
1410 if (mtd->writesize <= 512)
1411 return 1;
1412
1413 addrs[1] = offset_in_page >> 8;
1414
1415 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
1417
Miquel Raynal8878b122017-11-09 14:16:45 +01001418static int nand_sp_exec_read_page_op(struct nand_chip *chip, unsigned int page,
1419 unsigned int offset_in_page, void *buf,
1420 unsigned int len)
1421{
1422 struct mtd_info *mtd = nand_to_mtd(chip);
1423 const struct nand_sdr_timings *sdr =
1424 nand_get_sdr_timings(&chip->data_interface);
1425 u8 addrs[4];
1426 struct nand_op_instr instrs[] = {
1427 NAND_OP_CMD(NAND_CMD_READ0, 0),
1428 NAND_OP_ADDR(3, addrs, PSEC_TO_NSEC(sdr->tWB_max)),
1429 NAND_OP_WAIT_RDY(PSEC_TO_MSEC(sdr->tR_max),
1430 PSEC_TO_NSEC(sdr->tRR_min)),
1431 NAND_OP_DATA_IN(len, buf, 0),
1432 };
1433 struct nand_operation op = NAND_OPERATION(instrs);
1434 int ret;
1435
1436 /* Drop the DATA_IN instruction if len is set to 0. */
1437 if (!len)
1438 op.ninstrs--;
1439
1440 if (offset_in_page >= mtd->writesize)
1441 instrs[0].ctx.cmd.opcode = NAND_CMD_READOOB;
1442 else if (offset_in_page >= 256 &&
1443 !(chip->options & NAND_BUSWIDTH_16))
1444 instrs[0].ctx.cmd.opcode = NAND_CMD_READ1;
1445
1446 ret = nand_fill_column_cycles(chip, addrs, offset_in_page);
1447 if (ret < 0)
1448 return ret;
1449
1450 addrs[1] = page;
1451 addrs[2] = page >> 8;
1452
1453 if (chip->options & NAND_ROW_ADDR_3) {
1454 addrs[3] = page >> 16;
1455 instrs[1].ctx.addr.naddrs++;
1456 }
1457
1458 return nand_exec_op(chip, &op);
1459}
1460
1461static int nand_lp_exec_read_page_op(struct nand_chip *chip, unsigned int page,
1462 unsigned int offset_in_page, void *buf,
1463 unsigned int len)
1464{
1465 const struct nand_sdr_timings *sdr =
1466 nand_get_sdr_timings(&chip->data_interface);
1467 u8 addrs[5];
1468 struct nand_op_instr instrs[] = {
1469 NAND_OP_CMD(NAND_CMD_READ0, 0),
1470 NAND_OP_ADDR(4, addrs, 0),
1471 NAND_OP_CMD(NAND_CMD_READSTART, PSEC_TO_NSEC(sdr->tWB_max)),
1472 NAND_OP_WAIT_RDY(PSEC_TO_MSEC(sdr->tR_max),
1473 PSEC_TO_NSEC(sdr->tRR_min)),
1474 NAND_OP_DATA_IN(len, buf, 0),
1475 };
1476 struct nand_operation op = NAND_OPERATION(instrs);
1477 int ret;
1478
1479 /* Drop the DATA_IN instruction if len is set to 0. */
1480 if (!len)
1481 op.ninstrs--;
1482
1483 ret = nand_fill_column_cycles(chip, addrs, offset_in_page);
1484 if (ret < 0)
1485 return ret;
1486
1487 addrs[2] = page;
1488 addrs[3] = page >> 8;
1489
1490 if (chip->options & NAND_ROW_ADDR_3) {
1491 addrs[4] = page >> 16;
1492 instrs[1].ctx.addr.naddrs++;
1493 }
1494
1495 return nand_exec_op(chip, &op);
1496}
1497
1498/**
Boris Brezillon97d90da2017-11-30 18:01:29 +01001499 * nand_read_page_op - Do a READ PAGE operation
1500 * @chip: The NAND chip
1501 * @page: page to read
1502 * @offset_in_page: offset within the page
1503 * @buf: buffer used to store the data
1504 * @len: length of the buffer
1505 *
1506 * This function issues a READ PAGE operation.
1507 * This function does not select/unselect the CS line.
1508 *
1509 * Returns 0 on success, a negative error code otherwise.
1510 */
1511int nand_read_page_op(struct nand_chip *chip, unsigned int page,
1512 unsigned int offset_in_page, void *buf, unsigned int len)
1513{
1514 struct mtd_info *mtd = nand_to_mtd(chip);
1515
1516 if (len && !buf)
1517 return -EINVAL;
1518
1519 if (offset_in_page + len > mtd->writesize + mtd->oobsize)
1520 return -EINVAL;
1521
Miquel Raynal8878b122017-11-09 14:16:45 +01001522 if (chip->exec_op) {
1523 if (mtd->writesize > 512)
1524 return nand_lp_exec_read_page_op(chip, page,
1525 offset_in_page, buf,
1526 len);
1527
1528 return nand_sp_exec_read_page_op(chip, page, offset_in_page,
1529 buf, len);
1530 }
1531
Boris Brezillon5295cf22018-09-06 14:05:28 +02001532 chip->cmdfunc(chip, NAND_CMD_READ0, offset_in_page, page);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001533 if (len)
Boris Brezillon7e534322018-09-06 14:05:22 +02001534 chip->read_buf(chip, buf, len);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001535
1536 return 0;
1537}
1538EXPORT_SYMBOL_GPL(nand_read_page_op);
1539
1540/**
1541 * nand_read_param_page_op - Do a READ PARAMETER PAGE operation
1542 * @chip: The NAND chip
1543 * @page: parameter page to read
1544 * @buf: buffer used to store the data
1545 * @len: length of the buffer
1546 *
1547 * This function issues a READ PARAMETER PAGE operation.
1548 * This function does not select/unselect the CS line.
1549 *
1550 * Returns 0 on success, a negative error code otherwise.
1551 */
1552static int nand_read_param_page_op(struct nand_chip *chip, u8 page, void *buf,
1553 unsigned int len)
1554{
Boris Brezillon97d90da2017-11-30 18:01:29 +01001555 unsigned int i;
1556 u8 *p = buf;
1557
1558 if (len && !buf)
1559 return -EINVAL;
1560
Miquel Raynal8878b122017-11-09 14:16:45 +01001561 if (chip->exec_op) {
1562 const struct nand_sdr_timings *sdr =
1563 nand_get_sdr_timings(&chip->data_interface);
1564 struct nand_op_instr instrs[] = {
1565 NAND_OP_CMD(NAND_CMD_PARAM, 0),
1566 NAND_OP_ADDR(1, &page, PSEC_TO_NSEC(sdr->tWB_max)),
1567 NAND_OP_WAIT_RDY(PSEC_TO_MSEC(sdr->tR_max),
1568 PSEC_TO_NSEC(sdr->tRR_min)),
1569 NAND_OP_8BIT_DATA_IN(len, buf, 0),
1570 };
1571 struct nand_operation op = NAND_OPERATION(instrs);
1572
1573 /* Drop the DATA_IN instruction if len is set to 0. */
1574 if (!len)
1575 op.ninstrs--;
1576
1577 return nand_exec_op(chip, &op);
1578 }
1579
Boris Brezillon5295cf22018-09-06 14:05:28 +02001580 chip->cmdfunc(chip, NAND_CMD_PARAM, page, -1);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001581 for (i = 0; i < len; i++)
Boris Brezillon7e534322018-09-06 14:05:22 +02001582 p[i] = chip->read_byte(chip);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001583
1584 return 0;
1585}
1586
1587/**
1588 * nand_change_read_column_op - Do a CHANGE READ COLUMN operation
1589 * @chip: The NAND chip
1590 * @offset_in_page: offset within the page
1591 * @buf: buffer used to store the data
1592 * @len: length of the buffer
1593 * @force_8bit: force 8-bit bus access
1594 *
1595 * This function issues a CHANGE READ COLUMN operation.
1596 * This function does not select/unselect the CS line.
1597 *
1598 * Returns 0 on success, a negative error code otherwise.
1599 */
1600int nand_change_read_column_op(struct nand_chip *chip,
1601 unsigned int offset_in_page, void *buf,
1602 unsigned int len, bool force_8bit)
1603{
1604 struct mtd_info *mtd = nand_to_mtd(chip);
1605
1606 if (len && !buf)
1607 return -EINVAL;
1608
1609 if (offset_in_page + len > mtd->writesize + mtd->oobsize)
1610 return -EINVAL;
1611
Miquel Raynal8878b122017-11-09 14:16:45 +01001612 /* Small page NANDs do not support column change. */
1613 if (mtd->writesize <= 512)
1614 return -ENOTSUPP;
1615
1616 if (chip->exec_op) {
1617 const struct nand_sdr_timings *sdr =
1618 nand_get_sdr_timings(&chip->data_interface);
1619 u8 addrs[2] = {};
1620 struct nand_op_instr instrs[] = {
1621 NAND_OP_CMD(NAND_CMD_RNDOUT, 0),
1622 NAND_OP_ADDR(2, addrs, 0),
1623 NAND_OP_CMD(NAND_CMD_RNDOUTSTART,
1624 PSEC_TO_NSEC(sdr->tCCS_min)),
1625 NAND_OP_DATA_IN(len, buf, 0),
1626 };
1627 struct nand_operation op = NAND_OPERATION(instrs);
1628 int ret;
1629
1630 ret = nand_fill_column_cycles(chip, addrs, offset_in_page);
1631 if (ret < 0)
1632 return ret;
1633
1634 /* Drop the DATA_IN instruction if len is set to 0. */
1635 if (!len)
1636 op.ninstrs--;
1637
1638 instrs[3].ctx.data.force_8bit = force_8bit;
1639
1640 return nand_exec_op(chip, &op);
1641 }
1642
Boris Brezillon5295cf22018-09-06 14:05:28 +02001643 chip->cmdfunc(chip, NAND_CMD_RNDOUT, offset_in_page, -1);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001644 if (len)
Boris Brezillon7e534322018-09-06 14:05:22 +02001645 chip->read_buf(chip, buf, len);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001646
1647 return 0;
1648}
1649EXPORT_SYMBOL_GPL(nand_change_read_column_op);
1650
1651/**
1652 * nand_read_oob_op - Do a READ OOB operation
1653 * @chip: The NAND chip
1654 * @page: page to read
1655 * @offset_in_oob: offset within the OOB area
1656 * @buf: buffer used to store the data
1657 * @len: length of the buffer
1658 *
1659 * This function issues a READ OOB operation.
1660 * This function does not select/unselect the CS line.
1661 *
1662 * Returns 0 on success, a negative error code otherwise.
1663 */
1664int nand_read_oob_op(struct nand_chip *chip, unsigned int page,
1665 unsigned int offset_in_oob, void *buf, unsigned int len)
1666{
1667 struct mtd_info *mtd = nand_to_mtd(chip);
1668
1669 if (len && !buf)
1670 return -EINVAL;
1671
1672 if (offset_in_oob + len > mtd->oobsize)
1673 return -EINVAL;
1674
Miquel Raynal8878b122017-11-09 14:16:45 +01001675 if (chip->exec_op)
1676 return nand_read_page_op(chip, page,
1677 mtd->writesize + offset_in_oob,
1678 buf, len);
1679
Boris Brezillon5295cf22018-09-06 14:05:28 +02001680 chip->cmdfunc(chip, NAND_CMD_READOOB, offset_in_oob, page);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001681 if (len)
Boris Brezillon7e534322018-09-06 14:05:22 +02001682 chip->read_buf(chip, buf, len);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001683
1684 return 0;
1685}
1686EXPORT_SYMBOL_GPL(nand_read_oob_op);
1687
Miquel Raynal8878b122017-11-09 14:16:45 +01001688static int nand_exec_prog_page_op(struct nand_chip *chip, unsigned int page,
1689 unsigned int offset_in_page, const void *buf,
1690 unsigned int len, bool prog)
1691{
1692 struct mtd_info *mtd = nand_to_mtd(chip);
1693 const struct nand_sdr_timings *sdr =
1694 nand_get_sdr_timings(&chip->data_interface);
1695 u8 addrs[5] = {};
1696 struct nand_op_instr instrs[] = {
1697 /*
1698 * The first instruction will be dropped if we're dealing
1699 * with a large page NAND and adjusted if we're dealing
1700 * with a small page NAND and the page offset is > 255.
1701 */
1702 NAND_OP_CMD(NAND_CMD_READ0, 0),
1703 NAND_OP_CMD(NAND_CMD_SEQIN, 0),
1704 NAND_OP_ADDR(0, addrs, PSEC_TO_NSEC(sdr->tADL_min)),
1705 NAND_OP_DATA_OUT(len, buf, 0),
1706 NAND_OP_CMD(NAND_CMD_PAGEPROG, PSEC_TO_NSEC(sdr->tWB_max)),
1707 NAND_OP_WAIT_RDY(PSEC_TO_MSEC(sdr->tPROG_max), 0),
1708 };
1709 struct nand_operation op = NAND_OPERATION(instrs);
1710 int naddrs = nand_fill_column_cycles(chip, addrs, offset_in_page);
1711 int ret;
1712 u8 status;
1713
1714 if (naddrs < 0)
1715 return naddrs;
1716
1717 addrs[naddrs++] = page;
1718 addrs[naddrs++] = page >> 8;
1719 if (chip->options & NAND_ROW_ADDR_3)
1720 addrs[naddrs++] = page >> 16;
1721
1722 instrs[2].ctx.addr.naddrs = naddrs;
1723
1724 /* Drop the last two instructions if we're not programming the page. */
1725 if (!prog) {
1726 op.ninstrs -= 2;
1727 /* Also drop the DATA_OUT instruction if empty. */
1728 if (!len)
1729 op.ninstrs--;
1730 }
1731
1732 if (mtd->writesize <= 512) {
1733 /*
1734 * Small pages need some more tweaking: we have to adjust the
1735 * first instruction depending on the page offset we're trying
1736 * to access.
1737 */
1738 if (offset_in_page >= mtd->writesize)
1739 instrs[0].ctx.cmd.opcode = NAND_CMD_READOOB;
1740 else if (offset_in_page >= 256 &&
1741 !(chip->options & NAND_BUSWIDTH_16))
1742 instrs[0].ctx.cmd.opcode = NAND_CMD_READ1;
1743 } else {
1744 /*
1745 * Drop the first command if we're dealing with a large page
1746 * NAND.
1747 */
1748 op.instrs++;
1749 op.ninstrs--;
1750 }
1751
1752 ret = nand_exec_op(chip, &op);
1753 if (!prog || ret)
1754 return ret;
1755
1756 ret = nand_status_op(chip, &status);
1757 if (ret)
1758 return ret;
1759
1760 return status;
1761}
1762
Boris Brezillon97d90da2017-11-30 18:01:29 +01001763/**
1764 * nand_prog_page_begin_op - starts a PROG PAGE operation
1765 * @chip: The NAND chip
1766 * @page: page to write
1767 * @offset_in_page: offset within the page
1768 * @buf: buffer containing the data to write to the page
1769 * @len: length of the buffer
1770 *
1771 * This function issues the first half of a PROG PAGE operation.
1772 * This function does not select/unselect the CS line.
1773 *
1774 * Returns 0 on success, a negative error code otherwise.
1775 */
1776int nand_prog_page_begin_op(struct nand_chip *chip, unsigned int page,
1777 unsigned int offset_in_page, const void *buf,
1778 unsigned int len)
1779{
1780 struct mtd_info *mtd = nand_to_mtd(chip);
1781
1782 if (len && !buf)
1783 return -EINVAL;
1784
1785 if (offset_in_page + len > mtd->writesize + mtd->oobsize)
1786 return -EINVAL;
1787
Miquel Raynal8878b122017-11-09 14:16:45 +01001788 if (chip->exec_op)
1789 return nand_exec_prog_page_op(chip, page, offset_in_page, buf,
1790 len, false);
1791
Boris Brezillon5295cf22018-09-06 14:05:28 +02001792 chip->cmdfunc(chip, NAND_CMD_SEQIN, offset_in_page, page);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001793
1794 if (buf)
Boris Brezillonc0739d82018-09-06 14:05:23 +02001795 chip->write_buf(chip, buf, len);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001796
1797 return 0;
1798}
1799EXPORT_SYMBOL_GPL(nand_prog_page_begin_op);
1800
1801/**
1802 * nand_prog_page_end_op - ends a PROG PAGE operation
1803 * @chip: The NAND chip
1804 *
1805 * This function issues the second half of a PROG PAGE operation.
1806 * This function does not select/unselect the CS line.
1807 *
1808 * Returns 0 on success, a negative error code otherwise.
1809 */
1810int nand_prog_page_end_op(struct nand_chip *chip)
1811{
Miquel Raynal8878b122017-11-09 14:16:45 +01001812 int ret;
1813 u8 status;
Boris Brezillon97d90da2017-11-30 18:01:29 +01001814
Miquel Raynal8878b122017-11-09 14:16:45 +01001815 if (chip->exec_op) {
1816 const struct nand_sdr_timings *sdr =
1817 nand_get_sdr_timings(&chip->data_interface);
1818 struct nand_op_instr instrs[] = {
1819 NAND_OP_CMD(NAND_CMD_PAGEPROG,
1820 PSEC_TO_NSEC(sdr->tWB_max)),
1821 NAND_OP_WAIT_RDY(PSEC_TO_MSEC(sdr->tPROG_max), 0),
1822 };
1823 struct nand_operation op = NAND_OPERATION(instrs);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001824
Miquel Raynal8878b122017-11-09 14:16:45 +01001825 ret = nand_exec_op(chip, &op);
1826 if (ret)
1827 return ret;
1828
1829 ret = nand_status_op(chip, &status);
1830 if (ret)
1831 return ret;
1832 } else {
Boris Brezillon5295cf22018-09-06 14:05:28 +02001833 chip->cmdfunc(chip, NAND_CMD_PAGEPROG, -1, -1);
Boris Brezillonf1d46942018-09-06 14:05:29 +02001834 ret = chip->waitfunc(chip);
Miquel Raynal8878b122017-11-09 14:16:45 +01001835 if (ret < 0)
1836 return ret;
1837
1838 status = ret;
1839 }
1840
Boris Brezillon97d90da2017-11-30 18:01:29 +01001841 if (status & NAND_STATUS_FAIL)
1842 return -EIO;
1843
1844 return 0;
1845}
1846EXPORT_SYMBOL_GPL(nand_prog_page_end_op);
1847
1848/**
1849 * nand_prog_page_op - Do a full PROG PAGE operation
1850 * @chip: The NAND chip
1851 * @page: page to write
1852 * @offset_in_page: offset within the page
1853 * @buf: buffer containing the data to write to the page
1854 * @len: length of the buffer
1855 *
1856 * This function issues a full PROG PAGE operation.
1857 * This function does not select/unselect the CS line.
1858 *
1859 * Returns 0 on success, a negative error code otherwise.
1860 */
1861int nand_prog_page_op(struct nand_chip *chip, unsigned int page,
1862 unsigned int offset_in_page, const void *buf,
1863 unsigned int len)
1864{
1865 struct mtd_info *mtd = nand_to_mtd(chip);
1866 int status;
1867
1868 if (!len || !buf)
1869 return -EINVAL;
1870
1871 if (offset_in_page + len > mtd->writesize + mtd->oobsize)
1872 return -EINVAL;
1873
Miquel Raynal8878b122017-11-09 14:16:45 +01001874 if (chip->exec_op) {
1875 status = nand_exec_prog_page_op(chip, page, offset_in_page, buf,
1876 len, true);
1877 } else {
Boris Brezillon5295cf22018-09-06 14:05:28 +02001878 chip->cmdfunc(chip, NAND_CMD_SEQIN, offset_in_page, page);
Boris Brezillonc0739d82018-09-06 14:05:23 +02001879 chip->write_buf(chip, buf, len);
Boris Brezillon5295cf22018-09-06 14:05:28 +02001880 chip->cmdfunc(chip, NAND_CMD_PAGEPROG, -1, -1);
Boris Brezillonf1d46942018-09-06 14:05:29 +02001881 status = chip->waitfunc(chip);
Miquel Raynal8878b122017-11-09 14:16:45 +01001882 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01001883
Boris Brezillon97d90da2017-11-30 18:01:29 +01001884 if (status & NAND_STATUS_FAIL)
1885 return -EIO;
1886
1887 return 0;
1888}
1889EXPORT_SYMBOL_GPL(nand_prog_page_op);
1890
1891/**
1892 * nand_change_write_column_op - Do a CHANGE WRITE COLUMN operation
1893 * @chip: The NAND chip
1894 * @offset_in_page: offset within the page
1895 * @buf: buffer containing the data to send to the NAND
1896 * @len: length of the buffer
1897 * @force_8bit: force 8-bit bus access
1898 *
1899 * This function issues a CHANGE WRITE COLUMN operation.
1900 * This function does not select/unselect the CS line.
1901 *
1902 * Returns 0 on success, a negative error code otherwise.
1903 */
1904int nand_change_write_column_op(struct nand_chip *chip,
1905 unsigned int offset_in_page,
1906 const void *buf, unsigned int len,
1907 bool force_8bit)
1908{
1909 struct mtd_info *mtd = nand_to_mtd(chip);
1910
1911 if (len && !buf)
1912 return -EINVAL;
1913
1914 if (offset_in_page + len > mtd->writesize + mtd->oobsize)
1915 return -EINVAL;
1916
Miquel Raynal8878b122017-11-09 14:16:45 +01001917 /* Small page NANDs do not support column change. */
1918 if (mtd->writesize <= 512)
1919 return -ENOTSUPP;
1920
1921 if (chip->exec_op) {
1922 const struct nand_sdr_timings *sdr =
1923 nand_get_sdr_timings(&chip->data_interface);
1924 u8 addrs[2];
1925 struct nand_op_instr instrs[] = {
1926 NAND_OP_CMD(NAND_CMD_RNDIN, 0),
1927 NAND_OP_ADDR(2, addrs, PSEC_TO_NSEC(sdr->tCCS_min)),
1928 NAND_OP_DATA_OUT(len, buf, 0),
1929 };
1930 struct nand_operation op = NAND_OPERATION(instrs);
1931 int ret;
1932
1933 ret = nand_fill_column_cycles(chip, addrs, offset_in_page);
1934 if (ret < 0)
1935 return ret;
1936
1937 instrs[2].ctx.data.force_8bit = force_8bit;
1938
1939 /* Drop the DATA_OUT instruction if len is set to 0. */
1940 if (!len)
1941 op.ninstrs--;
1942
1943 return nand_exec_op(chip, &op);
1944 }
1945
Boris Brezillon5295cf22018-09-06 14:05:28 +02001946 chip->cmdfunc(chip, NAND_CMD_RNDIN, offset_in_page, -1);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001947 if (len)
Boris Brezillonc0739d82018-09-06 14:05:23 +02001948 chip->write_buf(chip, buf, len);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001949
1950 return 0;
1951}
1952EXPORT_SYMBOL_GPL(nand_change_write_column_op);
1953
1954/**
1955 * nand_readid_op - Do a READID operation
1956 * @chip: The NAND chip
1957 * @addr: address cycle to pass after the READID command
1958 * @buf: buffer used to store the ID
1959 * @len: length of the buffer
1960 *
1961 * This function sends a READID command and reads back the ID returned by the
1962 * NAND.
1963 * This function does not select/unselect the CS line.
1964 *
1965 * Returns 0 on success, a negative error code otherwise.
1966 */
1967int nand_readid_op(struct nand_chip *chip, u8 addr, void *buf,
1968 unsigned int len)
1969{
Boris Brezillon97d90da2017-11-30 18:01:29 +01001970 unsigned int i;
1971 u8 *id = buf;
1972
1973 if (len && !buf)
1974 return -EINVAL;
1975
Miquel Raynal8878b122017-11-09 14:16:45 +01001976 if (chip->exec_op) {
1977 const struct nand_sdr_timings *sdr =
1978 nand_get_sdr_timings(&chip->data_interface);
1979 struct nand_op_instr instrs[] = {
1980 NAND_OP_CMD(NAND_CMD_READID, 0),
1981 NAND_OP_ADDR(1, &addr, PSEC_TO_NSEC(sdr->tADL_min)),
1982 NAND_OP_8BIT_DATA_IN(len, buf, 0),
1983 };
1984 struct nand_operation op = NAND_OPERATION(instrs);
1985
1986 /* Drop the DATA_IN instruction if len is set to 0. */
1987 if (!len)
1988 op.ninstrs--;
1989
1990 return nand_exec_op(chip, &op);
1991 }
1992
Boris Brezillon5295cf22018-09-06 14:05:28 +02001993 chip->cmdfunc(chip, NAND_CMD_READID, addr, -1);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001994
1995 for (i = 0; i < len; i++)
Boris Brezillon7e534322018-09-06 14:05:22 +02001996 id[i] = chip->read_byte(chip);
Boris Brezillon97d90da2017-11-30 18:01:29 +01001997
1998 return 0;
1999}
2000EXPORT_SYMBOL_GPL(nand_readid_op);
2001
2002/**
2003 * nand_status_op - Do a STATUS operation
2004 * @chip: The NAND chip
2005 * @status: out variable to store the NAND status
2006 *
2007 * This function sends a STATUS command and reads back the status returned by
2008 * the NAND.
2009 * This function does not select/unselect the CS line.
2010 *
2011 * Returns 0 on success, a negative error code otherwise.
2012 */
2013int nand_status_op(struct nand_chip *chip, u8 *status)
2014{
Miquel Raynal8878b122017-11-09 14:16:45 +01002015 if (chip->exec_op) {
2016 const struct nand_sdr_timings *sdr =
2017 nand_get_sdr_timings(&chip->data_interface);
2018 struct nand_op_instr instrs[] = {
2019 NAND_OP_CMD(NAND_CMD_STATUS,
2020 PSEC_TO_NSEC(sdr->tADL_min)),
2021 NAND_OP_8BIT_DATA_IN(1, status, 0),
2022 };
2023 struct nand_operation op = NAND_OPERATION(instrs);
2024
2025 if (!status)
2026 op.ninstrs--;
2027
2028 return nand_exec_op(chip, &op);
2029 }
2030
Boris Brezillon5295cf22018-09-06 14:05:28 +02002031 chip->cmdfunc(chip, NAND_CMD_STATUS, -1, -1);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002032 if (status)
Boris Brezillon7e534322018-09-06 14:05:22 +02002033 *status = chip->read_byte(chip);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002034
2035 return 0;
2036}
2037EXPORT_SYMBOL_GPL(nand_status_op);
2038
2039/**
2040 * nand_exit_status_op - Exit a STATUS operation
2041 * @chip: The NAND chip
2042 *
2043 * This function sends a READ0 command to cancel the effect of the STATUS
2044 * command to avoid reading only the status until a new read command is sent.
2045 *
2046 * This function does not select/unselect the CS line.
2047 *
2048 * Returns 0 on success, a negative error code otherwise.
2049 */
2050int nand_exit_status_op(struct nand_chip *chip)
2051{
Miquel Raynal8878b122017-11-09 14:16:45 +01002052 if (chip->exec_op) {
2053 struct nand_op_instr instrs[] = {
2054 NAND_OP_CMD(NAND_CMD_READ0, 0),
2055 };
2056 struct nand_operation op = NAND_OPERATION(instrs);
2057
2058 return nand_exec_op(chip, &op);
2059 }
2060
Boris Brezillon5295cf22018-09-06 14:05:28 +02002061 chip->cmdfunc(chip, NAND_CMD_READ0, -1, -1);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002062
2063 return 0;
2064}
2065EXPORT_SYMBOL_GPL(nand_exit_status_op);
2066
2067/**
2068 * nand_erase_op - Do an erase operation
2069 * @chip: The NAND chip
2070 * @eraseblock: block to erase
2071 *
2072 * This function sends an ERASE command and waits for the NAND to be ready
2073 * before returning.
2074 * This function does not select/unselect the CS line.
2075 *
2076 * Returns 0 on success, a negative error code otherwise.
2077 */
2078int nand_erase_op(struct nand_chip *chip, unsigned int eraseblock)
2079{
Boris Brezillon97d90da2017-11-30 18:01:29 +01002080 unsigned int page = eraseblock <<
2081 (chip->phys_erase_shift - chip->page_shift);
Miquel Raynal8878b122017-11-09 14:16:45 +01002082 int ret;
2083 u8 status;
Boris Brezillon97d90da2017-11-30 18:01:29 +01002084
Miquel Raynal8878b122017-11-09 14:16:45 +01002085 if (chip->exec_op) {
2086 const struct nand_sdr_timings *sdr =
2087 nand_get_sdr_timings(&chip->data_interface);
2088 u8 addrs[3] = { page, page >> 8, page >> 16 };
2089 struct nand_op_instr instrs[] = {
2090 NAND_OP_CMD(NAND_CMD_ERASE1, 0),
2091 NAND_OP_ADDR(2, addrs, 0),
2092 NAND_OP_CMD(NAND_CMD_ERASE2,
2093 PSEC_TO_MSEC(sdr->tWB_max)),
2094 NAND_OP_WAIT_RDY(PSEC_TO_MSEC(sdr->tBERS_max), 0),
2095 };
2096 struct nand_operation op = NAND_OPERATION(instrs);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002097
Miquel Raynal8878b122017-11-09 14:16:45 +01002098 if (chip->options & NAND_ROW_ADDR_3)
2099 instrs[1].ctx.addr.naddrs++;
2100
2101 ret = nand_exec_op(chip, &op);
2102 if (ret)
2103 return ret;
2104
2105 ret = nand_status_op(chip, &status);
2106 if (ret)
2107 return ret;
2108 } else {
Boris Brezillon5295cf22018-09-06 14:05:28 +02002109 chip->cmdfunc(chip, NAND_CMD_ERASE1, -1, page);
2110 chip->cmdfunc(chip, NAND_CMD_ERASE2, -1, -1);
Miquel Raynal8878b122017-11-09 14:16:45 +01002111
Boris Brezillonf1d46942018-09-06 14:05:29 +02002112 ret = chip->waitfunc(chip);
Miquel Raynal8878b122017-11-09 14:16:45 +01002113 if (ret < 0)
2114 return ret;
2115
2116 status = ret;
2117 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01002118
2119 if (status & NAND_STATUS_FAIL)
2120 return -EIO;
2121
2122 return 0;
2123}
2124EXPORT_SYMBOL_GPL(nand_erase_op);
2125
2126/**
2127 * nand_set_features_op - Do a SET FEATURES operation
2128 * @chip: The NAND chip
2129 * @feature: feature id
2130 * @data: 4 bytes of data
2131 *
2132 * This function sends a SET FEATURES command and waits for the NAND to be
2133 * ready before returning.
2134 * This function does not select/unselect the CS line.
2135 *
2136 * Returns 0 on success, a negative error code otherwise.
2137 */
2138static int nand_set_features_op(struct nand_chip *chip, u8 feature,
2139 const void *data)
2140{
Boris Brezillon97d90da2017-11-30 18:01:29 +01002141 const u8 *params = data;
Miquel Raynal8878b122017-11-09 14:16:45 +01002142 int i, ret;
Boris Brezillon97d90da2017-11-30 18:01:29 +01002143
Miquel Raynal8878b122017-11-09 14:16:45 +01002144 if (chip->exec_op) {
2145 const struct nand_sdr_timings *sdr =
2146 nand_get_sdr_timings(&chip->data_interface);
2147 struct nand_op_instr instrs[] = {
2148 NAND_OP_CMD(NAND_CMD_SET_FEATURES, 0),
2149 NAND_OP_ADDR(1, &feature, PSEC_TO_NSEC(sdr->tADL_min)),
2150 NAND_OP_8BIT_DATA_OUT(ONFI_SUBFEATURE_PARAM_LEN, data,
2151 PSEC_TO_NSEC(sdr->tWB_max)),
2152 NAND_OP_WAIT_RDY(PSEC_TO_MSEC(sdr->tFEAT_max), 0),
2153 };
2154 struct nand_operation op = NAND_OPERATION(instrs);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002155
Boris Brezillon782d1962018-05-11 14:44:07 +02002156 return nand_exec_op(chip, &op);
Miquel Raynal8878b122017-11-09 14:16:45 +01002157 }
2158
Boris Brezillon5295cf22018-09-06 14:05:28 +02002159 chip->cmdfunc(chip, NAND_CMD_SET_FEATURES, feature, -1);
Boris Brezillon782d1962018-05-11 14:44:07 +02002160 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
Boris Brezillonc0739d82018-09-06 14:05:23 +02002161 chip->write_byte(chip, params[i]);
Boris Brezillon782d1962018-05-11 14:44:07 +02002162
Boris Brezillonf1d46942018-09-06 14:05:29 +02002163 ret = chip->waitfunc(chip);
Boris Brezillon782d1962018-05-11 14:44:07 +02002164 if (ret < 0)
2165 return ret;
2166
2167 if (ret & NAND_STATUS_FAIL)
Boris Brezillon97d90da2017-11-30 18:01:29 +01002168 return -EIO;
2169
2170 return 0;
2171}
2172
2173/**
2174 * nand_get_features_op - Do a GET FEATURES operation
2175 * @chip: The NAND chip
2176 * @feature: feature id
2177 * @data: 4 bytes of data
2178 *
2179 * This function sends a GET FEATURES command and waits for the NAND to be
2180 * ready before returning.
2181 * This function does not select/unselect the CS line.
2182 *
2183 * Returns 0 on success, a negative error code otherwise.
2184 */
2185static int nand_get_features_op(struct nand_chip *chip, u8 feature,
2186 void *data)
2187{
Boris Brezillon97d90da2017-11-30 18:01:29 +01002188 u8 *params = data;
2189 int i;
2190
Miquel Raynal8878b122017-11-09 14:16:45 +01002191 if (chip->exec_op) {
2192 const struct nand_sdr_timings *sdr =
2193 nand_get_sdr_timings(&chip->data_interface);
2194 struct nand_op_instr instrs[] = {
2195 NAND_OP_CMD(NAND_CMD_GET_FEATURES, 0),
2196 NAND_OP_ADDR(1, &feature, PSEC_TO_NSEC(sdr->tWB_max)),
2197 NAND_OP_WAIT_RDY(PSEC_TO_MSEC(sdr->tFEAT_max),
2198 PSEC_TO_NSEC(sdr->tRR_min)),
2199 NAND_OP_8BIT_DATA_IN(ONFI_SUBFEATURE_PARAM_LEN,
2200 data, 0),
2201 };
2202 struct nand_operation op = NAND_OPERATION(instrs);
2203
2204 return nand_exec_op(chip, &op);
2205 }
2206
Boris Brezillon5295cf22018-09-06 14:05:28 +02002207 chip->cmdfunc(chip, NAND_CMD_GET_FEATURES, feature, -1);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002208 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
Boris Brezillon7e534322018-09-06 14:05:22 +02002209 params[i] = chip->read_byte(chip);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002210
2211 return 0;
2212}
2213
Boris Brezillon52f05b62018-07-27 09:44:18 +02002214static int nand_wait_rdy_op(struct nand_chip *chip, unsigned int timeout_ms,
2215 unsigned int delay_ns)
2216{
2217 if (chip->exec_op) {
2218 struct nand_op_instr instrs[] = {
2219 NAND_OP_WAIT_RDY(PSEC_TO_MSEC(timeout_ms),
2220 PSEC_TO_NSEC(delay_ns)),
2221 };
2222 struct nand_operation op = NAND_OPERATION(instrs);
2223
2224 return nand_exec_op(chip, &op);
2225 }
2226
2227 /* Apply delay or wait for ready/busy pin */
2228 if (!chip->dev_ready)
2229 udelay(chip->chip_delay);
2230 else
Boris Brezillon2b356ab2018-09-06 14:05:16 +02002231 nand_wait_ready(chip);
Boris Brezillon52f05b62018-07-27 09:44:18 +02002232
2233 return 0;
2234}
2235
Boris Brezillon97d90da2017-11-30 18:01:29 +01002236/**
2237 * nand_reset_op - Do a reset operation
2238 * @chip: The NAND chip
2239 *
2240 * This function sends a RESET command and waits for the NAND to be ready
2241 * before returning.
2242 * This function does not select/unselect the CS line.
2243 *
2244 * Returns 0 on success, a negative error code otherwise.
2245 */
2246int nand_reset_op(struct nand_chip *chip)
2247{
Miquel Raynal8878b122017-11-09 14:16:45 +01002248 if (chip->exec_op) {
2249 const struct nand_sdr_timings *sdr =
2250 nand_get_sdr_timings(&chip->data_interface);
2251 struct nand_op_instr instrs[] = {
2252 NAND_OP_CMD(NAND_CMD_RESET, PSEC_TO_NSEC(sdr->tWB_max)),
2253 NAND_OP_WAIT_RDY(PSEC_TO_MSEC(sdr->tRST_max), 0),
2254 };
2255 struct nand_operation op = NAND_OPERATION(instrs);
2256
2257 return nand_exec_op(chip, &op);
2258 }
2259
Boris Brezillon5295cf22018-09-06 14:05:28 +02002260 chip->cmdfunc(chip, NAND_CMD_RESET, -1, -1);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002261
2262 return 0;
2263}
2264EXPORT_SYMBOL_GPL(nand_reset_op);
2265
2266/**
2267 * nand_read_data_op - Read data from the NAND
2268 * @chip: The NAND chip
2269 * @buf: buffer used to store the data
2270 * @len: length of the buffer
2271 * @force_8bit: force 8-bit bus access
2272 *
2273 * This function does a raw data read on the bus. Usually used after launching
2274 * another NAND operation like nand_read_page_op().
2275 * This function does not select/unselect the CS line.
2276 *
2277 * Returns 0 on success, a negative error code otherwise.
2278 */
2279int nand_read_data_op(struct nand_chip *chip, void *buf, unsigned int len,
2280 bool force_8bit)
2281{
Boris Brezillon97d90da2017-11-30 18:01:29 +01002282 if (!len || !buf)
2283 return -EINVAL;
2284
Miquel Raynal8878b122017-11-09 14:16:45 +01002285 if (chip->exec_op) {
2286 struct nand_op_instr instrs[] = {
2287 NAND_OP_DATA_IN(len, buf, 0),
2288 };
2289 struct nand_operation op = NAND_OPERATION(instrs);
2290
2291 instrs[0].ctx.data.force_8bit = force_8bit;
2292
2293 return nand_exec_op(chip, &op);
2294 }
2295
Boris Brezillon97d90da2017-11-30 18:01:29 +01002296 if (force_8bit) {
2297 u8 *p = buf;
2298 unsigned int i;
2299
2300 for (i = 0; i < len; i++)
Boris Brezillon7e534322018-09-06 14:05:22 +02002301 p[i] = chip->read_byte(chip);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002302 } else {
Boris Brezillon7e534322018-09-06 14:05:22 +02002303 chip->read_buf(chip, buf, len);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002304 }
2305
2306 return 0;
2307}
2308EXPORT_SYMBOL_GPL(nand_read_data_op);
2309
2310/**
2311 * nand_write_data_op - Write data from the NAND
2312 * @chip: The NAND chip
2313 * @buf: buffer containing the data to send on the bus
2314 * @len: length of the buffer
2315 * @force_8bit: force 8-bit bus access
2316 *
2317 * This function does a raw data write on the bus. Usually used after launching
2318 * another NAND operation like nand_write_page_begin_op().
2319 * This function does not select/unselect the CS line.
2320 *
2321 * Returns 0 on success, a negative error code otherwise.
2322 */
2323int nand_write_data_op(struct nand_chip *chip, const void *buf,
2324 unsigned int len, bool force_8bit)
2325{
Boris Brezillon97d90da2017-11-30 18:01:29 +01002326 if (!len || !buf)
2327 return -EINVAL;
2328
Miquel Raynal8878b122017-11-09 14:16:45 +01002329 if (chip->exec_op) {
2330 struct nand_op_instr instrs[] = {
2331 NAND_OP_DATA_OUT(len, buf, 0),
2332 };
2333 struct nand_operation op = NAND_OPERATION(instrs);
2334
2335 instrs[0].ctx.data.force_8bit = force_8bit;
2336
2337 return nand_exec_op(chip, &op);
2338 }
2339
Boris Brezillon97d90da2017-11-30 18:01:29 +01002340 if (force_8bit) {
2341 const u8 *p = buf;
2342 unsigned int i;
2343
2344 for (i = 0; i < len; i++)
Boris Brezillonc0739d82018-09-06 14:05:23 +02002345 chip->write_byte(chip, p[i]);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002346 } else {
Boris Brezillonc0739d82018-09-06 14:05:23 +02002347 chip->write_buf(chip, buf, len);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002348 }
2349
2350 return 0;
2351}
2352EXPORT_SYMBOL_GPL(nand_write_data_op);
2353
2354/**
Miquel Raynal8878b122017-11-09 14:16:45 +01002355 * struct nand_op_parser_ctx - Context used by the parser
2356 * @instrs: array of all the instructions that must be addressed
2357 * @ninstrs: length of the @instrs array
2358 * @subop: Sub-operation to be passed to the NAND controller
2359 *
2360 * This structure is used by the core to split NAND operations into
2361 * sub-operations that can be handled by the NAND controller.
2362 */
2363struct nand_op_parser_ctx {
2364 const struct nand_op_instr *instrs;
2365 unsigned int ninstrs;
2366 struct nand_subop subop;
2367};
2368
2369/**
2370 * nand_op_parser_must_split_instr - Checks if an instruction must be split
2371 * @pat: the parser pattern element that matches @instr
2372 * @instr: pointer to the instruction to check
2373 * @start_offset: this is an in/out parameter. If @instr has already been
2374 * split, then @start_offset is the offset from which to start
2375 * (either an address cycle or an offset in the data buffer).
2376 * Conversely, if the function returns true (ie. instr must be
2377 * split), this parameter is updated to point to the first
2378 * data/address cycle that has not been taken care of.
2379 *
2380 * Some NAND controllers are limited and cannot send X address cycles with a
2381 * unique operation, or cannot read/write more than Y bytes at the same time.
2382 * In this case, split the instruction that does not fit in a single
2383 * controller-operation into two or more chunks.
2384 *
2385 * Returns true if the instruction must be split, false otherwise.
2386 * The @start_offset parameter is also updated to the offset at which the next
2387 * bundle of instruction must start (if an address or a data instruction).
2388 */
2389static bool
2390nand_op_parser_must_split_instr(const struct nand_op_parser_pattern_elem *pat,
2391 const struct nand_op_instr *instr,
2392 unsigned int *start_offset)
2393{
2394 switch (pat->type) {
2395 case NAND_OP_ADDR_INSTR:
Miquel Raynalc1a72e22018-01-19 19:11:27 +01002396 if (!pat->ctx.addr.maxcycles)
Miquel Raynal8878b122017-11-09 14:16:45 +01002397 break;
2398
2399 if (instr->ctx.addr.naddrs - *start_offset >
Miquel Raynalc1a72e22018-01-19 19:11:27 +01002400 pat->ctx.addr.maxcycles) {
2401 *start_offset += pat->ctx.addr.maxcycles;
Miquel Raynal8878b122017-11-09 14:16:45 +01002402 return true;
2403 }
2404 break;
2405
2406 case NAND_OP_DATA_IN_INSTR:
2407 case NAND_OP_DATA_OUT_INSTR:
Miquel Raynalc1a72e22018-01-19 19:11:27 +01002408 if (!pat->ctx.data.maxlen)
Miquel Raynal8878b122017-11-09 14:16:45 +01002409 break;
2410
Miquel Raynalc1a72e22018-01-19 19:11:27 +01002411 if (instr->ctx.data.len - *start_offset >
2412 pat->ctx.data.maxlen) {
2413 *start_offset += pat->ctx.data.maxlen;
Miquel Raynal8878b122017-11-09 14:16:45 +01002414 return true;
2415 }
2416 break;
2417
2418 default:
2419 break;
2420 }
2421
2422 return false;
2423}
2424
2425/**
2426 * nand_op_parser_match_pat - Checks if a pattern matches the instructions
2427 * remaining in the parser context
2428 * @pat: the pattern to test
2429 * @ctx: the parser context structure to match with the pattern @pat
2430 *
2431 * Check if @pat matches the set or a sub-set of instructions remaining in @ctx.
2432 * Returns true if this is the case, false ortherwise. When true is returned,
2433 * @ctx->subop is updated with the set of instructions to be passed to the
2434 * controller driver.
2435 */
2436static bool
2437nand_op_parser_match_pat(const struct nand_op_parser_pattern *pat,
2438 struct nand_op_parser_ctx *ctx)
2439{
2440 unsigned int instr_offset = ctx->subop.first_instr_start_off;
2441 const struct nand_op_instr *end = ctx->instrs + ctx->ninstrs;
2442 const struct nand_op_instr *instr = ctx->subop.instrs;
2443 unsigned int i, ninstrs;
2444
2445 for (i = 0, ninstrs = 0; i < pat->nelems && instr < end; i++) {
2446 /*
2447 * The pattern instruction does not match the operation
2448 * instruction. If the instruction is marked optional in the
2449 * pattern definition, we skip the pattern element and continue
2450 * to the next one. If the element is mandatory, there's no
2451 * match and we can return false directly.
2452 */
2453 if (instr->type != pat->elems[i].type) {
2454 if (!pat->elems[i].optional)
2455 return false;
2456
2457 continue;
2458 }
2459
2460 /*
2461 * Now check the pattern element constraints. If the pattern is
2462 * not able to handle the whole instruction in a single step,
2463 * we have to split it.
2464 * The last_instr_end_off value comes back updated to point to
2465 * the position where we have to split the instruction (the
2466 * start of the next subop chunk).
2467 */
2468 if (nand_op_parser_must_split_instr(&pat->elems[i], instr,
2469 &instr_offset)) {
2470 ninstrs++;
2471 i++;
2472 break;
2473 }
2474
2475 instr++;
2476 ninstrs++;
2477 instr_offset = 0;
2478 }
2479
2480 /*
2481 * This can happen if all instructions of a pattern are optional.
2482 * Still, if there's not at least one instruction handled by this
2483 * pattern, this is not a match, and we should try the next one (if
2484 * any).
2485 */
2486 if (!ninstrs)
2487 return false;
2488
2489 /*
2490 * We had a match on the pattern head, but the pattern may be longer
2491 * than the instructions we're asked to execute. We need to make sure
2492 * there's no mandatory elements in the pattern tail.
2493 */
2494 for (; i < pat->nelems; i++) {
2495 if (!pat->elems[i].optional)
2496 return false;
2497 }
2498
2499 /*
2500 * We have a match: update the subop structure accordingly and return
2501 * true.
2502 */
2503 ctx->subop.ninstrs = ninstrs;
2504 ctx->subop.last_instr_end_off = instr_offset;
2505
2506 return true;
2507}
2508
2509#if IS_ENABLED(CONFIG_DYNAMIC_DEBUG) || defined(DEBUG)
2510static void nand_op_parser_trace(const struct nand_op_parser_ctx *ctx)
2511{
2512 const struct nand_op_instr *instr;
2513 char *prefix = " ";
2514 unsigned int i;
2515
2516 pr_debug("executing subop:\n");
2517
2518 for (i = 0; i < ctx->ninstrs; i++) {
2519 instr = &ctx->instrs[i];
2520
2521 if (instr == &ctx->subop.instrs[0])
2522 prefix = " ->";
2523
2524 switch (instr->type) {
2525 case NAND_OP_CMD_INSTR:
2526 pr_debug("%sCMD [0x%02x]\n", prefix,
2527 instr->ctx.cmd.opcode);
2528 break;
2529 case NAND_OP_ADDR_INSTR:
2530 pr_debug("%sADDR [%d cyc: %*ph]\n", prefix,
2531 instr->ctx.addr.naddrs,
2532 instr->ctx.addr.naddrs < 64 ?
2533 instr->ctx.addr.naddrs : 64,
2534 instr->ctx.addr.addrs);
2535 break;
2536 case NAND_OP_DATA_IN_INSTR:
2537 pr_debug("%sDATA_IN [%d B%s]\n", prefix,
2538 instr->ctx.data.len,
2539 instr->ctx.data.force_8bit ?
2540 ", force 8-bit" : "");
2541 break;
2542 case NAND_OP_DATA_OUT_INSTR:
2543 pr_debug("%sDATA_OUT [%d B%s]\n", prefix,
2544 instr->ctx.data.len,
2545 instr->ctx.data.force_8bit ?
2546 ", force 8-bit" : "");
2547 break;
2548 case NAND_OP_WAITRDY_INSTR:
2549 pr_debug("%sWAITRDY [max %d ms]\n", prefix,
2550 instr->ctx.waitrdy.timeout_ms);
2551 break;
2552 }
2553
2554 if (instr == &ctx->subop.instrs[ctx->subop.ninstrs - 1])
2555 prefix = " ";
2556 }
2557}
2558#else
2559static void nand_op_parser_trace(const struct nand_op_parser_ctx *ctx)
2560{
2561 /* NOP */
2562}
2563#endif
2564
2565/**
2566 * nand_op_parser_exec_op - exec_op parser
2567 * @chip: the NAND chip
2568 * @parser: patterns description provided by the controller driver
2569 * @op: the NAND operation to address
2570 * @check_only: when true, the function only checks if @op can be handled but
2571 * does not execute the operation
2572 *
2573 * Helper function designed to ease integration of NAND controller drivers that
2574 * only support a limited set of instruction sequences. The supported sequences
2575 * are described in @parser, and the framework takes care of splitting @op into
2576 * multiple sub-operations (if required) and pass them back to the ->exec()
2577 * callback of the matching pattern if @check_only is set to false.
2578 *
2579 * NAND controller drivers should call this function from their own ->exec_op()
2580 * implementation.
2581 *
2582 * Returns 0 on success, a negative error code otherwise. A failure can be
2583 * caused by an unsupported operation (none of the supported patterns is able
2584 * to handle the requested operation), or an error returned by one of the
2585 * matching pattern->exec() hook.
2586 */
2587int nand_op_parser_exec_op(struct nand_chip *chip,
2588 const struct nand_op_parser *parser,
2589 const struct nand_operation *op, bool check_only)
2590{
2591 struct nand_op_parser_ctx ctx = {
2592 .subop.instrs = op->instrs,
2593 .instrs = op->instrs,
2594 .ninstrs = op->ninstrs,
2595 };
2596 unsigned int i;
2597
2598 while (ctx.subop.instrs < op->instrs + op->ninstrs) {
2599 int ret;
2600
2601 for (i = 0; i < parser->npatterns; i++) {
2602 const struct nand_op_parser_pattern *pattern;
2603
2604 pattern = &parser->patterns[i];
2605 if (!nand_op_parser_match_pat(pattern, &ctx))
2606 continue;
2607
2608 nand_op_parser_trace(&ctx);
2609
2610 if (check_only)
2611 break;
2612
2613 ret = pattern->exec(chip, &ctx.subop);
2614 if (ret)
2615 return ret;
2616
2617 break;
2618 }
2619
2620 if (i == parser->npatterns) {
2621 pr_debug("->exec_op() parser: pattern not found!\n");
2622 return -ENOTSUPP;
2623 }
2624
2625 /*
2626 * Update the context structure by pointing to the start of the
2627 * next subop.
2628 */
2629 ctx.subop.instrs = ctx.subop.instrs + ctx.subop.ninstrs;
2630 if (ctx.subop.last_instr_end_off)
2631 ctx.subop.instrs -= 1;
2632
2633 ctx.subop.first_instr_start_off = ctx.subop.last_instr_end_off;
2634 }
2635
2636 return 0;
2637}
2638EXPORT_SYMBOL_GPL(nand_op_parser_exec_op);
2639
2640static bool nand_instr_is_data(const struct nand_op_instr *instr)
2641{
2642 return instr && (instr->type == NAND_OP_DATA_IN_INSTR ||
2643 instr->type == NAND_OP_DATA_OUT_INSTR);
2644}
2645
2646static bool nand_subop_instr_is_valid(const struct nand_subop *subop,
2647 unsigned int instr_idx)
2648{
2649 return subop && instr_idx < subop->ninstrs;
2650}
2651
Miquel Raynal760c4352018-07-19 00:09:12 +02002652static unsigned int nand_subop_get_start_off(const struct nand_subop *subop,
2653 unsigned int instr_idx)
Miquel Raynal8878b122017-11-09 14:16:45 +01002654{
2655 if (instr_idx)
2656 return 0;
2657
2658 return subop->first_instr_start_off;
2659}
2660
2661/**
2662 * nand_subop_get_addr_start_off - Get the start offset in an address array
2663 * @subop: The entire sub-operation
2664 * @instr_idx: Index of the instruction inside the sub-operation
2665 *
2666 * During driver development, one could be tempted to directly use the
2667 * ->addr.addrs field of address instructions. This is wrong as address
2668 * instructions might be split.
2669 *
2670 * Given an address instruction, returns the offset of the first cycle to issue.
2671 */
Miquel Raynal760c4352018-07-19 00:09:12 +02002672unsigned int nand_subop_get_addr_start_off(const struct nand_subop *subop,
2673 unsigned int instr_idx)
Miquel Raynal8878b122017-11-09 14:16:45 +01002674{
Miquel Raynal760c4352018-07-19 00:09:12 +02002675 if (WARN_ON(!nand_subop_instr_is_valid(subop, instr_idx) ||
2676 subop->instrs[instr_idx].type != NAND_OP_ADDR_INSTR))
2677 return 0;
Miquel Raynal8878b122017-11-09 14:16:45 +01002678
2679 return nand_subop_get_start_off(subop, instr_idx);
2680}
2681EXPORT_SYMBOL_GPL(nand_subop_get_addr_start_off);
2682
2683/**
2684 * nand_subop_get_num_addr_cyc - Get the remaining address cycles to assert
2685 * @subop: The entire sub-operation
2686 * @instr_idx: Index of the instruction inside the sub-operation
2687 *
2688 * During driver development, one could be tempted to directly use the
2689 * ->addr->naddrs field of a data instruction. This is wrong as instructions
2690 * might be split.
2691 *
2692 * Given an address instruction, returns the number of address cycle to issue.
2693 */
Miquel Raynal760c4352018-07-19 00:09:12 +02002694unsigned int nand_subop_get_num_addr_cyc(const struct nand_subop *subop,
2695 unsigned int instr_idx)
Miquel Raynal8878b122017-11-09 14:16:45 +01002696{
2697 int start_off, end_off;
2698
Miquel Raynal760c4352018-07-19 00:09:12 +02002699 if (WARN_ON(!nand_subop_instr_is_valid(subop, instr_idx) ||
2700 subop->instrs[instr_idx].type != NAND_OP_ADDR_INSTR))
2701 return 0;
Miquel Raynal8878b122017-11-09 14:16:45 +01002702
2703 start_off = nand_subop_get_addr_start_off(subop, instr_idx);
2704
2705 if (instr_idx == subop->ninstrs - 1 &&
2706 subop->last_instr_end_off)
2707 end_off = subop->last_instr_end_off;
2708 else
2709 end_off = subop->instrs[instr_idx].ctx.addr.naddrs;
2710
2711 return end_off - start_off;
2712}
2713EXPORT_SYMBOL_GPL(nand_subop_get_num_addr_cyc);
2714
2715/**
2716 * nand_subop_get_data_start_off - Get the start offset in a data array
2717 * @subop: The entire sub-operation
2718 * @instr_idx: Index of the instruction inside the sub-operation
2719 *
2720 * During driver development, one could be tempted to directly use the
2721 * ->data->buf.{in,out} field of data instructions. This is wrong as data
2722 * instructions might be split.
2723 *
2724 * Given a data instruction, returns the offset to start from.
2725 */
Miquel Raynal760c4352018-07-19 00:09:12 +02002726unsigned int nand_subop_get_data_start_off(const struct nand_subop *subop,
2727 unsigned int instr_idx)
Miquel Raynal8878b122017-11-09 14:16:45 +01002728{
Miquel Raynal760c4352018-07-19 00:09:12 +02002729 if (WARN_ON(!nand_subop_instr_is_valid(subop, instr_idx) ||
2730 !nand_instr_is_data(&subop->instrs[instr_idx])))
2731 return 0;
Miquel Raynal8878b122017-11-09 14:16:45 +01002732
2733 return nand_subop_get_start_off(subop, instr_idx);
2734}
2735EXPORT_SYMBOL_GPL(nand_subop_get_data_start_off);
2736
2737/**
2738 * nand_subop_get_data_len - Get the number of bytes to retrieve
2739 * @subop: The entire sub-operation
2740 * @instr_idx: Index of the instruction inside the sub-operation
2741 *
2742 * During driver development, one could be tempted to directly use the
2743 * ->data->len field of a data instruction. This is wrong as data instructions
2744 * might be split.
2745 *
2746 * Returns the length of the chunk of data to send/receive.
2747 */
Miquel Raynal760c4352018-07-19 00:09:12 +02002748unsigned int nand_subop_get_data_len(const struct nand_subop *subop,
2749 unsigned int instr_idx)
Miquel Raynal8878b122017-11-09 14:16:45 +01002750{
2751 int start_off = 0, end_off;
2752
Miquel Raynal760c4352018-07-19 00:09:12 +02002753 if (WARN_ON(!nand_subop_instr_is_valid(subop, instr_idx) ||
2754 !nand_instr_is_data(&subop->instrs[instr_idx])))
2755 return 0;
Miquel Raynal8878b122017-11-09 14:16:45 +01002756
2757 start_off = nand_subop_get_data_start_off(subop, instr_idx);
2758
2759 if (instr_idx == subop->ninstrs - 1 &&
2760 subop->last_instr_end_off)
2761 end_off = subop->last_instr_end_off;
2762 else
2763 end_off = subop->instrs[instr_idx].ctx.data.len;
2764
2765 return end_off - start_off;
2766}
2767EXPORT_SYMBOL_GPL(nand_subop_get_data_len);
2768
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769/**
Sascha Hauer2f94abf2016-09-15 10:32:45 +02002770 * nand_reset - Reset and initialize a NAND device
2771 * @chip: The NAND chip
Boris Brezillon73f907f2016-10-24 16:46:20 +02002772 * @chipnr: Internal die id
Sascha Hauer2f94abf2016-09-15 10:32:45 +02002773 *
Miquel Raynal17fa8042017-11-30 18:01:31 +01002774 * Save the timings data structure, then apply SDR timings mode 0 (see
2775 * nand_reset_data_interface for details), do the reset operation, and
2776 * apply back the previous timings.
2777 *
2778 * Returns 0 on success, a negative error code otherwise.
Sascha Hauer2f94abf2016-09-15 10:32:45 +02002779 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02002780int nand_reset(struct nand_chip *chip, int chipnr)
Sascha Hauer2f94abf2016-09-15 10:32:45 +02002781{
Miquel Raynal17fa8042017-11-30 18:01:31 +01002782 struct nand_data_interface saved_data_intf = chip->data_interface;
Boris Brezillond8e725d2016-09-15 10:32:50 +02002783 int ret;
2784
Boris Brezillon104e4422017-03-16 09:35:58 +01002785 ret = nand_reset_data_interface(chip, chipnr);
Boris Brezillond8e725d2016-09-15 10:32:50 +02002786 if (ret)
2787 return ret;
Sascha Hauer2f94abf2016-09-15 10:32:45 +02002788
Boris Brezillon73f907f2016-10-24 16:46:20 +02002789 /*
2790 * The CS line has to be released before we can apply the new NAND
2791 * interface settings, hence this weird ->select_chip() dance.
2792 */
Boris Brezillon758b56f2018-09-06 14:05:24 +02002793 chip->select_chip(chip, chipnr);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002794 ret = nand_reset_op(chip);
Boris Brezillon758b56f2018-09-06 14:05:24 +02002795 chip->select_chip(chip, -1);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002796 if (ret)
2797 return ret;
Sascha Hauer2f94abf2016-09-15 10:32:45 +02002798
Miquel Raynal107b7d62018-03-19 14:47:25 +01002799 /*
2800 * A nand_reset_data_interface() put both the NAND chip and the NAND
2801 * controller in timings mode 0. If the default mode for this chip is
2802 * also 0, no need to proceed to the change again. Plus, at probe time,
2803 * nand_setup_data_interface() uses ->set/get_features() which would
2804 * fail anyway as the parameter page is not available yet.
2805 */
2806 if (!chip->onfi_timing_mode_default)
2807 return 0;
2808
Miquel Raynal17fa8042017-11-30 18:01:31 +01002809 chip->data_interface = saved_data_intf;
Boris Brezillon104e4422017-03-16 09:35:58 +01002810 ret = nand_setup_data_interface(chip, chipnr);
Boris Brezillond8e725d2016-09-15 10:32:50 +02002811 if (ret)
2812 return ret;
2813
Sascha Hauer2f94abf2016-09-15 10:32:45 +02002814 return 0;
2815}
Boris Brezillonb9bb9842017-10-05 18:53:19 +02002816EXPORT_SYMBOL_GPL(nand_reset);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02002817
2818/**
Boris BREZILLON730a43f2015-09-03 18:03:38 +02002819 * nand_check_erased_buf - check if a buffer contains (almost) only 0xff data
2820 * @buf: buffer to test
2821 * @len: buffer length
2822 * @bitflips_threshold: maximum number of bitflips
2823 *
2824 * Check if a buffer contains only 0xff, which means the underlying region
2825 * has been erased and is ready to be programmed.
2826 * The bitflips_threshold specify the maximum number of bitflips before
2827 * considering the region is not erased.
2828 * Note: The logic of this function has been extracted from the memweight
2829 * implementation, except that nand_check_erased_buf function exit before
2830 * testing the whole buffer if the number of bitflips exceed the
2831 * bitflips_threshold value.
2832 *
2833 * Returns a positive number of bitflips less than or equal to
2834 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
2835 * threshold.
2836 */
2837static int nand_check_erased_buf(void *buf, int len, int bitflips_threshold)
2838{
2839 const unsigned char *bitmap = buf;
2840 int bitflips = 0;
2841 int weight;
2842
2843 for (; len && ((uintptr_t)bitmap) % sizeof(long);
2844 len--, bitmap++) {
2845 weight = hweight8(*bitmap);
2846 bitflips += BITS_PER_BYTE - weight;
2847 if (unlikely(bitflips > bitflips_threshold))
2848 return -EBADMSG;
2849 }
2850
2851 for (; len >= sizeof(long);
2852 len -= sizeof(long), bitmap += sizeof(long)) {
Pavel Machek086567f2017-04-21 12:51:07 +02002853 unsigned long d = *((unsigned long *)bitmap);
2854 if (d == ~0UL)
2855 continue;
2856 weight = hweight_long(d);
Boris BREZILLON730a43f2015-09-03 18:03:38 +02002857 bitflips += BITS_PER_LONG - weight;
2858 if (unlikely(bitflips > bitflips_threshold))
2859 return -EBADMSG;
2860 }
2861
2862 for (; len > 0; len--, bitmap++) {
2863 weight = hweight8(*bitmap);
2864 bitflips += BITS_PER_BYTE - weight;
2865 if (unlikely(bitflips > bitflips_threshold))
2866 return -EBADMSG;
2867 }
2868
2869 return bitflips;
2870}
2871
2872/**
2873 * nand_check_erased_ecc_chunk - check if an ECC chunk contains (almost) only
2874 * 0xff data
2875 * @data: data buffer to test
2876 * @datalen: data length
2877 * @ecc: ECC buffer
2878 * @ecclen: ECC length
2879 * @extraoob: extra OOB buffer
2880 * @extraooblen: extra OOB length
2881 * @bitflips_threshold: maximum number of bitflips
2882 *
2883 * Check if a data buffer and its associated ECC and OOB data contains only
2884 * 0xff pattern, which means the underlying region has been erased and is
2885 * ready to be programmed.
2886 * The bitflips_threshold specify the maximum number of bitflips before
2887 * considering the region as not erased.
2888 *
2889 * Note:
2890 * 1/ ECC algorithms are working on pre-defined block sizes which are usually
2891 * different from the NAND page size. When fixing bitflips, ECC engines will
2892 * report the number of errors per chunk, and the NAND core infrastructure
2893 * expect you to return the maximum number of bitflips for the whole page.
2894 * This is why you should always use this function on a single chunk and
2895 * not on the whole page. After checking each chunk you should update your
2896 * max_bitflips value accordingly.
2897 * 2/ When checking for bitflips in erased pages you should not only check
2898 * the payload data but also their associated ECC data, because a user might
2899 * have programmed almost all bits to 1 but a few. In this case, we
2900 * shouldn't consider the chunk as erased, and checking ECC bytes prevent
2901 * this case.
2902 * 3/ The extraoob argument is optional, and should be used if some of your OOB
2903 * data are protected by the ECC engine.
2904 * It could also be used if you support subpages and want to attach some
2905 * extra OOB data to an ECC chunk.
2906 *
2907 * Returns a positive number of bitflips less than or equal to
2908 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
2909 * threshold. In case of success, the passed buffers are filled with 0xff.
2910 */
2911int nand_check_erased_ecc_chunk(void *data, int datalen,
2912 void *ecc, int ecclen,
2913 void *extraoob, int extraooblen,
2914 int bitflips_threshold)
2915{
2916 int data_bitflips = 0, ecc_bitflips = 0, extraoob_bitflips = 0;
2917
2918 data_bitflips = nand_check_erased_buf(data, datalen,
2919 bitflips_threshold);
2920 if (data_bitflips < 0)
2921 return data_bitflips;
2922
2923 bitflips_threshold -= data_bitflips;
2924
2925 ecc_bitflips = nand_check_erased_buf(ecc, ecclen, bitflips_threshold);
2926 if (ecc_bitflips < 0)
2927 return ecc_bitflips;
2928
2929 bitflips_threshold -= ecc_bitflips;
2930
2931 extraoob_bitflips = nand_check_erased_buf(extraoob, extraooblen,
2932 bitflips_threshold);
2933 if (extraoob_bitflips < 0)
2934 return extraoob_bitflips;
2935
2936 if (data_bitflips)
2937 memset(data, 0xff, datalen);
2938
2939 if (ecc_bitflips)
2940 memset(ecc, 0xff, ecclen);
2941
2942 if (extraoob_bitflips)
2943 memset(extraoob, 0xff, extraooblen);
2944
2945 return data_bitflips + ecc_bitflips + extraoob_bitflips;
2946}
2947EXPORT_SYMBOL(nand_check_erased_ecc_chunk);
2948
2949/**
Boris Brezillon0d6030a2018-07-18 10:42:17 +02002950 * nand_read_page_raw_notsupp - dummy read raw page function
Boris Brezillon0d6030a2018-07-18 10:42:17 +02002951 * @chip: nand chip info structure
2952 * @buf: buffer to store read data
2953 * @oob_required: caller requires OOB data read to chip->oob_poi
2954 * @page: page number to read
2955 *
2956 * Returns -ENOTSUPP unconditionally.
2957 */
Boris Brezillonb9761682018-09-06 14:05:20 +02002958int nand_read_page_raw_notsupp(struct nand_chip *chip, u8 *buf,
2959 int oob_required, int page)
Boris Brezillon0d6030a2018-07-18 10:42:17 +02002960{
2961 return -ENOTSUPP;
2962}
2963EXPORT_SYMBOL(nand_read_page_raw_notsupp);
2964
2965/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002966 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07002967 * @chip: nand chip info structure
2968 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07002969 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07002970 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08002971 *
Brian Norris7854d3f2011-06-23 14:12:08 -07002972 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002973 */
Boris Brezillonb9761682018-09-06 14:05:20 +02002974int nand_read_page_raw(struct nand_chip *chip, uint8_t *buf, int oob_required,
2975 int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002976{
Boris Brezillonb9761682018-09-06 14:05:20 +02002977 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002978 int ret;
2979
Boris Brezillon25f815f2017-11-30 18:01:30 +01002980 ret = nand_read_page_op(chip, page, 0, buf, mtd->writesize);
Boris Brezillon97d90da2017-11-30 18:01:29 +01002981 if (ret)
2982 return ret;
2983
2984 if (oob_required) {
2985 ret = nand_read_data_op(chip, chip->oob_poi, mtd->oobsize,
2986 false);
2987 if (ret)
2988 return ret;
2989 }
2990
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002991 return 0;
2992}
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02002993EXPORT_SYMBOL(nand_read_page_raw);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002994
2995/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002996 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07002997 * @chip: nand chip info structure
2998 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07002999 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07003000 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08003001 *
3002 * We need a special oob layout and handling even when OOB isn't used.
3003 */
Boris Brezillonb9761682018-09-06 14:05:20 +02003004static int nand_read_page_raw_syndrome(struct nand_chip *chip, uint8_t *buf,
Brian Norris1fbb9382012-05-02 10:14:55 -07003005 int oob_required, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08003006{
Boris Brezillonb9761682018-09-06 14:05:20 +02003007 struct mtd_info *mtd = nand_to_mtd(chip);
David Brownell52ff49d2009-03-04 12:01:36 -08003008 int eccsize = chip->ecc.size;
3009 int eccbytes = chip->ecc.bytes;
3010 uint8_t *oob = chip->oob_poi;
Boris Brezillon97d90da2017-11-30 18:01:29 +01003011 int steps, size, ret;
David Brownell52ff49d2009-03-04 12:01:36 -08003012
Boris Brezillon25f815f2017-11-30 18:01:30 +01003013 ret = nand_read_page_op(chip, page, 0, NULL, 0);
3014 if (ret)
3015 return ret;
David Brownell52ff49d2009-03-04 12:01:36 -08003016
3017 for (steps = chip->ecc.steps; steps > 0; steps--) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003018 ret = nand_read_data_op(chip, buf, eccsize, false);
3019 if (ret)
3020 return ret;
3021
David Brownell52ff49d2009-03-04 12:01:36 -08003022 buf += eccsize;
3023
3024 if (chip->ecc.prepad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003025 ret = nand_read_data_op(chip, oob, chip->ecc.prepad,
3026 false);
3027 if (ret)
3028 return ret;
3029
David Brownell52ff49d2009-03-04 12:01:36 -08003030 oob += chip->ecc.prepad;
3031 }
3032
Boris Brezillon97d90da2017-11-30 18:01:29 +01003033 ret = nand_read_data_op(chip, oob, eccbytes, false);
3034 if (ret)
3035 return ret;
3036
David Brownell52ff49d2009-03-04 12:01:36 -08003037 oob += eccbytes;
3038
3039 if (chip->ecc.postpad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003040 ret = nand_read_data_op(chip, oob, chip->ecc.postpad,
3041 false);
3042 if (ret)
3043 return ret;
3044
David Brownell52ff49d2009-03-04 12:01:36 -08003045 oob += chip->ecc.postpad;
3046 }
3047 }
3048
3049 size = mtd->oobsize - (oob - chip->oob_poi);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003050 if (size) {
3051 ret = nand_read_data_op(chip, oob, size, false);
3052 if (ret)
3053 return ret;
3054 }
David Brownell52ff49d2009-03-04 12:01:36 -08003055
3056 return 0;
3057}
3058
3059/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003060 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003061 * @chip: nand chip info structure
3062 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07003063 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07003064 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00003065 */
Boris Brezillonb9761682018-09-06 14:05:20 +02003066static int nand_read_page_swecc(struct nand_chip *chip, uint8_t *buf,
3067 int oob_required, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068{
Boris Brezillonb9761682018-09-06 14:05:20 +02003069 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon846031d2016-02-03 20:11:00 +01003070 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003071 int eccbytes = chip->ecc.bytes;
3072 int eccsteps = chip->ecc.steps;
3073 uint8_t *p = buf;
Masahiro Yamadac0313b92017-12-05 17:47:16 +09003074 uint8_t *ecc_calc = chip->ecc.calc_buf;
3075 uint8_t *ecc_code = chip->ecc.code_buf;
Mike Dunn3f91e942012-04-25 12:06:09 -07003076 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003077
Boris Brezillonb9761682018-09-06 14:05:20 +02003078 chip->ecc.read_page_raw(chip, buf, 1, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003079
3080 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
Boris Brezillonaf37d2c2018-09-06 14:05:18 +02003081 chip->ecc.calculate(chip, p, &ecc_calc[i]);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003082
Boris Brezillon846031d2016-02-03 20:11:00 +01003083 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
3084 chip->ecc.total);
3085 if (ret)
3086 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003087
3088 eccsteps = chip->ecc.steps;
3089 p = buf;
3090
3091 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
3092 int stat;
3093
Boris Brezillon00da2ea2018-09-06 14:05:19 +02003094 stat = chip->ecc.correct(chip, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07003095 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003096 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07003097 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003098 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07003099 max_bitflips = max_t(unsigned int, max_bitflips, stat);
3100 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003101 }
Mike Dunn3f91e942012-04-25 12:06:09 -07003102 return max_bitflips;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01003103}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105/**
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05303106 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003107 * @chip: nand chip info structure
3108 * @data_offs: offset of requested data within the page
3109 * @readlen: data length
3110 * @bufpoi: buffer to store read data
Huang Shijiee004deb2014-01-03 11:01:40 +08003111 * @page: page number to read
Alexey Korolev3d459552008-05-15 17:23:18 +01003112 */
Boris Brezillonb9761682018-09-06 14:05:20 +02003113static int nand_read_subpage(struct nand_chip *chip, uint32_t data_offs,
3114 uint32_t readlen, uint8_t *bufpoi, int page)
Alexey Korolev3d459552008-05-15 17:23:18 +01003115{
Boris Brezillonb9761682018-09-06 14:05:20 +02003116 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon846031d2016-02-03 20:11:00 +01003117 int start_step, end_step, num_steps, ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01003118 uint8_t *p;
3119 int data_col_addr, i, gaps = 0;
3120 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
3121 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Boris Brezillon846031d2016-02-03 20:11:00 +01003122 int index, section = 0;
Mike Dunn3f91e942012-04-25 12:06:09 -07003123 unsigned int max_bitflips = 0;
Boris Brezillon846031d2016-02-03 20:11:00 +01003124 struct mtd_oob_region oobregion = { };
Alexey Korolev3d459552008-05-15 17:23:18 +01003125
Brian Norris7854d3f2011-06-23 14:12:08 -07003126 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01003127 start_step = data_offs / chip->ecc.size;
3128 end_step = (data_offs + readlen - 1) / chip->ecc.size;
3129 num_steps = end_step - start_step + 1;
Ron4a4163ca2014-03-16 04:01:07 +10303130 index = start_step * chip->ecc.bytes;
Alexey Korolev3d459552008-05-15 17:23:18 +01003131
Brian Norris8b6e50c2011-05-25 14:59:01 -07003132 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01003133 datafrag_len = num_steps * chip->ecc.size;
3134 eccfrag_len = num_steps * chip->ecc.bytes;
3135
3136 data_col_addr = start_step * chip->ecc.size;
3137 /* If we read not a page aligned data */
Alexey Korolev3d459552008-05-15 17:23:18 +01003138 p = bufpoi + data_col_addr;
Boris Brezillon25f815f2017-11-30 18:01:30 +01003139 ret = nand_read_page_op(chip, page, data_col_addr, p, datafrag_len);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003140 if (ret)
3141 return ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01003142
Brian Norris8b6e50c2011-05-25 14:59:01 -07003143 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01003144 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
Boris Brezillonaf37d2c2018-09-06 14:05:18 +02003145 chip->ecc.calculate(chip, p, &chip->ecc.calc_buf[i]);
Alexey Korolev3d459552008-05-15 17:23:18 +01003146
Brian Norris8b6e50c2011-05-25 14:59:01 -07003147 /*
3148 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07003149 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07003150 */
Boris Brezillon846031d2016-02-03 20:11:00 +01003151 ret = mtd_ooblayout_find_eccregion(mtd, index, &section, &oobregion);
3152 if (ret)
3153 return ret;
3154
3155 if (oobregion.length < eccfrag_len)
3156 gaps = 1;
3157
Alexey Korolev3d459552008-05-15 17:23:18 +01003158 if (gaps) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003159 ret = nand_change_read_column_op(chip, mtd->writesize,
3160 chip->oob_poi, mtd->oobsize,
3161 false);
3162 if (ret)
3163 return ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01003164 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07003165 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07003166 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07003167 * about buswidth alignment in read_buf.
3168 */
Boris Brezillon846031d2016-02-03 20:11:00 +01003169 aligned_pos = oobregion.offset & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01003170 aligned_len = eccfrag_len;
Boris Brezillon846031d2016-02-03 20:11:00 +01003171 if (oobregion.offset & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01003172 aligned_len++;
Boris Brezillon846031d2016-02-03 20:11:00 +01003173 if ((oobregion.offset + (num_steps * chip->ecc.bytes)) &
3174 (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01003175 aligned_len++;
3176
Boris Brezillon97d90da2017-11-30 18:01:29 +01003177 ret = nand_change_read_column_op(chip,
3178 mtd->writesize + aligned_pos,
3179 &chip->oob_poi[aligned_pos],
3180 aligned_len, false);
3181 if (ret)
3182 return ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01003183 }
3184
Masahiro Yamadac0313b92017-12-05 17:47:16 +09003185 ret = mtd_ooblayout_get_eccbytes(mtd, chip->ecc.code_buf,
Boris Brezillon846031d2016-02-03 20:11:00 +01003186 chip->oob_poi, index, eccfrag_len);
3187 if (ret)
3188 return ret;
Alexey Korolev3d459552008-05-15 17:23:18 +01003189
3190 p = bufpoi + data_col_addr;
3191 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
3192 int stat;
3193
Boris Brezillon00da2ea2018-09-06 14:05:19 +02003194 stat = chip->ecc.correct(chip, p, &chip->ecc.code_buf[i],
Masahiro Yamadac0313b92017-12-05 17:47:16 +09003195 &chip->ecc.calc_buf[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01003196 if (stat == -EBADMSG &&
3197 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
3198 /* check for empty pages with bitflips */
3199 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
Masahiro Yamadac0313b92017-12-05 17:47:16 +09003200 &chip->ecc.code_buf[i],
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01003201 chip->ecc.bytes,
3202 NULL, 0,
3203 chip->ecc.strength);
3204 }
3205
Mike Dunn3f91e942012-04-25 12:06:09 -07003206 if (stat < 0) {
Alexey Korolev3d459552008-05-15 17:23:18 +01003207 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07003208 } else {
Alexey Korolev3d459552008-05-15 17:23:18 +01003209 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07003210 max_bitflips = max_t(unsigned int, max_bitflips, stat);
3211 }
Alexey Korolev3d459552008-05-15 17:23:18 +01003212 }
Mike Dunn3f91e942012-04-25 12:06:09 -07003213 return max_bitflips;
Alexey Korolev3d459552008-05-15 17:23:18 +01003214}
3215
3216/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003217 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003218 * @chip: nand chip info structure
3219 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07003220 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07003221 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003222 *
Brian Norris7854d3f2011-06-23 14:12:08 -07003223 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003224 */
Boris Brezillonb9761682018-09-06 14:05:20 +02003225static int nand_read_page_hwecc(struct nand_chip *chip, uint8_t *buf,
3226 int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003227{
Boris Brezillonb9761682018-09-06 14:05:20 +02003228 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon846031d2016-02-03 20:11:00 +01003229 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003230 int eccbytes = chip->ecc.bytes;
3231 int eccsteps = chip->ecc.steps;
3232 uint8_t *p = buf;
Masahiro Yamadac0313b92017-12-05 17:47:16 +09003233 uint8_t *ecc_calc = chip->ecc.calc_buf;
3234 uint8_t *ecc_code = chip->ecc.code_buf;
Mike Dunn3f91e942012-04-25 12:06:09 -07003235 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003236
Boris Brezillon25f815f2017-11-30 18:01:30 +01003237 ret = nand_read_page_op(chip, page, 0, NULL, 0);
3238 if (ret)
3239 return ret;
3240
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003241 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
Boris Brezillonec476362018-09-06 14:05:17 +02003242 chip->ecc.hwctl(chip, NAND_ECC_READ);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003243
3244 ret = nand_read_data_op(chip, p, eccsize, false);
3245 if (ret)
3246 return ret;
3247
Boris Brezillonaf37d2c2018-09-06 14:05:18 +02003248 chip->ecc.calculate(chip, p, &ecc_calc[i]);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003249 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01003250
3251 ret = nand_read_data_op(chip, chip->oob_poi, mtd->oobsize, false);
3252 if (ret)
3253 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003254
Boris Brezillon846031d2016-02-03 20:11:00 +01003255 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
3256 chip->ecc.total);
3257 if (ret)
3258 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003259
3260 eccsteps = chip->ecc.steps;
3261 p = buf;
3262
3263 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
3264 int stat;
3265
Boris Brezillon00da2ea2018-09-06 14:05:19 +02003266 stat = chip->ecc.correct(chip, p, &ecc_code[i], &ecc_calc[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01003267 if (stat == -EBADMSG &&
3268 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
3269 /* check for empty pages with bitflips */
3270 stat = nand_check_erased_ecc_chunk(p, eccsize,
3271 &ecc_code[i], eccbytes,
3272 NULL, 0,
3273 chip->ecc.strength);
3274 }
3275
Mike Dunn3f91e942012-04-25 12:06:09 -07003276 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003277 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07003278 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003279 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07003280 max_bitflips = max_t(unsigned int, max_bitflips, stat);
3281 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003282 }
Mike Dunn3f91e942012-04-25 12:06:09 -07003283 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003284}
3285
3286/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003287 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07003288 * @chip: nand chip info structure
3289 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07003290 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07003291 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003292 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003293 * Hardware ECC for large page chips, require OOB to be read first. For this
3294 * ECC mode, the write_page method is re-used from ECC_HW. These methods
3295 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
3296 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
3297 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003298 */
Boris Brezillonb9761682018-09-06 14:05:20 +02003299static int nand_read_page_hwecc_oob_first(struct nand_chip *chip, uint8_t *buf,
3300 int oob_required, int page)
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003301{
Boris Brezillonb9761682018-09-06 14:05:20 +02003302 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon846031d2016-02-03 20:11:00 +01003303 int i, eccsize = chip->ecc.size, ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003304 int eccbytes = chip->ecc.bytes;
3305 int eccsteps = chip->ecc.steps;
3306 uint8_t *p = buf;
Masahiro Yamadac0313b92017-12-05 17:47:16 +09003307 uint8_t *ecc_code = chip->ecc.code_buf;
3308 uint8_t *ecc_calc = chip->ecc.calc_buf;
Mike Dunn3f91e942012-04-25 12:06:09 -07003309 unsigned int max_bitflips = 0;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003310
3311 /* Read the OOB area first */
Boris Brezillon97d90da2017-11-30 18:01:29 +01003312 ret = nand_read_oob_op(chip, page, 0, chip->oob_poi, mtd->oobsize);
3313 if (ret)
3314 return ret;
3315
3316 ret = nand_read_page_op(chip, page, 0, NULL, 0);
3317 if (ret)
3318 return ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003319
Boris Brezillon846031d2016-02-03 20:11:00 +01003320 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
3321 chip->ecc.total);
3322 if (ret)
3323 return ret;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003324
3325 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
3326 int stat;
3327
Boris Brezillonec476362018-09-06 14:05:17 +02003328 chip->ecc.hwctl(chip, NAND_ECC_READ);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003329
3330 ret = nand_read_data_op(chip, p, eccsize, false);
3331 if (ret)
3332 return ret;
3333
Boris Brezillonaf37d2c2018-09-06 14:05:18 +02003334 chip->ecc.calculate(chip, p, &ecc_calc[i]);
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003335
Boris Brezillon00da2ea2018-09-06 14:05:19 +02003336 stat = chip->ecc.correct(chip, p, &ecc_code[i], NULL);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01003337 if (stat == -EBADMSG &&
3338 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
3339 /* check for empty pages with bitflips */
3340 stat = nand_check_erased_ecc_chunk(p, eccsize,
3341 &ecc_code[i], eccbytes,
3342 NULL, 0,
3343 chip->ecc.strength);
3344 }
3345
Mike Dunn3f91e942012-04-25 12:06:09 -07003346 if (stat < 0) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003347 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07003348 } else {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003349 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07003350 max_bitflips = max_t(unsigned int, max_bitflips, stat);
3351 }
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003352 }
Mike Dunn3f91e942012-04-25 12:06:09 -07003353 return max_bitflips;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003354}
3355
3356/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003357 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07003358 * @chip: nand chip info structure
3359 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07003360 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07003361 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003362 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003363 * The hw generator calculates the error syndrome automatically. Therefore we
3364 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003365 */
Boris Brezillonb9761682018-09-06 14:05:20 +02003366static int nand_read_page_syndrome(struct nand_chip *chip, uint8_t *buf,
3367 int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003368{
Boris Brezillonb9761682018-09-06 14:05:20 +02003369 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003370 int ret, i, eccsize = chip->ecc.size;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003371 int eccbytes = chip->ecc.bytes;
3372 int eccsteps = chip->ecc.steps;
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01003373 int eccpadbytes = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003374 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003375 uint8_t *oob = chip->oob_poi;
Mike Dunn3f91e942012-04-25 12:06:09 -07003376 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003377
Boris Brezillon25f815f2017-11-30 18:01:30 +01003378 ret = nand_read_page_op(chip, page, 0, NULL, 0);
3379 if (ret)
3380 return ret;
3381
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003382 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
3383 int stat;
3384
Boris Brezillonec476362018-09-06 14:05:17 +02003385 chip->ecc.hwctl(chip, NAND_ECC_READ);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003386
3387 ret = nand_read_data_op(chip, p, eccsize, false);
3388 if (ret)
3389 return ret;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003390
3391 if (chip->ecc.prepad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003392 ret = nand_read_data_op(chip, oob, chip->ecc.prepad,
3393 false);
3394 if (ret)
3395 return ret;
3396
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003397 oob += chip->ecc.prepad;
3398 }
3399
Boris Brezillonec476362018-09-06 14:05:17 +02003400 chip->ecc.hwctl(chip, NAND_ECC_READSYN);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003401
3402 ret = nand_read_data_op(chip, oob, eccbytes, false);
3403 if (ret)
3404 return ret;
3405
Boris Brezillon00da2ea2018-09-06 14:05:19 +02003406 stat = chip->ecc.correct(chip, p, oob, NULL);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003407
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003408 oob += eccbytes;
3409
3410 if (chip->ecc.postpad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003411 ret = nand_read_data_op(chip, oob, chip->ecc.postpad,
3412 false);
3413 if (ret)
3414 return ret;
3415
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003416 oob += chip->ecc.postpad;
3417 }
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01003418
3419 if (stat == -EBADMSG &&
3420 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
3421 /* check for empty pages with bitflips */
3422 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
3423 oob - eccpadbytes,
3424 eccpadbytes,
3425 NULL, 0,
3426 chip->ecc.strength);
3427 }
3428
3429 if (stat < 0) {
3430 mtd->ecc_stats.failed++;
3431 } else {
3432 mtd->ecc_stats.corrected += stat;
3433 max_bitflips = max_t(unsigned int, max_bitflips, stat);
3434 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003435 }
3436
3437 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04003438 i = mtd->oobsize - (oob - chip->oob_poi);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003439 if (i) {
3440 ret = nand_read_data_op(chip, oob, i, false);
3441 if (ret)
3442 return ret;
3443 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003444
Mike Dunn3f91e942012-04-25 12:06:09 -07003445 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003446}
3447
3448/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003449 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Boris Brezillon846031d2016-02-03 20:11:00 +01003450 * @mtd: mtd info structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07003451 * @oob: oob destination address
3452 * @ops: oob ops structure
3453 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003454 */
Boris Brezillon846031d2016-02-03 20:11:00 +01003455static uint8_t *nand_transfer_oob(struct mtd_info *mtd, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03003456 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003457{
Boris Brezillon846031d2016-02-03 20:11:00 +01003458 struct nand_chip *chip = mtd_to_nand(mtd);
3459 int ret;
3460
Florian Fainellif8ac0412010-09-07 13:23:43 +02003461 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003462
Brian Norris0612b9d2011-08-30 18:45:40 -07003463 case MTD_OPS_PLACE_OOB:
3464 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003465 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
3466 return oob + len;
3467
Boris Brezillon846031d2016-02-03 20:11:00 +01003468 case MTD_OPS_AUTO_OOB:
3469 ret = mtd_ooblayout_get_databytes(mtd, oob, chip->oob_poi,
3470 ops->ooboffs, len);
3471 BUG_ON(ret);
3472 return oob + len;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003473
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003474 default:
3475 BUG();
3476 }
3477 return NULL;
3478}
3479
3480/**
Brian Norrisba84fb52014-01-03 15:13:33 -08003481 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
3482 * @mtd: MTD device structure
3483 * @retry_mode: the retry mode to use
3484 *
3485 * Some vendors supply a special command to shift the Vt threshold, to be used
3486 * when there are too many bitflips in a page (i.e., ECC error). After setting
3487 * a new threshold, the host should retry reading the page.
3488 */
3489static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
3490{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003491 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norrisba84fb52014-01-03 15:13:33 -08003492
3493 pr_debug("setting READ RETRY mode %d\n", retry_mode);
3494
3495 if (retry_mode >= chip->read_retries)
3496 return -EINVAL;
3497
3498 if (!chip->setup_read_retry)
3499 return -EOPNOTSUPP;
3500
3501 return chip->setup_read_retry(mtd, retry_mode);
3502}
3503
Boris Brezillon85e08e52018-07-27 09:44:17 +02003504static void nand_wait_readrdy(struct nand_chip *chip)
3505{
Boris Brezillon52f05b62018-07-27 09:44:18 +02003506 const struct nand_sdr_timings *sdr;
3507
Boris Brezillon85e08e52018-07-27 09:44:17 +02003508 if (!(chip->options & NAND_NEED_READRDY))
3509 return;
3510
Boris Brezillon52f05b62018-07-27 09:44:18 +02003511 sdr = nand_get_sdr_timings(&chip->data_interface);
3512 WARN_ON(nand_wait_rdy_op(chip, PSEC_TO_MSEC(sdr->tR_max), 0));
Boris Brezillon85e08e52018-07-27 09:44:17 +02003513}
3514
Brian Norrisba84fb52014-01-03 15:13:33 -08003515/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003516 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07003517 * @mtd: MTD device structure
3518 * @from: offset to read from
3519 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00003520 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003521 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00003522 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003523static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
3524 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00003525{
Brian Norrise47f3db2012-05-02 10:14:56 -07003526 int chipnr, page, realpage, col, bytes, aligned, oob_required;
Boris BREZILLON862eba52015-12-01 12:03:03 +01003527 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003528 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003529 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03003530 uint32_t oobreadlen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01003531 uint32_t max_oobsize = mtd_oobavail(mtd, ops);
Maxim Levitsky9aca3342010-02-22 20:39:35 +02003532
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003533 uint8_t *bufpoi, *oob, *buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04003534 int use_bufpoi;
Mike Dunnedbc45402012-04-25 12:06:11 -07003535 unsigned int max_bitflips = 0;
Brian Norrisba84fb52014-01-03 15:13:33 -08003536 int retry_mode = 0;
Brian Norrisb72f3df2013-12-03 11:04:14 -08003537 bool ecc_fail = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003539 chipnr = (int)(from >> chip->chip_shift);
Boris Brezillon758b56f2018-09-06 14:05:24 +02003540 chip->select_chip(chip, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003542 realpage = (int)(from >> chip->page_shift);
3543 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003545 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003547 buf = ops->datbuf;
3548 oob = ops->oobbuf;
Brian Norrise47f3db2012-05-02 10:14:56 -07003549 oob_required = oob ? 1 : 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003550
Florian Fainellif8ac0412010-09-07 13:23:43 +02003551 while (1) {
Brian Norrisb72f3df2013-12-03 11:04:14 -08003552 unsigned int ecc_failures = mtd->ecc_stats.failed;
3553
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003554 bytes = min(mtd->writesize - col, readlen);
3555 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003556
Kamal Dasu66507c72014-05-01 20:51:19 -04003557 if (!aligned)
3558 use_bufpoi = 1;
3559 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
Masahiro Yamada477544c2017-03-30 17:15:05 +09003560 use_bufpoi = !virt_addr_valid(buf) ||
3561 !IS_ALIGNED((unsigned long)buf,
3562 chip->buf_align);
Kamal Dasu66507c72014-05-01 20:51:19 -04003563 else
3564 use_bufpoi = 0;
3565
Brian Norris8b6e50c2011-05-25 14:59:01 -07003566 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003567 if (realpage != chip->pagebuf || oob) {
Masahiro Yamadac0313b92017-12-05 17:47:16 +09003568 bufpoi = use_bufpoi ? chip->data_buf : buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04003569
3570 if (use_bufpoi && aligned)
3571 pr_debug("%s: using read bounce buffer for buf@%p\n",
3572 __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
Brian Norrisba84fb52014-01-03 15:13:33 -08003574read_retry:
Mike Dunnedbc45402012-04-25 12:06:11 -07003575 /*
3576 * Now read the page into the buffer. Absent an error,
3577 * the read methods return max bitflips per ecc step.
3578 */
Brian Norris0612b9d2011-08-30 18:45:40 -07003579 if (unlikely(ops->mode == MTD_OPS_RAW))
Boris Brezillonb9761682018-09-06 14:05:20 +02003580 ret = chip->ecc.read_page_raw(chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07003581 oob_required,
3582 page);
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05003583 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
3584 !oob)
Boris Brezillonb9761682018-09-06 14:05:20 +02003585 ret = chip->ecc.read_subpage(chip, col, bytes,
3586 bufpoi, page);
David Woodhouse956e9442006-09-25 17:12:39 +01003587 else
Boris Brezillonb9761682018-09-06 14:05:20 +02003588 ret = chip->ecc.read_page(chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07003589 oob_required, page);
Brian Norris6d77b9d2011-09-07 13:13:40 -07003590 if (ret < 0) {
Kamal Dasu66507c72014-05-01 20:51:19 -04003591 if (use_bufpoi)
Brian Norris6d77b9d2011-09-07 13:13:40 -07003592 /* Invalidate page cache */
3593 chip->pagebuf = -1;
David Woodhousee0c7d762006-05-13 18:07:53 +01003594 break;
Brian Norris6d77b9d2011-09-07 13:13:40 -07003595 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003596
3597 /* Transfer not aligned data */
Kamal Dasu66507c72014-05-01 20:51:19 -04003598 if (use_bufpoi) {
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05003599 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Brian Norrisb72f3df2013-12-03 11:04:14 -08003600 !(mtd->ecc_stats.failed - ecc_failures) &&
Mike Dunnedbc45402012-04-25 12:06:11 -07003601 (ops->mode != MTD_OPS_RAW)) {
Alexey Korolev3d459552008-05-15 17:23:18 +01003602 chip->pagebuf = realpage;
Mike Dunnedbc45402012-04-25 12:06:11 -07003603 chip->pagebuf_bitflips = ret;
3604 } else {
Brian Norris6d77b9d2011-09-07 13:13:40 -07003605 /* Invalidate page cache */
3606 chip->pagebuf = -1;
Mike Dunnedbc45402012-04-25 12:06:11 -07003607 }
Masahiro Yamadac0313b92017-12-05 17:47:16 +09003608 memcpy(buf, chip->data_buf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003610
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003611 if (unlikely(oob)) {
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02003612 int toread = min(oobreadlen, max_oobsize);
3613
3614 if (toread) {
Boris Brezillon846031d2016-02-03 20:11:00 +01003615 oob = nand_transfer_oob(mtd,
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02003616 oob, ops, toread);
3617 oobreadlen -= toread;
3618 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003619 }
Brian Norris5bc7c332013-03-13 09:51:31 -07003620
Boris Brezillon85e08e52018-07-27 09:44:17 +02003621 nand_wait_readrdy(chip);
Brian Norrisb72f3df2013-12-03 11:04:14 -08003622
Brian Norrisba84fb52014-01-03 15:13:33 -08003623 if (mtd->ecc_stats.failed - ecc_failures) {
Brian Norris28fa65e2014-02-12 16:08:28 -08003624 if (retry_mode + 1 < chip->read_retries) {
Brian Norrisba84fb52014-01-03 15:13:33 -08003625 retry_mode++;
3626 ret = nand_setup_read_retry(mtd,
3627 retry_mode);
3628 if (ret < 0)
3629 break;
3630
3631 /* Reset failures; retry */
3632 mtd->ecc_stats.failed = ecc_failures;
3633 goto read_retry;
3634 } else {
3635 /* No more retry modes; real failure */
3636 ecc_fail = true;
3637 }
3638 }
3639
3640 buf += bytes;
Masahiro Yamada07604682017-03-30 15:45:47 +09003641 max_bitflips = max_t(unsigned int, max_bitflips, ret);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003642 } else {
Masahiro Yamadac0313b92017-12-05 17:47:16 +09003643 memcpy(buf, chip->data_buf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003644 buf += bytes;
Mike Dunnedbc45402012-04-25 12:06:11 -07003645 max_bitflips = max_t(unsigned int, max_bitflips,
3646 chip->pagebuf_bitflips);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003649 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003650
Brian Norrisba84fb52014-01-03 15:13:33 -08003651 /* Reset to retry mode 0 */
3652 if (retry_mode) {
3653 ret = nand_setup_read_retry(mtd, 0);
3654 if (ret < 0)
3655 break;
3656 retry_mode = 0;
3657 }
3658
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003659 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003660 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661
Brian Norris8b6e50c2011-05-25 14:59:01 -07003662 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 col = 0;
3664 /* Increment page address */
3665 realpage++;
3666
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003667 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 /* Check, if we cross a chip boundary */
3669 if (!page) {
3670 chipnr++;
Boris Brezillon758b56f2018-09-06 14:05:24 +02003671 chip->select_chip(chip, -1);
3672 chip->select_chip(chip, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 }
Boris Brezillon758b56f2018-09-06 14:05:24 +02003675 chip->select_chip(chip, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003677 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03003678 if (oob)
3679 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680
Mike Dunn3f91e942012-04-25 12:06:09 -07003681 if (ret < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003682 return ret;
3683
Brian Norrisb72f3df2013-12-03 11:04:14 -08003684 if (ecc_fail)
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02003685 return -EBADMSG;
3686
Mike Dunnedbc45402012-04-25 12:06:11 -07003687 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003688}
3689
3690/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003691 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003692 * @chip: nand chip info structure
3693 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003694 */
Boris Brezillonb9761682018-09-06 14:05:20 +02003695int nand_read_oob_std(struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003696{
Boris Brezillonb9761682018-09-06 14:05:20 +02003697 struct mtd_info *mtd = nand_to_mtd(chip);
3698
Boris Brezillon97d90da2017-11-30 18:01:29 +01003699 return nand_read_oob_op(chip, page, 0, chip->oob_poi, mtd->oobsize);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003700}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02003701EXPORT_SYMBOL(nand_read_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003702
3703/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003704 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003705 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07003706 * @chip: nand chip info structure
3707 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003708 */
Boris Brezillonb9761682018-09-06 14:05:20 +02003709int nand_read_oob_syndrome(struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003710{
Boris Brezillonb9761682018-09-06 14:05:20 +02003711 struct mtd_info *mtd = nand_to_mtd(chip);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003712 int length = mtd->oobsize;
3713 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
3714 int eccsize = chip->ecc.size;
Baruch Siach2ea69d22015-01-22 15:23:05 +02003715 uint8_t *bufpoi = chip->oob_poi;
Boris Brezillon97d90da2017-11-30 18:01:29 +01003716 int i, toread, sndrnd = 0, pos, ret;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003717
Boris Brezillon97d90da2017-11-30 18:01:29 +01003718 ret = nand_read_page_op(chip, page, chip->ecc.size, NULL, 0);
3719 if (ret)
3720 return ret;
3721
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003722 for (i = 0; i < chip->ecc.steps; i++) {
3723 if (sndrnd) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01003724 int ret;
3725
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003726 pos = eccsize + i * (eccsize + chunk);
3727 if (mtd->writesize > 512)
Boris Brezillon97d90da2017-11-30 18:01:29 +01003728 ret = nand_change_read_column_op(chip, pos,
3729 NULL, 0,
3730 false);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003731 else
Boris Brezillon97d90da2017-11-30 18:01:29 +01003732 ret = nand_read_page_op(chip, page, pos, NULL,
3733 0);
3734
3735 if (ret)
3736 return ret;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003737 } else
3738 sndrnd = 1;
3739 toread = min_t(int, length, chunk);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003740
3741 ret = nand_read_data_op(chip, bufpoi, toread, false);
3742 if (ret)
3743 return ret;
3744
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003745 bufpoi += toread;
3746 length -= toread;
3747 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01003748 if (length > 0) {
3749 ret = nand_read_data_op(chip, bufpoi, length, false);
3750 if (ret)
3751 return ret;
3752 }
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003753
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03003754 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003755}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02003756EXPORT_SYMBOL(nand_read_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003757
3758/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003759 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003760 * @chip: nand chip info structure
3761 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003762 */
Boris Brezillon767eb6f2018-09-06 14:05:21 +02003763int nand_write_oob_std(struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003764{
Boris Brezillon767eb6f2018-09-06 14:05:21 +02003765 struct mtd_info *mtd = nand_to_mtd(chip);
3766
Boris Brezillon97d90da2017-11-30 18:01:29 +01003767 return nand_prog_page_op(chip, page, mtd->writesize, chip->oob_poi,
3768 mtd->oobsize);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003769}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02003770EXPORT_SYMBOL(nand_write_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003771
3772/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003773 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07003774 * with syndrome - only for large page flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003775 * @chip: nand chip info structure
3776 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003777 */
Boris Brezillon767eb6f2018-09-06 14:05:21 +02003778int nand_write_oob_syndrome(struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003779{
Boris Brezillon767eb6f2018-09-06 14:05:21 +02003780 struct mtd_info *mtd = nand_to_mtd(chip);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003781 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
3782 int eccsize = chip->ecc.size, length = mtd->oobsize;
Boris Brezillon97d90da2017-11-30 18:01:29 +01003783 int ret, i, len, pos, sndcmd = 0, steps = chip->ecc.steps;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003784 const uint8_t *bufpoi = chip->oob_poi;
3785
3786 /*
3787 * data-ecc-data-ecc ... ecc-oob
3788 * or
3789 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
3790 */
3791 if (!chip->ecc.prepad && !chip->ecc.postpad) {
3792 pos = steps * (eccsize + chunk);
3793 steps = 0;
3794 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02003795 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003796
Boris Brezillon97d90da2017-11-30 18:01:29 +01003797 ret = nand_prog_page_begin_op(chip, page, pos, NULL, 0);
3798 if (ret)
3799 return ret;
3800
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003801 for (i = 0; i < steps; i++) {
3802 if (sndcmd) {
3803 if (mtd->writesize <= 512) {
3804 uint32_t fill = 0xFFFFFFFF;
3805
3806 len = eccsize;
3807 while (len > 0) {
3808 int num = min_t(int, len, 4);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003809
3810 ret = nand_write_data_op(chip, &fill,
3811 num, false);
3812 if (ret)
3813 return ret;
3814
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003815 len -= num;
3816 }
3817 } else {
3818 pos = eccsize + i * (eccsize + chunk);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003819 ret = nand_change_write_column_op(chip, pos,
3820 NULL, 0,
3821 false);
3822 if (ret)
3823 return ret;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003824 }
3825 } else
3826 sndcmd = 1;
3827 len = min_t(int, length, chunk);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003828
3829 ret = nand_write_data_op(chip, bufpoi, len, false);
3830 if (ret)
3831 return ret;
3832
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003833 bufpoi += len;
3834 length -= len;
3835 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01003836 if (length > 0) {
3837 ret = nand_write_data_op(chip, bufpoi, length, false);
3838 if (ret)
3839 return ret;
3840 }
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003841
Boris Brezillon97d90da2017-11-30 18:01:29 +01003842 return nand_prog_page_end_op(chip);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003843}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02003844EXPORT_SYMBOL(nand_write_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003845
3846/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003847 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07003848 * @mtd: MTD device structure
3849 * @from: offset to read from
3850 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003852 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003854static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
3855 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
Miquel Raynal87e89ce2018-01-12 10:13:36 +01003857 unsigned int max_bitflips = 0;
Brian Norrisc00a0992012-05-01 17:12:54 -07003858 int page, realpage, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01003859 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris041e4572011-06-23 16:45:24 -07003860 struct mtd_ecc_stats stats;
Vitaly Wool70145682006-11-03 18:20:38 +03003861 int readlen = ops->ooblen;
3862 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003863 uint8_t *buf = ops->oobbuf;
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03003864 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
Brian Norris289c0522011-07-19 10:06:09 -07003866 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05303867 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
Brian Norris041e4572011-06-23 16:45:24 -07003869 stats = mtd->ecc_stats;
3870
Boris BREZILLON29f10582016-03-07 10:46:52 +01003871 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02003872
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02003873 chipnr = (int)(from >> chip->chip_shift);
Boris Brezillon758b56f2018-09-06 14:05:24 +02003874 chip->select_chip(chip, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02003876 /* Shift to get page */
3877 realpage = (int)(from >> chip->page_shift);
3878 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
Florian Fainellif8ac0412010-09-07 13:23:43 +02003880 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07003881 if (ops->mode == MTD_OPS_RAW)
Boris Brezillonb9761682018-09-06 14:05:20 +02003882 ret = chip->ecc.read_oob_raw(chip, page);
Brian Norrisc46f6482011-08-30 18:45:38 -07003883 else
Boris Brezillonb9761682018-09-06 14:05:20 +02003884 ret = chip->ecc.read_oob(chip, page);
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03003885
3886 if (ret < 0)
3887 break;
Vitaly Wool70145682006-11-03 18:20:38 +03003888
3889 len = min(len, readlen);
Boris Brezillon846031d2016-02-03 20:11:00 +01003890 buf = nand_transfer_oob(mtd, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003891
Boris Brezillon85e08e52018-07-27 09:44:17 +02003892 nand_wait_readrdy(chip);
Brian Norris5bc7c332013-03-13 09:51:31 -07003893
Miquel Raynal87e89ce2018-01-12 10:13:36 +01003894 max_bitflips = max_t(unsigned int, max_bitflips, ret);
3895
Vitaly Wool70145682006-11-03 18:20:38 +03003896 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02003897 if (!readlen)
3898 break;
3899
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02003900 /* Increment page address */
3901 realpage++;
3902
3903 page = realpage & chip->pagemask;
3904 /* Check, if we cross a chip boundary */
3905 if (!page) {
3906 chipnr++;
Boris Brezillon758b56f2018-09-06 14:05:24 +02003907 chip->select_chip(chip, -1);
3908 chip->select_chip(chip, chipnr);
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02003909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 }
Boris Brezillon758b56f2018-09-06 14:05:24 +02003911 chip->select_chip(chip, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03003913 ops->oobretlen = ops->ooblen - readlen;
3914
3915 if (ret < 0)
3916 return ret;
Brian Norris041e4572011-06-23 16:45:24 -07003917
3918 if (mtd->ecc_stats.failed - stats.failed)
3919 return -EBADMSG;
3920
Miquel Raynal87e89ce2018-01-12 10:13:36 +01003921 return max_bitflips;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922}
3923
3924/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003925 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07003926 * @mtd: MTD device structure
3927 * @from: offset to read from
3928 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003930 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003932static int nand_read_oob(struct mtd_info *mtd, loff_t from,
3933 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934{
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07003935 int ret;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003936
3937 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
Andrey Smirnovfc6b4d12016-07-21 14:59:21 -07003939 if (ops->mode != MTD_OPS_PLACE_OOB &&
3940 ops->mode != MTD_OPS_AUTO_OOB &&
3941 ops->mode != MTD_OPS_RAW)
3942 return -ENOTSUPP;
3943
Huang Shijie6a8214a2012-11-19 14:43:30 +08003944 nand_get_device(mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003946 if (!ops->datbuf)
3947 ret = nand_do_read_oob(mtd, from, ops);
3948 else
3949 ret = nand_do_read_ops(mtd, from, ops);
3950
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003952 return ret;
3953}
3954
Boris Brezillon0d6030a2018-07-18 10:42:17 +02003955/**
3956 * nand_write_page_raw_notsupp - dummy raw page write function
Boris Brezillon0d6030a2018-07-18 10:42:17 +02003957 * @chip: nand chip info structure
3958 * @buf: data buffer
3959 * @oob_required: must write chip->oob_poi to OOB
3960 * @page: page number to write
3961 *
3962 * Returns -ENOTSUPP unconditionally.
3963 */
Boris Brezillon767eb6f2018-09-06 14:05:21 +02003964int nand_write_page_raw_notsupp(struct nand_chip *chip, const u8 *buf,
3965 int oob_required, int page)
Boris Brezillon0d6030a2018-07-18 10:42:17 +02003966{
3967 return -ENOTSUPP;
3968}
3969EXPORT_SYMBOL(nand_write_page_raw_notsupp);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003970
3971/**
Brian Norris7854d3f2011-06-23 14:12:08 -07003972 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07003973 * @chip: nand chip info structure
3974 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07003975 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02003976 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08003977 *
Brian Norris7854d3f2011-06-23 14:12:08 -07003978 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003979 */
Boris Brezillon767eb6f2018-09-06 14:05:21 +02003980int nand_write_page_raw(struct nand_chip *chip, const uint8_t *buf,
3981 int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003982{
Boris Brezillon767eb6f2018-09-06 14:05:21 +02003983 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003984 int ret;
Josh Wufdbad98d2012-06-25 18:07:45 +08003985
Boris Brezillon25f815f2017-11-30 18:01:30 +01003986 ret = nand_prog_page_begin_op(chip, page, 0, buf, mtd->writesize);
Boris Brezillon97d90da2017-11-30 18:01:29 +01003987 if (ret)
3988 return ret;
3989
3990 if (oob_required) {
3991 ret = nand_write_data_op(chip, chip->oob_poi, mtd->oobsize,
3992 false);
3993 if (ret)
3994 return ret;
3995 }
Josh Wufdbad98d2012-06-25 18:07:45 +08003996
Boris Brezillon25f815f2017-11-30 18:01:30 +01003997 return nand_prog_page_end_op(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998}
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02003999EXPORT_SYMBOL(nand_write_page_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004001/**
Brian Norris7854d3f2011-06-23 14:12:08 -07004002 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07004003 * @chip: nand chip info structure
4004 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07004005 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02004006 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08004007 *
4008 * We need a special oob layout and handling even when ECC isn't checked.
4009 */
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004010static int nand_write_page_raw_syndrome(struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02004011 const uint8_t *buf, int oob_required,
4012 int page)
David Brownell52ff49d2009-03-04 12:01:36 -08004013{
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004014 struct mtd_info *mtd = nand_to_mtd(chip);
David Brownell52ff49d2009-03-04 12:01:36 -08004015 int eccsize = chip->ecc.size;
4016 int eccbytes = chip->ecc.bytes;
4017 uint8_t *oob = chip->oob_poi;
Boris Brezillon97d90da2017-11-30 18:01:29 +01004018 int steps, size, ret;
David Brownell52ff49d2009-03-04 12:01:36 -08004019
Boris Brezillon25f815f2017-11-30 18:01:30 +01004020 ret = nand_prog_page_begin_op(chip, page, 0, NULL, 0);
4021 if (ret)
4022 return ret;
David Brownell52ff49d2009-03-04 12:01:36 -08004023
4024 for (steps = chip->ecc.steps; steps > 0; steps--) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01004025 ret = nand_write_data_op(chip, buf, eccsize, false);
4026 if (ret)
4027 return ret;
4028
David Brownell52ff49d2009-03-04 12:01:36 -08004029 buf += eccsize;
4030
4031 if (chip->ecc.prepad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01004032 ret = nand_write_data_op(chip, oob, chip->ecc.prepad,
4033 false);
4034 if (ret)
4035 return ret;
4036
David Brownell52ff49d2009-03-04 12:01:36 -08004037 oob += chip->ecc.prepad;
4038 }
4039
Boris Brezillon97d90da2017-11-30 18:01:29 +01004040 ret = nand_write_data_op(chip, oob, eccbytes, false);
4041 if (ret)
4042 return ret;
4043
David Brownell52ff49d2009-03-04 12:01:36 -08004044 oob += eccbytes;
4045
4046 if (chip->ecc.postpad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01004047 ret = nand_write_data_op(chip, oob, chip->ecc.postpad,
4048 false);
4049 if (ret)
4050 return ret;
4051
David Brownell52ff49d2009-03-04 12:01:36 -08004052 oob += chip->ecc.postpad;
4053 }
4054 }
4055
4056 size = mtd->oobsize - (oob - chip->oob_poi);
Boris Brezillon97d90da2017-11-30 18:01:29 +01004057 if (size) {
4058 ret = nand_write_data_op(chip, oob, size, false);
4059 if (ret)
4060 return ret;
4061 }
Josh Wufdbad98d2012-06-25 18:07:45 +08004062
Boris Brezillon25f815f2017-11-30 18:01:30 +01004063 return nand_prog_page_end_op(chip);
David Brownell52ff49d2009-03-04 12:01:36 -08004064}
4065/**
Brian Norris7854d3f2011-06-23 14:12:08 -07004066 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07004067 * @chip: nand chip info structure
4068 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07004069 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02004070 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004071 */
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004072static int nand_write_page_swecc(struct nand_chip *chip, const uint8_t *buf,
4073 int oob_required, int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004074{
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004075 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon846031d2016-02-03 20:11:00 +01004076 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004077 int eccbytes = chip->ecc.bytes;
4078 int eccsteps = chip->ecc.steps;
Masahiro Yamadac0313b92017-12-05 17:47:16 +09004079 uint8_t *ecc_calc = chip->ecc.calc_buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004080 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004081
Brian Norris7854d3f2011-06-23 14:12:08 -07004082 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004083 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
Boris Brezillonaf37d2c2018-09-06 14:05:18 +02004084 chip->ecc.calculate(chip, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004085
Boris Brezillon846031d2016-02-03 20:11:00 +01004086 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
4087 chip->ecc.total);
4088 if (ret)
4089 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004090
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004091 return chip->ecc.write_page_raw(chip, buf, 1, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004092}
4093
4094/**
Brian Norris7854d3f2011-06-23 14:12:08 -07004095 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07004096 * @chip: nand chip info structure
4097 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07004098 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02004099 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004100 */
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004101static int nand_write_page_hwecc(struct nand_chip *chip, const uint8_t *buf,
4102 int oob_required, int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004103{
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004104 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon846031d2016-02-03 20:11:00 +01004105 int i, eccsize = chip->ecc.size, ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004106 int eccbytes = chip->ecc.bytes;
4107 int eccsteps = chip->ecc.steps;
Masahiro Yamadac0313b92017-12-05 17:47:16 +09004108 uint8_t *ecc_calc = chip->ecc.calc_buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004109 const uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004110
Boris Brezillon25f815f2017-11-30 18:01:30 +01004111 ret = nand_prog_page_begin_op(chip, page, 0, NULL, 0);
4112 if (ret)
4113 return ret;
4114
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004115 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
Boris Brezillonec476362018-09-06 14:05:17 +02004116 chip->ecc.hwctl(chip, NAND_ECC_WRITE);
Boris Brezillon97d90da2017-11-30 18:01:29 +01004117
4118 ret = nand_write_data_op(chip, p, eccsize, false);
4119 if (ret)
4120 return ret;
4121
Boris Brezillonaf37d2c2018-09-06 14:05:18 +02004122 chip->ecc.calculate(chip, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004123 }
4124
Boris Brezillon846031d2016-02-03 20:11:00 +01004125 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
4126 chip->ecc.total);
4127 if (ret)
4128 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004129
Boris Brezillon97d90da2017-11-30 18:01:29 +01004130 ret = nand_write_data_op(chip, chip->oob_poi, mtd->oobsize, false);
4131 if (ret)
4132 return ret;
Josh Wufdbad98d2012-06-25 18:07:45 +08004133
Boris Brezillon25f815f2017-11-30 18:01:30 +01004134 return nand_prog_page_end_op(chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004135}
4136
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304137
4138/**
Brian Norris73c8aaf2015-02-28 02:04:18 -08004139 * nand_write_subpage_hwecc - [REPLACEABLE] hardware ECC based subpage write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304140 * @chip: nand chip info structure
Brian Norrisd6a950802013-08-08 17:16:36 -07004141 * @offset: column address of subpage within the page
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304142 * @data_len: data length
Brian Norrisd6a950802013-08-08 17:16:36 -07004143 * @buf: data buffer
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304144 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02004145 * @page: page number to write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304146 */
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004147static int nand_write_subpage_hwecc(struct nand_chip *chip, uint32_t offset,
4148 uint32_t data_len, const uint8_t *buf,
4149 int oob_required, int page)
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304150{
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004151 struct mtd_info *mtd = nand_to_mtd(chip);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304152 uint8_t *oob_buf = chip->oob_poi;
Masahiro Yamadac0313b92017-12-05 17:47:16 +09004153 uint8_t *ecc_calc = chip->ecc.calc_buf;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304154 int ecc_size = chip->ecc.size;
4155 int ecc_bytes = chip->ecc.bytes;
4156 int ecc_steps = chip->ecc.steps;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304157 uint32_t start_step = offset / ecc_size;
4158 uint32_t end_step = (offset + data_len - 1) / ecc_size;
4159 int oob_bytes = mtd->oobsize / ecc_steps;
Boris Brezillon846031d2016-02-03 20:11:00 +01004160 int step, ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304161
Boris Brezillon25f815f2017-11-30 18:01:30 +01004162 ret = nand_prog_page_begin_op(chip, page, 0, NULL, 0);
4163 if (ret)
4164 return ret;
4165
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304166 for (step = 0; step < ecc_steps; step++) {
4167 /* configure controller for WRITE access */
Boris Brezillonec476362018-09-06 14:05:17 +02004168 chip->ecc.hwctl(chip, NAND_ECC_WRITE);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304169
4170 /* write data (untouched subpages already masked by 0xFF) */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004171 ret = nand_write_data_op(chip, buf, ecc_size, false);
4172 if (ret)
4173 return ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304174
4175 /* mask ECC of un-touched subpages by padding 0xFF */
4176 if ((step < start_step) || (step > end_step))
4177 memset(ecc_calc, 0xff, ecc_bytes);
4178 else
Boris Brezillonaf37d2c2018-09-06 14:05:18 +02004179 chip->ecc.calculate(chip, buf, ecc_calc);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304180
4181 /* mask OOB of un-touched subpages by padding 0xFF */
4182 /* if oob_required, preserve OOB metadata of written subpage */
4183 if (!oob_required || (step < start_step) || (step > end_step))
4184 memset(oob_buf, 0xff, oob_bytes);
4185
Brian Norrisd6a950802013-08-08 17:16:36 -07004186 buf += ecc_size;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304187 ecc_calc += ecc_bytes;
4188 oob_buf += oob_bytes;
4189 }
4190
4191 /* copy calculated ECC for whole page to chip->buffer->oob */
4192 /* this include masked-value(0xFF) for unwritten subpages */
Masahiro Yamadac0313b92017-12-05 17:47:16 +09004193 ecc_calc = chip->ecc.calc_buf;
Boris Brezillon846031d2016-02-03 20:11:00 +01004194 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
4195 chip->ecc.total);
4196 if (ret)
4197 return ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304198
4199 /* write OOB buffer to NAND device */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004200 ret = nand_write_data_op(chip, chip->oob_poi, mtd->oobsize, false);
4201 if (ret)
4202 return ret;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304203
Boris Brezillon25f815f2017-11-30 18:01:30 +01004204 return nand_prog_page_end_op(chip);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304205}
4206
4207
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004208/**
Brian Norris7854d3f2011-06-23 14:12:08 -07004209 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07004210 * @chip: nand chip info structure
4211 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07004212 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02004213 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004214 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004215 * The hw generator calculates the error syndrome automatically. Therefore we
4216 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004217 */
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004218static int nand_write_page_syndrome(struct nand_chip *chip, const uint8_t *buf,
4219 int oob_required, int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004220{
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004221 struct mtd_info *mtd = nand_to_mtd(chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004222 int i, eccsize = chip->ecc.size;
4223 int eccbytes = chip->ecc.bytes;
4224 int eccsteps = chip->ecc.steps;
4225 const uint8_t *p = buf;
4226 uint8_t *oob = chip->oob_poi;
Boris Brezillon97d90da2017-11-30 18:01:29 +01004227 int ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004228
Boris Brezillon25f815f2017-11-30 18:01:30 +01004229 ret = nand_prog_page_begin_op(chip, page, 0, NULL, 0);
4230 if (ret)
4231 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004232
4233 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
Boris Brezillonec476362018-09-06 14:05:17 +02004234 chip->ecc.hwctl(chip, NAND_ECC_WRITE);
Boris Brezillon97d90da2017-11-30 18:01:29 +01004235
4236 ret = nand_write_data_op(chip, p, eccsize, false);
4237 if (ret)
4238 return ret;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004239
4240 if (chip->ecc.prepad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01004241 ret = nand_write_data_op(chip, oob, chip->ecc.prepad,
4242 false);
4243 if (ret)
4244 return ret;
4245
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004246 oob += chip->ecc.prepad;
4247 }
4248
Boris Brezillonaf37d2c2018-09-06 14:05:18 +02004249 chip->ecc.calculate(chip, p, oob);
Boris Brezillon97d90da2017-11-30 18:01:29 +01004250
4251 ret = nand_write_data_op(chip, oob, eccbytes, false);
4252 if (ret)
4253 return ret;
4254
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004255 oob += eccbytes;
4256
4257 if (chip->ecc.postpad) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01004258 ret = nand_write_data_op(chip, oob, chip->ecc.postpad,
4259 false);
4260 if (ret)
4261 return ret;
4262
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004263 oob += chip->ecc.postpad;
4264 }
4265 }
4266
4267 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04004268 i = mtd->oobsize - (oob - chip->oob_poi);
Boris Brezillon97d90da2017-11-30 18:01:29 +01004269 if (i) {
4270 ret = nand_write_data_op(chip, oob, i, false);
4271 if (ret)
4272 return ret;
4273 }
Josh Wufdbad98d2012-06-25 18:07:45 +08004274
Boris Brezillon25f815f2017-11-30 18:01:30 +01004275 return nand_prog_page_end_op(chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004276}
4277
4278/**
Boris Brezillonf107d7a2017-03-16 09:02:42 +01004279 * nand_write_page - write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07004280 * @mtd: MTD device structure
4281 * @chip: NAND chip descriptor
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304282 * @offset: address offset within the page
4283 * @data_len: length of actual data to be written
Brian Norris8b6e50c2011-05-25 14:59:01 -07004284 * @buf: the data to write
Brian Norris1fbb9382012-05-02 10:14:55 -07004285 * @oob_required: must write chip->oob_poi to OOB
Brian Norris8b6e50c2011-05-25 14:59:01 -07004286 * @page: page number to write
Brian Norris8b6e50c2011-05-25 14:59:01 -07004287 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004288 */
4289static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304290 uint32_t offset, int data_len, const uint8_t *buf,
Boris Brezillon0b4773fd2017-05-16 00:17:41 +02004291 int oob_required, int page, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004292{
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304293 int status, subpage;
4294
4295 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
4296 chip->ecc.write_subpage)
4297 subpage = offset || (data_len < mtd->writesize);
4298 else
4299 subpage = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004300
David Woodhouse956e9442006-09-25 17:12:39 +01004301 if (unlikely(raw))
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004302 status = chip->ecc.write_page_raw(chip, buf, oob_required,
4303 page);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304304 else if (subpage)
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004305 status = chip->ecc.write_subpage(chip, offset, data_len, buf,
4306 oob_required, page);
David Woodhouse956e9442006-09-25 17:12:39 +01004307 else
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004308 status = chip->ecc.write_page(chip, buf, oob_required, page);
Josh Wufdbad98d2012-06-25 18:07:45 +08004309
4310 if (status < 0)
4311 return status;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004312
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004313 return 0;
4314}
4315
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004316/**
Brian Norris7854d3f2011-06-23 14:12:08 -07004317 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02004318 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07004319 * @oob: oob data buffer
4320 * @len: oob data write length
4321 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004322 */
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02004323static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
4324 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004325{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004326 struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon846031d2016-02-03 20:11:00 +01004327 int ret;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02004328
4329 /*
4330 * Initialise to all 0xFF, to avoid the possibility of left over OOB
4331 * data from a previous OOB read.
4332 */
4333 memset(chip->oob_poi, 0xff, mtd->oobsize);
4334
Florian Fainellif8ac0412010-09-07 13:23:43 +02004335 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004336
Brian Norris0612b9d2011-08-30 18:45:40 -07004337 case MTD_OPS_PLACE_OOB:
4338 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004339 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
4340 return oob + len;
4341
Boris Brezillon846031d2016-02-03 20:11:00 +01004342 case MTD_OPS_AUTO_OOB:
4343 ret = mtd_ooblayout_set_databytes(mtd, oob, chip->oob_poi,
4344 ops->ooboffs, len);
4345 BUG_ON(ret);
4346 return oob + len;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004347
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004348 default:
4349 BUG();
4350 }
4351 return NULL;
4352}
4353
Florian Fainellif8ac0412010-09-07 13:23:43 +02004354#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004355
4356/**
Brian Norris7854d3f2011-06-23 14:12:08 -07004357 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07004358 * @mtd: MTD device structure
4359 * @to: offset to write to
4360 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004361 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004362 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004363 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004364static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
4365 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004366{
Corentin Labbe73600b62017-09-02 10:49:38 +02004367 int chipnr, realpage, page, column;
Boris BREZILLON862eba52015-12-01 12:03:03 +01004368 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004369 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02004370
4371 uint32_t oobwritelen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01004372 uint32_t oobmaxlen = mtd_oobavail(mtd, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02004373
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004374 uint8_t *oob = ops->oobbuf;
4375 uint8_t *buf = ops->datbuf;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05304376 int ret;
Brian Norrise47f3db2012-05-02 10:14:56 -07004377 int oob_required = oob ? 1 : 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004378
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004379 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02004380 if (!writelen)
4381 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004382
Brian Norris8b6e50c2011-05-25 14:59:01 -07004383 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004384 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07004385 pr_notice("%s: attempt to write non page aligned data\n",
4386 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004387 return -EINVAL;
4388 }
4389
Thomas Gleixner29072b92006-09-28 15:38:36 +02004390 column = to & (mtd->writesize - 1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004391
Thomas Gleixner6a930962006-06-28 00:11:45 +02004392 chipnr = (int)(to >> chip->chip_shift);
Boris Brezillon758b56f2018-09-06 14:05:24 +02004393 chip->select_chip(chip, chipnr);
Thomas Gleixner6a930962006-06-28 00:11:45 +02004394
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004395 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08004396 if (nand_check_wp(mtd)) {
4397 ret = -EIO;
4398 goto err_out;
4399 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004400
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004401 realpage = (int)(to >> chip->page_shift);
4402 page = realpage & chip->pagemask;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004403
4404 /* Invalidate the page cache, when we write to the cached page */
Brian Norris537ab1b2014-07-21 19:08:03 -07004405 if (to <= ((loff_t)chip->pagebuf << chip->page_shift) &&
4406 ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004407 chip->pagebuf = -1;
4408
Maxim Levitsky782ce792010-02-22 20:39:36 +02004409 /* Don't allow multipage oob writes with offset */
Huang Shijieb0bb6902012-11-19 14:43:29 +08004410 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
4411 ret = -EINVAL;
4412 goto err_out;
4413 }
Maxim Levitsky782ce792010-02-22 20:39:36 +02004414
Florian Fainellif8ac0412010-09-07 13:23:43 +02004415 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02004416 int bytes = mtd->writesize;
Thomas Gleixner29072b92006-09-28 15:38:36 +02004417 uint8_t *wbuf = buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04004418 int use_bufpoi;
Hector Palacios144f4c92016-07-18 10:39:18 +02004419 int part_pagewr = (column || writelen < mtd->writesize);
Thomas Gleixner29072b92006-09-28 15:38:36 +02004420
Kamal Dasu66507c72014-05-01 20:51:19 -04004421 if (part_pagewr)
4422 use_bufpoi = 1;
4423 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
Masahiro Yamada477544c2017-03-30 17:15:05 +09004424 use_bufpoi = !virt_addr_valid(buf) ||
4425 !IS_ALIGNED((unsigned long)buf,
4426 chip->buf_align);
Kamal Dasu66507c72014-05-01 20:51:19 -04004427 else
4428 use_bufpoi = 0;
4429
4430 /* Partial page write?, or need to use bounce buffer */
4431 if (use_bufpoi) {
4432 pr_debug("%s: using write bounce buffer for buf@%p\n",
4433 __func__, buf);
Kamal Dasu66507c72014-05-01 20:51:19 -04004434 if (part_pagewr)
4435 bytes = min_t(int, bytes - column, writelen);
Thomas Gleixner29072b92006-09-28 15:38:36 +02004436 chip->pagebuf = -1;
Masahiro Yamadac0313b92017-12-05 17:47:16 +09004437 memset(chip->data_buf, 0xff, mtd->writesize);
4438 memcpy(&chip->data_buf[column], buf, bytes);
4439 wbuf = chip->data_buf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02004440 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004441
Maxim Levitsky782ce792010-02-22 20:39:36 +02004442 if (unlikely(oob)) {
4443 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02004444 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02004445 oobwritelen -= len;
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02004446 } else {
4447 /* We still need to erase leftover OOB data */
4448 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02004449 }
Boris Brezillonf107d7a2017-03-16 09:02:42 +01004450
4451 ret = nand_write_page(mtd, chip, column, bytes, wbuf,
Boris Brezillon0b4773fd2017-05-16 00:17:41 +02004452 oob_required, page,
Boris Brezillonf107d7a2017-03-16 09:02:42 +01004453 (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004454 if (ret)
4455 break;
4456
4457 writelen -= bytes;
4458 if (!writelen)
4459 break;
4460
Thomas Gleixner29072b92006-09-28 15:38:36 +02004461 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004462 buf += bytes;
4463 realpage++;
4464
4465 page = realpage & chip->pagemask;
4466 /* Check, if we cross a chip boundary */
4467 if (!page) {
4468 chipnr++;
Boris Brezillon758b56f2018-09-06 14:05:24 +02004469 chip->select_chip(chip, -1);
4470 chip->select_chip(chip, chipnr);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004471 }
4472 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004473
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004474 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03004475 if (unlikely(oob))
4476 ops->oobretlen = ops->ooblen;
Huang Shijieb0bb6902012-11-19 14:43:29 +08004477
4478err_out:
Boris Brezillon758b56f2018-09-06 14:05:24 +02004479 chip->select_chip(chip, -1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004480 return ret;
4481}
4482
4483/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02004484 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07004485 * @mtd: MTD device structure
4486 * @to: offset to write to
4487 * @len: number of bytes to write
4488 * @retlen: pointer to variable to store the number of written bytes
4489 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02004490 *
4491 * NAND write with ECC. Used when performing writes in interrupt context, this
4492 * may for example be called by mtdoops when writing an oops while in panic.
4493 */
4494static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
4495 size_t *retlen, const uint8_t *buf)
4496{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004497 struct nand_chip *chip = mtd_to_nand(mtd);
Brent Taylor30863e382017-10-30 22:32:45 -05004498 int chipnr = (int)(to >> chip->chip_shift);
Brian Norris4a89ff82011-08-30 18:45:45 -07004499 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02004500 int ret;
4501
Brian Norris8b6e50c2011-05-25 14:59:01 -07004502 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02004503 panic_nand_get_device(chip, mtd, FL_WRITING);
4504
Boris Brezillon758b56f2018-09-06 14:05:24 +02004505 chip->select_chip(chip, chipnr);
Brent Taylor30863e382017-10-30 22:32:45 -05004506
4507 /* Wait for the device to get ready */
Boris Brezillonf1d46942018-09-06 14:05:29 +02004508 panic_nand_wait(chip, 400);
Brent Taylor30863e382017-10-30 22:32:45 -05004509
Brian Norris0ec56dc2015-02-28 02:02:30 -08004510 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07004511 ops.len = len;
4512 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae62012-07-03 16:44:14 +08004513 ops.mode = MTD_OPS_PLACE_OOB;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02004514
Brian Norris4a89ff82011-08-30 18:45:45 -07004515 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02004516
Brian Norris4a89ff82011-08-30 18:45:45 -07004517 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02004518 return ret;
4519}
4520
4521/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004522 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07004523 * @mtd: MTD device structure
4524 * @to: offset to write to
4525 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004526 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004527 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004528 */
4529static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
4530 struct mtd_oob_ops *ops)
4531{
Adrian Hunter03736152007-01-31 17:58:29 +02004532 int chipnr, page, status, len;
Boris BREZILLON862eba52015-12-01 12:03:03 +01004533 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534
Brian Norris289c0522011-07-19 10:06:09 -07004535 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05304536 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
Boris BREZILLON29f10582016-03-07 10:46:52 +01004538 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02004539
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02004541 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07004542 pr_debug("%s: attempt to write past end of page\n",
4543 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 return -EINVAL;
4545 }
4546
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02004547 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02004548
4549 /*
4550 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
4551 * of my DiskOnChip 2000 test units) will clear the whole data page too
4552 * if we don't do this. I have no clue why, but I seem to have 'fixed'
4553 * it in the doc2000 driver in August 1999. dwmw2.
4554 */
Boris Brezillon73f907f2016-10-24 16:46:20 +02004555 nand_reset(chip, chipnr);
4556
Boris Brezillon758b56f2018-09-06 14:05:24 +02004557 chip->select_chip(chip, chipnr);
Boris Brezillon73f907f2016-10-24 16:46:20 +02004558
4559 /* Shift to get page */
4560 page = (int)(to >> chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561
4562 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08004563 if (nand_check_wp(mtd)) {
Boris Brezillon758b56f2018-09-06 14:05:24 +02004564 chip->select_chip(chip, -1);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004565 return -EROFS;
Huang Shijieb0bb6902012-11-19 14:43:29 +08004566 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004567
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004569 if (page == chip->pagebuf)
4570 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571
THOMSON, Adam (Adam)f722013e2011-06-14 16:52:38 +02004572 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07004573
Brian Norris0612b9d2011-08-30 18:45:40 -07004574 if (ops->mode == MTD_OPS_RAW)
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004575 status = chip->ecc.write_oob_raw(chip, page & chip->pagemask);
Brian Norris9ce244b2011-08-30 18:45:37 -07004576 else
Boris Brezillon767eb6f2018-09-06 14:05:21 +02004577 status = chip->ecc.write_oob(chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004578
Boris Brezillon758b56f2018-09-06 14:05:24 +02004579 chip->select_chip(chip, -1);
Huang Shijieb0bb6902012-11-19 14:43:29 +08004580
Thomas Gleixner7bc33122006-06-20 20:05:05 +02004581 if (status)
4582 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583
Vitaly Wool70145682006-11-03 18:20:38 +03004584 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585
Thomas Gleixner7bc33122006-06-20 20:05:05 +02004586 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004587}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004589/**
4590 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07004591 * @mtd: MTD device structure
4592 * @to: offset to write to
4593 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004594 */
4595static int nand_write_oob(struct mtd_info *mtd, loff_t to,
4596 struct mtd_oob_ops *ops)
4597{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004598 int ret = -ENOTSUPP;
4599
4600 ops->retlen = 0;
4601
Huang Shijie6a8214a2012-11-19 14:43:30 +08004602 nand_get_device(mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004603
Florian Fainellif8ac0412010-09-07 13:23:43 +02004604 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07004605 case MTD_OPS_PLACE_OOB:
4606 case MTD_OPS_AUTO_OOB:
4607 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004608 break;
4609
4610 default:
4611 goto out;
4612 }
4613
4614 if (!ops->datbuf)
4615 ret = nand_do_write_oob(mtd, to, ops);
4616 else
4617 ret = nand_do_write_ops(mtd, to, ops);
4618
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004619out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02004620 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 return ret;
4622}
4623
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624/**
Brian Norris49c50b92014-05-06 16:02:19 -07004625 * single_erase - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07004626 * @mtd: MTD device structure
4627 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 *
Brian Norris49c50b92014-05-06 16:02:19 -07004629 * Standard erase command for NAND chips. Returns NAND status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 */
Brian Norris49c50b92014-05-06 16:02:19 -07004631static int single_erase(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004633 struct nand_chip *chip = mtd_to_nand(mtd);
Boris Brezillon97d90da2017-11-30 18:01:29 +01004634 unsigned int eraseblock;
Brian Norris49c50b92014-05-06 16:02:19 -07004635
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 /* Send commands to erase a block */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004637 eraseblock = page >> (chip->phys_erase_shift - chip->page_shift);
Brian Norris49c50b92014-05-06 16:02:19 -07004638
Boris Brezillon97d90da2017-11-30 18:01:29 +01004639 return nand_erase_op(chip, eraseblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640}
4641
4642/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07004644 * @mtd: MTD device structure
4645 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004647 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 */
David Woodhousee0c7d762006-05-13 18:07:53 +01004649static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650{
David Woodhousee0c7d762006-05-13 18:07:53 +01004651 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004653
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654/**
Brian Norris7854d3f2011-06-23 14:12:08 -07004655 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07004656 * @mtd: MTD device structure
4657 * @instr: erase instruction
4658 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004660 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004662int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
4663 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664{
Adrian Hunter69423d92008-12-10 13:37:21 +00004665 int page, status, pages_per_block, ret, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01004666 struct nand_chip *chip = mtd_to_nand(mtd);
Adrian Hunter69423d92008-12-10 13:37:21 +00004667 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668
Brian Norris289c0522011-07-19 10:06:09 -07004669 pr_debug("%s: start = 0x%012llx, len = %llu\n",
4670 __func__, (unsigned long long)instr->addr,
4671 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05304673 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08004677 nand_get_device(mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678
4679 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004680 page = (int)(instr->addr >> chip->page_shift);
4681 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682
4683 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004684 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685
4686 /* Select the NAND device */
Boris Brezillon758b56f2018-09-06 14:05:24 +02004687 chip->select_chip(chip, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 /* Check, if it is write protected */
4690 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07004691 pr_debug("%s: device is write protected!\n",
4692 __func__);
Boris Brezillone7bfb3f2018-02-12 22:03:11 +01004693 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 goto erase_exit;
4695 }
4696
4697 /* Loop through the pages */
4698 len = instr->len;
4699
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 while (len) {
Wolfram Sang12183a22011-12-21 23:01:20 +01004701 /* Check if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004702 if (nand_block_checkbad(mtd, ((loff_t) page) <<
Archit Taneja9f3e0422016-02-03 14:29:49 +05304703 chip->page_shift, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07004704 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
4705 __func__, page);
Boris Brezillone7bfb3f2018-02-12 22:03:11 +01004706 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 goto erase_exit;
4708 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004709
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004710 /*
4711 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07004712 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004713 */
4714 if (page <= chip->pagebuf && chip->pagebuf <
4715 (page + pages_per_block))
4716 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717
Brian Norris49c50b92014-05-06 16:02:19 -07004718 status = chip->erase(mtd, page & chip->pagemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719
4720 /* See if block erase succeeded */
Miquel Raynaleb945552017-11-30 18:01:28 +01004721 if (status) {
Brian Norris289c0522011-07-19 10:06:09 -07004722 pr_debug("%s: failed erase, page 0x%08x\n",
4723 __func__, page);
Boris Brezillone7bfb3f2018-02-12 22:03:11 +01004724 ret = -EIO;
Adrian Hunter69423d92008-12-10 13:37:21 +00004725 instr->fail_addr =
4726 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 goto erase_exit;
4728 }
David A. Marlin30f464b2005-01-17 18:35:25 +00004729
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 /* Increment page address and decrement length */
Dan Carpenterdaae74c2013-08-09 12:49:05 +03004731 len -= (1ULL << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 page += pages_per_block;
4733
4734 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004735 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 chipnr++;
Boris Brezillon758b56f2018-09-06 14:05:24 +02004737 chip->select_chip(chip, -1);
4738 chip->select_chip(chip, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 }
4740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741
Boris Brezillone7bfb3f2018-02-12 22:03:11 +01004742 ret = 0;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004743erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745 /* Deselect and wake up anyone waiting on the device */
Boris Brezillon758b56f2018-09-06 14:05:24 +02004746 chip->select_chip(chip, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 nand_release_device(mtd);
4748
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 /* Return more or less happy */
4750 return ret;
4751}
4752
4753/**
4754 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07004755 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004757 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 */
David Woodhousee0c7d762006-05-13 18:07:53 +01004759static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760{
Brian Norris289c0522011-07-19 10:06:09 -07004761 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762
4763 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08004764 nand_get_device(mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01004766 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767}
4768
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004770 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07004771 * @mtd: MTD device structure
4772 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004774static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775{
Archit Taneja9f3e0422016-02-03 14:29:49 +05304776 struct nand_chip *chip = mtd_to_nand(mtd);
4777 int chipnr = (int)(offs >> chip->chip_shift);
4778 int ret;
4779
4780 /* Select the NAND device */
4781 nand_get_device(mtd, FL_READING);
Boris Brezillon758b56f2018-09-06 14:05:24 +02004782 chip->select_chip(chip, chipnr);
Archit Taneja9f3e0422016-02-03 14:29:49 +05304783
4784 ret = nand_block_checkbad(mtd, offs, 0);
4785
Boris Brezillon758b56f2018-09-06 14:05:24 +02004786 chip->select_chip(chip, -1);
Archit Taneja9f3e0422016-02-03 14:29:49 +05304787 nand_release_device(mtd);
4788
4789 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790}
4791
4792/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004793 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07004794 * @mtd: MTD device structure
4795 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 */
David Woodhousee0c7d762006-05-13 18:07:53 +01004797static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 int ret;
4800
Florian Fainellif8ac0412010-09-07 13:23:43 +02004801 ret = nand_block_isbad(mtd, ofs);
4802 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07004803 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 if (ret > 0)
4805 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01004806 return ret;
4807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808
Brian Norris5a0edb22013-07-30 17:52:58 -07004809 return nand_block_markbad_lowlevel(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810}
4811
4812/**
Zach Brown56718422017-01-10 13:30:20 -06004813 * nand_max_bad_blocks - [MTD Interface] Max number of bad blocks for an mtd
4814 * @mtd: MTD device structure
4815 * @ofs: offset relative to mtd start
4816 * @len: length of mtd
4817 */
4818static int nand_max_bad_blocks(struct mtd_info *mtd, loff_t ofs, size_t len)
4819{
4820 struct nand_chip *chip = mtd_to_nand(mtd);
4821 u32 part_start_block;
4822 u32 part_end_block;
4823 u32 part_start_die;
4824 u32 part_end_die;
4825
4826 /*
4827 * max_bb_per_die and blocks_per_die used to determine
4828 * the maximum bad block count.
4829 */
4830 if (!chip->max_bb_per_die || !chip->blocks_per_die)
4831 return -ENOTSUPP;
4832
4833 /* Get the start and end of the partition in erase blocks. */
4834 part_start_block = mtd_div_by_eb(ofs, mtd);
4835 part_end_block = mtd_div_by_eb(len, mtd) + part_start_block - 1;
4836
4837 /* Get the start and end LUNs of the partition. */
4838 part_start_die = part_start_block / chip->blocks_per_die;
4839 part_end_die = part_end_block / chip->blocks_per_die;
4840
4841 /*
4842 * Look up the bad blocks per unit and multiply by the number of units
4843 * that the partition spans.
4844 */
4845 return chip->max_bb_per_die * (part_end_die - part_start_die + 1);
4846}
4847
4848/**
Miquel Raynalb9587582018-03-19 14:47:19 +01004849 * nand_default_set_features- [REPLACEABLE] set NAND chip features
Huang Shijie7db03ec2012-09-13 14:57:52 +08004850 * @mtd: MTD device structure
4851 * @chip: nand chip info structure
4852 * @addr: feature address.
4853 * @subfeature_param: the subfeature parameters, a four bytes array.
4854 */
Miquel Raynalb9587582018-03-19 14:47:19 +01004855static int nand_default_set_features(struct mtd_info *mtd,
4856 struct nand_chip *chip, int addr,
4857 uint8_t *subfeature_param)
Huang Shijie7db03ec2012-09-13 14:57:52 +08004858{
Boris Brezillon97d90da2017-11-30 18:01:29 +01004859 return nand_set_features_op(chip, addr, subfeature_param);
Huang Shijie7db03ec2012-09-13 14:57:52 +08004860}
4861
4862/**
Miquel Raynalb9587582018-03-19 14:47:19 +01004863 * nand_default_get_features- [REPLACEABLE] get NAND chip features
Huang Shijie7db03ec2012-09-13 14:57:52 +08004864 * @mtd: MTD device structure
4865 * @chip: nand chip info structure
4866 * @addr: feature address.
4867 * @subfeature_param: the subfeature parameters, a four bytes array.
4868 */
Miquel Raynalb9587582018-03-19 14:47:19 +01004869static int nand_default_get_features(struct mtd_info *mtd,
4870 struct nand_chip *chip, int addr,
4871 uint8_t *subfeature_param)
Huang Shijie7db03ec2012-09-13 14:57:52 +08004872{
Boris Brezillon97d90da2017-11-30 18:01:29 +01004873 return nand_get_features_op(chip, addr, subfeature_param);
Huang Shijie7db03ec2012-09-13 14:57:52 +08004874}
4875
4876/**
Miquel Raynalb9587582018-03-19 14:47:19 +01004877 * nand_get_set_features_notsupp - set/get features stub returning -ENOTSUPP
Boris Brezillon4a78cc62017-05-26 17:10:15 +02004878 * @mtd: MTD device structure
4879 * @chip: nand chip info structure
4880 * @addr: feature address.
4881 * @subfeature_param: the subfeature parameters, a four bytes array.
4882 *
4883 * Should be used by NAND controller drivers that do not support the SET/GET
4884 * FEATURES operations.
4885 */
Miquel Raynalb9587582018-03-19 14:47:19 +01004886int nand_get_set_features_notsupp(struct mtd_info *mtd, struct nand_chip *chip,
4887 int addr, u8 *subfeature_param)
Boris Brezillon4a78cc62017-05-26 17:10:15 +02004888{
4889 return -ENOTSUPP;
4890}
Miquel Raynalb9587582018-03-19 14:47:19 +01004891EXPORT_SYMBOL(nand_get_set_features_notsupp);
Boris Brezillon4a78cc62017-05-26 17:10:15 +02004892
4893/**
Vitaly Wool962034f2005-09-15 14:58:53 +01004894 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07004895 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01004896 */
4897static int nand_suspend(struct mtd_info *mtd)
4898{
Huang Shijie6a8214a2012-11-19 14:43:30 +08004899 return nand_get_device(mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01004900}
4901
4902/**
4903 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07004904 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01004905 */
4906static void nand_resume(struct mtd_info *mtd)
4907{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004908 struct nand_chip *chip = mtd_to_nand(mtd);
Vitaly Wool962034f2005-09-15 14:58:53 +01004909
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004910 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01004911 nand_release_device(mtd);
4912 else
Brian Norrisd0370212011-07-19 10:06:08 -07004913 pr_err("%s called for a chip which is not in suspended state\n",
4914 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01004915}
4916
Scott Branden72ea4032014-11-20 11:18:05 -08004917/**
4918 * nand_shutdown - [MTD Interface] Finish the current NAND operation and
4919 * prevent further operations
4920 * @mtd: MTD device structure
4921 */
4922static void nand_shutdown(struct mtd_info *mtd)
4923{
Brian Norris9ca641b2015-11-09 16:37:28 -08004924 nand_get_device(mtd, FL_PM_SUSPENDED);
Scott Branden72ea4032014-11-20 11:18:05 -08004925}
4926
Brian Norris8b6e50c2011-05-25 14:59:01 -07004927/* Set default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004928static void nand_set_defaults(struct nand_chip *chip)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004929{
Boris Brezillon29a198a2016-05-24 20:17:48 +02004930 unsigned int busw = chip->options & NAND_BUSWIDTH_16;
4931
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004933 if (!chip->chip_delay)
4934 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
4936 /* check, if a user supplied command function given */
Miquel Raynal8878b122017-11-09 14:16:45 +01004937 if (!chip->cmdfunc && !chip->exec_op)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004938 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
4940 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004941 if (chip->waitfunc == NULL)
4942 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004944 if (!chip->select_chip)
4945 chip->select_chip = nand_select_chip;
Brian Norris68e80782013-07-18 01:17:02 -07004946
Huang Shijie4204ccc2013-08-16 10:10:07 +08004947 /* set for ONFI nand */
Miquel Raynalb9587582018-03-19 14:47:19 +01004948 if (!chip->set_features)
4949 chip->set_features = nand_default_set_features;
4950 if (!chip->get_features)
4951 chip->get_features = nand_default_get_features;
Huang Shijie4204ccc2013-08-16 10:10:07 +08004952
Brian Norris68e80782013-07-18 01:17:02 -07004953 /* If called twice, pointers that depend on busw may need to be reset */
4954 if (!chip->read_byte || chip->read_byte == nand_read_byte)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004955 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004956 if (!chip->block_bad)
4957 chip->block_bad = nand_block_bad;
4958 if (!chip->block_markbad)
4959 chip->block_markbad = nand_default_block_markbad;
Brian Norris68e80782013-07-18 01:17:02 -07004960 if (!chip->write_buf || chip->write_buf == nand_write_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004961 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01004962 if (!chip->write_byte || chip->write_byte == nand_write_byte)
4963 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
Brian Norris68e80782013-07-18 01:17:02 -07004964 if (!chip->read_buf || chip->read_buf == nand_read_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004965 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004966
4967 if (!chip->controller) {
Miquel Raynal7da45132018-07-17 09:08:02 +02004968 chip->controller = &chip->dummy_controller;
4969 nand_controller_init(chip->controller);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004970 }
4971
Masahiro Yamada477544c2017-03-30 17:15:05 +09004972 if (!chip->buf_align)
4973 chip->buf_align = 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004974}
4975
Brian Norris8b6e50c2011-05-25 14:59:01 -07004976/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004977static void sanitize_string(uint8_t *s, size_t len)
4978{
4979 ssize_t i;
4980
Brian Norris8b6e50c2011-05-25 14:59:01 -07004981 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004982 s[len - 1] = 0;
4983
Brian Norris8b6e50c2011-05-25 14:59:01 -07004984 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004985 for (i = 0; i < len - 1; i++) {
4986 if (s[i] < ' ' || s[i] > 127)
4987 s[i] = '?';
4988 }
4989
Brian Norris8b6e50c2011-05-25 14:59:01 -07004990 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004991 strim(s);
4992}
4993
4994static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
4995{
4996 int i;
4997 while (len--) {
4998 crc ^= *p++ << 8;
4999 for (i = 0; i < 8; i++)
5000 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
5001 }
5002
5003 return crc;
5004}
5005
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005006/* Parse the Extended Parameter Page. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005007static int nand_flash_detect_ext_param_page(struct nand_chip *chip,
5008 struct nand_onfi_params *p)
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005009{
5010 struct onfi_ext_param_page *ep;
5011 struct onfi_ext_section *s;
5012 struct onfi_ext_ecc_info *ecc;
5013 uint8_t *cursor;
Boris Brezillon97d90da2017-11-30 18:01:29 +01005014 int ret;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005015 int len;
5016 int i;
5017
5018 len = le16_to_cpu(p->ext_param_page_length) * 16;
5019 ep = kmalloc(len, GFP_KERNEL);
Brian Norris5cb13272013-09-16 17:59:20 -07005020 if (!ep)
5021 return -ENOMEM;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005022
5023 /* Send our own NAND_CMD_PARAM. */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005024 ret = nand_read_param_page_op(chip, 0, NULL, 0);
5025 if (ret)
5026 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005027
5028 /* Use the Change Read Column command to skip the ONFI param pages. */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005029 ret = nand_change_read_column_op(chip,
5030 sizeof(*p) * p->num_of_param_pages,
5031 ep, len, true);
5032 if (ret)
5033 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005034
Boris Brezillon97d90da2017-11-30 18:01:29 +01005035 ret = -EINVAL;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005036 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
5037 != le16_to_cpu(ep->crc))) {
5038 pr_debug("fail in the CRC.\n");
5039 goto ext_out;
5040 }
5041
5042 /*
5043 * Check the signature.
5044 * Do not strictly follow the ONFI spec, maybe changed in future.
5045 */
5046 if (strncmp(ep->sig, "EPPS", 4)) {
5047 pr_debug("The signature is invalid.\n");
5048 goto ext_out;
5049 }
5050
5051 /* find the ECC section. */
5052 cursor = (uint8_t *)(ep + 1);
5053 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
5054 s = ep->sections + i;
5055 if (s->type == ONFI_SECTION_TYPE_2)
5056 break;
5057 cursor += s->length * 16;
5058 }
5059 if (i == ONFI_EXT_SECTION_MAX) {
5060 pr_debug("We can not find the ECC section.\n");
5061 goto ext_out;
5062 }
5063
5064 /* get the info we want. */
5065 ecc = (struct onfi_ext_ecc_info *)cursor;
5066
Brian Norris4ae7d222013-09-16 18:20:21 -07005067 if (!ecc->codeword_size) {
5068 pr_debug("Invalid codeword size\n");
5069 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005070 }
5071
Brian Norris4ae7d222013-09-16 18:20:21 -07005072 chip->ecc_strength_ds = ecc->ecc_bits;
5073 chip->ecc_step_ds = 1 << ecc->codeword_size;
Brian Norris5cb13272013-09-16 17:59:20 -07005074 ret = 0;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005075
5076ext_out:
5077 kfree(ep);
5078 return ret;
5079}
5080
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005081/*
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005082 * Recover data with bit-wise majority
5083 */
5084static void nand_bit_wise_majority(const void **srcbufs,
5085 unsigned int nsrcbufs,
5086 void *dstbuf,
5087 unsigned int bufsize)
5088{
5089 int i, j, k;
5090
5091 for (i = 0; i < bufsize; i++) {
5092 u8 val = 0;
5093
5094 for (j = 0; j < 8; j++) {
5095 unsigned int cnt = 0;
5096
5097 for (k = 0; k < nsrcbufs; k++) {
5098 const u8 *srcbuf = srcbufs[k];
5099
5100 if (srcbuf[i] & BIT(j))
5101 cnt++;
5102 }
5103
5104 if (cnt > nsrcbufs / 2)
5105 val |= BIT(j);
5106 }
5107
5108 ((u8 *)dstbuf)[i] = val;
5109 }
5110}
5111
5112/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07005113 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005114 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02005115static int nand_flash_detect_onfi(struct nand_chip *chip)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005116{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005117 struct mtd_info *mtd = nand_to_mtd(chip);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005118 struct nand_onfi_params *p;
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005119 struct onfi_params *onfi;
5120 int onfi_version = 0;
Boris Brezillon97d90da2017-11-30 18:01:29 +01005121 char id[4];
5122 int i, ret, val;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005123
Brian Norris7854d3f2011-06-23 14:12:08 -07005124 /* Try ONFI for unknown chip or LP */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005125 ret = nand_readid_op(chip, 0x20, id, sizeof(id));
5126 if (ret || strncmp(id, "ONFI", 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005127 return 0;
5128
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005129 /* ONFI chip: allocate a buffer to hold its parameter page */
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005130 p = kzalloc((sizeof(*p) * 3), GFP_KERNEL);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005131 if (!p)
5132 return -ENOMEM;
5133
Boris Brezillon97d90da2017-11-30 18:01:29 +01005134 ret = nand_read_param_page_op(chip, 0, NULL, 0);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005135 if (ret) {
5136 ret = 0;
5137 goto free_onfi_param_page;
5138 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01005139
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005140 for (i = 0; i < 3; i++) {
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005141 ret = nand_read_data_op(chip, &p[i], sizeof(*p), true);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005142 if (ret) {
5143 ret = 0;
5144 goto free_onfi_param_page;
5145 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01005146
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005147 if (onfi_crc16(ONFI_CRC_BASE, (u8 *)&p[i], 254) ==
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005148 le16_to_cpu(p->crc)) {
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005149 if (i)
5150 memcpy(p, &p[i], sizeof(*p));
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005151 break;
5152 }
5153 }
5154
Brian Norrisc7f23a72013-08-13 10:51:55 -07005155 if (i == 3) {
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005156 const void *srcbufs[3] = {p, p + 1, p + 2};
5157
5158 pr_warn("Could not find a valid ONFI parameter page, trying bit-wise majority to recover it\n");
5159 nand_bit_wise_majority(srcbufs, ARRAY_SIZE(srcbufs), p,
5160 sizeof(*p));
5161
5162 if (onfi_crc16(ONFI_CRC_BASE, (u8 *)p, 254) !=
5163 le16_to_cpu(p->crc)) {
5164 pr_err("ONFI parameter recovery failed, aborting\n");
5165 goto free_onfi_param_page;
5166 }
Brian Norrisc7f23a72013-08-13 10:51:55 -07005167 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005168
Chris Packham00ce4e02018-06-25 10:44:44 +12005169 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
5170 chip->manufacturer.desc->ops->fixup_onfi_param_page)
5171 chip->manufacturer.desc->ops->fixup_onfi_param_page(chip, p);
5172
Brian Norris8b6e50c2011-05-25 14:59:01 -07005173 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005174 val = le16_to_cpu(p->revision);
Chris Packham872b71f2018-06-25 10:44:45 +12005175 if (val & ONFI_VERSION_2_3)
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005176 onfi_version = 23;
Chris Packham872b71f2018-06-25 10:44:45 +12005177 else if (val & ONFI_VERSION_2_2)
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005178 onfi_version = 22;
Chris Packham872b71f2018-06-25 10:44:45 +12005179 else if (val & ONFI_VERSION_2_1)
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005180 onfi_version = 21;
Chris Packham872b71f2018-06-25 10:44:45 +12005181 else if (val & ONFI_VERSION_2_0)
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005182 onfi_version = 20;
Chris Packham872b71f2018-06-25 10:44:45 +12005183 else if (val & ONFI_VERSION_1_0)
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005184 onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08005185
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005186 if (!onfi_version) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03005187 pr_info("unsupported ONFI version: %d\n", val);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005188 goto free_onfi_param_page;
Brian Norrisb7b1a292010-12-12 00:23:33 -08005189 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005190
5191 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
5192 sanitize_string(p->model, sizeof(p->model));
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005193 chip->parameters.model = kstrdup(p->model, GFP_KERNEL);
5194 if (!chip->parameters.model) {
5195 ret = -ENOMEM;
5196 goto free_onfi_param_page;
5197 }
Brian Norris4355b702013-08-27 18:45:10 -07005198
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005199 mtd->writesize = le32_to_cpu(p->byte_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07005200
5201 /*
5202 * pages_per_block and blocks_per_lun may not be a power-of-2 size
5203 * (don't ask me who thought of this...). MTD assumes that these
5204 * dimensions will be power-of-2, so just truncate the remaining area.
5205 */
5206 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
5207 mtd->erasesize *= mtd->writesize;
5208
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005209 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07005210
5211 /* See erasesize comment */
5212 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
Matthieu CASTET63795752012-03-19 15:35:25 +01005213 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
Huang Shijie13fbd172013-09-25 14:58:13 +08005214 chip->bits_per_cell = p->bits_per_cell;
Huang Shijiee2985fc2013-05-17 11:17:30 +08005215
Zach Brown34da5f52017-01-10 13:30:21 -06005216 chip->max_bb_per_die = le16_to_cpu(p->bb_per_lun);
5217 chip->blocks_per_die = le32_to_cpu(p->blocks_per_lun);
5218
Miquel Raynala97421c2018-03-19 14:47:27 +01005219 if (le16_to_cpu(p->features) & ONFI_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02005220 chip->options |= NAND_BUSWIDTH_16;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005221
Huang Shijie10c86ba2013-05-17 11:17:26 +08005222 if (p->ecc_bits != 0xff) {
5223 chip->ecc_strength_ds = p->ecc_bits;
5224 chip->ecc_step_ds = 512;
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005225 } else if (onfi_version >= 21 &&
Miquel Raynala97421c2018-03-19 14:47:27 +01005226 (le16_to_cpu(p->features) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005227
5228 /*
5229 * The nand_flash_detect_ext_param_page() uses the
5230 * Change Read Column command which maybe not supported
5231 * by the chip->cmdfunc. So try to update the chip->cmdfunc
5232 * now. We do not replace user supplied command function.
5233 */
5234 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
5235 chip->cmdfunc = nand_command_lp;
5236
5237 /* The Extended Parameter Page is supported since ONFI 2.1. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005238 if (nand_flash_detect_ext_param_page(chip, p))
Brian Norrisc7f23a72013-08-13 10:51:55 -07005239 pr_warn("Failed to detect ONFI extended param page\n");
5240 } else {
5241 pr_warn("Could not retrieve ONFI ECC requirements\n");
Huang Shijie10c86ba2013-05-17 11:17:26 +08005242 }
5243
Miquel Raynalf4531b22018-03-19 14:47:26 +01005244 /* Save some parameters from the parameter page for future use */
Miquel Raynal789157e2018-03-19 14:47:28 +01005245 if (le16_to_cpu(p->opt_cmd) & ONFI_OPT_CMD_SET_GET_FEATURES) {
Miquel Raynalf4531b22018-03-19 14:47:26 +01005246 chip->parameters.supports_set_get_features = true;
Miquel Raynal789157e2018-03-19 14:47:28 +01005247 bitmap_set(chip->parameters.get_feature_list,
5248 ONFI_FEATURE_ADDR_TIMING_MODE, 1);
5249 bitmap_set(chip->parameters.set_feature_list,
5250 ONFI_FEATURE_ADDR_TIMING_MODE, 1);
5251 }
Miquel Raynalf4531b22018-03-19 14:47:26 +01005252
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005253 onfi = kzalloc(sizeof(*onfi), GFP_KERNEL);
5254 if (!onfi) {
5255 ret = -ENOMEM;
5256 goto free_model;
5257 }
5258
5259 onfi->version = onfi_version;
5260 onfi->tPROG = le16_to_cpu(p->t_prog);
5261 onfi->tBERS = le16_to_cpu(p->t_bers);
5262 onfi->tR = le16_to_cpu(p->t_r);
5263 onfi->tCCS = le16_to_cpu(p->t_ccs);
5264 onfi->async_timing_mode = le16_to_cpu(p->async_timing_mode);
5265 onfi->vendor_revision = le16_to_cpu(p->vendor_revision);
5266 memcpy(onfi->vendor, p->vendor, sizeof(p->vendor));
5267 chip->parameters.onfi = onfi;
5268
5269 /* Identification done, free the full ONFI parameter page and exit */
5270 kfree(p);
5271
5272 return 1;
5273
5274free_model:
5275 kfree(chip->parameters.model);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005276free_onfi_param_page:
5277 kfree(p);
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005278
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005279 return ret;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005280}
5281
5282/*
Huang Shijie91361812014-02-21 13:39:40 +08005283 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
5284 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02005285static int nand_flash_detect_jedec(struct nand_chip *chip)
Huang Shijie91361812014-02-21 13:39:40 +08005286{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005287 struct mtd_info *mtd = nand_to_mtd(chip);
Miquel Raynal480139d2018-03-19 14:47:30 +01005288 struct nand_jedec_params *p;
Huang Shijie91361812014-02-21 13:39:40 +08005289 struct jedec_ecc_info *ecc;
Miquel Raynal480139d2018-03-19 14:47:30 +01005290 int jedec_version = 0;
Boris Brezillon97d90da2017-11-30 18:01:29 +01005291 char id[5];
5292 int i, val, ret;
Huang Shijie91361812014-02-21 13:39:40 +08005293
5294 /* Try JEDEC for unknown chip or LP */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005295 ret = nand_readid_op(chip, 0x40, id, sizeof(id));
5296 if (ret || strncmp(id, "JEDEC", sizeof(id)))
Huang Shijie91361812014-02-21 13:39:40 +08005297 return 0;
5298
Miquel Raynal480139d2018-03-19 14:47:30 +01005299 /* JEDEC chip: allocate a buffer to hold its parameter page */
5300 p = kzalloc(sizeof(*p), GFP_KERNEL);
5301 if (!p)
5302 return -ENOMEM;
5303
Boris Brezillon97d90da2017-11-30 18:01:29 +01005304 ret = nand_read_param_page_op(chip, 0x40, NULL, 0);
Miquel Raynal480139d2018-03-19 14:47:30 +01005305 if (ret) {
5306 ret = 0;
5307 goto free_jedec_param_page;
5308 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01005309
Huang Shijie91361812014-02-21 13:39:40 +08005310 for (i = 0; i < 3; i++) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01005311 ret = nand_read_data_op(chip, p, sizeof(*p), true);
Miquel Raynal480139d2018-03-19 14:47:30 +01005312 if (ret) {
5313 ret = 0;
5314 goto free_jedec_param_page;
5315 }
Huang Shijie91361812014-02-21 13:39:40 +08005316
5317 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
5318 le16_to_cpu(p->crc))
5319 break;
5320 }
5321
5322 if (i == 3) {
5323 pr_err("Could not find valid JEDEC parameter page; aborting\n");
Miquel Raynal480139d2018-03-19 14:47:30 +01005324 goto free_jedec_param_page;
Huang Shijie91361812014-02-21 13:39:40 +08005325 }
5326
5327 /* Check version */
5328 val = le16_to_cpu(p->revision);
5329 if (val & (1 << 2))
Miquel Raynal480139d2018-03-19 14:47:30 +01005330 jedec_version = 10;
Huang Shijie91361812014-02-21 13:39:40 +08005331 else if (val & (1 << 1))
Miquel Raynal480139d2018-03-19 14:47:30 +01005332 jedec_version = 1; /* vendor specific version */
Huang Shijie91361812014-02-21 13:39:40 +08005333
Miquel Raynal480139d2018-03-19 14:47:30 +01005334 if (!jedec_version) {
Huang Shijie91361812014-02-21 13:39:40 +08005335 pr_info("unsupported JEDEC version: %d\n", val);
Miquel Raynal480139d2018-03-19 14:47:30 +01005336 goto free_jedec_param_page;
Huang Shijie91361812014-02-21 13:39:40 +08005337 }
5338
5339 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
5340 sanitize_string(p->model, sizeof(p->model));
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005341 chip->parameters.model = kstrdup(p->model, GFP_KERNEL);
5342 if (!chip->parameters.model) {
5343 ret = -ENOMEM;
5344 goto free_jedec_param_page;
5345 }
Huang Shijie91361812014-02-21 13:39:40 +08005346
5347 mtd->writesize = le32_to_cpu(p->byte_per_page);
5348
5349 /* Please reference to the comment for nand_flash_detect_onfi. */
5350 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
5351 mtd->erasesize *= mtd->writesize;
5352
5353 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
5354
5355 /* Please reference to the comment for nand_flash_detect_onfi. */
5356 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
5357 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
5358 chip->bits_per_cell = p->bits_per_cell;
5359
Miquel Raynal480139d2018-03-19 14:47:30 +01005360 if (le16_to_cpu(p->features) & JEDEC_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02005361 chip->options |= NAND_BUSWIDTH_16;
Huang Shijie91361812014-02-21 13:39:40 +08005362
5363 /* ECC info */
5364 ecc = &p->ecc_info[0];
5365
5366 if (ecc->codeword_size >= 9) {
5367 chip->ecc_strength_ds = ecc->ecc_bits;
5368 chip->ecc_step_ds = 1 << ecc->codeword_size;
5369 } else {
5370 pr_warn("Invalid codeword size\n");
5371 }
5372
Miquel Raynal480139d2018-03-19 14:47:30 +01005373free_jedec_param_page:
5374 kfree(p);
5375 return ret;
Huang Shijie91361812014-02-21 13:39:40 +08005376}
5377
5378/*
Brian Norrise3b88bd2012-09-24 20:40:52 -07005379 * nand_id_has_period - Check if an ID string has a given wraparound period
5380 * @id_data: the ID string
5381 * @arrlen: the length of the @id_data array
5382 * @period: the period of repitition
5383 *
5384 * Check if an ID string is repeated within a given sequence of bytes at
5385 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Brian Norrisd4d4f1b2012-11-14 21:54:20 -08005386 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Brian Norrise3b88bd2012-09-24 20:40:52 -07005387 * if the repetition has a period of @period; otherwise, returns zero.
5388 */
5389static int nand_id_has_period(u8 *id_data, int arrlen, int period)
5390{
5391 int i, j;
5392 for (i = 0; i < period; i++)
5393 for (j = i + period; j < arrlen; j += period)
5394 if (id_data[i] != id_data[j])
5395 return 0;
5396 return 1;
5397}
5398
5399/*
5400 * nand_id_len - Get the length of an ID string returned by CMD_READID
5401 * @id_data: the ID string
5402 * @arrlen: the length of the @id_data array
5403
5404 * Returns the length of the ID string, according to known wraparound/trailing
5405 * zero patterns. If no pattern exists, returns the length of the array.
5406 */
5407static int nand_id_len(u8 *id_data, int arrlen)
5408{
5409 int last_nonzero, period;
5410
5411 /* Find last non-zero byte */
5412 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
5413 if (id_data[last_nonzero])
5414 break;
5415
5416 /* All zeros */
5417 if (last_nonzero < 0)
5418 return 0;
5419
5420 /* Calculate wraparound period */
5421 for (period = 1; period < arrlen; period++)
5422 if (nand_id_has_period(id_data, arrlen, period))
5423 break;
5424
5425 /* There's a repeated pattern */
5426 if (period < arrlen)
5427 return period;
5428
5429 /* There are trailing zeros */
5430 if (last_nonzero < arrlen - 1)
5431 return last_nonzero + 1;
5432
5433 /* No pattern detected */
5434 return arrlen;
5435}
5436
Huang Shijie7db906b2013-09-25 14:58:11 +08005437/* Extract the bits of per cell from the 3rd byte of the extended ID */
5438static int nand_get_bits_per_cell(u8 cellinfo)
5439{
5440 int bits;
5441
5442 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
5443 bits >>= NAND_CI_CELLTYPE_SHIFT;
5444 return bits + 1;
5445}
5446
Brian Norrise3b88bd2012-09-24 20:40:52 -07005447/*
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005448 * Many new NAND share similar device ID codes, which represent the size of the
5449 * chip. The rest of the parameters must be decoded according to generic or
5450 * manufacturer-specific "extended ID" decoding patterns.
5451 */
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005452void nand_decode_ext_id(struct nand_chip *chip)
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005453{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005454 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon9b2d61f2016-06-08 10:34:57 +02005455 int extid;
Boris Brezillon7f501f02016-05-24 19:20:05 +02005456 u8 *id_data = chip->id.data;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005457 /* The 3rd id byte holds MLC / multichip data */
Huang Shijie7db906b2013-09-25 14:58:11 +08005458 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005459 /* The 4th id byte is the important one */
5460 extid = id_data[3];
5461
Boris Brezillon01389b62016-06-08 10:30:18 +02005462 /* Calc pagesize */
5463 mtd->writesize = 1024 << (extid & 0x03);
5464 extid >>= 2;
5465 /* Calc oobsize */
5466 mtd->oobsize = (8 << (extid & 0x01)) * (mtd->writesize >> 9);
5467 extid >>= 2;
5468 /* Calc blocksize. Blocksize is multiples of 64KiB */
5469 mtd->erasesize = (64 * 1024) << (extid & 0x03);
5470 extid >>= 2;
5471 /* Get buswidth information */
5472 if (extid & 0x1)
5473 chip->options |= NAND_BUSWIDTH_16;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005474}
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005475EXPORT_SYMBOL_GPL(nand_decode_ext_id);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005476
5477/*
Brian Norrisf23a4812012-09-24 20:40:51 -07005478 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
5479 * decodes a matching ID table entry and assigns the MTD size parameters for
5480 * the chip.
5481 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02005482static void nand_decode_id(struct nand_chip *chip, struct nand_flash_dev *type)
Brian Norrisf23a4812012-09-24 20:40:51 -07005483{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005484 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norrisf23a4812012-09-24 20:40:51 -07005485
5486 mtd->erasesize = type->erasesize;
5487 mtd->writesize = type->pagesize;
5488 mtd->oobsize = mtd->writesize / 32;
Brian Norrisf23a4812012-09-24 20:40:51 -07005489
Huang Shijie1c195e92013-09-25 14:58:12 +08005490 /* All legacy ID NAND are small-page, SLC */
5491 chip->bits_per_cell = 1;
Brian Norrisf23a4812012-09-24 20:40:51 -07005492}
5493
5494/*
Brian Norris7e74c2d2012-09-24 20:40:49 -07005495 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
5496 * heuristic patterns using various detected parameters (e.g., manufacturer,
5497 * page size, cell-type information).
5498 */
Boris Brezillon7f501f02016-05-24 19:20:05 +02005499static void nand_decode_bbm_options(struct nand_chip *chip)
Brian Norris7e74c2d2012-09-24 20:40:49 -07005500{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005501 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07005502
5503 /* Set the bad block position */
5504 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
5505 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
5506 else
5507 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Brian Norris7e74c2d2012-09-24 20:40:49 -07005508}
5509
Huang Shijieec6e87e2013-03-15 11:01:00 +08005510static inline bool is_full_id_nand(struct nand_flash_dev *type)
5511{
5512 return type->id_len;
5513}
5514
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005515static bool find_full_id_nand(struct nand_chip *chip,
Boris Brezillon29a198a2016-05-24 20:17:48 +02005516 struct nand_flash_dev *type)
Huang Shijieec6e87e2013-03-15 11:01:00 +08005517{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005518 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon7f501f02016-05-24 19:20:05 +02005519 u8 *id_data = chip->id.data;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005520
Huang Shijieec6e87e2013-03-15 11:01:00 +08005521 if (!strncmp(type->id, id_data, type->id_len)) {
5522 mtd->writesize = type->pagesize;
5523 mtd->erasesize = type->erasesize;
5524 mtd->oobsize = type->oobsize;
5525
Huang Shijie7db906b2013-09-25 14:58:11 +08005526 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Huang Shijieec6e87e2013-03-15 11:01:00 +08005527 chip->chipsize = (uint64_t)type->chipsize << 20;
5528 chip->options |= type->options;
Huang Shijie57219342013-05-17 11:17:32 +08005529 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
5530 chip->ecc_step_ds = NAND_ECC_STEP(type);
Boris BREZILLON57a94e22014-09-22 20:11:50 +02005531 chip->onfi_timing_mode_default =
5532 type->onfi_timing_mode_default;
Huang Shijieec6e87e2013-03-15 11:01:00 +08005533
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005534 chip->parameters.model = kstrdup(type->name, GFP_KERNEL);
5535 if (!chip->parameters.model)
5536 return false;
Cai Zhiyong092b6a12013-12-25 21:19:21 +08005537
Huang Shijieec6e87e2013-03-15 11:01:00 +08005538 return true;
5539 }
5540 return false;
5541}
5542
Brian Norris7e74c2d2012-09-24 20:40:49 -07005543/*
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005544 * Manufacturer detection. Only used when the NAND is not ONFI or JEDEC
5545 * compliant and does not have a full-id or legacy-id entry in the nand_ids
5546 * table.
5547 */
5548static void nand_manufacturer_detect(struct nand_chip *chip)
5549{
5550 /*
5551 * Try manufacturer detection if available and use
5552 * nand_decode_ext_id() otherwise.
5553 */
5554 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
Lothar Waßmann69fc0122017-08-29 12:17:12 +02005555 chip->manufacturer.desc->ops->detect) {
5556 /* The 3rd id byte holds MLC / multichip data */
5557 chip->bits_per_cell = nand_get_bits_per_cell(chip->id.data[2]);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005558 chip->manufacturer.desc->ops->detect(chip);
Lothar Waßmann69fc0122017-08-29 12:17:12 +02005559 } else {
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005560 nand_decode_ext_id(chip);
Lothar Waßmann69fc0122017-08-29 12:17:12 +02005561 }
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005562}
5563
5564/*
5565 * Manufacturer initialization. This function is called for all NANDs including
5566 * ONFI and JEDEC compliant ones.
5567 * Manufacturer drivers should put all their specific initialization code in
5568 * their ->init() hook.
5569 */
5570static int nand_manufacturer_init(struct nand_chip *chip)
5571{
5572 if (!chip->manufacturer.desc || !chip->manufacturer.desc->ops ||
5573 !chip->manufacturer.desc->ops->init)
5574 return 0;
5575
5576 return chip->manufacturer.desc->ops->init(chip);
5577}
5578
5579/*
5580 * Manufacturer cleanup. This function is called for all NANDs including
5581 * ONFI and JEDEC compliant ones.
5582 * Manufacturer drivers should put all their specific cleanup code in their
5583 * ->cleanup() hook.
5584 */
5585static void nand_manufacturer_cleanup(struct nand_chip *chip)
5586{
5587 /* Release manufacturer private data */
5588 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
5589 chip->manufacturer.desc->ops->cleanup)
5590 chip->manufacturer.desc->ops->cleanup(chip);
5591}
5592
5593/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07005594 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005595 */
Boris Brezillon7bb42792016-05-24 20:55:33 +02005596static int nand_detect(struct nand_chip *chip, struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005597{
Boris Brezillonbcc678c2017-01-07 15:48:25 +01005598 const struct nand_manufacturer *manufacturer;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005599 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon97d90da2017-11-30 18:01:29 +01005600 int busw, ret;
Boris Brezillon7f501f02016-05-24 19:20:05 +02005601 u8 *id_data = chip->id.data;
5602 u8 maf_id, dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603
Karl Beldanef89a882008-09-15 14:37:29 +02005604 /*
5605 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07005606 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02005607 */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005608 ret = nand_reset(chip, 0);
5609 if (ret)
5610 return ret;
Boris Brezillon73f907f2016-10-24 16:46:20 +02005611
5612 /* Select the device */
Boris Brezillon758b56f2018-09-06 14:05:24 +02005613 chip->select_chip(chip, 0);
Karl Beldanef89a882008-09-15 14:37:29 +02005614
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615 /* Send the command for reading device ID */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005616 ret = nand_readid_op(chip, 0, id_data, 2);
5617 if (ret)
5618 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619
5620 /* Read manufacturer and device IDs */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005621 maf_id = id_data[0];
5622 dev_id = id_data[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623
Brian Norris8b6e50c2011-05-25 14:59:01 -07005624 /*
5625 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01005626 * interface concerns can cause random data which looks like a
5627 * possibly credible NAND flash to appear. If the two results do
5628 * not match, ignore the device completely.
5629 */
5630
Brian Norris4aef9b72012-09-24 20:40:48 -07005631 /* Read entire ID string */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005632 ret = nand_readid_op(chip, 0, id_data, sizeof(chip->id.data));
5633 if (ret)
5634 return ret;
Ben Dooksed8165c2008-04-14 14:58:58 +01005635
Boris Brezillon7f501f02016-05-24 19:20:05 +02005636 if (id_data[0] != maf_id || id_data[1] != dev_id) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03005637 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02005638 maf_id, dev_id, id_data[0], id_data[1]);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09005639 return -ENODEV;
Ben Dooksed8165c2008-04-14 14:58:58 +01005640 }
5641
Jean-Louis Thekekara5158bd52017-06-29 19:08:30 +02005642 chip->id.len = nand_id_len(id_data, ARRAY_SIZE(chip->id.data));
Boris Brezillon7f501f02016-05-24 19:20:05 +02005643
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005644 /* Try to identify manufacturer */
5645 manufacturer = nand_get_manufacturer(maf_id);
5646 chip->manufacturer.desc = manufacturer;
5647
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005648 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00005649 type = nand_flash_ids;
5650
Boris Brezillon29a198a2016-05-24 20:17:48 +02005651 /*
5652 * Save the NAND_BUSWIDTH_16 flag before letting auto-detection logic
5653 * override it.
5654 * This is required to make sure initial NAND bus width set by the
5655 * NAND controller driver is coherent with the real NAND bus width
5656 * (extracted by auto-detection code).
5657 */
5658 busw = chip->options & NAND_BUSWIDTH_16;
5659
5660 /*
5661 * The flag is only set (never cleared), reset it to its default value
5662 * before starting auto-detection.
5663 */
5664 chip->options &= ~NAND_BUSWIDTH_16;
5665
Huang Shijieec6e87e2013-03-15 11:01:00 +08005666 for (; type->name != NULL; type++) {
5667 if (is_full_id_nand(type)) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02005668 if (find_full_id_nand(chip, type))
Huang Shijieec6e87e2013-03-15 11:01:00 +08005669 goto ident_done;
Boris Brezillon7f501f02016-05-24 19:20:05 +02005670 } else if (dev_id == type->dev_id) {
Brian Norrisdb5b09f2015-05-22 10:43:12 -07005671 break;
Huang Shijieec6e87e2013-03-15 11:01:00 +08005672 }
5673 }
David Woodhouse5e81e882010-02-26 18:32:56 +00005674
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005675 if (!type->name || !type->pagesize) {
Masahiro Yamada35fc5192014-04-09 16:26:26 +09005676 /* Check if the chip is ONFI compliant */
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005677 ret = nand_flash_detect_onfi(chip);
5678 if (ret < 0)
5679 return ret;
5680 else if (ret)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005681 goto ident_done;
Huang Shijie91361812014-02-21 13:39:40 +08005682
5683 /* Check if the chip is JEDEC compliant */
Miquel Raynal480139d2018-03-19 14:47:30 +01005684 ret = nand_flash_detect_jedec(chip);
5685 if (ret < 0)
5686 return ret;
5687 else if (ret)
Huang Shijie91361812014-02-21 13:39:40 +08005688 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005689 }
5690
David Woodhouse5e81e882010-02-26 18:32:56 +00005691 if (!type->name)
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09005692 return -ENODEV;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005693
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005694 chip->parameters.model = kstrdup(type->name, GFP_KERNEL);
5695 if (!chip->parameters.model)
5696 return -ENOMEM;
Thomas Gleixnerba0251fe2006-05-27 01:02:13 +02005697
Adrian Hunter69423d92008-12-10 13:37:21 +00005698 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005699
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005700 if (!type->pagesize)
5701 nand_manufacturer_detect(chip);
5702 else
Boris Brezillon29a198a2016-05-24 20:17:48 +02005703 nand_decode_id(chip, type);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005704
Brian Norrisbf7a01b2012-07-13 09:28:24 -07005705 /* Get chip options */
5706 chip->options |= type->options;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005707
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005708ident_done:
Miquel Raynalf4531b22018-03-19 14:47:26 +01005709 if (!mtd->name)
5710 mtd->name = chip->parameters.model;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005711
Matthieu CASTET64b37b22012-11-06 11:51:44 +01005712 if (chip->options & NAND_BUSWIDTH_AUTO) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02005713 WARN_ON(busw & NAND_BUSWIDTH_16);
5714 nand_set_defaults(chip);
Matthieu CASTET64b37b22012-11-06 11:51:44 +01005715 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
5716 /*
5717 * Check, if buswidth is correct. Hardware drivers should set
5718 * chip correct!
5719 */
Ezequiel Garcia20171642013-11-25 08:30:31 -03005720 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02005721 maf_id, dev_id);
Boris Brezillonbcc678c2017-01-07 15:48:25 +01005722 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
5723 mtd->name);
Boris Brezillon29a198a2016-05-24 20:17:48 +02005724 pr_warn("bus width %d instead of %d bits\n", busw ? 16 : 8,
5725 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8);
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005726 ret = -EINVAL;
5727
5728 goto free_detect_allocation;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005729 }
5730
Boris Brezillon7f501f02016-05-24 19:20:05 +02005731 nand_decode_bbm_options(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07005732
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005733 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005734 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07005735 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005736 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005737
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005738 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005739 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00005740 if (chip->chipsize & 0xffffffff)
5741 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02005742 else {
5743 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
5744 chip->chip_shift += 32 - 1;
5745 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005746
Masahiro Yamada14157f82017-09-13 11:05:50 +09005747 if (chip->chip_shift - chip->page_shift > 16)
5748 chip->options |= NAND_ROW_ADDR_3;
5749
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03005750 chip->badblockbits = 8;
Brian Norris49c50b92014-05-06 16:02:19 -07005751 chip->erase = single_erase;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005752
Brian Norris8b6e50c2011-05-25 14:59:01 -07005753 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005754 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
5755 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005756
Ezequiel Garcia20171642013-11-25 08:30:31 -03005757 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02005758 maf_id, dev_id);
Miquel Raynalf4531b22018-03-19 14:47:26 +01005759 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
5760 chip->parameters.model);
Rafał Miłecki3755a992014-10-21 00:01:04 +02005761 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
Huang Shijie3723e932013-09-25 14:58:14 +08005762 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Rafał Miłecki3755a992014-10-21 00:01:04 +02005763 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09005764 return 0;
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005765
5766free_detect_allocation:
5767 kfree(chip->parameters.model);
5768
5769 return ret;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005770}
5771
Boris Brezillond48f62b2016-04-01 14:54:32 +02005772static const char * const nand_ecc_modes[] = {
5773 [NAND_ECC_NONE] = "none",
5774 [NAND_ECC_SOFT] = "soft",
5775 [NAND_ECC_HW] = "hw",
5776 [NAND_ECC_HW_SYNDROME] = "hw_syndrome",
5777 [NAND_ECC_HW_OOB_FIRST] = "hw_oob_first",
Thomas Petazzoni785818f2017-04-29 11:06:43 +02005778 [NAND_ECC_ON_DIE] = "on-die",
Boris Brezillond48f62b2016-04-01 14:54:32 +02005779};
5780
5781static int of_get_nand_ecc_mode(struct device_node *np)
5782{
5783 const char *pm;
5784 int err, i;
5785
5786 err = of_property_read_string(np, "nand-ecc-mode", &pm);
5787 if (err < 0)
5788 return err;
5789
5790 for (i = 0; i < ARRAY_SIZE(nand_ecc_modes); i++)
5791 if (!strcasecmp(pm, nand_ecc_modes[i]))
5792 return i;
5793
Rafał Miłeckiae211bc2016-04-17 22:53:06 +02005794 /*
5795 * For backward compatibility we support few obsoleted values that don't
5796 * have their mappings into nand_ecc_modes_t anymore (they were merged
5797 * with other enums).
5798 */
5799 if (!strcasecmp(pm, "soft_bch"))
5800 return NAND_ECC_SOFT;
5801
Boris Brezillond48f62b2016-04-01 14:54:32 +02005802 return -ENODEV;
5803}
5804
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02005805static const char * const nand_ecc_algos[] = {
5806 [NAND_ECC_HAMMING] = "hamming",
5807 [NAND_ECC_BCH] = "bch",
Stefan Agnerf308d732018-06-24 23:27:22 +02005808 [NAND_ECC_RS] = "rs",
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02005809};
5810
Boris Brezillond48f62b2016-04-01 14:54:32 +02005811static int of_get_nand_ecc_algo(struct device_node *np)
5812{
5813 const char *pm;
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02005814 int err, i;
Boris Brezillond48f62b2016-04-01 14:54:32 +02005815
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02005816 err = of_property_read_string(np, "nand-ecc-algo", &pm);
5817 if (!err) {
5818 for (i = NAND_ECC_HAMMING; i < ARRAY_SIZE(nand_ecc_algos); i++)
5819 if (!strcasecmp(pm, nand_ecc_algos[i]))
5820 return i;
5821 return -ENODEV;
5822 }
Boris Brezillond48f62b2016-04-01 14:54:32 +02005823
5824 /*
5825 * For backward compatibility we also read "nand-ecc-mode" checking
5826 * for some obsoleted values that were specifying ECC algorithm.
5827 */
5828 err = of_property_read_string(np, "nand-ecc-mode", &pm);
5829 if (err < 0)
5830 return err;
5831
5832 if (!strcasecmp(pm, "soft"))
5833 return NAND_ECC_HAMMING;
5834 else if (!strcasecmp(pm, "soft_bch"))
5835 return NAND_ECC_BCH;
5836
5837 return -ENODEV;
5838}
5839
5840static int of_get_nand_ecc_step_size(struct device_node *np)
5841{
5842 int ret;
5843 u32 val;
5844
5845 ret = of_property_read_u32(np, "nand-ecc-step-size", &val);
5846 return ret ? ret : val;
5847}
5848
5849static int of_get_nand_ecc_strength(struct device_node *np)
5850{
5851 int ret;
5852 u32 val;
5853
5854 ret = of_property_read_u32(np, "nand-ecc-strength", &val);
5855 return ret ? ret : val;
5856}
5857
5858static int of_get_nand_bus_width(struct device_node *np)
5859{
5860 u32 val;
5861
5862 if (of_property_read_u32(np, "nand-bus-width", &val))
5863 return 8;
5864
5865 switch (val) {
5866 case 8:
5867 case 16:
5868 return val;
5869 default:
5870 return -EIO;
5871 }
5872}
5873
5874static bool of_get_nand_on_flash_bbt(struct device_node *np)
5875{
5876 return of_property_read_bool(np, "nand-on-flash-bbt");
5877}
5878
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01005879static int nand_dt_init(struct nand_chip *chip)
Brian Norris5844fee2015-01-23 00:22:27 -08005880{
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01005881 struct device_node *dn = nand_get_flash_node(chip);
Rafał Miłecki79082452016-03-23 11:19:02 +01005882 int ecc_mode, ecc_algo, ecc_strength, ecc_step;
Brian Norris5844fee2015-01-23 00:22:27 -08005883
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01005884 if (!dn)
5885 return 0;
5886
Brian Norris5844fee2015-01-23 00:22:27 -08005887 if (of_get_nand_bus_width(dn) == 16)
5888 chip->options |= NAND_BUSWIDTH_16;
5889
Stefan Agnerf922bd72018-06-24 23:27:23 +02005890 if (of_property_read_bool(dn, "nand-is-boot-medium"))
5891 chip->options |= NAND_IS_BOOT_MEDIUM;
5892
Brian Norris5844fee2015-01-23 00:22:27 -08005893 if (of_get_nand_on_flash_bbt(dn))
5894 chip->bbt_options |= NAND_BBT_USE_FLASH;
5895
5896 ecc_mode = of_get_nand_ecc_mode(dn);
Rafał Miłecki79082452016-03-23 11:19:02 +01005897 ecc_algo = of_get_nand_ecc_algo(dn);
Brian Norris5844fee2015-01-23 00:22:27 -08005898 ecc_strength = of_get_nand_ecc_strength(dn);
5899 ecc_step = of_get_nand_ecc_step_size(dn);
5900
Brian Norris5844fee2015-01-23 00:22:27 -08005901 if (ecc_mode >= 0)
5902 chip->ecc.mode = ecc_mode;
5903
Rafał Miłecki79082452016-03-23 11:19:02 +01005904 if (ecc_algo >= 0)
5905 chip->ecc.algo = ecc_algo;
5906
Brian Norris5844fee2015-01-23 00:22:27 -08005907 if (ecc_strength >= 0)
5908 chip->ecc.strength = ecc_strength;
5909
5910 if (ecc_step > 0)
5911 chip->ecc.size = ecc_step;
5912
Boris Brezillonba78ee02016-06-08 17:04:22 +02005913 if (of_property_read_bool(dn, "nand-ecc-maximize"))
5914 chip->ecc.options |= NAND_ECC_MAXIMIZE;
5915
Brian Norris5844fee2015-01-23 00:22:27 -08005916 return 0;
5917}
5918
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005919/**
Miquel Raynal98732da2018-07-25 15:31:50 +02005920 * nand_scan_ident - Scan for the NAND device
Boris Brezillon00ad3782018-09-06 14:05:14 +02005921 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -07005922 * @maxchips: number of chips to scan for
5923 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005924 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07005925 * This is the first phase of the normal nand_scan() function. It reads the
5926 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005927 *
Miquel Raynal98732da2018-07-25 15:31:50 +02005928 * This helper used to be called directly from controller drivers that needed
5929 * to tweak some ECC-related parameters before nand_scan_tail(). This separation
5930 * prevented dynamic allocations during this phase which was unconvenient and
5931 * as been banned for the benefit of the ->init_ecc()/cleanup_ecc() hooks.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005932 */
Boris Brezillon00ad3782018-09-06 14:05:14 +02005933static int nand_scan_ident(struct nand_chip *chip, int maxchips,
Miquel Raynal98732da2018-07-25 15:31:50 +02005934 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005935{
Boris Brezillon00ad3782018-09-06 14:05:14 +02005936 struct mtd_info *mtd = nand_to_mtd(chip);
Cai Zhiyongbb770822013-12-25 20:11:15 +08005937 int i, nand_maf_id, nand_dev_id;
Brian Norris5844fee2015-01-23 00:22:27 -08005938 int ret;
5939
Miquel Raynal17fa8042017-11-30 18:01:31 +01005940 /* Enforce the right timings for reset/detection */
5941 onfi_fill_data_interface(chip, NAND_SDR_IFACE, 0);
5942
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01005943 ret = nand_dt_init(chip);
5944 if (ret)
5945 return ret;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005946
Brian Norrisf7a8e382016-01-05 10:39:45 -08005947 if (!mtd->name && mtd->dev.parent)
5948 mtd->name = dev_name(mtd->dev.parent);
5949
Miquel Raynal8878b122017-11-09 14:16:45 +01005950 /*
5951 * ->cmdfunc() is legacy and will only be used if ->exec_op() is not
5952 * populated.
5953 */
5954 if (!chip->exec_op) {
Andrey Smirnov76fe3342016-07-21 14:59:20 -07005955 /*
Miquel Raynal8878b122017-11-09 14:16:45 +01005956 * Default functions assigned for ->cmdfunc() and
5957 * ->select_chip() both expect ->cmd_ctrl() to be populated.
Andrey Smirnov76fe3342016-07-21 14:59:20 -07005958 */
Miquel Raynal8878b122017-11-09 14:16:45 +01005959 if ((!chip->cmdfunc || !chip->select_chip) && !chip->cmd_ctrl) {
5960 pr_err("->cmd_ctrl() should be provided\n");
5961 return -EINVAL;
5962 }
Andrey Smirnov76fe3342016-07-21 14:59:20 -07005963 }
Miquel Raynal8878b122017-11-09 14:16:45 +01005964
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005965 /* Set the default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02005966 nand_set_defaults(chip);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005967
5968 /* Read the flash type */
Boris Brezillon7bb42792016-05-24 20:55:33 +02005969 ret = nand_detect(chip, table);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09005970 if (ret) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00005971 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07005972 pr_warn("No NAND device found\n");
Boris Brezillon758b56f2018-09-06 14:05:24 +02005973 chip->select_chip(chip, -1);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09005974 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975 }
5976
Boris Brezillon7f501f02016-05-24 19:20:05 +02005977 nand_maf_id = chip->id.data[0];
5978 nand_dev_id = chip->id.data[1];
5979
Boris Brezillon758b56f2018-09-06 14:05:24 +02005980 chip->select_chip(chip, -1);
Huang Shijie07300162012-11-09 16:23:45 +08005981
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005982 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01005983 for (i = 1; i < maxchips; i++) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01005984 u8 id[2];
5985
Karl Beldanef89a882008-09-15 14:37:29 +02005986 /* See comment in nand_get_flash_type for reset */
Boris Brezillon73f907f2016-10-24 16:46:20 +02005987 nand_reset(chip, i);
5988
Boris Brezillon758b56f2018-09-06 14:05:24 +02005989 chip->select_chip(chip, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990 /* Send the command for reading device ID */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005991 nand_readid_op(chip, 0, id, sizeof(id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992 /* Read manufacturer and device IDs */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005993 if (nand_maf_id != id[0] || nand_dev_id != id[1]) {
Boris Brezillon758b56f2018-09-06 14:05:24 +02005994 chip->select_chip(chip, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995 break;
Huang Shijie07300162012-11-09 16:23:45 +08005996 }
Boris Brezillon758b56f2018-09-06 14:05:24 +02005997 chip->select_chip(chip, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998 }
5999 if (i > 1)
Ezequiel Garcia20171642013-11-25 08:30:31 -03006000 pr_info("%d chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006001
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02006003 chip->numchips = i;
6004 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005
David Woodhouse3b85c322006-09-25 17:06:53 +01006006 return 0;
6007}
6008
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02006009static void nand_scan_ident_cleanup(struct nand_chip *chip)
6010{
6011 kfree(chip->parameters.model);
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02006012 kfree(chip->parameters.onfi);
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02006013}
6014
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006015static int nand_set_ecc_soft_ops(struct mtd_info *mtd)
6016{
6017 struct nand_chip *chip = mtd_to_nand(mtd);
6018 struct nand_ecc_ctrl *ecc = &chip->ecc;
6019
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02006020 if (WARN_ON(ecc->mode != NAND_ECC_SOFT))
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006021 return -EINVAL;
6022
6023 switch (ecc->algo) {
6024 case NAND_ECC_HAMMING:
6025 ecc->calculate = nand_calculate_ecc;
6026 ecc->correct = nand_correct_data;
6027 ecc->read_page = nand_read_page_swecc;
6028 ecc->read_subpage = nand_read_subpage;
6029 ecc->write_page = nand_write_page_swecc;
6030 ecc->read_page_raw = nand_read_page_raw;
6031 ecc->write_page_raw = nand_write_page_raw;
6032 ecc->read_oob = nand_read_oob_std;
6033 ecc->write_oob = nand_write_oob_std;
6034 if (!ecc->size)
6035 ecc->size = 256;
6036 ecc->bytes = 3;
6037 ecc->strength = 1;
6038 return 0;
6039 case NAND_ECC_BCH:
6040 if (!mtd_nand_has_bch()) {
6041 WARN(1, "CONFIG_MTD_NAND_ECC_BCH not enabled\n");
6042 return -EINVAL;
6043 }
6044 ecc->calculate = nand_bch_calculate_ecc;
6045 ecc->correct = nand_bch_correct_data;
6046 ecc->read_page = nand_read_page_swecc;
6047 ecc->read_subpage = nand_read_subpage;
6048 ecc->write_page = nand_write_page_swecc;
6049 ecc->read_page_raw = nand_read_page_raw;
6050 ecc->write_page_raw = nand_write_page_raw;
6051 ecc->read_oob = nand_read_oob_std;
6052 ecc->write_oob = nand_write_oob_std;
Boris Brezillon8bbba482016-06-08 17:04:23 +02006053
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006054 /*
6055 * Board driver should supply ecc.size and ecc.strength
6056 * values to select how many bits are correctable.
6057 * Otherwise, default to 4 bits for large page devices.
6058 */
6059 if (!ecc->size && (mtd->oobsize >= 64)) {
6060 ecc->size = 512;
6061 ecc->strength = 4;
6062 }
6063
6064 /*
6065 * if no ecc placement scheme was provided pickup the default
6066 * large page one.
6067 */
6068 if (!mtd->ooblayout) {
6069 /* handle large page devices only */
6070 if (mtd->oobsize < 64) {
6071 WARN(1, "OOB layout is required when using software BCH on small pages\n");
6072 return -EINVAL;
6073 }
6074
6075 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
Boris Brezillon8bbba482016-06-08 17:04:23 +02006076
6077 }
6078
6079 /*
6080 * We can only maximize ECC config when the default layout is
6081 * used, otherwise we don't know how many bytes can really be
6082 * used.
6083 */
6084 if (mtd->ooblayout == &nand_ooblayout_lp_ops &&
6085 ecc->options & NAND_ECC_MAXIMIZE) {
6086 int steps, bytes;
6087
6088 /* Always prefer 1k blocks over 512bytes ones */
6089 ecc->size = 1024;
6090 steps = mtd->writesize / ecc->size;
6091
6092 /* Reserve 2 bytes for the BBM */
6093 bytes = (mtd->oobsize - 2) / steps;
6094 ecc->strength = bytes * 8 / fls(8 * ecc->size);
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006095 }
6096
6097 /* See nand_bch_init() for details. */
6098 ecc->bytes = 0;
6099 ecc->priv = nand_bch_init(mtd);
6100 if (!ecc->priv) {
6101 WARN(1, "BCH ECC initialization failed!\n");
6102 return -EINVAL;
6103 }
6104 return 0;
6105 default:
6106 WARN(1, "Unsupported ECC algorithm!\n");
6107 return -EINVAL;
6108 }
6109}
6110
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006111/**
6112 * nand_check_ecc_caps - check the sanity of preset ECC settings
6113 * @chip: nand chip info structure
6114 * @caps: ECC caps info structure
6115 * @oobavail: OOB size that the ECC engine can use
6116 *
6117 * When ECC step size and strength are already set, check if they are supported
6118 * by the controller and the calculated ECC bytes fit within the chip's OOB.
6119 * On success, the calculated ECC bytes is set.
6120 */
Abhishek Sahu0cf5c7d2018-06-20 12:57:42 +05306121static int
6122nand_check_ecc_caps(struct nand_chip *chip,
6123 const struct nand_ecc_caps *caps, int oobavail)
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006124{
6125 struct mtd_info *mtd = nand_to_mtd(chip);
6126 const struct nand_ecc_step_info *stepinfo;
6127 int preset_step = chip->ecc.size;
6128 int preset_strength = chip->ecc.strength;
Abhishek Sahu0cf5c7d2018-06-20 12:57:42 +05306129 int ecc_bytes, nsteps = mtd->writesize / preset_step;
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006130 int i, j;
6131
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006132 for (i = 0; i < caps->nstepinfos; i++) {
6133 stepinfo = &caps->stepinfos[i];
6134
6135 if (stepinfo->stepsize != preset_step)
6136 continue;
6137
6138 for (j = 0; j < stepinfo->nstrengths; j++) {
6139 if (stepinfo->strengths[j] != preset_strength)
6140 continue;
6141
6142 ecc_bytes = caps->calc_ecc_bytes(preset_step,
6143 preset_strength);
6144 if (WARN_ON_ONCE(ecc_bytes < 0))
6145 return ecc_bytes;
6146
6147 if (ecc_bytes * nsteps > oobavail) {
6148 pr_err("ECC (step, strength) = (%d, %d) does not fit in OOB",
6149 preset_step, preset_strength);
6150 return -ENOSPC;
6151 }
6152
6153 chip->ecc.bytes = ecc_bytes;
6154
6155 return 0;
6156 }
6157 }
6158
6159 pr_err("ECC (step, strength) = (%d, %d) not supported on this controller",
6160 preset_step, preset_strength);
6161
6162 return -ENOTSUPP;
6163}
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006164
6165/**
6166 * nand_match_ecc_req - meet the chip's requirement with least ECC bytes
6167 * @chip: nand chip info structure
6168 * @caps: ECC engine caps info structure
6169 * @oobavail: OOB size that the ECC engine can use
6170 *
6171 * If a chip's ECC requirement is provided, try to meet it with the least
6172 * number of ECC bytes (i.e. with the largest number of OOB-free bytes).
6173 * On success, the chosen ECC settings are set.
6174 */
Abhishek Sahu0cf5c7d2018-06-20 12:57:42 +05306175static int
6176nand_match_ecc_req(struct nand_chip *chip,
6177 const struct nand_ecc_caps *caps, int oobavail)
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006178{
6179 struct mtd_info *mtd = nand_to_mtd(chip);
6180 const struct nand_ecc_step_info *stepinfo;
6181 int req_step = chip->ecc_step_ds;
6182 int req_strength = chip->ecc_strength_ds;
6183 int req_corr, step_size, strength, nsteps, ecc_bytes, ecc_bytes_total;
6184 int best_step, best_strength, best_ecc_bytes;
6185 int best_ecc_bytes_total = INT_MAX;
6186 int i, j;
6187
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006188 /* No information provided by the NAND chip */
6189 if (!req_step || !req_strength)
6190 return -ENOTSUPP;
6191
6192 /* number of correctable bits the chip requires in a page */
6193 req_corr = mtd->writesize / req_step * req_strength;
6194
6195 for (i = 0; i < caps->nstepinfos; i++) {
6196 stepinfo = &caps->stepinfos[i];
6197 step_size = stepinfo->stepsize;
6198
6199 for (j = 0; j < stepinfo->nstrengths; j++) {
6200 strength = stepinfo->strengths[j];
6201
6202 /*
6203 * If both step size and strength are smaller than the
6204 * chip's requirement, it is not easy to compare the
6205 * resulted reliability.
6206 */
6207 if (step_size < req_step && strength < req_strength)
6208 continue;
6209
6210 if (mtd->writesize % step_size)
6211 continue;
6212
6213 nsteps = mtd->writesize / step_size;
6214
6215 ecc_bytes = caps->calc_ecc_bytes(step_size, strength);
6216 if (WARN_ON_ONCE(ecc_bytes < 0))
6217 continue;
6218 ecc_bytes_total = ecc_bytes * nsteps;
6219
6220 if (ecc_bytes_total > oobavail ||
6221 strength * nsteps < req_corr)
6222 continue;
6223
6224 /*
6225 * We assume the best is to meet the chip's requrement
6226 * with the least number of ECC bytes.
6227 */
6228 if (ecc_bytes_total < best_ecc_bytes_total) {
6229 best_ecc_bytes_total = ecc_bytes_total;
6230 best_step = step_size;
6231 best_strength = strength;
6232 best_ecc_bytes = ecc_bytes;
6233 }
6234 }
6235 }
6236
6237 if (best_ecc_bytes_total == INT_MAX)
6238 return -ENOTSUPP;
6239
6240 chip->ecc.size = best_step;
6241 chip->ecc.strength = best_strength;
6242 chip->ecc.bytes = best_ecc_bytes;
6243
6244 return 0;
6245}
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006246
6247/**
6248 * nand_maximize_ecc - choose the max ECC strength available
6249 * @chip: nand chip info structure
6250 * @caps: ECC engine caps info structure
6251 * @oobavail: OOB size that the ECC engine can use
6252 *
6253 * Choose the max ECC strength that is supported on the controller, and can fit
6254 * within the chip's OOB. On success, the chosen ECC settings are set.
6255 */
Abhishek Sahu0cf5c7d2018-06-20 12:57:42 +05306256static int
6257nand_maximize_ecc(struct nand_chip *chip,
6258 const struct nand_ecc_caps *caps, int oobavail)
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006259{
6260 struct mtd_info *mtd = nand_to_mtd(chip);
6261 const struct nand_ecc_step_info *stepinfo;
6262 int step_size, strength, nsteps, ecc_bytes, corr;
6263 int best_corr = 0;
6264 int best_step = 0;
6265 int best_strength, best_ecc_bytes;
6266 int i, j;
6267
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006268 for (i = 0; i < caps->nstepinfos; i++) {
6269 stepinfo = &caps->stepinfos[i];
6270 step_size = stepinfo->stepsize;
6271
6272 /* If chip->ecc.size is already set, respect it */
6273 if (chip->ecc.size && step_size != chip->ecc.size)
6274 continue;
6275
6276 for (j = 0; j < stepinfo->nstrengths; j++) {
6277 strength = stepinfo->strengths[j];
6278
6279 if (mtd->writesize % step_size)
6280 continue;
6281
6282 nsteps = mtd->writesize / step_size;
6283
6284 ecc_bytes = caps->calc_ecc_bytes(step_size, strength);
6285 if (WARN_ON_ONCE(ecc_bytes < 0))
6286 continue;
6287
6288 if (ecc_bytes * nsteps > oobavail)
6289 continue;
6290
6291 corr = strength * nsteps;
6292
6293 /*
6294 * If the number of correctable bits is the same,
6295 * bigger step_size has more reliability.
6296 */
6297 if (corr > best_corr ||
6298 (corr == best_corr && step_size > best_step)) {
6299 best_corr = corr;
6300 best_step = step_size;
6301 best_strength = strength;
6302 best_ecc_bytes = ecc_bytes;
6303 }
6304 }
6305 }
6306
6307 if (!best_corr)
6308 return -ENOTSUPP;
6309
6310 chip->ecc.size = best_step;
6311 chip->ecc.strength = best_strength;
6312 chip->ecc.bytes = best_ecc_bytes;
6313
6314 return 0;
6315}
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006316
Abhishek Sahu181ace92018-06-20 12:57:28 +05306317/**
6318 * nand_ecc_choose_conf - Set the ECC strength and ECC step size
6319 * @chip: nand chip info structure
6320 * @caps: ECC engine caps info structure
6321 * @oobavail: OOB size that the ECC engine can use
6322 *
6323 * Choose the ECC configuration according to following logic
6324 *
6325 * 1. If both ECC step size and ECC strength are already set (usually by DT)
6326 * then check if it is supported by this controller.
6327 * 2. If NAND_ECC_MAXIMIZE is set, then select maximum ECC strength.
6328 * 3. Otherwise, try to match the ECC step size and ECC strength closest
6329 * to the chip's requirement. If available OOB size can't fit the chip
6330 * requirement then fallback to the maximum ECC step size and ECC strength.
6331 *
6332 * On success, the chosen ECC settings are set.
6333 */
6334int nand_ecc_choose_conf(struct nand_chip *chip,
6335 const struct nand_ecc_caps *caps, int oobavail)
6336{
Abhishek Sahu0cf5c7d2018-06-20 12:57:42 +05306337 struct mtd_info *mtd = nand_to_mtd(chip);
6338
6339 if (WARN_ON(oobavail < 0 || oobavail > mtd->oobsize))
6340 return -EINVAL;
6341
Abhishek Sahu181ace92018-06-20 12:57:28 +05306342 if (chip->ecc.size && chip->ecc.strength)
6343 return nand_check_ecc_caps(chip, caps, oobavail);
6344
6345 if (chip->ecc.options & NAND_ECC_MAXIMIZE)
6346 return nand_maximize_ecc(chip, caps, oobavail);
6347
6348 if (!nand_match_ecc_req(chip, caps, oobavail))
6349 return 0;
6350
6351 return nand_maximize_ecc(chip, caps, oobavail);
6352}
6353EXPORT_SYMBOL_GPL(nand_ecc_choose_conf);
6354
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03006355/*
6356 * Check if the chip configuration meet the datasheet requirements.
6357
6358 * If our configuration corrects A bits per B bytes and the minimum
6359 * required correction level is X bits per Y bytes, then we must ensure
6360 * both of the following are true:
6361 *
6362 * (1) A / B >= X / Y
6363 * (2) A >= X
6364 *
6365 * Requirement (1) ensures we can correct for the required bitflip density.
6366 * Requirement (2) ensures we can correct even when all bitflips are clumped
6367 * in the same sector.
6368 */
6369static bool nand_ecc_strength_good(struct mtd_info *mtd)
6370{
Boris BREZILLON862eba52015-12-01 12:03:03 +01006371 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03006372 struct nand_ecc_ctrl *ecc = &chip->ecc;
6373 int corr, ds_corr;
6374
6375 if (ecc->size == 0 || chip->ecc_step_ds == 0)
6376 /* Not enough information */
6377 return true;
6378
6379 /*
6380 * We get the number of corrected bits per page to compare
6381 * the correction density.
6382 */
6383 corr = (mtd->writesize * ecc->strength) / ecc->size;
6384 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
6385
6386 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
6387}
David Woodhouse3b85c322006-09-25 17:06:53 +01006388
6389/**
Miquel Raynal98732da2018-07-25 15:31:50 +02006390 * nand_scan_tail - Scan for the NAND device
Boris Brezillon00ad3782018-09-06 14:05:14 +02006391 * @chip: NAND chip object
David Woodhouse3b85c322006-09-25 17:06:53 +01006392 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07006393 * This is the second phase of the normal nand_scan() function. It fills out
6394 * all the uninitialized function pointers with the defaults and scans for a
6395 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01006396 */
Boris Brezillon00ad3782018-09-06 14:05:14 +02006397static int nand_scan_tail(struct nand_chip *chip)
David Woodhouse3b85c322006-09-25 17:06:53 +01006398{
Boris Brezillon00ad3782018-09-06 14:05:14 +02006399 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie97de79e02013-10-18 14:20:53 +08006400 struct nand_ecc_ctrl *ecc = &chip->ecc;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006401 int ret, i;
David Woodhouse3b85c322006-09-25 17:06:53 +01006402
Brian Norrise2414f42012-02-06 13:44:00 -08006403 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006404 if (WARN_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
Brian Norris78771042017-05-01 17:04:53 -07006405 !(chip->bbt_options & NAND_BBT_USE_FLASH))) {
Boris Brezillonf84674b2017-06-02 12:18:24 +02006406 return -EINVAL;
Brian Norris78771042017-05-01 17:04:53 -07006407 }
Brian Norrise2414f42012-02-06 13:44:00 -08006408
Masahiro Yamadac0313b92017-12-05 17:47:16 +09006409 chip->data_buf = kmalloc(mtd->writesize + mtd->oobsize, GFP_KERNEL);
Boris Brezillonaeb93af2017-12-05 12:09:29 +01006410 if (!chip->data_buf)
Boris Brezillonf84674b2017-06-02 12:18:24 +02006411 return -ENOMEM;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01006412
Boris Brezillonf84674b2017-06-02 12:18:24 +02006413 /*
6414 * FIXME: some NAND manufacturer drivers expect the first die to be
6415 * selected when manufacturer->init() is called. They should be fixed
6416 * to explictly select the relevant die when interacting with the NAND
6417 * chip.
6418 */
Boris Brezillon758b56f2018-09-06 14:05:24 +02006419 chip->select_chip(chip, 0);
Boris Brezillonf84674b2017-06-02 12:18:24 +02006420 ret = nand_manufacturer_init(chip);
Boris Brezillon758b56f2018-09-06 14:05:24 +02006421 chip->select_chip(chip, -1);
Boris Brezillonf84674b2017-06-02 12:18:24 +02006422 if (ret)
Masahiro Yamadac0313b92017-12-05 17:47:16 +09006423 goto err_free_buf;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006424
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01006425 /* Set the internal oob buffer location, just after the page data */
Masahiro Yamadac0313b92017-12-05 17:47:16 +09006426 chip->oob_poi = chip->data_buf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006427
6428 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07006429 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006430 */
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006431 if (!mtd->ooblayout &&
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02006432 !(ecc->mode == NAND_ECC_SOFT && ecc->algo == NAND_ECC_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006433 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434 case 8:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435 case 16:
Boris Brezillon41b207a2016-02-03 19:06:15 +01006436 mtd_set_ooblayout(mtd, &nand_ooblayout_sp_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437 break;
6438 case 64:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01006439 case 128:
Alexander Couzens6a623e02017-05-02 12:19:00 +02006440 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_hamming_ops);
Thomas Gleixner81ec5362007-12-12 17:27:03 +01006441 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442 default:
Miquel Raynal882fd152017-08-26 17:19:15 +02006443 /*
6444 * Expose the whole OOB area to users if ECC_NONE
6445 * is passed. We could do that for all kind of
6446 * ->oobsize, but we must keep the old large/small
6447 * page with ECC layout when ->oobsize <= 128 for
6448 * compatibility reasons.
6449 */
6450 if (ecc->mode == NAND_ECC_NONE) {
6451 mtd_set_ooblayout(mtd,
6452 &nand_ooblayout_lp_ops);
6453 break;
6454 }
6455
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006456 WARN(1, "No oob scheme defined for oobsize %d\n",
6457 mtd->oobsize);
6458 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006459 goto err_nand_manuf_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460 }
6461 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006462
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006463 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07006464 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006465 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01006466 */
David Woodhouse956e9442006-09-25 17:12:39 +01006467
Huang Shijie97de79e02013-10-18 14:20:53 +08006468 switch (ecc->mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07006469 case NAND_ECC_HW_OOB_FIRST:
6470 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Huang Shijie97de79e02013-10-18 14:20:53 +08006471 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006472 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
6473 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006474 goto err_nand_manuf_cleanup;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07006475 }
Huang Shijie97de79e02013-10-18 14:20:53 +08006476 if (!ecc->read_page)
6477 ecc->read_page = nand_read_page_hwecc_oob_first;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07006478
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02006479 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07006480 /* Use standard hwecc read page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08006481 if (!ecc->read_page)
6482 ecc->read_page = nand_read_page_hwecc;
6483 if (!ecc->write_page)
6484 ecc->write_page = nand_write_page_hwecc;
6485 if (!ecc->read_page_raw)
6486 ecc->read_page_raw = nand_read_page_raw;
6487 if (!ecc->write_page_raw)
6488 ecc->write_page_raw = nand_write_page_raw;
6489 if (!ecc->read_oob)
6490 ecc->read_oob = nand_read_oob_std;
6491 if (!ecc->write_oob)
6492 ecc->write_oob = nand_write_oob_std;
6493 if (!ecc->read_subpage)
6494 ecc->read_subpage = nand_read_subpage;
Helmut Schaa44991b32014-04-09 11:13:24 +02006495 if (!ecc->write_subpage && ecc->hwctl && ecc->calculate)
Huang Shijie97de79e02013-10-18 14:20:53 +08006496 ecc->write_subpage = nand_write_subpage_hwecc;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02006497
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02006498 case NAND_ECC_HW_SYNDROME:
Huang Shijie97de79e02013-10-18 14:20:53 +08006499 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
6500 (!ecc->read_page ||
6501 ecc->read_page == nand_read_page_hwecc ||
6502 !ecc->write_page ||
6503 ecc->write_page == nand_write_page_hwecc)) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006504 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
6505 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006506 goto err_nand_manuf_cleanup;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02006507 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07006508 /* Use standard syndrome read/write page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08006509 if (!ecc->read_page)
6510 ecc->read_page = nand_read_page_syndrome;
6511 if (!ecc->write_page)
6512 ecc->write_page = nand_write_page_syndrome;
6513 if (!ecc->read_page_raw)
6514 ecc->read_page_raw = nand_read_page_raw_syndrome;
6515 if (!ecc->write_page_raw)
6516 ecc->write_page_raw = nand_write_page_raw_syndrome;
6517 if (!ecc->read_oob)
6518 ecc->read_oob = nand_read_oob_syndrome;
6519 if (!ecc->write_oob)
6520 ecc->write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02006521
Huang Shijie97de79e02013-10-18 14:20:53 +08006522 if (mtd->writesize >= ecc->size) {
6523 if (!ecc->strength) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006524 WARN(1, "Driver must set ecc.strength when using hardware ECC\n");
6525 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006526 goto err_nand_manuf_cleanup;
Mike Dunne2788c92012-04-25 12:06:10 -07006527 }
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02006528 break;
Mike Dunne2788c92012-04-25 12:06:10 -07006529 }
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02006530 pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n",
6531 ecc->size, mtd->writesize);
Huang Shijie97de79e02013-10-18 14:20:53 +08006532 ecc->mode = NAND_ECC_SOFT;
Rafał Miłeckie9d4fae2016-04-17 22:53:02 +02006533 ecc->algo = NAND_ECC_HAMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02006535 case NAND_ECC_SOFT:
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006536 ret = nand_set_ecc_soft_ops(mtd);
6537 if (ret) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006538 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006539 goto err_nand_manuf_cleanup;
Ivan Djelic193bd402011-03-11 11:05:33 +01006540 }
6541 break;
6542
Thomas Petazzoni785818f2017-04-29 11:06:43 +02006543 case NAND_ECC_ON_DIE:
6544 if (!ecc->read_page || !ecc->write_page) {
6545 WARN(1, "No ECC functions supplied; on-die ECC not possible\n");
6546 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006547 goto err_nand_manuf_cleanup;
Thomas Petazzoni785818f2017-04-29 11:06:43 +02006548 }
6549 if (!ecc->read_oob)
6550 ecc->read_oob = nand_read_oob_std;
6551 if (!ecc->write_oob)
6552 ecc->write_oob = nand_write_oob_std;
6553 break;
6554
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006555 case NAND_ECC_NONE:
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02006556 pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n");
Huang Shijie97de79e02013-10-18 14:20:53 +08006557 ecc->read_page = nand_read_page_raw;
6558 ecc->write_page = nand_write_page_raw;
6559 ecc->read_oob = nand_read_oob_std;
6560 ecc->read_page_raw = nand_read_page_raw;
6561 ecc->write_page_raw = nand_write_page_raw;
6562 ecc->write_oob = nand_write_oob_std;
6563 ecc->size = mtd->writesize;
6564 ecc->bytes = 0;
6565 ecc->strength = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566 break;
David Woodhouse956e9442006-09-25 17:12:39 +01006567
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568 default:
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006569 WARN(1, "Invalid NAND_ECC_MODE %d\n", ecc->mode);
6570 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006571 goto err_nand_manuf_cleanup;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006573
Boris Brezillonaeb93af2017-12-05 12:09:29 +01006574 if (ecc->correct || ecc->calculate) {
6575 ecc->calc_buf = kmalloc(mtd->oobsize, GFP_KERNEL);
6576 ecc->code_buf = kmalloc(mtd->oobsize, GFP_KERNEL);
6577 if (!ecc->calc_buf || !ecc->code_buf) {
6578 ret = -ENOMEM;
6579 goto err_nand_manuf_cleanup;
6580 }
6581 }
6582
Brian Norris9ce244b2011-08-30 18:45:37 -07006583 /* For many systems, the standard OOB write also works for raw */
Huang Shijie97de79e02013-10-18 14:20:53 +08006584 if (!ecc->read_oob_raw)
6585 ecc->read_oob_raw = ecc->read_oob;
6586 if (!ecc->write_oob_raw)
6587 ecc->write_oob_raw = ecc->write_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07006588
Boris Brezillon846031d2016-02-03 20:11:00 +01006589 /* propagate ecc info to mtd_info */
Boris Brezillon846031d2016-02-03 20:11:00 +01006590 mtd->ecc_strength = ecc->strength;
6591 mtd->ecc_step_size = ecc->size;
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03006592
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02006593 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006594 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07006595 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006596 */
Huang Shijie97de79e02013-10-18 14:20:53 +08006597 ecc->steps = mtd->writesize / ecc->size;
6598 if (ecc->steps * ecc->size != mtd->writesize) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006599 WARN(1, "Invalid ECC parameters\n");
6600 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006601 goto err_nand_manuf_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006602 }
Huang Shijie97de79e02013-10-18 14:20:53 +08006603 ecc->total = ecc->steps * ecc->bytes;
Masahiro Yamada79e03482017-05-25 13:50:20 +09006604 if (ecc->total > mtd->oobsize) {
6605 WARN(1, "Total number of ECC bytes exceeded oobsize\n");
6606 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006607 goto err_nand_manuf_cleanup;
Masahiro Yamada79e03482017-05-25 13:50:20 +09006608 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006609
Boris Brezillon846031d2016-02-03 20:11:00 +01006610 /*
6611 * The number of bytes available for a client to place data into
6612 * the out of band area.
6613 */
6614 ret = mtd_ooblayout_count_freebytes(mtd);
6615 if (ret < 0)
6616 ret = 0;
6617
6618 mtd->oobavail = ret;
6619
6620 /* ECC sanity check: warn if it's too weak */
6621 if (!nand_ecc_strength_good(mtd))
6622 pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n",
6623 mtd->name);
6624
Brian Norris8b6e50c2011-05-25 14:59:01 -07006625 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Huang Shijie1d0ed692013-09-25 14:58:10 +08006626 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
Huang Shijie97de79e02013-10-18 14:20:53 +08006627 switch (ecc->steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02006628 case 2:
6629 mtd->subpage_sft = 1;
6630 break;
6631 case 4:
6632 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01006633 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02006634 mtd->subpage_sft = 2;
6635 break;
6636 }
6637 }
6638 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
6639
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02006640 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02006641 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02006644 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05006646 /* Large page NAND with SOFT_ECC should support subpage reads */
Ron Lee4007e2d2014-04-25 15:01:35 +09306647 switch (ecc->mode) {
6648 case NAND_ECC_SOFT:
Ron Lee4007e2d2014-04-25 15:01:35 +09306649 if (chip->page_shift > 9)
6650 chip->options |= NAND_SUBPAGE_READ;
6651 break;
6652
6653 default:
6654 break;
6655 }
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05006656
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657 /* Fill in remaining MTD driver data */
Huang Shijie963d1c22013-09-25 14:58:21 +08006658 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02006659 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
6660 MTD_CAP_NANDFLASH;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02006661 mtd->_erase = nand_erase;
6662 mtd->_point = NULL;
6663 mtd->_unpoint = NULL;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02006664 mtd->_panic_write = panic_nand_write;
6665 mtd->_read_oob = nand_read_oob;
6666 mtd->_write_oob = nand_write_oob;
6667 mtd->_sync = nand_sync;
6668 mtd->_lock = NULL;
6669 mtd->_unlock = NULL;
6670 mtd->_suspend = nand_suspend;
6671 mtd->_resume = nand_resume;
Scott Branden72ea4032014-11-20 11:18:05 -08006672 mtd->_reboot = nand_shutdown;
Ezequiel Garcia8471bb72014-05-21 19:06:12 -03006673 mtd->_block_isreserved = nand_block_isreserved;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02006674 mtd->_block_isbad = nand_block_isbad;
6675 mtd->_block_markbad = nand_block_markbad;
Zach Brown56718422017-01-10 13:30:20 -06006676 mtd->_max_bad_blocks = nand_max_bad_blocks;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01006677 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006678
Shmulik Ladkaniea3b2ea2012-06-08 18:29:06 +03006679 /*
6680 * Initialize bitflip_threshold to its default prior scan_bbt() call.
6681 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
6682 * properly set.
6683 */
6684 if (!mtd->bitflip_threshold)
Brian Norris240181f2015-01-12 12:51:29 -08006685 mtd->bitflip_threshold = DIV_ROUND_UP(mtd->ecc_strength * 3, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686
Boris Brezillonf84674b2017-06-02 12:18:24 +02006687 /* Initialize the ->data_interface field. */
6688 ret = nand_init_data_interface(chip);
6689 if (ret)
6690 goto err_nand_manuf_cleanup;
6691
6692 /* Enter fastest possible mode on all dies. */
6693 for (i = 0; i < chip->numchips; i++) {
Boris Brezillonf84674b2017-06-02 12:18:24 +02006694 ret = nand_setup_data_interface(chip, i);
Boris Brezillonf84674b2017-06-02 12:18:24 +02006695 if (ret)
Miquel Raynal17fa8042017-11-30 18:01:31 +01006696 goto err_nand_manuf_cleanup;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006697 }
6698
Thomas Gleixner0040bf32005-02-09 12:20:00 +00006699 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02006700 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00006701 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006702
6703 /* Build bad block table */
Boris Brezillone80eba72018-07-05 12:27:31 +02006704 ret = nand_create_bbt(chip);
Brian Norris44d41822017-05-01 17:04:50 -07006705 if (ret)
Miquel Raynal17fa8042017-11-30 18:01:31 +01006706 goto err_nand_manuf_cleanup;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006707
Brian Norris44d41822017-05-01 17:04:50 -07006708 return 0;
6709
Boris Brezillonf84674b2017-06-02 12:18:24 +02006710
6711err_nand_manuf_cleanup:
6712 nand_manufacturer_cleanup(chip);
6713
Masahiro Yamadac0313b92017-12-05 17:47:16 +09006714err_free_buf:
6715 kfree(chip->data_buf);
6716 kfree(ecc->code_buf);
6717 kfree(ecc->calc_buf);
Brian Norris78771042017-05-01 17:04:53 -07006718
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006719 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720}
6721
Miquel Raynal05b54c72018-07-19 01:05:46 +02006722static int nand_attach(struct nand_chip *chip)
6723{
6724 if (chip->controller->ops && chip->controller->ops->attach_chip)
6725 return chip->controller->ops->attach_chip(chip);
6726
6727 return 0;
6728}
6729
6730static void nand_detach(struct nand_chip *chip)
6731{
6732 if (chip->controller->ops && chip->controller->ops->detach_chip)
6733 chip->controller->ops->detach_chip(chip);
6734}
6735
David Woodhouse3b85c322006-09-25 17:06:53 +01006736/**
Miquel Raynal256c4fc2018-04-22 18:02:30 +02006737 * nand_scan_with_ids - [NAND Interface] Scan for the NAND device
Boris Brezillon00ad3782018-09-06 14:05:14 +02006738 * @chip: NAND chip object
Miquel Raynal49aa76b2018-07-25 15:31:42 +02006739 * @maxchips: number of chips to scan for. @nand_scan_ident() will not be run if
6740 * this parameter is zero (useful for specific drivers that must
6741 * handle this part of the process themselves, e.g docg4).
Miquel Raynal256c4fc2018-04-22 18:02:30 +02006742 * @ids: optional flash IDs table
David Woodhouse3b85c322006-09-25 17:06:53 +01006743 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07006744 * This fills out all the uninitialized function pointers with the defaults.
6745 * The flash ID is read and the mtd/chip structures are filled with the
Ezequiel García20c07a52016-04-01 18:29:23 -03006746 * appropriate values.
David Woodhouse3b85c322006-09-25 17:06:53 +01006747 */
Boris Brezillon00ad3782018-09-06 14:05:14 +02006748int nand_scan_with_ids(struct nand_chip *chip, int maxchips,
Miquel Raynal256c4fc2018-04-22 18:02:30 +02006749 struct nand_flash_dev *ids)
David Woodhouse3b85c322006-09-25 17:06:53 +01006750{
6751 int ret;
6752
Miquel Raynal49aa76b2018-07-25 15:31:42 +02006753 if (maxchips) {
Boris Brezillon00ad3782018-09-06 14:05:14 +02006754 ret = nand_scan_ident(chip, maxchips, ids);
Miquel Raynal49aa76b2018-07-25 15:31:42 +02006755 if (ret)
6756 return ret;
6757 }
Miquel Raynal05b54c72018-07-19 01:05:46 +02006758
6759 ret = nand_attach(chip);
6760 if (ret)
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02006761 goto cleanup_ident;
Miquel Raynal05b54c72018-07-19 01:05:46 +02006762
Boris Brezillon00ad3782018-09-06 14:05:14 +02006763 ret = nand_scan_tail(chip);
Miquel Raynal05b54c72018-07-19 01:05:46 +02006764 if (ret)
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02006765 goto detach_chip;
6766
6767 return 0;
6768
6769detach_chip:
6770 nand_detach(chip);
6771cleanup_ident:
6772 nand_scan_ident_cleanup(chip);
Miquel Raynal05b54c72018-07-19 01:05:46 +02006773
David Woodhouse3b85c322006-09-25 17:06:53 +01006774 return ret;
6775}
Miquel Raynal256c4fc2018-04-22 18:02:30 +02006776EXPORT_SYMBOL(nand_scan_with_ids);
David Woodhouse3b85c322006-09-25 17:06:53 +01006777
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778/**
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006779 * nand_cleanup - [NAND Interface] Free resources held by the NAND device
6780 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -07006781 */
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006782void nand_cleanup(struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006783{
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02006784 if (chip->ecc.mode == NAND_ECC_SOFT &&
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006785 chip->ecc.algo == NAND_ECC_BCH)
Ivan Djelic193bd402011-03-11 11:05:33 +01006786 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
6787
Jesper Juhlfa671642005-11-07 01:01:27 -08006788 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02006789 kfree(chip->bbt);
Masahiro Yamadac0313b92017-12-05 17:47:16 +09006790 kfree(chip->data_buf);
6791 kfree(chip->ecc.code_buf);
6792 kfree(chip->ecc.calc_buf);
Brian Norris58373ff2010-07-15 12:15:44 -07006793
6794 /* Free bad block descriptor memory */
6795 if (chip->badblock_pattern && chip->badblock_pattern->options
6796 & NAND_BBT_DYNAMICSTRUCT)
6797 kfree(chip->badblock_pattern);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02006798
6799 /* Free manufacturer priv data. */
6800 nand_manufacturer_cleanup(chip);
Miquel Raynal05b54c72018-07-19 01:05:46 +02006801
6802 /* Free controller specific allocations after chip identification */
6803 nand_detach(chip);
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02006804
6805 /* Free identification phase allocations */
6806 nand_scan_ident_cleanup(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807}
Miquel Raynal05b54c72018-07-19 01:05:46 +02006808
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006809EXPORT_SYMBOL_GPL(nand_cleanup);
6810
6811/**
6812 * nand_release - [NAND Interface] Unregister the MTD device and free resources
6813 * held by the NAND device
Boris Brezillon59ac2762018-09-06 14:05:15 +02006814 * @chip: NAND chip object
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006815 */
Boris Brezillon59ac2762018-09-06 14:05:15 +02006816void nand_release(struct nand_chip *chip)
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006817{
Boris Brezillon59ac2762018-09-06 14:05:15 +02006818 mtd_device_unregister(nand_to_mtd(chip));
6819 nand_cleanup(chip);
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006820}
David Woodhousee0c7d762006-05-13 18:07:53 +01006821EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08006822
David Woodhousee0c7d762006-05-13 18:07:53 +01006823MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02006824MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
6825MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01006826MODULE_DESCRIPTION("Generic NAND flash driver code");