blob: 26be436eb8f110653ff7051cd440475148216840 [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
Boris Brezillona2098a92018-09-06 14:05:30 +02004626 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -07004627 * @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 */
Boris Brezillona2098a92018-09-06 14:05:30 +02004631static int single_erase(struct nand_chip *chip, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632{
Boris Brezillon97d90da2017-11-30 18:01:29 +01004633 unsigned int eraseblock;
Brian Norris49c50b92014-05-06 16:02:19 -07004634
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 /* Send commands to erase a block */
Boris Brezillon97d90da2017-11-30 18:01:29 +01004636 eraseblock = page >> (chip->phys_erase_shift - chip->page_shift);
Brian Norris49c50b92014-05-06 16:02:19 -07004637
Boris Brezillon97d90da2017-11-30 18:01:29 +01004638 return nand_erase_op(chip, eraseblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639}
4640
4641/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07004643 * @mtd: MTD device structure
4644 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004646 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 */
David Woodhousee0c7d762006-05-13 18:07:53 +01004648static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649{
David Woodhousee0c7d762006-05-13 18:07:53 +01004650 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004652
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653/**
Brian Norris7854d3f2011-06-23 14:12:08 -07004654 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07004655 * @mtd: MTD device structure
4656 * @instr: erase instruction
4657 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004659 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004661int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
4662 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663{
Adrian Hunter69423d92008-12-10 13:37:21 +00004664 int page, status, pages_per_block, ret, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01004665 struct nand_chip *chip = mtd_to_nand(mtd);
Adrian Hunter69423d92008-12-10 13:37:21 +00004666 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
Brian Norris289c0522011-07-19 10:06:09 -07004668 pr_debug("%s: start = 0x%012llx, len = %llu\n",
4669 __func__, (unsigned long long)instr->addr,
4670 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05304672 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08004676 nand_get_device(mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677
4678 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004679 page = (int)(instr->addr >> chip->page_shift);
4680 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681
4682 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004683 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684
4685 /* Select the NAND device */
Boris Brezillon758b56f2018-09-06 14:05:24 +02004686 chip->select_chip(chip, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 /* Check, if it is write protected */
4689 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07004690 pr_debug("%s: device is write protected!\n",
4691 __func__);
Boris Brezillone7bfb3f2018-02-12 22:03:11 +01004692 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 goto erase_exit;
4694 }
4695
4696 /* Loop through the pages */
4697 len = instr->len;
4698
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 while (len) {
Wolfram Sang12183a22011-12-21 23:01:20 +01004700 /* Check if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004701 if (nand_block_checkbad(mtd, ((loff_t) page) <<
Archit Taneja9f3e0422016-02-03 14:29:49 +05304702 chip->page_shift, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07004703 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
4704 __func__, page);
Boris Brezillone7bfb3f2018-02-12 22:03:11 +01004705 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 goto erase_exit;
4707 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004708
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004709 /*
4710 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07004711 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004712 */
4713 if (page <= chip->pagebuf && chip->pagebuf <
4714 (page + pages_per_block))
4715 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716
Boris Brezillona2098a92018-09-06 14:05:30 +02004717 status = chip->erase(chip, page & chip->pagemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718
4719 /* See if block erase succeeded */
Miquel Raynaleb945552017-11-30 18:01:28 +01004720 if (status) {
Brian Norris289c0522011-07-19 10:06:09 -07004721 pr_debug("%s: failed erase, page 0x%08x\n",
4722 __func__, page);
Boris Brezillone7bfb3f2018-02-12 22:03:11 +01004723 ret = -EIO;
Adrian Hunter69423d92008-12-10 13:37:21 +00004724 instr->fail_addr =
4725 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 goto erase_exit;
4727 }
David A. Marlin30f464b2005-01-17 18:35:25 +00004728
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 /* Increment page address and decrement length */
Dan Carpenterdaae74c2013-08-09 12:49:05 +03004730 len -= (1ULL << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 page += pages_per_block;
4732
4733 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004734 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 chipnr++;
Boris Brezillon758b56f2018-09-06 14:05:24 +02004736 chip->select_chip(chip, -1);
4737 chip->select_chip(chip, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 }
4739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740
Boris Brezillone7bfb3f2018-02-12 22:03:11 +01004741 ret = 0;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004742erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744 /* Deselect and wake up anyone waiting on the device */
Boris Brezillon758b56f2018-09-06 14:05:24 +02004745 chip->select_chip(chip, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 nand_release_device(mtd);
4747
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748 /* Return more or less happy */
4749 return ret;
4750}
4751
4752/**
4753 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07004754 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004756 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 */
David Woodhousee0c7d762006-05-13 18:07:53 +01004758static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759{
Brian Norris289c0522011-07-19 10:06:09 -07004760 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761
4762 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08004763 nand_get_device(mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01004765 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766}
4767
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004769 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07004770 * @mtd: MTD device structure
4771 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004773static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774{
Archit Taneja9f3e0422016-02-03 14:29:49 +05304775 struct nand_chip *chip = mtd_to_nand(mtd);
4776 int chipnr = (int)(offs >> chip->chip_shift);
4777 int ret;
4778
4779 /* Select the NAND device */
4780 nand_get_device(mtd, FL_READING);
Boris Brezillon758b56f2018-09-06 14:05:24 +02004781 chip->select_chip(chip, chipnr);
Archit Taneja9f3e0422016-02-03 14:29:49 +05304782
4783 ret = nand_block_checkbad(mtd, offs, 0);
4784
Boris Brezillon758b56f2018-09-06 14:05:24 +02004785 chip->select_chip(chip, -1);
Archit Taneja9f3e0422016-02-03 14:29:49 +05304786 nand_release_device(mtd);
4787
4788 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789}
4790
4791/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004792 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07004793 * @mtd: MTD device structure
4794 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 */
David Woodhousee0c7d762006-05-13 18:07:53 +01004796static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 int ret;
4799
Florian Fainellif8ac0412010-09-07 13:23:43 +02004800 ret = nand_block_isbad(mtd, ofs);
4801 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07004802 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 if (ret > 0)
4804 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01004805 return ret;
4806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807
Brian Norris5a0edb22013-07-30 17:52:58 -07004808 return nand_block_markbad_lowlevel(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809}
4810
4811/**
Zach Brown56718422017-01-10 13:30:20 -06004812 * nand_max_bad_blocks - [MTD Interface] Max number of bad blocks for an mtd
4813 * @mtd: MTD device structure
4814 * @ofs: offset relative to mtd start
4815 * @len: length of mtd
4816 */
4817static int nand_max_bad_blocks(struct mtd_info *mtd, loff_t ofs, size_t len)
4818{
4819 struct nand_chip *chip = mtd_to_nand(mtd);
4820 u32 part_start_block;
4821 u32 part_end_block;
4822 u32 part_start_die;
4823 u32 part_end_die;
4824
4825 /*
4826 * max_bb_per_die and blocks_per_die used to determine
4827 * the maximum bad block count.
4828 */
4829 if (!chip->max_bb_per_die || !chip->blocks_per_die)
4830 return -ENOTSUPP;
4831
4832 /* Get the start and end of the partition in erase blocks. */
4833 part_start_block = mtd_div_by_eb(ofs, mtd);
4834 part_end_block = mtd_div_by_eb(len, mtd) + part_start_block - 1;
4835
4836 /* Get the start and end LUNs of the partition. */
4837 part_start_die = part_start_block / chip->blocks_per_die;
4838 part_end_die = part_end_block / chip->blocks_per_die;
4839
4840 /*
4841 * Look up the bad blocks per unit and multiply by the number of units
4842 * that the partition spans.
4843 */
4844 return chip->max_bb_per_die * (part_end_die - part_start_die + 1);
4845}
4846
4847/**
Miquel Raynalb9587582018-03-19 14:47:19 +01004848 * nand_default_set_features- [REPLACEABLE] set NAND chip features
Huang Shijie7db03ec2012-09-13 14:57:52 +08004849 * @mtd: MTD device structure
4850 * @chip: nand chip info structure
4851 * @addr: feature address.
4852 * @subfeature_param: the subfeature parameters, a four bytes array.
4853 */
Miquel Raynalb9587582018-03-19 14:47:19 +01004854static int nand_default_set_features(struct mtd_info *mtd,
4855 struct nand_chip *chip, int addr,
4856 uint8_t *subfeature_param)
Huang Shijie7db03ec2012-09-13 14:57:52 +08004857{
Boris Brezillon97d90da2017-11-30 18:01:29 +01004858 return nand_set_features_op(chip, addr, subfeature_param);
Huang Shijie7db03ec2012-09-13 14:57:52 +08004859}
4860
4861/**
Miquel Raynalb9587582018-03-19 14:47:19 +01004862 * nand_default_get_features- [REPLACEABLE] get NAND chip features
Huang Shijie7db03ec2012-09-13 14:57:52 +08004863 * @mtd: MTD device structure
4864 * @chip: nand chip info structure
4865 * @addr: feature address.
4866 * @subfeature_param: the subfeature parameters, a four bytes array.
4867 */
Miquel Raynalb9587582018-03-19 14:47:19 +01004868static int nand_default_get_features(struct mtd_info *mtd,
4869 struct nand_chip *chip, int addr,
4870 uint8_t *subfeature_param)
Huang Shijie7db03ec2012-09-13 14:57:52 +08004871{
Boris Brezillon97d90da2017-11-30 18:01:29 +01004872 return nand_get_features_op(chip, addr, subfeature_param);
Huang Shijie7db03ec2012-09-13 14:57:52 +08004873}
4874
4875/**
Miquel Raynalb9587582018-03-19 14:47:19 +01004876 * nand_get_set_features_notsupp - set/get features stub returning -ENOTSUPP
Boris Brezillon4a78cc62017-05-26 17:10:15 +02004877 * @mtd: MTD device structure
4878 * @chip: nand chip info structure
4879 * @addr: feature address.
4880 * @subfeature_param: the subfeature parameters, a four bytes array.
4881 *
4882 * Should be used by NAND controller drivers that do not support the SET/GET
4883 * FEATURES operations.
4884 */
Miquel Raynalb9587582018-03-19 14:47:19 +01004885int nand_get_set_features_notsupp(struct mtd_info *mtd, struct nand_chip *chip,
4886 int addr, u8 *subfeature_param)
Boris Brezillon4a78cc62017-05-26 17:10:15 +02004887{
4888 return -ENOTSUPP;
4889}
Miquel Raynalb9587582018-03-19 14:47:19 +01004890EXPORT_SYMBOL(nand_get_set_features_notsupp);
Boris Brezillon4a78cc62017-05-26 17:10:15 +02004891
4892/**
Vitaly Wool962034f2005-09-15 14:58:53 +01004893 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07004894 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01004895 */
4896static int nand_suspend(struct mtd_info *mtd)
4897{
Huang Shijie6a8214a2012-11-19 14:43:30 +08004898 return nand_get_device(mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01004899}
4900
4901/**
4902 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07004903 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01004904 */
4905static void nand_resume(struct mtd_info *mtd)
4906{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004907 struct nand_chip *chip = mtd_to_nand(mtd);
Vitaly Wool962034f2005-09-15 14:58:53 +01004908
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004909 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01004910 nand_release_device(mtd);
4911 else
Brian Norrisd0370212011-07-19 10:06:08 -07004912 pr_err("%s called for a chip which is not in suspended state\n",
4913 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01004914}
4915
Scott Branden72ea4032014-11-20 11:18:05 -08004916/**
4917 * nand_shutdown - [MTD Interface] Finish the current NAND operation and
4918 * prevent further operations
4919 * @mtd: MTD device structure
4920 */
4921static void nand_shutdown(struct mtd_info *mtd)
4922{
Brian Norris9ca641b2015-11-09 16:37:28 -08004923 nand_get_device(mtd, FL_PM_SUSPENDED);
Scott Branden72ea4032014-11-20 11:18:05 -08004924}
4925
Brian Norris8b6e50c2011-05-25 14:59:01 -07004926/* Set default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02004927static void nand_set_defaults(struct nand_chip *chip)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004928{
Boris Brezillon29a198a2016-05-24 20:17:48 +02004929 unsigned int busw = chip->options & NAND_BUSWIDTH_16;
4930
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004932 if (!chip->chip_delay)
4933 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934
4935 /* check, if a user supplied command function given */
Miquel Raynal8878b122017-11-09 14:16:45 +01004936 if (!chip->cmdfunc && !chip->exec_op)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004937 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938
4939 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004940 if (chip->waitfunc == NULL)
4941 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004943 if (!chip->select_chip)
4944 chip->select_chip = nand_select_chip;
Brian Norris68e80782013-07-18 01:17:02 -07004945
Huang Shijie4204ccc2013-08-16 10:10:07 +08004946 /* set for ONFI nand */
Miquel Raynalb9587582018-03-19 14:47:19 +01004947 if (!chip->set_features)
4948 chip->set_features = nand_default_set_features;
4949 if (!chip->get_features)
4950 chip->get_features = nand_default_get_features;
Huang Shijie4204ccc2013-08-16 10:10:07 +08004951
Brian Norris68e80782013-07-18 01:17:02 -07004952 /* If called twice, pointers that depend on busw may need to be reset */
4953 if (!chip->read_byte || chip->read_byte == nand_read_byte)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004954 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004955 if (!chip->block_bad)
4956 chip->block_bad = nand_block_bad;
4957 if (!chip->block_markbad)
4958 chip->block_markbad = nand_default_block_markbad;
Brian Norris68e80782013-07-18 01:17:02 -07004959 if (!chip->write_buf || chip->write_buf == nand_write_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004960 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01004961 if (!chip->write_byte || chip->write_byte == nand_write_byte)
4962 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
Brian Norris68e80782013-07-18 01:17:02 -07004963 if (!chip->read_buf || chip->read_buf == nand_read_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004964 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004965
4966 if (!chip->controller) {
Miquel Raynal7da45132018-07-17 09:08:02 +02004967 chip->controller = &chip->dummy_controller;
4968 nand_controller_init(chip->controller);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02004969 }
4970
Masahiro Yamada477544c2017-03-30 17:15:05 +09004971 if (!chip->buf_align)
4972 chip->buf_align = 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004973}
4974
Brian Norris8b6e50c2011-05-25 14:59:01 -07004975/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004976static void sanitize_string(uint8_t *s, size_t len)
4977{
4978 ssize_t i;
4979
Brian Norris8b6e50c2011-05-25 14:59:01 -07004980 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004981 s[len - 1] = 0;
4982
Brian Norris8b6e50c2011-05-25 14:59:01 -07004983 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004984 for (i = 0; i < len - 1; i++) {
4985 if (s[i] < ' ' || s[i] > 127)
4986 s[i] = '?';
4987 }
4988
Brian Norris8b6e50c2011-05-25 14:59:01 -07004989 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02004990 strim(s);
4991}
4992
4993static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
4994{
4995 int i;
4996 while (len--) {
4997 crc ^= *p++ << 8;
4998 for (i = 0; i < 8; i++)
4999 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
5000 }
5001
5002 return crc;
5003}
5004
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005005/* Parse the Extended Parameter Page. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005006static int nand_flash_detect_ext_param_page(struct nand_chip *chip,
5007 struct nand_onfi_params *p)
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005008{
5009 struct onfi_ext_param_page *ep;
5010 struct onfi_ext_section *s;
5011 struct onfi_ext_ecc_info *ecc;
5012 uint8_t *cursor;
Boris Brezillon97d90da2017-11-30 18:01:29 +01005013 int ret;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005014 int len;
5015 int i;
5016
5017 len = le16_to_cpu(p->ext_param_page_length) * 16;
5018 ep = kmalloc(len, GFP_KERNEL);
Brian Norris5cb13272013-09-16 17:59:20 -07005019 if (!ep)
5020 return -ENOMEM;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005021
5022 /* Send our own NAND_CMD_PARAM. */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005023 ret = nand_read_param_page_op(chip, 0, NULL, 0);
5024 if (ret)
5025 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005026
5027 /* Use the Change Read Column command to skip the ONFI param pages. */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005028 ret = nand_change_read_column_op(chip,
5029 sizeof(*p) * p->num_of_param_pages,
5030 ep, len, true);
5031 if (ret)
5032 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005033
Boris Brezillon97d90da2017-11-30 18:01:29 +01005034 ret = -EINVAL;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005035 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
5036 != le16_to_cpu(ep->crc))) {
5037 pr_debug("fail in the CRC.\n");
5038 goto ext_out;
5039 }
5040
5041 /*
5042 * Check the signature.
5043 * Do not strictly follow the ONFI spec, maybe changed in future.
5044 */
5045 if (strncmp(ep->sig, "EPPS", 4)) {
5046 pr_debug("The signature is invalid.\n");
5047 goto ext_out;
5048 }
5049
5050 /* find the ECC section. */
5051 cursor = (uint8_t *)(ep + 1);
5052 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
5053 s = ep->sections + i;
5054 if (s->type == ONFI_SECTION_TYPE_2)
5055 break;
5056 cursor += s->length * 16;
5057 }
5058 if (i == ONFI_EXT_SECTION_MAX) {
5059 pr_debug("We can not find the ECC section.\n");
5060 goto ext_out;
5061 }
5062
5063 /* get the info we want. */
5064 ecc = (struct onfi_ext_ecc_info *)cursor;
5065
Brian Norris4ae7d222013-09-16 18:20:21 -07005066 if (!ecc->codeword_size) {
5067 pr_debug("Invalid codeword size\n");
5068 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005069 }
5070
Brian Norris4ae7d222013-09-16 18:20:21 -07005071 chip->ecc_strength_ds = ecc->ecc_bits;
5072 chip->ecc_step_ds = 1 << ecc->codeword_size;
Brian Norris5cb13272013-09-16 17:59:20 -07005073 ret = 0;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005074
5075ext_out:
5076 kfree(ep);
5077 return ret;
5078}
5079
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005080/*
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005081 * Recover data with bit-wise majority
5082 */
5083static void nand_bit_wise_majority(const void **srcbufs,
5084 unsigned int nsrcbufs,
5085 void *dstbuf,
5086 unsigned int bufsize)
5087{
5088 int i, j, k;
5089
5090 for (i = 0; i < bufsize; i++) {
5091 u8 val = 0;
5092
5093 for (j = 0; j < 8; j++) {
5094 unsigned int cnt = 0;
5095
5096 for (k = 0; k < nsrcbufs; k++) {
5097 const u8 *srcbuf = srcbufs[k];
5098
5099 if (srcbuf[i] & BIT(j))
5100 cnt++;
5101 }
5102
5103 if (cnt > nsrcbufs / 2)
5104 val |= BIT(j);
5105 }
5106
5107 ((u8 *)dstbuf)[i] = val;
5108 }
5109}
5110
5111/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07005112 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005113 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02005114static int nand_flash_detect_onfi(struct nand_chip *chip)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005115{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005116 struct mtd_info *mtd = nand_to_mtd(chip);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005117 struct nand_onfi_params *p;
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005118 struct onfi_params *onfi;
5119 int onfi_version = 0;
Boris Brezillon97d90da2017-11-30 18:01:29 +01005120 char id[4];
5121 int i, ret, val;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005122
Brian Norris7854d3f2011-06-23 14:12:08 -07005123 /* Try ONFI for unknown chip or LP */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005124 ret = nand_readid_op(chip, 0x20, id, sizeof(id));
5125 if (ret || strncmp(id, "ONFI", 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005126 return 0;
5127
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005128 /* ONFI chip: allocate a buffer to hold its parameter page */
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005129 p = kzalloc((sizeof(*p) * 3), GFP_KERNEL);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005130 if (!p)
5131 return -ENOMEM;
5132
Boris Brezillon97d90da2017-11-30 18:01:29 +01005133 ret = nand_read_param_page_op(chip, 0, NULL, 0);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005134 if (ret) {
5135 ret = 0;
5136 goto free_onfi_param_page;
5137 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01005138
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005139 for (i = 0; i < 3; i++) {
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005140 ret = nand_read_data_op(chip, &p[i], sizeof(*p), true);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005141 if (ret) {
5142 ret = 0;
5143 goto free_onfi_param_page;
5144 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01005145
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005146 if (onfi_crc16(ONFI_CRC_BASE, (u8 *)&p[i], 254) ==
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005147 le16_to_cpu(p->crc)) {
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005148 if (i)
5149 memcpy(p, &p[i], sizeof(*p));
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005150 break;
5151 }
5152 }
5153
Brian Norrisc7f23a72013-08-13 10:51:55 -07005154 if (i == 3) {
Wan, Jane (Nokia - US/Sunnyvale)39138c12018-05-13 04:30:02 +00005155 const void *srcbufs[3] = {p, p + 1, p + 2};
5156
5157 pr_warn("Could not find a valid ONFI parameter page, trying bit-wise majority to recover it\n");
5158 nand_bit_wise_majority(srcbufs, ARRAY_SIZE(srcbufs), p,
5159 sizeof(*p));
5160
5161 if (onfi_crc16(ONFI_CRC_BASE, (u8 *)p, 254) !=
5162 le16_to_cpu(p->crc)) {
5163 pr_err("ONFI parameter recovery failed, aborting\n");
5164 goto free_onfi_param_page;
5165 }
Brian Norrisc7f23a72013-08-13 10:51:55 -07005166 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005167
Chris Packham00ce4e02018-06-25 10:44:44 +12005168 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
5169 chip->manufacturer.desc->ops->fixup_onfi_param_page)
5170 chip->manufacturer.desc->ops->fixup_onfi_param_page(chip, p);
5171
Brian Norris8b6e50c2011-05-25 14:59:01 -07005172 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005173 val = le16_to_cpu(p->revision);
Chris Packham872b71f2018-06-25 10:44:45 +12005174 if (val & ONFI_VERSION_2_3)
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005175 onfi_version = 23;
Chris Packham872b71f2018-06-25 10:44:45 +12005176 else if (val & ONFI_VERSION_2_2)
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005177 onfi_version = 22;
Chris Packham872b71f2018-06-25 10:44:45 +12005178 else if (val & ONFI_VERSION_2_1)
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005179 onfi_version = 21;
Chris Packham872b71f2018-06-25 10:44:45 +12005180 else if (val & ONFI_VERSION_2_0)
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005181 onfi_version = 20;
Chris Packham872b71f2018-06-25 10:44:45 +12005182 else if (val & ONFI_VERSION_1_0)
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005183 onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08005184
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005185 if (!onfi_version) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03005186 pr_info("unsupported ONFI version: %d\n", val);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005187 goto free_onfi_param_page;
Brian Norrisb7b1a292010-12-12 00:23:33 -08005188 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005189
5190 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
5191 sanitize_string(p->model, sizeof(p->model));
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005192 chip->parameters.model = kstrdup(p->model, GFP_KERNEL);
5193 if (!chip->parameters.model) {
5194 ret = -ENOMEM;
5195 goto free_onfi_param_page;
5196 }
Brian Norris4355b702013-08-27 18:45:10 -07005197
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005198 mtd->writesize = le32_to_cpu(p->byte_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07005199
5200 /*
5201 * pages_per_block and blocks_per_lun may not be a power-of-2 size
5202 * (don't ask me who thought of this...). MTD assumes that these
5203 * dimensions will be power-of-2, so just truncate the remaining area.
5204 */
5205 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
5206 mtd->erasesize *= mtd->writesize;
5207
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005208 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07005209
5210 /* See erasesize comment */
5211 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
Matthieu CASTET63795752012-03-19 15:35:25 +01005212 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
Huang Shijie13fbd172013-09-25 14:58:13 +08005213 chip->bits_per_cell = p->bits_per_cell;
Huang Shijiee2985fc2013-05-17 11:17:30 +08005214
Zach Brown34da5f52017-01-10 13:30:21 -06005215 chip->max_bb_per_die = le16_to_cpu(p->bb_per_lun);
5216 chip->blocks_per_die = le32_to_cpu(p->blocks_per_lun);
5217
Miquel Raynala97421c2018-03-19 14:47:27 +01005218 if (le16_to_cpu(p->features) & ONFI_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02005219 chip->options |= NAND_BUSWIDTH_16;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005220
Huang Shijie10c86ba2013-05-17 11:17:26 +08005221 if (p->ecc_bits != 0xff) {
5222 chip->ecc_strength_ds = p->ecc_bits;
5223 chip->ecc_step_ds = 512;
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005224 } else if (onfi_version >= 21 &&
Miquel Raynala97421c2018-03-19 14:47:27 +01005225 (le16_to_cpu(p->features) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08005226
5227 /*
5228 * The nand_flash_detect_ext_param_page() uses the
5229 * Change Read Column command which maybe not supported
5230 * by the chip->cmdfunc. So try to update the chip->cmdfunc
5231 * now. We do not replace user supplied command function.
5232 */
5233 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
5234 chip->cmdfunc = nand_command_lp;
5235
5236 /* The Extended Parameter Page is supported since ONFI 2.1. */
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005237 if (nand_flash_detect_ext_param_page(chip, p))
Brian Norrisc7f23a72013-08-13 10:51:55 -07005238 pr_warn("Failed to detect ONFI extended param page\n");
5239 } else {
5240 pr_warn("Could not retrieve ONFI ECC requirements\n");
Huang Shijie10c86ba2013-05-17 11:17:26 +08005241 }
5242
Miquel Raynalf4531b22018-03-19 14:47:26 +01005243 /* Save some parameters from the parameter page for future use */
Miquel Raynal789157e2018-03-19 14:47:28 +01005244 if (le16_to_cpu(p->opt_cmd) & ONFI_OPT_CMD_SET_GET_FEATURES) {
Miquel Raynalf4531b22018-03-19 14:47:26 +01005245 chip->parameters.supports_set_get_features = true;
Miquel Raynal789157e2018-03-19 14:47:28 +01005246 bitmap_set(chip->parameters.get_feature_list,
5247 ONFI_FEATURE_ADDR_TIMING_MODE, 1);
5248 bitmap_set(chip->parameters.set_feature_list,
5249 ONFI_FEATURE_ADDR_TIMING_MODE, 1);
5250 }
Miquel Raynalf4531b22018-03-19 14:47:26 +01005251
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005252 onfi = kzalloc(sizeof(*onfi), GFP_KERNEL);
5253 if (!onfi) {
5254 ret = -ENOMEM;
5255 goto free_model;
5256 }
5257
5258 onfi->version = onfi_version;
5259 onfi->tPROG = le16_to_cpu(p->t_prog);
5260 onfi->tBERS = le16_to_cpu(p->t_bers);
5261 onfi->tR = le16_to_cpu(p->t_r);
5262 onfi->tCCS = le16_to_cpu(p->t_ccs);
5263 onfi->async_timing_mode = le16_to_cpu(p->async_timing_mode);
5264 onfi->vendor_revision = le16_to_cpu(p->vendor_revision);
5265 memcpy(onfi->vendor, p->vendor, sizeof(p->vendor));
5266 chip->parameters.onfi = onfi;
5267
5268 /* Identification done, free the full ONFI parameter page and exit */
5269 kfree(p);
5270
5271 return 1;
5272
5273free_model:
5274 kfree(chip->parameters.model);
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005275free_onfi_param_page:
5276 kfree(p);
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02005277
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005278 return ret;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005279}
5280
5281/*
Huang Shijie91361812014-02-21 13:39:40 +08005282 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
5283 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02005284static int nand_flash_detect_jedec(struct nand_chip *chip)
Huang Shijie91361812014-02-21 13:39:40 +08005285{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005286 struct mtd_info *mtd = nand_to_mtd(chip);
Miquel Raynal480139d2018-03-19 14:47:30 +01005287 struct nand_jedec_params *p;
Huang Shijie91361812014-02-21 13:39:40 +08005288 struct jedec_ecc_info *ecc;
Miquel Raynal480139d2018-03-19 14:47:30 +01005289 int jedec_version = 0;
Boris Brezillon97d90da2017-11-30 18:01:29 +01005290 char id[5];
5291 int i, val, ret;
Huang Shijie91361812014-02-21 13:39:40 +08005292
5293 /* Try JEDEC for unknown chip or LP */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005294 ret = nand_readid_op(chip, 0x40, id, sizeof(id));
5295 if (ret || strncmp(id, "JEDEC", sizeof(id)))
Huang Shijie91361812014-02-21 13:39:40 +08005296 return 0;
5297
Miquel Raynal480139d2018-03-19 14:47:30 +01005298 /* JEDEC chip: allocate a buffer to hold its parameter page */
5299 p = kzalloc(sizeof(*p), GFP_KERNEL);
5300 if (!p)
5301 return -ENOMEM;
5302
Boris Brezillon97d90da2017-11-30 18:01:29 +01005303 ret = nand_read_param_page_op(chip, 0x40, NULL, 0);
Miquel Raynal480139d2018-03-19 14:47:30 +01005304 if (ret) {
5305 ret = 0;
5306 goto free_jedec_param_page;
5307 }
Boris Brezillon97d90da2017-11-30 18:01:29 +01005308
Huang Shijie91361812014-02-21 13:39:40 +08005309 for (i = 0; i < 3; i++) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01005310 ret = nand_read_data_op(chip, p, sizeof(*p), true);
Miquel Raynal480139d2018-03-19 14:47:30 +01005311 if (ret) {
5312 ret = 0;
5313 goto free_jedec_param_page;
5314 }
Huang Shijie91361812014-02-21 13:39:40 +08005315
5316 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
5317 le16_to_cpu(p->crc))
5318 break;
5319 }
5320
5321 if (i == 3) {
5322 pr_err("Could not find valid JEDEC parameter page; aborting\n");
Miquel Raynal480139d2018-03-19 14:47:30 +01005323 goto free_jedec_param_page;
Huang Shijie91361812014-02-21 13:39:40 +08005324 }
5325
5326 /* Check version */
5327 val = le16_to_cpu(p->revision);
5328 if (val & (1 << 2))
Miquel Raynal480139d2018-03-19 14:47:30 +01005329 jedec_version = 10;
Huang Shijie91361812014-02-21 13:39:40 +08005330 else if (val & (1 << 1))
Miquel Raynal480139d2018-03-19 14:47:30 +01005331 jedec_version = 1; /* vendor specific version */
Huang Shijie91361812014-02-21 13:39:40 +08005332
Miquel Raynal480139d2018-03-19 14:47:30 +01005333 if (!jedec_version) {
Huang Shijie91361812014-02-21 13:39:40 +08005334 pr_info("unsupported JEDEC version: %d\n", val);
Miquel Raynal480139d2018-03-19 14:47:30 +01005335 goto free_jedec_param_page;
Huang Shijie91361812014-02-21 13:39:40 +08005336 }
5337
5338 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
5339 sanitize_string(p->model, sizeof(p->model));
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005340 chip->parameters.model = kstrdup(p->model, GFP_KERNEL);
5341 if (!chip->parameters.model) {
5342 ret = -ENOMEM;
5343 goto free_jedec_param_page;
5344 }
Huang Shijie91361812014-02-21 13:39:40 +08005345
5346 mtd->writesize = le32_to_cpu(p->byte_per_page);
5347
5348 /* Please reference to the comment for nand_flash_detect_onfi. */
5349 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
5350 mtd->erasesize *= mtd->writesize;
5351
5352 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
5353
5354 /* Please reference to the comment for nand_flash_detect_onfi. */
5355 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
5356 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
5357 chip->bits_per_cell = p->bits_per_cell;
5358
Miquel Raynal480139d2018-03-19 14:47:30 +01005359 if (le16_to_cpu(p->features) & JEDEC_FEATURE_16_BIT_BUS)
Boris Brezillon29a198a2016-05-24 20:17:48 +02005360 chip->options |= NAND_BUSWIDTH_16;
Huang Shijie91361812014-02-21 13:39:40 +08005361
5362 /* ECC info */
5363 ecc = &p->ecc_info[0];
5364
5365 if (ecc->codeword_size >= 9) {
5366 chip->ecc_strength_ds = ecc->ecc_bits;
5367 chip->ecc_step_ds = 1 << ecc->codeword_size;
5368 } else {
5369 pr_warn("Invalid codeword size\n");
5370 }
5371
Miquel Raynal480139d2018-03-19 14:47:30 +01005372free_jedec_param_page:
5373 kfree(p);
5374 return ret;
Huang Shijie91361812014-02-21 13:39:40 +08005375}
5376
5377/*
Brian Norrise3b88bd2012-09-24 20:40:52 -07005378 * nand_id_has_period - Check if an ID string has a given wraparound period
5379 * @id_data: the ID string
5380 * @arrlen: the length of the @id_data array
5381 * @period: the period of repitition
5382 *
5383 * Check if an ID string is repeated within a given sequence of bytes at
5384 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Brian Norrisd4d4f1b2012-11-14 21:54:20 -08005385 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Brian Norrise3b88bd2012-09-24 20:40:52 -07005386 * if the repetition has a period of @period; otherwise, returns zero.
5387 */
5388static int nand_id_has_period(u8 *id_data, int arrlen, int period)
5389{
5390 int i, j;
5391 for (i = 0; i < period; i++)
5392 for (j = i + period; j < arrlen; j += period)
5393 if (id_data[i] != id_data[j])
5394 return 0;
5395 return 1;
5396}
5397
5398/*
5399 * nand_id_len - Get the length of an ID string returned by CMD_READID
5400 * @id_data: the ID string
5401 * @arrlen: the length of the @id_data array
5402
5403 * Returns the length of the ID string, according to known wraparound/trailing
5404 * zero patterns. If no pattern exists, returns the length of the array.
5405 */
5406static int nand_id_len(u8 *id_data, int arrlen)
5407{
5408 int last_nonzero, period;
5409
5410 /* Find last non-zero byte */
5411 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
5412 if (id_data[last_nonzero])
5413 break;
5414
5415 /* All zeros */
5416 if (last_nonzero < 0)
5417 return 0;
5418
5419 /* Calculate wraparound period */
5420 for (period = 1; period < arrlen; period++)
5421 if (nand_id_has_period(id_data, arrlen, period))
5422 break;
5423
5424 /* There's a repeated pattern */
5425 if (period < arrlen)
5426 return period;
5427
5428 /* There are trailing zeros */
5429 if (last_nonzero < arrlen - 1)
5430 return last_nonzero + 1;
5431
5432 /* No pattern detected */
5433 return arrlen;
5434}
5435
Huang Shijie7db906b2013-09-25 14:58:11 +08005436/* Extract the bits of per cell from the 3rd byte of the extended ID */
5437static int nand_get_bits_per_cell(u8 cellinfo)
5438{
5439 int bits;
5440
5441 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
5442 bits >>= NAND_CI_CELLTYPE_SHIFT;
5443 return bits + 1;
5444}
5445
Brian Norrise3b88bd2012-09-24 20:40:52 -07005446/*
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005447 * Many new NAND share similar device ID codes, which represent the size of the
5448 * chip. The rest of the parameters must be decoded according to generic or
5449 * manufacturer-specific "extended ID" decoding patterns.
5450 */
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005451void nand_decode_ext_id(struct nand_chip *chip)
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005452{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005453 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon9b2d61f2016-06-08 10:34:57 +02005454 int extid;
Boris Brezillon7f501f02016-05-24 19:20:05 +02005455 u8 *id_data = chip->id.data;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005456 /* The 3rd id byte holds MLC / multichip data */
Huang Shijie7db906b2013-09-25 14:58:11 +08005457 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005458 /* The 4th id byte is the important one */
5459 extid = id_data[3];
5460
Boris Brezillon01389b62016-06-08 10:30:18 +02005461 /* Calc pagesize */
5462 mtd->writesize = 1024 << (extid & 0x03);
5463 extid >>= 2;
5464 /* Calc oobsize */
5465 mtd->oobsize = (8 << (extid & 0x01)) * (mtd->writesize >> 9);
5466 extid >>= 2;
5467 /* Calc blocksize. Blocksize is multiples of 64KiB */
5468 mtd->erasesize = (64 * 1024) << (extid & 0x03);
5469 extid >>= 2;
5470 /* Get buswidth information */
5471 if (extid & 0x1)
5472 chip->options |= NAND_BUSWIDTH_16;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005473}
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005474EXPORT_SYMBOL_GPL(nand_decode_ext_id);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07005475
5476/*
Brian Norrisf23a4812012-09-24 20:40:51 -07005477 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
5478 * decodes a matching ID table entry and assigns the MTD size parameters for
5479 * the chip.
5480 */
Boris Brezillon29a198a2016-05-24 20:17:48 +02005481static void nand_decode_id(struct nand_chip *chip, struct nand_flash_dev *type)
Brian Norrisf23a4812012-09-24 20:40:51 -07005482{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005483 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norrisf23a4812012-09-24 20:40:51 -07005484
5485 mtd->erasesize = type->erasesize;
5486 mtd->writesize = type->pagesize;
5487 mtd->oobsize = mtd->writesize / 32;
Brian Norrisf23a4812012-09-24 20:40:51 -07005488
Huang Shijie1c195e92013-09-25 14:58:12 +08005489 /* All legacy ID NAND are small-page, SLC */
5490 chip->bits_per_cell = 1;
Brian Norrisf23a4812012-09-24 20:40:51 -07005491}
5492
5493/*
Brian Norris7e74c2d2012-09-24 20:40:49 -07005494 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
5495 * heuristic patterns using various detected parameters (e.g., manufacturer,
5496 * page size, cell-type information).
5497 */
Boris Brezillon7f501f02016-05-24 19:20:05 +02005498static void nand_decode_bbm_options(struct nand_chip *chip)
Brian Norris7e74c2d2012-09-24 20:40:49 -07005499{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005500 struct mtd_info *mtd = nand_to_mtd(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07005501
5502 /* Set the bad block position */
5503 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
5504 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
5505 else
5506 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Brian Norris7e74c2d2012-09-24 20:40:49 -07005507}
5508
Huang Shijieec6e87e2013-03-15 11:01:00 +08005509static inline bool is_full_id_nand(struct nand_flash_dev *type)
5510{
5511 return type->id_len;
5512}
5513
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005514static bool find_full_id_nand(struct nand_chip *chip,
Boris Brezillon29a198a2016-05-24 20:17:48 +02005515 struct nand_flash_dev *type)
Huang Shijieec6e87e2013-03-15 11:01:00 +08005516{
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005517 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon7f501f02016-05-24 19:20:05 +02005518 u8 *id_data = chip->id.data;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005519
Huang Shijieec6e87e2013-03-15 11:01:00 +08005520 if (!strncmp(type->id, id_data, type->id_len)) {
5521 mtd->writesize = type->pagesize;
5522 mtd->erasesize = type->erasesize;
5523 mtd->oobsize = type->oobsize;
5524
Huang Shijie7db906b2013-09-25 14:58:11 +08005525 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Huang Shijieec6e87e2013-03-15 11:01:00 +08005526 chip->chipsize = (uint64_t)type->chipsize << 20;
5527 chip->options |= type->options;
Huang Shijie57219342013-05-17 11:17:32 +08005528 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
5529 chip->ecc_step_ds = NAND_ECC_STEP(type);
Boris BREZILLON57a94e22014-09-22 20:11:50 +02005530 chip->onfi_timing_mode_default =
5531 type->onfi_timing_mode_default;
Huang Shijieec6e87e2013-03-15 11:01:00 +08005532
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005533 chip->parameters.model = kstrdup(type->name, GFP_KERNEL);
5534 if (!chip->parameters.model)
5535 return false;
Cai Zhiyong092b6a12013-12-25 21:19:21 +08005536
Huang Shijieec6e87e2013-03-15 11:01:00 +08005537 return true;
5538 }
5539 return false;
5540}
5541
Brian Norris7e74c2d2012-09-24 20:40:49 -07005542/*
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005543 * Manufacturer detection. Only used when the NAND is not ONFI or JEDEC
5544 * compliant and does not have a full-id or legacy-id entry in the nand_ids
5545 * table.
5546 */
5547static void nand_manufacturer_detect(struct nand_chip *chip)
5548{
5549 /*
5550 * Try manufacturer detection if available and use
5551 * nand_decode_ext_id() otherwise.
5552 */
5553 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
Lothar Waßmann69fc0122017-08-29 12:17:12 +02005554 chip->manufacturer.desc->ops->detect) {
5555 /* The 3rd id byte holds MLC / multichip data */
5556 chip->bits_per_cell = nand_get_bits_per_cell(chip->id.data[2]);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005557 chip->manufacturer.desc->ops->detect(chip);
Lothar Waßmann69fc0122017-08-29 12:17:12 +02005558 } else {
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005559 nand_decode_ext_id(chip);
Lothar Waßmann69fc0122017-08-29 12:17:12 +02005560 }
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005561}
5562
5563/*
5564 * Manufacturer initialization. This function is called for all NANDs including
5565 * ONFI and JEDEC compliant ones.
5566 * Manufacturer drivers should put all their specific initialization code in
5567 * their ->init() hook.
5568 */
5569static int nand_manufacturer_init(struct nand_chip *chip)
5570{
5571 if (!chip->manufacturer.desc || !chip->manufacturer.desc->ops ||
5572 !chip->manufacturer.desc->ops->init)
5573 return 0;
5574
5575 return chip->manufacturer.desc->ops->init(chip);
5576}
5577
5578/*
5579 * Manufacturer cleanup. This function is called for all NANDs including
5580 * ONFI and JEDEC compliant ones.
5581 * Manufacturer drivers should put all their specific cleanup code in their
5582 * ->cleanup() hook.
5583 */
5584static void nand_manufacturer_cleanup(struct nand_chip *chip)
5585{
5586 /* Release manufacturer private data */
5587 if (chip->manufacturer.desc && chip->manufacturer.desc->ops &&
5588 chip->manufacturer.desc->ops->cleanup)
5589 chip->manufacturer.desc->ops->cleanup(chip);
5590}
5591
5592/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07005593 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005594 */
Boris Brezillon7bb42792016-05-24 20:55:33 +02005595static int nand_detect(struct nand_chip *chip, struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005596{
Boris Brezillonbcc678c2017-01-07 15:48:25 +01005597 const struct nand_manufacturer *manufacturer;
Boris Brezilloncbe435a2016-05-24 16:56:22 +02005598 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon97d90da2017-11-30 18:01:29 +01005599 int busw, ret;
Boris Brezillon7f501f02016-05-24 19:20:05 +02005600 u8 *id_data = chip->id.data;
5601 u8 maf_id, dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602
Karl Beldanef89a882008-09-15 14:37:29 +02005603 /*
5604 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07005605 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02005606 */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005607 ret = nand_reset(chip, 0);
5608 if (ret)
5609 return ret;
Boris Brezillon73f907f2016-10-24 16:46:20 +02005610
5611 /* Select the device */
Boris Brezillon758b56f2018-09-06 14:05:24 +02005612 chip->select_chip(chip, 0);
Karl Beldanef89a882008-09-15 14:37:29 +02005613
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614 /* Send the command for reading device ID */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005615 ret = nand_readid_op(chip, 0, id_data, 2);
5616 if (ret)
5617 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618
5619 /* Read manufacturer and device IDs */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005620 maf_id = id_data[0];
5621 dev_id = id_data[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622
Brian Norris8b6e50c2011-05-25 14:59:01 -07005623 /*
5624 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01005625 * interface concerns can cause random data which looks like a
5626 * possibly credible NAND flash to appear. If the two results do
5627 * not match, ignore the device completely.
5628 */
5629
Brian Norris4aef9b72012-09-24 20:40:48 -07005630 /* Read entire ID string */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005631 ret = nand_readid_op(chip, 0, id_data, sizeof(chip->id.data));
5632 if (ret)
5633 return ret;
Ben Dooksed8165c2008-04-14 14:58:58 +01005634
Boris Brezillon7f501f02016-05-24 19:20:05 +02005635 if (id_data[0] != maf_id || id_data[1] != dev_id) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03005636 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02005637 maf_id, dev_id, id_data[0], id_data[1]);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09005638 return -ENODEV;
Ben Dooksed8165c2008-04-14 14:58:58 +01005639 }
5640
Jean-Louis Thekekara5158bd52017-06-29 19:08:30 +02005641 chip->id.len = nand_id_len(id_data, ARRAY_SIZE(chip->id.data));
Boris Brezillon7f501f02016-05-24 19:20:05 +02005642
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005643 /* Try to identify manufacturer */
5644 manufacturer = nand_get_manufacturer(maf_id);
5645 chip->manufacturer.desc = manufacturer;
5646
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005647 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00005648 type = nand_flash_ids;
5649
Boris Brezillon29a198a2016-05-24 20:17:48 +02005650 /*
5651 * Save the NAND_BUSWIDTH_16 flag before letting auto-detection logic
5652 * override it.
5653 * This is required to make sure initial NAND bus width set by the
5654 * NAND controller driver is coherent with the real NAND bus width
5655 * (extracted by auto-detection code).
5656 */
5657 busw = chip->options & NAND_BUSWIDTH_16;
5658
5659 /*
5660 * The flag is only set (never cleared), reset it to its default value
5661 * before starting auto-detection.
5662 */
5663 chip->options &= ~NAND_BUSWIDTH_16;
5664
Huang Shijieec6e87e2013-03-15 11:01:00 +08005665 for (; type->name != NULL; type++) {
5666 if (is_full_id_nand(type)) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02005667 if (find_full_id_nand(chip, type))
Huang Shijieec6e87e2013-03-15 11:01:00 +08005668 goto ident_done;
Boris Brezillon7f501f02016-05-24 19:20:05 +02005669 } else if (dev_id == type->dev_id) {
Brian Norrisdb5b09f2015-05-22 10:43:12 -07005670 break;
Huang Shijieec6e87e2013-03-15 11:01:00 +08005671 }
5672 }
David Woodhouse5e81e882010-02-26 18:32:56 +00005673
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005674 if (!type->name || !type->pagesize) {
Masahiro Yamada35fc5192014-04-09 16:26:26 +09005675 /* Check if the chip is ONFI compliant */
Miquel Raynalbd0b6432018-03-19 14:47:31 +01005676 ret = nand_flash_detect_onfi(chip);
5677 if (ret < 0)
5678 return ret;
5679 else if (ret)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02005680 goto ident_done;
Huang Shijie91361812014-02-21 13:39:40 +08005681
5682 /* Check if the chip is JEDEC compliant */
Miquel Raynal480139d2018-03-19 14:47:30 +01005683 ret = nand_flash_detect_jedec(chip);
5684 if (ret < 0)
5685 return ret;
5686 else if (ret)
Huang Shijie91361812014-02-21 13:39:40 +08005687 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005688 }
5689
David Woodhouse5e81e882010-02-26 18:32:56 +00005690 if (!type->name)
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09005691 return -ENODEV;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005692
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005693 chip->parameters.model = kstrdup(type->name, GFP_KERNEL);
5694 if (!chip->parameters.model)
5695 return -ENOMEM;
Thomas Gleixnerba0251fe2006-05-27 01:02:13 +02005696
Adrian Hunter69423d92008-12-10 13:37:21 +00005697 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005698
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005699 if (!type->pagesize)
5700 nand_manufacturer_detect(chip);
5701 else
Boris Brezillon29a198a2016-05-24 20:17:48 +02005702 nand_decode_id(chip, type);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02005703
Brian Norrisbf7a01b2012-07-13 09:28:24 -07005704 /* Get chip options */
5705 chip->options |= type->options;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005706
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005707ident_done:
Miquel Raynalf4531b22018-03-19 14:47:26 +01005708 if (!mtd->name)
5709 mtd->name = chip->parameters.model;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02005710
Matthieu CASTET64b37b22012-11-06 11:51:44 +01005711 if (chip->options & NAND_BUSWIDTH_AUTO) {
Boris Brezillon29a198a2016-05-24 20:17:48 +02005712 WARN_ON(busw & NAND_BUSWIDTH_16);
5713 nand_set_defaults(chip);
Matthieu CASTET64b37b22012-11-06 11:51:44 +01005714 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
5715 /*
5716 * Check, if buswidth is correct. Hardware drivers should set
5717 * chip correct!
5718 */
Ezequiel Garcia20171642013-11-25 08:30:31 -03005719 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02005720 maf_id, dev_id);
Boris Brezillonbcc678c2017-01-07 15:48:25 +01005721 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
5722 mtd->name);
Boris Brezillon29a198a2016-05-24 20:17:48 +02005723 pr_warn("bus width %d instead of %d bits\n", busw ? 16 : 8,
5724 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8);
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005725 ret = -EINVAL;
5726
5727 goto free_detect_allocation;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005728 }
5729
Boris Brezillon7f501f02016-05-24 19:20:05 +02005730 nand_decode_bbm_options(chip);
Brian Norris7e74c2d2012-09-24 20:40:49 -07005731
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005732 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005733 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07005734 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005735 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005736
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005737 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005738 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00005739 if (chip->chipsize & 0xffffffff)
5740 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02005741 else {
5742 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
5743 chip->chip_shift += 32 - 1;
5744 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005745
Masahiro Yamada14157f82017-09-13 11:05:50 +09005746 if (chip->chip_shift - chip->page_shift > 16)
5747 chip->options |= NAND_ROW_ADDR_3;
5748
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03005749 chip->badblockbits = 8;
Brian Norris49c50b92014-05-06 16:02:19 -07005750 chip->erase = single_erase;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005751
Brian Norris8b6e50c2011-05-25 14:59:01 -07005752 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02005753 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
5754 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005755
Ezequiel Garcia20171642013-11-25 08:30:31 -03005756 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
Boris Brezillon7f501f02016-05-24 19:20:05 +02005757 maf_id, dev_id);
Miquel Raynalf4531b22018-03-19 14:47:26 +01005758 pr_info("%s %s\n", nand_manufacturer_name(manufacturer),
5759 chip->parameters.model);
Rafał Miłecki3755a992014-10-21 00:01:04 +02005760 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
Huang Shijie3723e932013-09-25 14:58:14 +08005761 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Rafał Miłecki3755a992014-10-21 00:01:04 +02005762 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09005763 return 0;
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02005764
5765free_detect_allocation:
5766 kfree(chip->parameters.model);
5767
5768 return ret;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005769}
5770
Boris Brezillond48f62b2016-04-01 14:54:32 +02005771static const char * const nand_ecc_modes[] = {
5772 [NAND_ECC_NONE] = "none",
5773 [NAND_ECC_SOFT] = "soft",
5774 [NAND_ECC_HW] = "hw",
5775 [NAND_ECC_HW_SYNDROME] = "hw_syndrome",
5776 [NAND_ECC_HW_OOB_FIRST] = "hw_oob_first",
Thomas Petazzoni785818f2017-04-29 11:06:43 +02005777 [NAND_ECC_ON_DIE] = "on-die",
Boris Brezillond48f62b2016-04-01 14:54:32 +02005778};
5779
5780static int of_get_nand_ecc_mode(struct device_node *np)
5781{
5782 const char *pm;
5783 int err, i;
5784
5785 err = of_property_read_string(np, "nand-ecc-mode", &pm);
5786 if (err < 0)
5787 return err;
5788
5789 for (i = 0; i < ARRAY_SIZE(nand_ecc_modes); i++)
5790 if (!strcasecmp(pm, nand_ecc_modes[i]))
5791 return i;
5792
Rafał Miłeckiae211bc2016-04-17 22:53:06 +02005793 /*
5794 * For backward compatibility we support few obsoleted values that don't
5795 * have their mappings into nand_ecc_modes_t anymore (they were merged
5796 * with other enums).
5797 */
5798 if (!strcasecmp(pm, "soft_bch"))
5799 return NAND_ECC_SOFT;
5800
Boris Brezillond48f62b2016-04-01 14:54:32 +02005801 return -ENODEV;
5802}
5803
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02005804static const char * const nand_ecc_algos[] = {
5805 [NAND_ECC_HAMMING] = "hamming",
5806 [NAND_ECC_BCH] = "bch",
Stefan Agnerf308d732018-06-24 23:27:22 +02005807 [NAND_ECC_RS] = "rs",
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02005808};
5809
Boris Brezillond48f62b2016-04-01 14:54:32 +02005810static int of_get_nand_ecc_algo(struct device_node *np)
5811{
5812 const char *pm;
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02005813 int err, i;
Boris Brezillond48f62b2016-04-01 14:54:32 +02005814
Rafał Miłeckiba4f46b2016-04-22 13:23:13 +02005815 err = of_property_read_string(np, "nand-ecc-algo", &pm);
5816 if (!err) {
5817 for (i = NAND_ECC_HAMMING; i < ARRAY_SIZE(nand_ecc_algos); i++)
5818 if (!strcasecmp(pm, nand_ecc_algos[i]))
5819 return i;
5820 return -ENODEV;
5821 }
Boris Brezillond48f62b2016-04-01 14:54:32 +02005822
5823 /*
5824 * For backward compatibility we also read "nand-ecc-mode" checking
5825 * for some obsoleted values that were specifying ECC algorithm.
5826 */
5827 err = of_property_read_string(np, "nand-ecc-mode", &pm);
5828 if (err < 0)
5829 return err;
5830
5831 if (!strcasecmp(pm, "soft"))
5832 return NAND_ECC_HAMMING;
5833 else if (!strcasecmp(pm, "soft_bch"))
5834 return NAND_ECC_BCH;
5835
5836 return -ENODEV;
5837}
5838
5839static int of_get_nand_ecc_step_size(struct device_node *np)
5840{
5841 int ret;
5842 u32 val;
5843
5844 ret = of_property_read_u32(np, "nand-ecc-step-size", &val);
5845 return ret ? ret : val;
5846}
5847
5848static int of_get_nand_ecc_strength(struct device_node *np)
5849{
5850 int ret;
5851 u32 val;
5852
5853 ret = of_property_read_u32(np, "nand-ecc-strength", &val);
5854 return ret ? ret : val;
5855}
5856
5857static int of_get_nand_bus_width(struct device_node *np)
5858{
5859 u32 val;
5860
5861 if (of_property_read_u32(np, "nand-bus-width", &val))
5862 return 8;
5863
5864 switch (val) {
5865 case 8:
5866 case 16:
5867 return val;
5868 default:
5869 return -EIO;
5870 }
5871}
5872
5873static bool of_get_nand_on_flash_bbt(struct device_node *np)
5874{
5875 return of_property_read_bool(np, "nand-on-flash-bbt");
5876}
5877
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01005878static int nand_dt_init(struct nand_chip *chip)
Brian Norris5844fee2015-01-23 00:22:27 -08005879{
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01005880 struct device_node *dn = nand_get_flash_node(chip);
Rafał Miłecki79082452016-03-23 11:19:02 +01005881 int ecc_mode, ecc_algo, ecc_strength, ecc_step;
Brian Norris5844fee2015-01-23 00:22:27 -08005882
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01005883 if (!dn)
5884 return 0;
5885
Brian Norris5844fee2015-01-23 00:22:27 -08005886 if (of_get_nand_bus_width(dn) == 16)
5887 chip->options |= NAND_BUSWIDTH_16;
5888
Stefan Agnerf922bd72018-06-24 23:27:23 +02005889 if (of_property_read_bool(dn, "nand-is-boot-medium"))
5890 chip->options |= NAND_IS_BOOT_MEDIUM;
5891
Brian Norris5844fee2015-01-23 00:22:27 -08005892 if (of_get_nand_on_flash_bbt(dn))
5893 chip->bbt_options |= NAND_BBT_USE_FLASH;
5894
5895 ecc_mode = of_get_nand_ecc_mode(dn);
Rafał Miłecki79082452016-03-23 11:19:02 +01005896 ecc_algo = of_get_nand_ecc_algo(dn);
Brian Norris5844fee2015-01-23 00:22:27 -08005897 ecc_strength = of_get_nand_ecc_strength(dn);
5898 ecc_step = of_get_nand_ecc_step_size(dn);
5899
Brian Norris5844fee2015-01-23 00:22:27 -08005900 if (ecc_mode >= 0)
5901 chip->ecc.mode = ecc_mode;
5902
Rafał Miłecki79082452016-03-23 11:19:02 +01005903 if (ecc_algo >= 0)
5904 chip->ecc.algo = ecc_algo;
5905
Brian Norris5844fee2015-01-23 00:22:27 -08005906 if (ecc_strength >= 0)
5907 chip->ecc.strength = ecc_strength;
5908
5909 if (ecc_step > 0)
5910 chip->ecc.size = ecc_step;
5911
Boris Brezillonba78ee02016-06-08 17:04:22 +02005912 if (of_property_read_bool(dn, "nand-ecc-maximize"))
5913 chip->ecc.options |= NAND_ECC_MAXIMIZE;
5914
Brian Norris5844fee2015-01-23 00:22:27 -08005915 return 0;
5916}
5917
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005918/**
Miquel Raynal98732da2018-07-25 15:31:50 +02005919 * nand_scan_ident - Scan for the NAND device
Boris Brezillon00ad3782018-09-06 14:05:14 +02005920 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -07005921 * @maxchips: number of chips to scan for
5922 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005923 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07005924 * This is the first phase of the normal nand_scan() function. It reads the
5925 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005926 *
Miquel Raynal98732da2018-07-25 15:31:50 +02005927 * This helper used to be called directly from controller drivers that needed
5928 * to tweak some ECC-related parameters before nand_scan_tail(). This separation
5929 * prevented dynamic allocations during this phase which was unconvenient and
5930 * as been banned for the benefit of the ->init_ecc()/cleanup_ecc() hooks.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005931 */
Boris Brezillon00ad3782018-09-06 14:05:14 +02005932static int nand_scan_ident(struct nand_chip *chip, int maxchips,
Miquel Raynal98732da2018-07-25 15:31:50 +02005933 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005934{
Boris Brezillon00ad3782018-09-06 14:05:14 +02005935 struct mtd_info *mtd = nand_to_mtd(chip);
Cai Zhiyongbb770822013-12-25 20:11:15 +08005936 int i, nand_maf_id, nand_dev_id;
Brian Norris5844fee2015-01-23 00:22:27 -08005937 int ret;
5938
Miquel Raynal17fa8042017-11-30 18:01:31 +01005939 /* Enforce the right timings for reset/detection */
5940 onfi_fill_data_interface(chip, NAND_SDR_IFACE, 0);
5941
Boris BREZILLON7194a29a2015-12-10 09:00:37 +01005942 ret = nand_dt_init(chip);
5943 if (ret)
5944 return ret;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005945
Brian Norrisf7a8e382016-01-05 10:39:45 -08005946 if (!mtd->name && mtd->dev.parent)
5947 mtd->name = dev_name(mtd->dev.parent);
5948
Miquel Raynal8878b122017-11-09 14:16:45 +01005949 /*
5950 * ->cmdfunc() is legacy and will only be used if ->exec_op() is not
5951 * populated.
5952 */
5953 if (!chip->exec_op) {
Andrey Smirnov76fe3342016-07-21 14:59:20 -07005954 /*
Miquel Raynal8878b122017-11-09 14:16:45 +01005955 * Default functions assigned for ->cmdfunc() and
5956 * ->select_chip() both expect ->cmd_ctrl() to be populated.
Andrey Smirnov76fe3342016-07-21 14:59:20 -07005957 */
Miquel Raynal8878b122017-11-09 14:16:45 +01005958 if ((!chip->cmdfunc || !chip->select_chip) && !chip->cmd_ctrl) {
5959 pr_err("->cmd_ctrl() should be provided\n");
5960 return -EINVAL;
5961 }
Andrey Smirnov76fe3342016-07-21 14:59:20 -07005962 }
Miquel Raynal8878b122017-11-09 14:16:45 +01005963
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005964 /* Set the default functions */
Boris Brezillon29a198a2016-05-24 20:17:48 +02005965 nand_set_defaults(chip);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005966
5967 /* Read the flash type */
Boris Brezillon7bb42792016-05-24 20:55:33 +02005968 ret = nand_detect(chip, table);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09005969 if (ret) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00005970 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07005971 pr_warn("No NAND device found\n");
Boris Brezillon758b56f2018-09-06 14:05:24 +02005972 chip->select_chip(chip, -1);
Masahiro Yamada4722c0e2016-11-04 17:49:08 +09005973 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974 }
5975
Boris Brezillon7f501f02016-05-24 19:20:05 +02005976 nand_maf_id = chip->id.data[0];
5977 nand_dev_id = chip->id.data[1];
5978
Boris Brezillon758b56f2018-09-06 14:05:24 +02005979 chip->select_chip(chip, -1);
Huang Shijie07300162012-11-09 16:23:45 +08005980
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02005981 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01005982 for (i = 1; i < maxchips; i++) {
Boris Brezillon97d90da2017-11-30 18:01:29 +01005983 u8 id[2];
5984
Karl Beldanef89a882008-09-15 14:37:29 +02005985 /* See comment in nand_get_flash_type for reset */
Boris Brezillon73f907f2016-10-24 16:46:20 +02005986 nand_reset(chip, i);
5987
Boris Brezillon758b56f2018-09-06 14:05:24 +02005988 chip->select_chip(chip, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989 /* Send the command for reading device ID */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005990 nand_readid_op(chip, 0, id, sizeof(id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991 /* Read manufacturer and device IDs */
Boris Brezillon97d90da2017-11-30 18:01:29 +01005992 if (nand_maf_id != id[0] || nand_dev_id != id[1]) {
Boris Brezillon758b56f2018-09-06 14:05:24 +02005993 chip->select_chip(chip, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994 break;
Huang Shijie07300162012-11-09 16:23:45 +08005995 }
Boris Brezillon758b56f2018-09-06 14:05:24 +02005996 chip->select_chip(chip, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997 }
5998 if (i > 1)
Ezequiel Garcia20171642013-11-25 08:30:31 -03005999 pr_info("%d chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006000
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02006002 chip->numchips = i;
6003 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
David Woodhouse3b85c322006-09-25 17:06:53 +01006005 return 0;
6006}
6007
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02006008static void nand_scan_ident_cleanup(struct nand_chip *chip)
6009{
6010 kfree(chip->parameters.model);
Miquel Raynal3d3fe3c2018-07-25 15:31:52 +02006011 kfree(chip->parameters.onfi);
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02006012}
6013
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006014static int nand_set_ecc_soft_ops(struct mtd_info *mtd)
6015{
6016 struct nand_chip *chip = mtd_to_nand(mtd);
6017 struct nand_ecc_ctrl *ecc = &chip->ecc;
6018
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02006019 if (WARN_ON(ecc->mode != NAND_ECC_SOFT))
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006020 return -EINVAL;
6021
6022 switch (ecc->algo) {
6023 case NAND_ECC_HAMMING:
6024 ecc->calculate = nand_calculate_ecc;
6025 ecc->correct = nand_correct_data;
6026 ecc->read_page = nand_read_page_swecc;
6027 ecc->read_subpage = nand_read_subpage;
6028 ecc->write_page = nand_write_page_swecc;
6029 ecc->read_page_raw = nand_read_page_raw;
6030 ecc->write_page_raw = nand_write_page_raw;
6031 ecc->read_oob = nand_read_oob_std;
6032 ecc->write_oob = nand_write_oob_std;
6033 if (!ecc->size)
6034 ecc->size = 256;
6035 ecc->bytes = 3;
6036 ecc->strength = 1;
6037 return 0;
6038 case NAND_ECC_BCH:
6039 if (!mtd_nand_has_bch()) {
6040 WARN(1, "CONFIG_MTD_NAND_ECC_BCH not enabled\n");
6041 return -EINVAL;
6042 }
6043 ecc->calculate = nand_bch_calculate_ecc;
6044 ecc->correct = nand_bch_correct_data;
6045 ecc->read_page = nand_read_page_swecc;
6046 ecc->read_subpage = nand_read_subpage;
6047 ecc->write_page = nand_write_page_swecc;
6048 ecc->read_page_raw = nand_read_page_raw;
6049 ecc->write_page_raw = nand_write_page_raw;
6050 ecc->read_oob = nand_read_oob_std;
6051 ecc->write_oob = nand_write_oob_std;
Boris Brezillon8bbba482016-06-08 17:04:23 +02006052
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006053 /*
6054 * Board driver should supply ecc.size and ecc.strength
6055 * values to select how many bits are correctable.
6056 * Otherwise, default to 4 bits for large page devices.
6057 */
6058 if (!ecc->size && (mtd->oobsize >= 64)) {
6059 ecc->size = 512;
6060 ecc->strength = 4;
6061 }
6062
6063 /*
6064 * if no ecc placement scheme was provided pickup the default
6065 * large page one.
6066 */
6067 if (!mtd->ooblayout) {
6068 /* handle large page devices only */
6069 if (mtd->oobsize < 64) {
6070 WARN(1, "OOB layout is required when using software BCH on small pages\n");
6071 return -EINVAL;
6072 }
6073
6074 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
Boris Brezillon8bbba482016-06-08 17:04:23 +02006075
6076 }
6077
6078 /*
6079 * We can only maximize ECC config when the default layout is
6080 * used, otherwise we don't know how many bytes can really be
6081 * used.
6082 */
6083 if (mtd->ooblayout == &nand_ooblayout_lp_ops &&
6084 ecc->options & NAND_ECC_MAXIMIZE) {
6085 int steps, bytes;
6086
6087 /* Always prefer 1k blocks over 512bytes ones */
6088 ecc->size = 1024;
6089 steps = mtd->writesize / ecc->size;
6090
6091 /* Reserve 2 bytes for the BBM */
6092 bytes = (mtd->oobsize - 2) / steps;
6093 ecc->strength = bytes * 8 / fls(8 * ecc->size);
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006094 }
6095
6096 /* See nand_bch_init() for details. */
6097 ecc->bytes = 0;
6098 ecc->priv = nand_bch_init(mtd);
6099 if (!ecc->priv) {
6100 WARN(1, "BCH ECC initialization failed!\n");
6101 return -EINVAL;
6102 }
6103 return 0;
6104 default:
6105 WARN(1, "Unsupported ECC algorithm!\n");
6106 return -EINVAL;
6107 }
6108}
6109
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006110/**
6111 * nand_check_ecc_caps - check the sanity of preset ECC settings
6112 * @chip: nand chip info structure
6113 * @caps: ECC caps info structure
6114 * @oobavail: OOB size that the ECC engine can use
6115 *
6116 * When ECC step size and strength are already set, check if they are supported
6117 * by the controller and the calculated ECC bytes fit within the chip's OOB.
6118 * On success, the calculated ECC bytes is set.
6119 */
Abhishek Sahu0cf5c7d2018-06-20 12:57:42 +05306120static int
6121nand_check_ecc_caps(struct nand_chip *chip,
6122 const struct nand_ecc_caps *caps, int oobavail)
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006123{
6124 struct mtd_info *mtd = nand_to_mtd(chip);
6125 const struct nand_ecc_step_info *stepinfo;
6126 int preset_step = chip->ecc.size;
6127 int preset_strength = chip->ecc.strength;
Abhishek Sahu0cf5c7d2018-06-20 12:57:42 +05306128 int ecc_bytes, nsteps = mtd->writesize / preset_step;
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006129 int i, j;
6130
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006131 for (i = 0; i < caps->nstepinfos; i++) {
6132 stepinfo = &caps->stepinfos[i];
6133
6134 if (stepinfo->stepsize != preset_step)
6135 continue;
6136
6137 for (j = 0; j < stepinfo->nstrengths; j++) {
6138 if (stepinfo->strengths[j] != preset_strength)
6139 continue;
6140
6141 ecc_bytes = caps->calc_ecc_bytes(preset_step,
6142 preset_strength);
6143 if (WARN_ON_ONCE(ecc_bytes < 0))
6144 return ecc_bytes;
6145
6146 if (ecc_bytes * nsteps > oobavail) {
6147 pr_err("ECC (step, strength) = (%d, %d) does not fit in OOB",
6148 preset_step, preset_strength);
6149 return -ENOSPC;
6150 }
6151
6152 chip->ecc.bytes = ecc_bytes;
6153
6154 return 0;
6155 }
6156 }
6157
6158 pr_err("ECC (step, strength) = (%d, %d) not supported on this controller",
6159 preset_step, preset_strength);
6160
6161 return -ENOTSUPP;
6162}
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006163
6164/**
6165 * nand_match_ecc_req - meet the chip's requirement with least ECC bytes
6166 * @chip: nand chip info structure
6167 * @caps: ECC engine caps info structure
6168 * @oobavail: OOB size that the ECC engine can use
6169 *
6170 * If a chip's ECC requirement is provided, try to meet it with the least
6171 * number of ECC bytes (i.e. with the largest number of OOB-free bytes).
6172 * On success, the chosen ECC settings are set.
6173 */
Abhishek Sahu0cf5c7d2018-06-20 12:57:42 +05306174static int
6175nand_match_ecc_req(struct nand_chip *chip,
6176 const struct nand_ecc_caps *caps, int oobavail)
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006177{
6178 struct mtd_info *mtd = nand_to_mtd(chip);
6179 const struct nand_ecc_step_info *stepinfo;
6180 int req_step = chip->ecc_step_ds;
6181 int req_strength = chip->ecc_strength_ds;
6182 int req_corr, step_size, strength, nsteps, ecc_bytes, ecc_bytes_total;
6183 int best_step, best_strength, best_ecc_bytes;
6184 int best_ecc_bytes_total = INT_MAX;
6185 int i, j;
6186
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006187 /* No information provided by the NAND chip */
6188 if (!req_step || !req_strength)
6189 return -ENOTSUPP;
6190
6191 /* number of correctable bits the chip requires in a page */
6192 req_corr = mtd->writesize / req_step * req_strength;
6193
6194 for (i = 0; i < caps->nstepinfos; i++) {
6195 stepinfo = &caps->stepinfos[i];
6196 step_size = stepinfo->stepsize;
6197
6198 for (j = 0; j < stepinfo->nstrengths; j++) {
6199 strength = stepinfo->strengths[j];
6200
6201 /*
6202 * If both step size and strength are smaller than the
6203 * chip's requirement, it is not easy to compare the
6204 * resulted reliability.
6205 */
6206 if (step_size < req_step && strength < req_strength)
6207 continue;
6208
6209 if (mtd->writesize % step_size)
6210 continue;
6211
6212 nsteps = mtd->writesize / step_size;
6213
6214 ecc_bytes = caps->calc_ecc_bytes(step_size, strength);
6215 if (WARN_ON_ONCE(ecc_bytes < 0))
6216 continue;
6217 ecc_bytes_total = ecc_bytes * nsteps;
6218
6219 if (ecc_bytes_total > oobavail ||
6220 strength * nsteps < req_corr)
6221 continue;
6222
6223 /*
6224 * We assume the best is to meet the chip's requrement
6225 * with the least number of ECC bytes.
6226 */
6227 if (ecc_bytes_total < best_ecc_bytes_total) {
6228 best_ecc_bytes_total = ecc_bytes_total;
6229 best_step = step_size;
6230 best_strength = strength;
6231 best_ecc_bytes = ecc_bytes;
6232 }
6233 }
6234 }
6235
6236 if (best_ecc_bytes_total == INT_MAX)
6237 return -ENOTSUPP;
6238
6239 chip->ecc.size = best_step;
6240 chip->ecc.strength = best_strength;
6241 chip->ecc.bytes = best_ecc_bytes;
6242
6243 return 0;
6244}
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006245
6246/**
6247 * nand_maximize_ecc - choose the max ECC strength available
6248 * @chip: nand chip info structure
6249 * @caps: ECC engine caps info structure
6250 * @oobavail: OOB size that the ECC engine can use
6251 *
6252 * Choose the max ECC strength that is supported on the controller, and can fit
6253 * within the chip's OOB. On success, the chosen ECC settings are set.
6254 */
Abhishek Sahu0cf5c7d2018-06-20 12:57:42 +05306255static int
6256nand_maximize_ecc(struct nand_chip *chip,
6257 const struct nand_ecc_caps *caps, int oobavail)
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006258{
6259 struct mtd_info *mtd = nand_to_mtd(chip);
6260 const struct nand_ecc_step_info *stepinfo;
6261 int step_size, strength, nsteps, ecc_bytes, corr;
6262 int best_corr = 0;
6263 int best_step = 0;
6264 int best_strength, best_ecc_bytes;
6265 int i, j;
6266
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006267 for (i = 0; i < caps->nstepinfos; i++) {
6268 stepinfo = &caps->stepinfos[i];
6269 step_size = stepinfo->stepsize;
6270
6271 /* If chip->ecc.size is already set, respect it */
6272 if (chip->ecc.size && step_size != chip->ecc.size)
6273 continue;
6274
6275 for (j = 0; j < stepinfo->nstrengths; j++) {
6276 strength = stepinfo->strengths[j];
6277
6278 if (mtd->writesize % step_size)
6279 continue;
6280
6281 nsteps = mtd->writesize / step_size;
6282
6283 ecc_bytes = caps->calc_ecc_bytes(step_size, strength);
6284 if (WARN_ON_ONCE(ecc_bytes < 0))
6285 continue;
6286
6287 if (ecc_bytes * nsteps > oobavail)
6288 continue;
6289
6290 corr = strength * nsteps;
6291
6292 /*
6293 * If the number of correctable bits is the same,
6294 * bigger step_size has more reliability.
6295 */
6296 if (corr > best_corr ||
6297 (corr == best_corr && step_size > best_step)) {
6298 best_corr = corr;
6299 best_step = step_size;
6300 best_strength = strength;
6301 best_ecc_bytes = ecc_bytes;
6302 }
6303 }
6304 }
6305
6306 if (!best_corr)
6307 return -ENOTSUPP;
6308
6309 chip->ecc.size = best_step;
6310 chip->ecc.strength = best_strength;
6311 chip->ecc.bytes = best_ecc_bytes;
6312
6313 return 0;
6314}
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09006315
Abhishek Sahu181ace92018-06-20 12:57:28 +05306316/**
6317 * nand_ecc_choose_conf - Set the ECC strength and ECC step size
6318 * @chip: nand chip info structure
6319 * @caps: ECC engine caps info structure
6320 * @oobavail: OOB size that the ECC engine can use
6321 *
6322 * Choose the ECC configuration according to following logic
6323 *
6324 * 1. If both ECC step size and ECC strength are already set (usually by DT)
6325 * then check if it is supported by this controller.
6326 * 2. If NAND_ECC_MAXIMIZE is set, then select maximum ECC strength.
6327 * 3. Otherwise, try to match the ECC step size and ECC strength closest
6328 * to the chip's requirement. If available OOB size can't fit the chip
6329 * requirement then fallback to the maximum ECC step size and ECC strength.
6330 *
6331 * On success, the chosen ECC settings are set.
6332 */
6333int nand_ecc_choose_conf(struct nand_chip *chip,
6334 const struct nand_ecc_caps *caps, int oobavail)
6335{
Abhishek Sahu0cf5c7d2018-06-20 12:57:42 +05306336 struct mtd_info *mtd = nand_to_mtd(chip);
6337
6338 if (WARN_ON(oobavail < 0 || oobavail > mtd->oobsize))
6339 return -EINVAL;
6340
Abhishek Sahu181ace92018-06-20 12:57:28 +05306341 if (chip->ecc.size && chip->ecc.strength)
6342 return nand_check_ecc_caps(chip, caps, oobavail);
6343
6344 if (chip->ecc.options & NAND_ECC_MAXIMIZE)
6345 return nand_maximize_ecc(chip, caps, oobavail);
6346
6347 if (!nand_match_ecc_req(chip, caps, oobavail))
6348 return 0;
6349
6350 return nand_maximize_ecc(chip, caps, oobavail);
6351}
6352EXPORT_SYMBOL_GPL(nand_ecc_choose_conf);
6353
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03006354/*
6355 * Check if the chip configuration meet the datasheet requirements.
6356
6357 * If our configuration corrects A bits per B bytes and the minimum
6358 * required correction level is X bits per Y bytes, then we must ensure
6359 * both of the following are true:
6360 *
6361 * (1) A / B >= X / Y
6362 * (2) A >= X
6363 *
6364 * Requirement (1) ensures we can correct for the required bitflip density.
6365 * Requirement (2) ensures we can correct even when all bitflips are clumped
6366 * in the same sector.
6367 */
6368static bool nand_ecc_strength_good(struct mtd_info *mtd)
6369{
Boris BREZILLON862eba52015-12-01 12:03:03 +01006370 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03006371 struct nand_ecc_ctrl *ecc = &chip->ecc;
6372 int corr, ds_corr;
6373
6374 if (ecc->size == 0 || chip->ecc_step_ds == 0)
6375 /* Not enough information */
6376 return true;
6377
6378 /*
6379 * We get the number of corrected bits per page to compare
6380 * the correction density.
6381 */
6382 corr = (mtd->writesize * ecc->strength) / ecc->size;
6383 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
6384
6385 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
6386}
David Woodhouse3b85c322006-09-25 17:06:53 +01006387
6388/**
Miquel Raynal98732da2018-07-25 15:31:50 +02006389 * nand_scan_tail - Scan for the NAND device
Boris Brezillon00ad3782018-09-06 14:05:14 +02006390 * @chip: NAND chip object
David Woodhouse3b85c322006-09-25 17:06:53 +01006391 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07006392 * This is the second phase of the normal nand_scan() function. It fills out
6393 * all the uninitialized function pointers with the defaults and scans for a
6394 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01006395 */
Boris Brezillon00ad3782018-09-06 14:05:14 +02006396static int nand_scan_tail(struct nand_chip *chip)
David Woodhouse3b85c322006-09-25 17:06:53 +01006397{
Boris Brezillon00ad3782018-09-06 14:05:14 +02006398 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie97de79e02013-10-18 14:20:53 +08006399 struct nand_ecc_ctrl *ecc = &chip->ecc;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006400 int ret, i;
David Woodhouse3b85c322006-09-25 17:06:53 +01006401
Brian Norrise2414f42012-02-06 13:44:00 -08006402 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006403 if (WARN_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
Brian Norris78771042017-05-01 17:04:53 -07006404 !(chip->bbt_options & NAND_BBT_USE_FLASH))) {
Boris Brezillonf84674b2017-06-02 12:18:24 +02006405 return -EINVAL;
Brian Norris78771042017-05-01 17:04:53 -07006406 }
Brian Norrise2414f42012-02-06 13:44:00 -08006407
Masahiro Yamadac0313b92017-12-05 17:47:16 +09006408 chip->data_buf = kmalloc(mtd->writesize + mtd->oobsize, GFP_KERNEL);
Boris Brezillonaeb93af2017-12-05 12:09:29 +01006409 if (!chip->data_buf)
Boris Brezillonf84674b2017-06-02 12:18:24 +02006410 return -ENOMEM;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01006411
Boris Brezillonf84674b2017-06-02 12:18:24 +02006412 /*
6413 * FIXME: some NAND manufacturer drivers expect the first die to be
6414 * selected when manufacturer->init() is called. They should be fixed
6415 * to explictly select the relevant die when interacting with the NAND
6416 * chip.
6417 */
Boris Brezillon758b56f2018-09-06 14:05:24 +02006418 chip->select_chip(chip, 0);
Boris Brezillonf84674b2017-06-02 12:18:24 +02006419 ret = nand_manufacturer_init(chip);
Boris Brezillon758b56f2018-09-06 14:05:24 +02006420 chip->select_chip(chip, -1);
Boris Brezillonf84674b2017-06-02 12:18:24 +02006421 if (ret)
Masahiro Yamadac0313b92017-12-05 17:47:16 +09006422 goto err_free_buf;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006423
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01006424 /* Set the internal oob buffer location, just after the page data */
Masahiro Yamadac0313b92017-12-05 17:47:16 +09006425 chip->oob_poi = chip->data_buf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006426
6427 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07006428 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006429 */
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006430 if (!mtd->ooblayout &&
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02006431 !(ecc->mode == NAND_ECC_SOFT && ecc->algo == NAND_ECC_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006432 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433 case 8:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434 case 16:
Boris Brezillon41b207a2016-02-03 19:06:15 +01006435 mtd_set_ooblayout(mtd, &nand_ooblayout_sp_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436 break;
6437 case 64:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01006438 case 128:
Alexander Couzens6a623e02017-05-02 12:19:00 +02006439 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_hamming_ops);
Thomas Gleixner81ec5362007-12-12 17:27:03 +01006440 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 default:
Miquel Raynal882fd152017-08-26 17:19:15 +02006442 /*
6443 * Expose the whole OOB area to users if ECC_NONE
6444 * is passed. We could do that for all kind of
6445 * ->oobsize, but we must keep the old large/small
6446 * page with ECC layout when ->oobsize <= 128 for
6447 * compatibility reasons.
6448 */
6449 if (ecc->mode == NAND_ECC_NONE) {
6450 mtd_set_ooblayout(mtd,
6451 &nand_ooblayout_lp_ops);
6452 break;
6453 }
6454
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006455 WARN(1, "No oob scheme defined for oobsize %d\n",
6456 mtd->oobsize);
6457 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006458 goto err_nand_manuf_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459 }
6460 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006461
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006462 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07006463 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006464 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01006465 */
David Woodhouse956e9442006-09-25 17:12:39 +01006466
Huang Shijie97de79e02013-10-18 14:20:53 +08006467 switch (ecc->mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07006468 case NAND_ECC_HW_OOB_FIRST:
6469 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Huang Shijie97de79e02013-10-18 14:20:53 +08006470 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006471 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
6472 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006473 goto err_nand_manuf_cleanup;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07006474 }
Huang Shijie97de79e02013-10-18 14:20:53 +08006475 if (!ecc->read_page)
6476 ecc->read_page = nand_read_page_hwecc_oob_first;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07006477
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02006478 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07006479 /* Use standard hwecc read page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08006480 if (!ecc->read_page)
6481 ecc->read_page = nand_read_page_hwecc;
6482 if (!ecc->write_page)
6483 ecc->write_page = nand_write_page_hwecc;
6484 if (!ecc->read_page_raw)
6485 ecc->read_page_raw = nand_read_page_raw;
6486 if (!ecc->write_page_raw)
6487 ecc->write_page_raw = nand_write_page_raw;
6488 if (!ecc->read_oob)
6489 ecc->read_oob = nand_read_oob_std;
6490 if (!ecc->write_oob)
6491 ecc->write_oob = nand_write_oob_std;
6492 if (!ecc->read_subpage)
6493 ecc->read_subpage = nand_read_subpage;
Helmut Schaa44991b32014-04-09 11:13:24 +02006494 if (!ecc->write_subpage && ecc->hwctl && ecc->calculate)
Huang Shijie97de79e02013-10-18 14:20:53 +08006495 ecc->write_subpage = nand_write_subpage_hwecc;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02006496
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02006497 case NAND_ECC_HW_SYNDROME:
Huang Shijie97de79e02013-10-18 14:20:53 +08006498 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
6499 (!ecc->read_page ||
6500 ecc->read_page == nand_read_page_hwecc ||
6501 !ecc->write_page ||
6502 ecc->write_page == nand_write_page_hwecc)) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006503 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
6504 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006505 goto err_nand_manuf_cleanup;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02006506 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07006507 /* Use standard syndrome read/write page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08006508 if (!ecc->read_page)
6509 ecc->read_page = nand_read_page_syndrome;
6510 if (!ecc->write_page)
6511 ecc->write_page = nand_write_page_syndrome;
6512 if (!ecc->read_page_raw)
6513 ecc->read_page_raw = nand_read_page_raw_syndrome;
6514 if (!ecc->write_page_raw)
6515 ecc->write_page_raw = nand_write_page_raw_syndrome;
6516 if (!ecc->read_oob)
6517 ecc->read_oob = nand_read_oob_syndrome;
6518 if (!ecc->write_oob)
6519 ecc->write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02006520
Huang Shijie97de79e02013-10-18 14:20:53 +08006521 if (mtd->writesize >= ecc->size) {
6522 if (!ecc->strength) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006523 WARN(1, "Driver must set ecc.strength when using hardware ECC\n");
6524 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006525 goto err_nand_manuf_cleanup;
Mike Dunne2788c92012-04-25 12:06:10 -07006526 }
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02006527 break;
Mike Dunne2788c92012-04-25 12:06:10 -07006528 }
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02006529 pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n",
6530 ecc->size, mtd->writesize);
Huang Shijie97de79e02013-10-18 14:20:53 +08006531 ecc->mode = NAND_ECC_SOFT;
Rafał Miłeckie9d4fae2016-04-17 22:53:02 +02006532 ecc->algo = NAND_ECC_HAMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02006534 case NAND_ECC_SOFT:
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006535 ret = nand_set_ecc_soft_ops(mtd);
6536 if (ret) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006537 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006538 goto err_nand_manuf_cleanup;
Ivan Djelic193bd402011-03-11 11:05:33 +01006539 }
6540 break;
6541
Thomas Petazzoni785818f2017-04-29 11:06:43 +02006542 case NAND_ECC_ON_DIE:
6543 if (!ecc->read_page || !ecc->write_page) {
6544 WARN(1, "No ECC functions supplied; on-die ECC not possible\n");
6545 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006546 goto err_nand_manuf_cleanup;
Thomas Petazzoni785818f2017-04-29 11:06:43 +02006547 }
6548 if (!ecc->read_oob)
6549 ecc->read_oob = nand_read_oob_std;
6550 if (!ecc->write_oob)
6551 ecc->write_oob = nand_write_oob_std;
6552 break;
6553
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006554 case NAND_ECC_NONE:
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02006555 pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n");
Huang Shijie97de79e02013-10-18 14:20:53 +08006556 ecc->read_page = nand_read_page_raw;
6557 ecc->write_page = nand_write_page_raw;
6558 ecc->read_oob = nand_read_oob_std;
6559 ecc->read_page_raw = nand_read_page_raw;
6560 ecc->write_page_raw = nand_write_page_raw;
6561 ecc->write_oob = nand_write_oob_std;
6562 ecc->size = mtd->writesize;
6563 ecc->bytes = 0;
6564 ecc->strength = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565 break;
David Woodhouse956e9442006-09-25 17:12:39 +01006566
Linus Torvalds1da177e2005-04-16 15:20:36 -07006567 default:
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006568 WARN(1, "Invalid NAND_ECC_MODE %d\n", ecc->mode);
6569 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006570 goto err_nand_manuf_cleanup;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572
Boris Brezillonaeb93af2017-12-05 12:09:29 +01006573 if (ecc->correct || ecc->calculate) {
6574 ecc->calc_buf = kmalloc(mtd->oobsize, GFP_KERNEL);
6575 ecc->code_buf = kmalloc(mtd->oobsize, GFP_KERNEL);
6576 if (!ecc->calc_buf || !ecc->code_buf) {
6577 ret = -ENOMEM;
6578 goto err_nand_manuf_cleanup;
6579 }
6580 }
6581
Brian Norris9ce244b2011-08-30 18:45:37 -07006582 /* For many systems, the standard OOB write also works for raw */
Huang Shijie97de79e02013-10-18 14:20:53 +08006583 if (!ecc->read_oob_raw)
6584 ecc->read_oob_raw = ecc->read_oob;
6585 if (!ecc->write_oob_raw)
6586 ecc->write_oob_raw = ecc->write_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07006587
Boris Brezillon846031d2016-02-03 20:11:00 +01006588 /* propagate ecc info to mtd_info */
Boris Brezillon846031d2016-02-03 20:11:00 +01006589 mtd->ecc_strength = ecc->strength;
6590 mtd->ecc_step_size = ecc->size;
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03006591
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02006592 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006593 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07006594 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02006595 */
Huang Shijie97de79e02013-10-18 14:20:53 +08006596 ecc->steps = mtd->writesize / ecc->size;
6597 if (ecc->steps * ecc->size != mtd->writesize) {
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006598 WARN(1, "Invalid ECC parameters\n");
6599 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006600 goto err_nand_manuf_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601 }
Huang Shijie97de79e02013-10-18 14:20:53 +08006602 ecc->total = ecc->steps * ecc->bytes;
Masahiro Yamada79e03482017-05-25 13:50:20 +09006603 if (ecc->total > mtd->oobsize) {
6604 WARN(1, "Total number of ECC bytes exceeded oobsize\n");
6605 ret = -EINVAL;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006606 goto err_nand_manuf_cleanup;
Masahiro Yamada79e03482017-05-25 13:50:20 +09006607 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006608
Boris Brezillon846031d2016-02-03 20:11:00 +01006609 /*
6610 * The number of bytes available for a client to place data into
6611 * the out of band area.
6612 */
6613 ret = mtd_ooblayout_count_freebytes(mtd);
6614 if (ret < 0)
6615 ret = 0;
6616
6617 mtd->oobavail = ret;
6618
6619 /* ECC sanity check: warn if it's too weak */
6620 if (!nand_ecc_strength_good(mtd))
6621 pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n",
6622 mtd->name);
6623
Brian Norris8b6e50c2011-05-25 14:59:01 -07006624 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Huang Shijie1d0ed692013-09-25 14:58:10 +08006625 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
Huang Shijie97de79e02013-10-18 14:20:53 +08006626 switch (ecc->steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02006627 case 2:
6628 mtd->subpage_sft = 1;
6629 break;
6630 case 4:
6631 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01006632 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02006633 mtd->subpage_sft = 2;
6634 break;
6635 }
6636 }
6637 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
6638
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02006639 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02006640 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02006643 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05006645 /* Large page NAND with SOFT_ECC should support subpage reads */
Ron Lee4007e2d2014-04-25 15:01:35 +09306646 switch (ecc->mode) {
6647 case NAND_ECC_SOFT:
Ron Lee4007e2d2014-04-25 15:01:35 +09306648 if (chip->page_shift > 9)
6649 chip->options |= NAND_SUBPAGE_READ;
6650 break;
6651
6652 default:
6653 break;
6654 }
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05006655
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656 /* Fill in remaining MTD driver data */
Huang Shijie963d1c22013-09-25 14:58:21 +08006657 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02006658 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
6659 MTD_CAP_NANDFLASH;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02006660 mtd->_erase = nand_erase;
6661 mtd->_point = NULL;
6662 mtd->_unpoint = NULL;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02006663 mtd->_panic_write = panic_nand_write;
6664 mtd->_read_oob = nand_read_oob;
6665 mtd->_write_oob = nand_write_oob;
6666 mtd->_sync = nand_sync;
6667 mtd->_lock = NULL;
6668 mtd->_unlock = NULL;
6669 mtd->_suspend = nand_suspend;
6670 mtd->_resume = nand_resume;
Scott Branden72ea4032014-11-20 11:18:05 -08006671 mtd->_reboot = nand_shutdown;
Ezequiel Garcia8471bb72014-05-21 19:06:12 -03006672 mtd->_block_isreserved = nand_block_isreserved;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02006673 mtd->_block_isbad = nand_block_isbad;
6674 mtd->_block_markbad = nand_block_markbad;
Zach Brown56718422017-01-10 13:30:20 -06006675 mtd->_max_bad_blocks = nand_max_bad_blocks;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01006676 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677
Shmulik Ladkaniea3b2ea2012-06-08 18:29:06 +03006678 /*
6679 * Initialize bitflip_threshold to its default prior scan_bbt() call.
6680 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
6681 * properly set.
6682 */
6683 if (!mtd->bitflip_threshold)
Brian Norris240181f2015-01-12 12:51:29 -08006684 mtd->bitflip_threshold = DIV_ROUND_UP(mtd->ecc_strength * 3, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685
Boris Brezillonf84674b2017-06-02 12:18:24 +02006686 /* Initialize the ->data_interface field. */
6687 ret = nand_init_data_interface(chip);
6688 if (ret)
6689 goto err_nand_manuf_cleanup;
6690
6691 /* Enter fastest possible mode on all dies. */
6692 for (i = 0; i < chip->numchips; i++) {
Boris Brezillonf84674b2017-06-02 12:18:24 +02006693 ret = nand_setup_data_interface(chip, i);
Boris Brezillonf84674b2017-06-02 12:18:24 +02006694 if (ret)
Miquel Raynal17fa8042017-11-30 18:01:31 +01006695 goto err_nand_manuf_cleanup;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006696 }
6697
Thomas Gleixner0040bf32005-02-09 12:20:00 +00006698 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02006699 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00006700 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701
6702 /* Build bad block table */
Boris Brezillone80eba72018-07-05 12:27:31 +02006703 ret = nand_create_bbt(chip);
Brian Norris44d41822017-05-01 17:04:50 -07006704 if (ret)
Miquel Raynal17fa8042017-11-30 18:01:31 +01006705 goto err_nand_manuf_cleanup;
Boris Brezillonf84674b2017-06-02 12:18:24 +02006706
Brian Norris44d41822017-05-01 17:04:50 -07006707 return 0;
6708
Boris Brezillonf84674b2017-06-02 12:18:24 +02006709
6710err_nand_manuf_cleanup:
6711 nand_manufacturer_cleanup(chip);
6712
Masahiro Yamadac0313b92017-12-05 17:47:16 +09006713err_free_buf:
6714 kfree(chip->data_buf);
6715 kfree(ecc->code_buf);
6716 kfree(ecc->calc_buf);
Brian Norris78771042017-05-01 17:04:53 -07006717
Ezequiel García11eaf6d2016-04-01 18:29:24 -03006718 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006719}
6720
Miquel Raynal05b54c72018-07-19 01:05:46 +02006721static int nand_attach(struct nand_chip *chip)
6722{
6723 if (chip->controller->ops && chip->controller->ops->attach_chip)
6724 return chip->controller->ops->attach_chip(chip);
6725
6726 return 0;
6727}
6728
6729static void nand_detach(struct nand_chip *chip)
6730{
6731 if (chip->controller->ops && chip->controller->ops->detach_chip)
6732 chip->controller->ops->detach_chip(chip);
6733}
6734
David Woodhouse3b85c322006-09-25 17:06:53 +01006735/**
Miquel Raynal256c4fc2018-04-22 18:02:30 +02006736 * nand_scan_with_ids - [NAND Interface] Scan for the NAND device
Boris Brezillon00ad3782018-09-06 14:05:14 +02006737 * @chip: NAND chip object
Miquel Raynal49aa76b2018-07-25 15:31:42 +02006738 * @maxchips: number of chips to scan for. @nand_scan_ident() will not be run if
6739 * this parameter is zero (useful for specific drivers that must
6740 * handle this part of the process themselves, e.g docg4).
Miquel Raynal256c4fc2018-04-22 18:02:30 +02006741 * @ids: optional flash IDs table
David Woodhouse3b85c322006-09-25 17:06:53 +01006742 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07006743 * This fills out all the uninitialized function pointers with the defaults.
6744 * The flash ID is read and the mtd/chip structures are filled with the
Ezequiel García20c07a52016-04-01 18:29:23 -03006745 * appropriate values.
David Woodhouse3b85c322006-09-25 17:06:53 +01006746 */
Boris Brezillon00ad3782018-09-06 14:05:14 +02006747int nand_scan_with_ids(struct nand_chip *chip, int maxchips,
Miquel Raynal256c4fc2018-04-22 18:02:30 +02006748 struct nand_flash_dev *ids)
David Woodhouse3b85c322006-09-25 17:06:53 +01006749{
6750 int ret;
6751
Miquel Raynal49aa76b2018-07-25 15:31:42 +02006752 if (maxchips) {
Boris Brezillon00ad3782018-09-06 14:05:14 +02006753 ret = nand_scan_ident(chip, maxchips, ids);
Miquel Raynal49aa76b2018-07-25 15:31:42 +02006754 if (ret)
6755 return ret;
6756 }
Miquel Raynal05b54c72018-07-19 01:05:46 +02006757
6758 ret = nand_attach(chip);
6759 if (ret)
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02006760 goto cleanup_ident;
Miquel Raynal05b54c72018-07-19 01:05:46 +02006761
Boris Brezillon00ad3782018-09-06 14:05:14 +02006762 ret = nand_scan_tail(chip);
Miquel Raynal05b54c72018-07-19 01:05:46 +02006763 if (ret)
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02006764 goto detach_chip;
6765
6766 return 0;
6767
6768detach_chip:
6769 nand_detach(chip);
6770cleanup_ident:
6771 nand_scan_ident_cleanup(chip);
Miquel Raynal05b54c72018-07-19 01:05:46 +02006772
David Woodhouse3b85c322006-09-25 17:06:53 +01006773 return ret;
6774}
Miquel Raynal256c4fc2018-04-22 18:02:30 +02006775EXPORT_SYMBOL(nand_scan_with_ids);
David Woodhouse3b85c322006-09-25 17:06:53 +01006776
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777/**
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006778 * nand_cleanup - [NAND Interface] Free resources held by the NAND device
6779 * @chip: NAND chip object
Brian Norris8b6e50c2011-05-25 14:59:01 -07006780 */
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006781void nand_cleanup(struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782{
Rafał Miłeckie4225ae2016-04-17 22:53:07 +02006783 if (chip->ecc.mode == NAND_ECC_SOFT &&
Rafał Miłecki06f384c2016-04-17 22:53:05 +02006784 chip->ecc.algo == NAND_ECC_BCH)
Ivan Djelic193bd402011-03-11 11:05:33 +01006785 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
6786
Jesper Juhlfa671642005-11-07 01:01:27 -08006787 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02006788 kfree(chip->bbt);
Masahiro Yamadac0313b92017-12-05 17:47:16 +09006789 kfree(chip->data_buf);
6790 kfree(chip->ecc.code_buf);
6791 kfree(chip->ecc.calc_buf);
Brian Norris58373ff2010-07-15 12:15:44 -07006792
6793 /* Free bad block descriptor memory */
6794 if (chip->badblock_pattern && chip->badblock_pattern->options
6795 & NAND_BBT_DYNAMICSTRUCT)
6796 kfree(chip->badblock_pattern);
Boris Brezillonabbe26d2016-06-08 09:32:55 +02006797
6798 /* Free manufacturer priv data. */
6799 nand_manufacturer_cleanup(chip);
Miquel Raynal05b54c72018-07-19 01:05:46 +02006800
6801 /* Free controller specific allocations after chip identification */
6802 nand_detach(chip);
Miquel Raynal2023f1fa2018-07-25 15:31:51 +02006803
6804 /* Free identification phase allocations */
6805 nand_scan_ident_cleanup(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006806}
Miquel Raynal05b54c72018-07-19 01:05:46 +02006807
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006808EXPORT_SYMBOL_GPL(nand_cleanup);
6809
6810/**
6811 * nand_release - [NAND Interface] Unregister the MTD device and free resources
6812 * held by the NAND device
Boris Brezillon59ac2762018-09-06 14:05:15 +02006813 * @chip: NAND chip object
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006814 */
Boris Brezillon59ac2762018-09-06 14:05:15 +02006815void nand_release(struct nand_chip *chip)
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006816{
Boris Brezillon59ac2762018-09-06 14:05:15 +02006817 mtd_device_unregister(nand_to_mtd(chip));
6818 nand_cleanup(chip);
Richard Weinbergerd44154f2016-09-21 11:44:41 +02006819}
David Woodhousee0c7d762006-05-13 18:07:53 +01006820EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08006821
David Woodhousee0c7d762006-05-13 18:07:53 +01006822MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02006823MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
6824MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01006825MODULE_DESCRIPTION("Generic NAND flash driver code");