]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/mtd/nand/nand_base.c
mtd: Kill the OF_MTD Kconfig option
[mirror_ubuntu-zesty-kernel.git] / drivers / mtd / nand / nand_base.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * 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.
61b03bd7 5 *
1da177e4 6 * Additional technical information is available on
8b2b403c 7 * http://www.linux-mtd.infradead.org/doc/nand.html
61b03bd7 8 *
1da177e4 9 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
ace4dfee 10 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
1da177e4 11 *
ace4dfee 12 * Credits:
61b03bd7
TG
13 * David Woodhouse for adding multichip support
14 *
1da177e4
LT
15 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
16 * rework for 2K page size chips
17 *
ace4dfee 18 * TODO:
1da177e4
LT
19 * Enable cached programming for 2k page size chips
20 * Check, if mtd->ecctype should be set to MTD_ECC_HW
7854d3f7 21 * if we have HW ECC support.
c0b8ba7b 22 * BBT table is not serialized, has to be fixed
1da177e4 23 *
1da177e4
LT
24 * 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
20171642
EG
30#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
552d9205 32#include <linux/module.h>
1da177e4
LT
33#include <linux/delay.h>
34#include <linux/errno.h>
7aa65bfd 35#include <linux/err.h>
1da177e4
LT
36#include <linux/sched.h>
37#include <linux/slab.h>
66507c7b 38#include <linux/mm.h>
1da177e4
LT
39#include <linux/types.h>
40#include <linux/mtd/mtd.h>
41#include <linux/mtd/nand.h>
42#include <linux/mtd/nand_ecc.h>
193bd400 43#include <linux/mtd/nand_bch.h>
1da177e4
LT
44#include <linux/interrupt.h>
45#include <linux/bitops.h>
7351d3a5 46#include <linux/io.h>
1da177e4 47#include <linux/mtd/partitions.h>
d48f62b9 48#include <linux/of.h>
1da177e4 49
41b207a7
BB
50static int nand_get_device(struct mtd_info *mtd, int new_state);
51
52static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
53 struct mtd_oob_ops *ops);
1da177e4
LT
54
55/* Define default oob placement schemes for large and small page devices */
41b207a7
BB
56static int nand_ooblayout_ecc_sp(struct mtd_info *mtd, int section,
57 struct mtd_oob_region *oobregion)
58{
59 struct nand_chip *chip = mtd_to_nand(mtd);
60 struct nand_ecc_ctrl *ecc = &chip->ecc;
1da177e4 61
41b207a7
BB
62 if (section > 1)
63 return -ERANGE;
1da177e4 64
41b207a7
BB
65 if (!section) {
66 oobregion->offset = 0;
67 oobregion->length = 4;
68 } else {
69 oobregion->offset = 6;
70 oobregion->length = ecc->total - 4;
71 }
1da177e4 72
41b207a7
BB
73 return 0;
74}
75
76static int nand_ooblayout_free_sp(struct mtd_info *mtd, int section,
77 struct mtd_oob_region *oobregion)
78{
79 if (section > 1)
80 return -ERANGE;
1da177e4 81
41b207a7
BB
82 if (mtd->oobsize == 16) {
83 if (section)
84 return -ERANGE;
85
86 oobregion->length = 8;
87 oobregion->offset = 8;
88 } else {
89 oobregion->length = 2;
90 if (!section)
91 oobregion->offset = 3;
92 else
93 oobregion->offset = 6;
94 }
95
96 return 0;
97}
98
99const struct mtd_ooblayout_ops nand_ooblayout_sp_ops = {
100 .ecc = nand_ooblayout_ecc_sp,
101 .free = nand_ooblayout_free_sp,
81ec5364 102};
41b207a7 103EXPORT_SYMBOL_GPL(nand_ooblayout_sp_ops);
81ec5364 104
41b207a7
BB
105static int nand_ooblayout_ecc_lp(struct mtd_info *mtd, int section,
106 struct mtd_oob_region *oobregion)
107{
108 struct nand_chip *chip = mtd_to_nand(mtd);
109 struct nand_ecc_ctrl *ecc = &chip->ecc;
1da177e4 110
41b207a7
BB
111 if (section)
112 return -ERANGE;
8593fbc6 113
41b207a7
BB
114 oobregion->length = ecc->total;
115 oobregion->offset = mtd->oobsize - oobregion->length;
116
117 return 0;
118}
119
120static int nand_ooblayout_free_lp(struct mtd_info *mtd, int section,
121 struct mtd_oob_region *oobregion)
122{
123 struct nand_chip *chip = mtd_to_nand(mtd);
124 struct nand_ecc_ctrl *ecc = &chip->ecc;
125
126 if (section)
127 return -ERANGE;
128
129 oobregion->length = mtd->oobsize - ecc->total - 2;
130 oobregion->offset = 2;
131
132 return 0;
133}
134
135const struct mtd_ooblayout_ops nand_ooblayout_lp_ops = {
136 .ecc = nand_ooblayout_ecc_lp,
137 .free = nand_ooblayout_free_lp,
138};
139EXPORT_SYMBOL_GPL(nand_ooblayout_lp_ops);
d470a97c 140
6fe5a6ac
VS
141static int check_offs_len(struct mtd_info *mtd,
142 loff_t ofs, uint64_t len)
143{
862eba51 144 struct nand_chip *chip = mtd_to_nand(mtd);
6fe5a6ac
VS
145 int ret = 0;
146
147 /* Start address must align on block boundary */
daae74ca 148 if (ofs & ((1ULL << chip->phys_erase_shift) - 1)) {
289c0522 149 pr_debug("%s: unaligned address\n", __func__);
6fe5a6ac
VS
150 ret = -EINVAL;
151 }
152
153 /* Length must align on block boundary */
daae74ca 154 if (len & ((1ULL << chip->phys_erase_shift) - 1)) {
289c0522 155 pr_debug("%s: length not block aligned\n", __func__);
6fe5a6ac
VS
156 ret = -EINVAL;
157 }
158
6fe5a6ac
VS
159 return ret;
160}
161
1da177e4
LT
162/**
163 * nand_release_device - [GENERIC] release chip
8b6e50c9 164 * @mtd: MTD device structure
61b03bd7 165 *
b0bb6903 166 * Release chip lock and wake up anyone waiting on the device.
1da177e4 167 */
e0c7d767 168static void nand_release_device(struct mtd_info *mtd)
1da177e4 169{
862eba51 170 struct nand_chip *chip = mtd_to_nand(mtd);
1da177e4 171
a36ed299 172 /* Release the controller and the chip */
ace4dfee
TG
173 spin_lock(&chip->controller->lock);
174 chip->controller->active = NULL;
175 chip->state = FL_READY;
176 wake_up(&chip->controller->wq);
177 spin_unlock(&chip->controller->lock);
1da177e4
LT
178}
179
180/**
181 * nand_read_byte - [DEFAULT] read one byte from the chip
8b6e50c9 182 * @mtd: MTD device structure
1da177e4 183 *
7854d3f7 184 * Default read function for 8bit buswidth
1da177e4 185 */
58dd8f2b 186static uint8_t nand_read_byte(struct mtd_info *mtd)
1da177e4 187{
862eba51 188 struct nand_chip *chip = mtd_to_nand(mtd);
ace4dfee 189 return readb(chip->IO_ADDR_R);
1da177e4
LT
190}
191
1da177e4 192/**
7854d3f7 193 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
8b6e50c9 194 * @mtd: MTD device structure
1da177e4 195 *
7854d3f7
BN
196 * Default read function for 16bit buswidth with endianness conversion.
197 *
1da177e4 198 */
58dd8f2b 199static uint8_t nand_read_byte16(struct mtd_info *mtd)
1da177e4 200{
862eba51 201 struct nand_chip *chip = mtd_to_nand(mtd);
ace4dfee 202 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
1da177e4
LT
203}
204
1da177e4
LT
205/**
206 * nand_read_word - [DEFAULT] read one word from the chip
8b6e50c9 207 * @mtd: MTD device structure
1da177e4 208 *
7854d3f7 209 * Default read function for 16bit buswidth without endianness conversion.
1da177e4
LT
210 */
211static u16 nand_read_word(struct mtd_info *mtd)
212{
862eba51 213 struct nand_chip *chip = mtd_to_nand(mtd);
ace4dfee 214 return readw(chip->IO_ADDR_R);
1da177e4
LT
215}
216
1da177e4
LT
217/**
218 * nand_select_chip - [DEFAULT] control CE line
8b6e50c9
BN
219 * @mtd: MTD device structure
220 * @chipnr: chipnumber to select, -1 for deselect
1da177e4
LT
221 *
222 * Default select function for 1 chip devices.
223 */
ace4dfee 224static void nand_select_chip(struct mtd_info *mtd, int chipnr)
1da177e4 225{
862eba51 226 struct nand_chip *chip = mtd_to_nand(mtd);
ace4dfee
TG
227
228 switch (chipnr) {
1da177e4 229 case -1:
ace4dfee 230 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
1da177e4
LT
231 break;
232 case 0:
1da177e4
LT
233 break;
234
235 default:
236 BUG();
237 }
238}
239
05f78359
UKK
240/**
241 * nand_write_byte - [DEFAULT] write single byte to chip
242 * @mtd: MTD device structure
243 * @byte: value to write
244 *
245 * Default function to write a byte to I/O[7:0]
246 */
247static void nand_write_byte(struct mtd_info *mtd, uint8_t byte)
248{
862eba51 249 struct nand_chip *chip = mtd_to_nand(mtd);
05f78359
UKK
250
251 chip->write_buf(mtd, &byte, 1);
252}
253
254/**
255 * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16
256 * @mtd: MTD device structure
257 * @byte: value to write
258 *
259 * Default function to write a byte to I/O[7:0] on a 16-bit wide chip.
260 */
261static void nand_write_byte16(struct mtd_info *mtd, uint8_t byte)
262{
862eba51 263 struct nand_chip *chip = mtd_to_nand(mtd);
05f78359
UKK
264 uint16_t word = byte;
265
266 /*
267 * It's not entirely clear what should happen to I/O[15:8] when writing
268 * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads:
269 *
270 * When the host supports a 16-bit bus width, only data is
271 * transferred at the 16-bit width. All address and command line
272 * transfers shall use only the lower 8-bits of the data bus. During
273 * command transfers, the host may place any value on the upper
274 * 8-bits of the data bus. During address transfers, the host shall
275 * set the upper 8-bits of the data bus to 00h.
276 *
277 * One user of the write_byte callback is nand_onfi_set_features. The
278 * four parameters are specified to be written to I/O[7:0], but this is
279 * neither an address nor a command transfer. Let's assume a 0 on the
280 * upper I/O lines is OK.
281 */
282 chip->write_buf(mtd, (uint8_t *)&word, 2);
283}
284
1da177e4
LT
285/**
286 * nand_write_buf - [DEFAULT] write buffer to chip
8b6e50c9
BN
287 * @mtd: MTD device structure
288 * @buf: data buffer
289 * @len: number of bytes to write
1da177e4 290 *
7854d3f7 291 * Default write function for 8bit buswidth.
1da177e4 292 */
58dd8f2b 293static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
1da177e4 294{
862eba51 295 struct nand_chip *chip = mtd_to_nand(mtd);
1da177e4 296
76413839 297 iowrite8_rep(chip->IO_ADDR_W, buf, len);
1da177e4
LT
298}
299
300/**
61b03bd7 301 * nand_read_buf - [DEFAULT] read chip data into buffer
8b6e50c9
BN
302 * @mtd: MTD device structure
303 * @buf: buffer to store date
304 * @len: number of bytes to read
1da177e4 305 *
7854d3f7 306 * Default read function for 8bit buswidth.
1da177e4 307 */
58dd8f2b 308static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
1da177e4 309{
862eba51 310 struct nand_chip *chip = mtd_to_nand(mtd);
1da177e4 311
76413839 312 ioread8_rep(chip->IO_ADDR_R, buf, len);
1da177e4
LT
313}
314
1da177e4
LT
315/**
316 * nand_write_buf16 - [DEFAULT] write buffer to chip
8b6e50c9
BN
317 * @mtd: MTD device structure
318 * @buf: data buffer
319 * @len: number of bytes to write
1da177e4 320 *
7854d3f7 321 * Default write function for 16bit buswidth.
1da177e4 322 */
58dd8f2b 323static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
1da177e4 324{
862eba51 325 struct nand_chip *chip = mtd_to_nand(mtd);
1da177e4 326 u16 *p = (u16 *) buf;
61b03bd7 327
76413839 328 iowrite16_rep(chip->IO_ADDR_W, p, len >> 1);
1da177e4
LT
329}
330
331/**
61b03bd7 332 * nand_read_buf16 - [DEFAULT] read chip data into buffer
8b6e50c9
BN
333 * @mtd: MTD device structure
334 * @buf: buffer to store date
335 * @len: number of bytes to read
1da177e4 336 *
7854d3f7 337 * Default read function for 16bit buswidth.
1da177e4 338 */
58dd8f2b 339static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
1da177e4 340{
862eba51 341 struct nand_chip *chip = mtd_to_nand(mtd);
1da177e4 342 u16 *p = (u16 *) buf;
1da177e4 343
76413839 344 ioread16_rep(chip->IO_ADDR_R, p, len >> 1);
1da177e4
LT
345}
346
1da177e4
LT
347/**
348 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
8b6e50c9
BN
349 * @mtd: MTD device structure
350 * @ofs: offset from device start
1da177e4 351 *
61b03bd7 352 * Check, if the block is bad.
1da177e4 353 */
9f3e0429 354static int nand_block_bad(struct mtd_info *mtd, loff_t ofs)
1da177e4 355{
9f3e0429 356 int page, res = 0, i = 0;
862eba51 357 struct nand_chip *chip = mtd_to_nand(mtd);
1da177e4
LT
358 u16 bad;
359
5fb1549d 360 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
b60b08b0
KC
361 ofs += mtd->erasesize - mtd->writesize;
362
1a12f46a
TK
363 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
364
cdbec050
BN
365 do {
366 if (chip->options & NAND_BUSWIDTH_16) {
367 chip->cmdfunc(mtd, NAND_CMD_READOOB,
368 chip->badblockpos & 0xFE, page);
369 bad = cpu_to_le16(chip->read_word(mtd));
370 if (chip->badblockpos & 0x1)
371 bad >>= 8;
372 else
373 bad &= 0xFF;
374 } else {
375 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos,
376 page);
377 bad = chip->read_byte(mtd);
378 }
379
380 if (likely(chip->badblockbits == 8))
381 res = bad != 0xFF;
e0b58d0a 382 else
cdbec050
BN
383 res = hweight8(bad) < chip->badblockbits;
384 ofs += mtd->writesize;
385 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
386 i++;
387 } while (!res && i < 2 && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE));
e0b58d0a 388
1da177e4
LT
389 return res;
390}
391
392/**
5a0edb25 393 * nand_default_block_markbad - [DEFAULT] mark a block bad via bad block marker
8b6e50c9
BN
394 * @mtd: MTD device structure
395 * @ofs: offset from device start
1da177e4 396 *
8b6e50c9 397 * This is the default implementation, which can be overridden by a hardware
5a0edb25
BN
398 * specific driver. It provides the details for writing a bad block marker to a
399 * block.
400 */
401static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
402{
862eba51 403 struct nand_chip *chip = mtd_to_nand(mtd);
5a0edb25
BN
404 struct mtd_oob_ops ops;
405 uint8_t buf[2] = { 0, 0 };
406 int ret = 0, res, i = 0;
407
0ec56dc4 408 memset(&ops, 0, sizeof(ops));
5a0edb25
BN
409 ops.oobbuf = buf;
410 ops.ooboffs = chip->badblockpos;
411 if (chip->options & NAND_BUSWIDTH_16) {
412 ops.ooboffs &= ~0x01;
413 ops.len = ops.ooblen = 2;
414 } else {
415 ops.len = ops.ooblen = 1;
416 }
417 ops.mode = MTD_OPS_PLACE_OOB;
418
419 /* Write to first/last page(s) if necessary */
420 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
421 ofs += mtd->erasesize - mtd->writesize;
422 do {
423 res = nand_do_write_oob(mtd, ofs, &ops);
424 if (!ret)
425 ret = res;
426
427 i++;
428 ofs += mtd->writesize;
429 } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2);
430
431 return ret;
432}
433
434/**
435 * nand_block_markbad_lowlevel - mark a block bad
436 * @mtd: MTD device structure
437 * @ofs: offset from device start
438 *
439 * This function performs the generic NAND bad block marking steps (i.e., bad
440 * block table(s) and/or marker(s)). We only allow the hardware driver to
441 * specify how to write bad block markers to OOB (chip->block_markbad).
442 *
b32843b7 443 * We try operations in the following order:
e2414f4c 444 * (1) erase the affected block, to allow OOB marker to be written cleanly
b32843b7
BN
445 * (2) write bad block marker to OOB area of affected block (unless flag
446 * NAND_BBT_NO_OOB_BBM is present)
447 * (3) update the BBT
448 * Note that we retain the first error encountered in (2) or (3), finish the
e2414f4c 449 * procedures, and dump the error in the end.
1da177e4 450*/
5a0edb25 451static int nand_block_markbad_lowlevel(struct mtd_info *mtd, loff_t ofs)
1da177e4 452{
862eba51 453 struct nand_chip *chip = mtd_to_nand(mtd);
b32843b7 454 int res, ret = 0;
61b03bd7 455
b32843b7 456 if (!(chip->bbt_options & NAND_BBT_NO_OOB_BBM)) {
00918429
BN
457 struct erase_info einfo;
458
459 /* Attempt erase before marking OOB */
460 memset(&einfo, 0, sizeof(einfo));
461 einfo.mtd = mtd;
462 einfo.addr = ofs;
daae74ca 463 einfo.len = 1ULL << chip->phys_erase_shift;
00918429 464 nand_erase_nand(mtd, &einfo, 0);
1da177e4 465
b32843b7 466 /* Write bad block marker to OOB */
6a8214aa 467 nand_get_device(mtd, FL_WRITING);
5a0edb25 468 ret = chip->block_markbad(mtd, ofs);
c0b8ba7b 469 nand_release_device(mtd);
f1a28c02 470 }
e2414f4c 471
b32843b7
BN
472 /* Mark block bad in BBT */
473 if (chip->bbt) {
474 res = nand_markbad_bbt(mtd, ofs);
e2414f4c
BN
475 if (!ret)
476 ret = res;
477 }
478
f1a28c02
TG
479 if (!ret)
480 mtd->ecc_stats.badblocks++;
c0b8ba7b 481
f1a28c02 482 return ret;
1da177e4
LT
483}
484
61b03bd7 485/**
1da177e4 486 * nand_check_wp - [GENERIC] check if the chip is write protected
8b6e50c9 487 * @mtd: MTD device structure
1da177e4 488 *
8b6e50c9
BN
489 * Check, if the device is write protected. The function expects, that the
490 * device is already selected.
1da177e4 491 */
e0c7d767 492static int nand_check_wp(struct mtd_info *mtd)
1da177e4 493{
862eba51 494 struct nand_chip *chip = mtd_to_nand(mtd);
93edbad6 495
8b6e50c9 496 /* Broken xD cards report WP despite being writable */
93edbad6
ML
497 if (chip->options & NAND_BROKEN_XD)
498 return 0;
499
1da177e4 500 /* Check the WP bit */
ace4dfee
TG
501 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
502 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
1da177e4
LT
503}
504
8471bb73 505/**
c30e1f79 506 * nand_block_isreserved - [GENERIC] Check if a block is marked reserved.
8471bb73
EG
507 * @mtd: MTD device structure
508 * @ofs: offset from device start
509 *
c30e1f79 510 * Check if the block is marked as reserved.
8471bb73
EG
511 */
512static int nand_block_isreserved(struct mtd_info *mtd, loff_t ofs)
513{
862eba51 514 struct nand_chip *chip = mtd_to_nand(mtd);
8471bb73
EG
515
516 if (!chip->bbt)
517 return 0;
518 /* Return info from the table */
519 return nand_isreserved_bbt(mtd, ofs);
520}
521
1da177e4
LT
522/**
523 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
8b6e50c9
BN
524 * @mtd: MTD device structure
525 * @ofs: offset from device start
8b6e50c9 526 * @allowbbt: 1, if its allowed to access the bbt area
1da177e4
LT
527 *
528 * Check, if the block is bad. Either by reading the bad block table or
529 * calling of the scan function.
530 */
9f3e0429 531static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int allowbbt)
1da177e4 532{
862eba51 533 struct nand_chip *chip = mtd_to_nand(mtd);
61b03bd7 534
ace4dfee 535 if (!chip->bbt)
9f3e0429 536 return chip->block_bad(mtd, ofs);
61b03bd7 537
1da177e4 538 /* Return info from the table */
e0c7d767 539 return nand_isbad_bbt(mtd, ofs, allowbbt);
1da177e4
LT
540}
541
2af7c653
SK
542/**
543 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
8b6e50c9
BN
544 * @mtd: MTD device structure
545 * @timeo: Timeout
2af7c653
SK
546 *
547 * Helper function for nand_wait_ready used when needing to wait in interrupt
548 * context.
549 */
550static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
551{
862eba51 552 struct nand_chip *chip = mtd_to_nand(mtd);
2af7c653
SK
553 int i;
554
555 /* Wait for the device to get ready */
556 for (i = 0; i < timeo; i++) {
557 if (chip->dev_ready(mtd))
558 break;
559 touch_softlockup_watchdog();
560 mdelay(1);
561 }
562}
563
b70af9be
AS
564/**
565 * nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
566 * @mtd: MTD device structure
567 *
568 * Wait for the ready pin after a command, and warn if a timeout occurs.
569 */
4b648b02 570void nand_wait_ready(struct mtd_info *mtd)
3b88775c 571{
862eba51 572 struct nand_chip *chip = mtd_to_nand(mtd);
b70af9be 573 unsigned long timeo = 400;
3b88775c 574
2af7c653 575 if (in_interrupt() || oops_in_progress)
b70af9be 576 return panic_nand_wait_ready(mtd, timeo);
2af7c653 577
7854d3f7 578 /* Wait until command is processed or timeout occurs */
b70af9be 579 timeo = jiffies + msecs_to_jiffies(timeo);
3b88775c 580 do {
ace4dfee 581 if (chip->dev_ready(mtd))
4c7e054f 582 return;
b70af9be 583 cond_resched();
61b03bd7 584 } while (time_before(jiffies, timeo));
b70af9be 585
9ebfdf5b
BN
586 if (!chip->dev_ready(mtd))
587 pr_warn_ratelimited("timeout while waiting for chip to become ready\n");
3b88775c 588}
4b648b02 589EXPORT_SYMBOL_GPL(nand_wait_ready);
3b88775c 590
60c70d66
RQ
591/**
592 * nand_wait_status_ready - [GENERIC] Wait for the ready status after commands.
593 * @mtd: MTD device structure
594 * @timeo: Timeout in ms
595 *
596 * Wait for status ready (i.e. command done) or timeout.
597 */
598static void nand_wait_status_ready(struct mtd_info *mtd, unsigned long timeo)
599{
862eba51 600 register struct nand_chip *chip = mtd_to_nand(mtd);
60c70d66
RQ
601
602 timeo = jiffies + msecs_to_jiffies(timeo);
603 do {
604 if ((chip->read_byte(mtd) & NAND_STATUS_READY))
605 break;
606 touch_softlockup_watchdog();
607 } while (time_before(jiffies, timeo));
608};
609
1da177e4
LT
610/**
611 * nand_command - [DEFAULT] Send command to NAND device
8b6e50c9
BN
612 * @mtd: MTD device structure
613 * @command: the command to be sent
614 * @column: the column address for this command, -1 if none
615 * @page_addr: the page address for this command, -1 if none
1da177e4 616 *
8b6e50c9 617 * Send command to NAND device. This function is used for small page devices
51148f1f 618 * (512 Bytes per page).
1da177e4 619 */
7abd3ef9
TG
620static void nand_command(struct mtd_info *mtd, unsigned int command,
621 int column, int page_addr)
1da177e4 622{
862eba51 623 register struct nand_chip *chip = mtd_to_nand(mtd);
7abd3ef9 624 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
1da177e4 625
8b6e50c9 626 /* Write out the command to the device */
1da177e4
LT
627 if (command == NAND_CMD_SEQIN) {
628 int readcmd;
629
28318776 630 if (column >= mtd->writesize) {
1da177e4 631 /* OOB area */
28318776 632 column -= mtd->writesize;
1da177e4
LT
633 readcmd = NAND_CMD_READOOB;
634 } else if (column < 256) {
635 /* First 256 bytes --> READ0 */
636 readcmd = NAND_CMD_READ0;
637 } else {
638 column -= 256;
639 readcmd = NAND_CMD_READ1;
640 }
ace4dfee 641 chip->cmd_ctrl(mtd, readcmd, ctrl);
7abd3ef9 642 ctrl &= ~NAND_CTRL_CHANGE;
1da177e4 643 }
ace4dfee 644 chip->cmd_ctrl(mtd, command, ctrl);
1da177e4 645
8b6e50c9 646 /* Address cycle, when necessary */
7abd3ef9
TG
647 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
648 /* Serially input address */
649 if (column != -1) {
650 /* Adjust columns for 16 bit buswidth */
3dad2344
BN
651 if (chip->options & NAND_BUSWIDTH_16 &&
652 !nand_opcode_8bits(command))
7abd3ef9 653 column >>= 1;
ace4dfee 654 chip->cmd_ctrl(mtd, column, ctrl);
7abd3ef9
TG
655 ctrl &= ~NAND_CTRL_CHANGE;
656 }
657 if (page_addr != -1) {
ace4dfee 658 chip->cmd_ctrl(mtd, page_addr, ctrl);
7abd3ef9 659 ctrl &= ~NAND_CTRL_CHANGE;
ace4dfee 660 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
7abd3ef9 661 /* One more address cycle for devices > 32MiB */
ace4dfee
TG
662 if (chip->chipsize > (32 << 20))
663 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
1da177e4 664 }
ace4dfee 665 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
61b03bd7
TG
666
667 /*
8b6e50c9
BN
668 * Program and erase have their own busy handlers status and sequential
669 * in needs no delay
e0c7d767 670 */
1da177e4 671 switch (command) {
61b03bd7 672
1da177e4
LT
673 case NAND_CMD_PAGEPROG:
674 case NAND_CMD_ERASE1:
675 case NAND_CMD_ERASE2:
676 case NAND_CMD_SEQIN:
677 case NAND_CMD_STATUS:
678 return;
679
680 case NAND_CMD_RESET:
ace4dfee 681 if (chip->dev_ready)
1da177e4 682 break;
ace4dfee
TG
683 udelay(chip->chip_delay);
684 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
7abd3ef9 685 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
12efdde3
TG
686 chip->cmd_ctrl(mtd,
687 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
60c70d66
RQ
688 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
689 nand_wait_status_ready(mtd, 250);
1da177e4
LT
690 return;
691
e0c7d767 692 /* This applies to read commands */
1da177e4 693 default:
61b03bd7 694 /*
1da177e4
LT
695 * If we don't have access to the busy pin, we apply the given
696 * command delay
e0c7d767 697 */
ace4dfee
TG
698 if (!chip->dev_ready) {
699 udelay(chip->chip_delay);
1da177e4 700 return;
61b03bd7 701 }
1da177e4 702 }
8b6e50c9
BN
703 /*
704 * Apply this short delay always to ensure that we do wait tWB in
705 * any case on any machine.
706 */
e0c7d767 707 ndelay(100);
3b88775c
TG
708
709 nand_wait_ready(mtd);
1da177e4
LT
710}
711
712/**
713 * nand_command_lp - [DEFAULT] Send command to NAND large page device
8b6e50c9
BN
714 * @mtd: MTD device structure
715 * @command: the command to be sent
716 * @column: the column address for this command, -1 if none
717 * @page_addr: the page address for this command, -1 if none
1da177e4 718 *
7abd3ef9 719 * Send command to NAND device. This is the version for the new large page
7854d3f7
BN
720 * devices. We don't have the separate regions as we have in the small page
721 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
1da177e4 722 */
7abd3ef9
TG
723static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
724 int column, int page_addr)
1da177e4 725{
862eba51 726 register struct nand_chip *chip = mtd_to_nand(mtd);
1da177e4
LT
727
728 /* Emulate NAND_CMD_READOOB */
729 if (command == NAND_CMD_READOOB) {
28318776 730 column += mtd->writesize;
1da177e4
LT
731 command = NAND_CMD_READ0;
732 }
61b03bd7 733
7abd3ef9 734 /* Command latch cycle */
fb066ada 735 chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
1da177e4
LT
736
737 if (column != -1 || page_addr != -1) {
7abd3ef9 738 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
1da177e4
LT
739
740 /* Serially input address */
741 if (column != -1) {
742 /* Adjust columns for 16 bit buswidth */
3dad2344
BN
743 if (chip->options & NAND_BUSWIDTH_16 &&
744 !nand_opcode_8bits(command))
1da177e4 745 column >>= 1;
ace4dfee 746 chip->cmd_ctrl(mtd, column, ctrl);
7abd3ef9 747 ctrl &= ~NAND_CTRL_CHANGE;
fde85cfd
BB
748
749 /* Only ouput a single addr cycle for 8bits opcodes. */
750 if (!nand_opcode_8bits(command))
751 chip->cmd_ctrl(mtd, column >> 8, ctrl);
61b03bd7 752 }
1da177e4 753 if (page_addr != -1) {
ace4dfee
TG
754 chip->cmd_ctrl(mtd, page_addr, ctrl);
755 chip->cmd_ctrl(mtd, page_addr >> 8,
7abd3ef9 756 NAND_NCE | NAND_ALE);
1da177e4 757 /* One more address cycle for devices > 128MiB */
ace4dfee
TG
758 if (chip->chipsize > (128 << 20))
759 chip->cmd_ctrl(mtd, page_addr >> 16,
7abd3ef9 760 NAND_NCE | NAND_ALE);
1da177e4 761 }
1da177e4 762 }
ace4dfee 763 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
61b03bd7
TG
764
765 /*
8b6e50c9 766 * Program and erase have their own busy handlers status, sequential
7a442f17 767 * in and status need no delay.
30f464b7 768 */
1da177e4 769 switch (command) {
61b03bd7 770
1da177e4
LT
771 case NAND_CMD_CACHEDPROG:
772 case NAND_CMD_PAGEPROG:
773 case NAND_CMD_ERASE1:
774 case NAND_CMD_ERASE2:
775 case NAND_CMD_SEQIN:
7bc3312b 776 case NAND_CMD_RNDIN:
1da177e4 777 case NAND_CMD_STATUS:
30f464b7 778 return;
1da177e4
LT
779
780 case NAND_CMD_RESET:
ace4dfee 781 if (chip->dev_ready)
1da177e4 782 break;
ace4dfee 783 udelay(chip->chip_delay);
12efdde3
TG
784 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
785 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
786 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
787 NAND_NCE | NAND_CTRL_CHANGE);
60c70d66
RQ
788 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
789 nand_wait_status_ready(mtd, 250);
1da177e4
LT
790 return;
791
7bc3312b
TG
792 case NAND_CMD_RNDOUT:
793 /* No ready / busy check necessary */
794 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
795 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
796 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
797 NAND_NCE | NAND_CTRL_CHANGE);
798 return;
799
1da177e4 800 case NAND_CMD_READ0:
12efdde3
TG
801 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
802 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
803 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
804 NAND_NCE | NAND_CTRL_CHANGE);
61b03bd7 805
e0c7d767 806 /* This applies to read commands */
1da177e4 807 default:
61b03bd7 808 /*
1da177e4 809 * If we don't have access to the busy pin, we apply the given
8b6e50c9 810 * command delay.
e0c7d767 811 */
ace4dfee
TG
812 if (!chip->dev_ready) {
813 udelay(chip->chip_delay);
1da177e4 814 return;
61b03bd7 815 }
1da177e4 816 }
3b88775c 817
8b6e50c9
BN
818 /*
819 * Apply this short delay always to ensure that we do wait tWB in
820 * any case on any machine.
821 */
e0c7d767 822 ndelay(100);
3b88775c
TG
823
824 nand_wait_ready(mtd);
1da177e4
LT
825}
826
2af7c653
SK
827/**
828 * panic_nand_get_device - [GENERIC] Get chip for selected access
8b6e50c9
BN
829 * @chip: the nand chip descriptor
830 * @mtd: MTD device structure
831 * @new_state: the state which is requested
2af7c653
SK
832 *
833 * Used when in panic, no locks are taken.
834 */
835static void panic_nand_get_device(struct nand_chip *chip,
836 struct mtd_info *mtd, int new_state)
837{
7854d3f7 838 /* Hardware controller shared among independent devices */
2af7c653
SK
839 chip->controller->active = chip;
840 chip->state = new_state;
841}
842
1da177e4
LT
843/**
844 * nand_get_device - [GENERIC] Get chip for selected access
8b6e50c9
BN
845 * @mtd: MTD device structure
846 * @new_state: the state which is requested
1da177e4
LT
847 *
848 * Get the device and lock it for exclusive access
849 */
2c0a2bed 850static int
6a8214aa 851nand_get_device(struct mtd_info *mtd, int new_state)
1da177e4 852{
862eba51 853 struct nand_chip *chip = mtd_to_nand(mtd);
ace4dfee
TG
854 spinlock_t *lock = &chip->controller->lock;
855 wait_queue_head_t *wq = &chip->controller->wq;
e0c7d767 856 DECLARE_WAITQUEUE(wait, current);
7351d3a5 857retry:
0dfc6246
TG
858 spin_lock(lock);
859
b8b3ee9a 860 /* Hardware controller shared among independent devices */
ace4dfee
TG
861 if (!chip->controller->active)
862 chip->controller->active = chip;
a36ed299 863
ace4dfee
TG
864 if (chip->controller->active == chip && chip->state == FL_READY) {
865 chip->state = new_state;
0dfc6246 866 spin_unlock(lock);
962034f4
VW
867 return 0;
868 }
869 if (new_state == FL_PM_SUSPENDED) {
6b0d9a84
LY
870 if (chip->controller->active->state == FL_PM_SUSPENDED) {
871 chip->state = FL_PM_SUSPENDED;
872 spin_unlock(lock);
873 return 0;
6b0d9a84 874 }
0dfc6246
TG
875 }
876 set_current_state(TASK_UNINTERRUPTIBLE);
877 add_wait_queue(wq, &wait);
878 spin_unlock(lock);
879 schedule();
880 remove_wait_queue(wq, &wait);
1da177e4
LT
881 goto retry;
882}
883
2af7c653 884/**
8b6e50c9
BN
885 * panic_nand_wait - [GENERIC] wait until the command is done
886 * @mtd: MTD device structure
887 * @chip: NAND chip structure
888 * @timeo: timeout
2af7c653
SK
889 *
890 * Wait for command done. This is a helper function for nand_wait used when
891 * we are in interrupt context. May happen when in panic and trying to write
b595076a 892 * an oops through mtdoops.
2af7c653
SK
893 */
894static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
895 unsigned long timeo)
896{
897 int i;
898 for (i = 0; i < timeo; i++) {
899 if (chip->dev_ready) {
900 if (chip->dev_ready(mtd))
901 break;
902 } else {
903 if (chip->read_byte(mtd) & NAND_STATUS_READY)
904 break;
905 }
906 mdelay(1);
f8ac0414 907 }
2af7c653
SK
908}
909
1da177e4 910/**
8b6e50c9
BN
911 * nand_wait - [DEFAULT] wait until the command is done
912 * @mtd: MTD device structure
913 * @chip: NAND chip structure
1da177e4 914 *
b70af9be 915 * Wait for command done. This applies to erase and program only.
844d3b42 916 */
7bc3312b 917static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
1da177e4
LT
918{
919
b70af9be
AS
920 int status;
921 unsigned long timeo = 400;
1da177e4 922
8b6e50c9
BN
923 /*
924 * Apply this short delay always to ensure that we do wait tWB in any
925 * case on any machine.
926 */
e0c7d767 927 ndelay(100);
1da177e4 928
14c65786 929 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
1da177e4 930
2af7c653
SK
931 if (in_interrupt() || oops_in_progress)
932 panic_nand_wait(mtd, chip, timeo);
933 else {
6d2559f8 934 timeo = jiffies + msecs_to_jiffies(timeo);
b70af9be 935 do {
2af7c653
SK
936 if (chip->dev_ready) {
937 if (chip->dev_ready(mtd))
938 break;
939 } else {
940 if (chip->read_byte(mtd) & NAND_STATUS_READY)
941 break;
942 }
943 cond_resched();
b70af9be 944 } while (time_before(jiffies, timeo));
1da177e4 945 }
8fe833c1 946
ace4dfee 947 status = (int)chip->read_byte(mtd);
f251b8df
MC
948 /* This can happen if in case of timeout or buggy dev_ready */
949 WARN_ON(!(status & NAND_STATUS_READY));
1da177e4
LT
950 return status;
951}
952
d8e725dd
BB
953/**
954 * nand_reset_data_interface - Reset data interface and timings
955 * @chip: The NAND chip
956 *
957 * Reset the Data interface and timings to ONFI mode 0.
958 *
959 * Returns 0 for success or negative error code otherwise.
960 */
961static int nand_reset_data_interface(struct nand_chip *chip)
962{
963 struct mtd_info *mtd = nand_to_mtd(chip);
964 const struct nand_data_interface *conf;
965 int ret;
966
967 if (!chip->setup_data_interface)
968 return 0;
969
970 /*
971 * The ONFI specification says:
972 * "
973 * To transition from NV-DDR or NV-DDR2 to the SDR data
974 * interface, the host shall use the Reset (FFh) command
975 * using SDR timing mode 0. A device in any timing mode is
976 * required to recognize Reset (FFh) command issued in SDR
977 * timing mode 0.
978 * "
979 *
980 * Configure the data interface in SDR mode and set the
981 * timings to timing mode 0.
982 */
983
984 conf = nand_get_default_data_interface();
985 ret = chip->setup_data_interface(mtd, conf, false);
986 if (ret)
987 pr_err("Failed to configure data interface to SDR timing mode 0\n");
988
989 return ret;
990}
991
992/**
993 * nand_setup_data_interface - Setup the best data interface and timings
994 * @chip: The NAND chip
995 *
996 * Find and configure the best data interface and NAND timings supported by
997 * the chip and the driver.
998 * First tries to retrieve supported timing modes from ONFI information,
999 * and if the NAND chip does not support ONFI, relies on the
1000 * ->onfi_timing_mode_default specified in the nand_ids table.
1001 *
1002 * Returns 0 for success or negative error code otherwise.
1003 */
1004static int nand_setup_data_interface(struct nand_chip *chip)
1005{
1006 struct mtd_info *mtd = nand_to_mtd(chip);
1007 int ret;
1008
1009 if (!chip->setup_data_interface || !chip->data_interface)
1010 return 0;
1011
1012 /*
1013 * Ensure the timing mode has been changed on the chip side
1014 * before changing timings on the controller side.
1015 */
1016 if (chip->onfi_version) {
1017 u8 tmode_param[ONFI_SUBFEATURE_PARAM_LEN] = {
1018 chip->onfi_timing_mode_default,
1019 };
1020
1021 ret = chip->onfi_set_features(mtd, chip,
1022 ONFI_FEATURE_ADDR_TIMING_MODE,
1023 tmode_param);
1024 if (ret)
1025 goto err;
1026 }
1027
1028 ret = chip->setup_data_interface(mtd, chip->data_interface, false);
1029err:
1030 return ret;
1031}
1032
1033/**
1034 * nand_init_data_interface - find the best data interface and timings
1035 * @chip: The NAND chip
1036 *
1037 * Find the best data interface and NAND timings supported by the chip
1038 * and the driver.
1039 * First tries to retrieve supported timing modes from ONFI information,
1040 * and if the NAND chip does not support ONFI, relies on the
1041 * ->onfi_timing_mode_default specified in the nand_ids table. After this
1042 * function nand_chip->data_interface is initialized with the best timing mode
1043 * available.
1044 *
1045 * Returns 0 for success or negative error code otherwise.
1046 */
1047static int nand_init_data_interface(struct nand_chip *chip)
1048{
1049 struct mtd_info *mtd = nand_to_mtd(chip);
1050 int modes, mode, ret;
1051
1052 if (!chip->setup_data_interface)
1053 return 0;
1054
1055 /*
1056 * First try to identify the best timings from ONFI parameters and
1057 * if the NAND does not support ONFI, fallback to the default ONFI
1058 * timing mode.
1059 */
1060 modes = onfi_get_async_timing_mode(chip);
1061 if (modes == ONFI_TIMING_MODE_UNKNOWN) {
1062 if (!chip->onfi_timing_mode_default)
1063 return 0;
1064
1065 modes = GENMASK(chip->onfi_timing_mode_default, 0);
1066 }
1067
1068 chip->data_interface = kzalloc(sizeof(*chip->data_interface),
1069 GFP_KERNEL);
1070 if (!chip->data_interface)
1071 return -ENOMEM;
1072
1073 for (mode = fls(modes) - 1; mode >= 0; mode--) {
1074 ret = onfi_init_data_interface(chip, chip->data_interface,
1075 NAND_SDR_IFACE, mode);
1076 if (ret)
1077 continue;
1078
1079 ret = chip->setup_data_interface(mtd, chip->data_interface,
1080 true);
1081 if (!ret) {
1082 chip->onfi_timing_mode_default = mode;
1083 break;
1084 }
1085 }
1086
1087 return 0;
1088}
1089
1090static void nand_release_data_interface(struct nand_chip *chip)
1091{
1092 kfree(chip->data_interface);
1093}
1094
2f94abfe
SH
1095/**
1096 * nand_reset - Reset and initialize a NAND device
1097 * @chip: The NAND chip
1098 *
1099 * Returns 0 for success or negative error code otherwise
1100 */
1101int nand_reset(struct nand_chip *chip)
1102{
1103 struct mtd_info *mtd = nand_to_mtd(chip);
d8e725dd
BB
1104 int ret;
1105
1106 ret = nand_reset_data_interface(chip);
1107 if (ret)
1108 return ret;
2f94abfe
SH
1109
1110 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
1111
d8e725dd
BB
1112 ret = nand_setup_data_interface(chip);
1113 if (ret)
1114 return ret;
1115
2f94abfe
SH
1116 return 0;
1117}
1118
7d70f334 1119/**
b6d676db 1120 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
b6d676db
RD
1121 * @mtd: mtd info
1122 * @ofs: offset to start unlock from
1123 * @len: length to unlock
8b6e50c9
BN
1124 * @invert: when = 0, unlock the range of blocks within the lower and
1125 * upper boundary address
1126 * when = 1, unlock the range of blocks outside the boundaries
1127 * of the lower and upper boundary address
7d70f334 1128 *
8b6e50c9 1129 * Returs unlock status.
7d70f334
VS
1130 */
1131static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
1132 uint64_t len, int invert)
1133{
1134 int ret = 0;
1135 int status, page;
862eba51 1136 struct nand_chip *chip = mtd_to_nand(mtd);
7d70f334
VS
1137
1138 /* Submit address of first page to unlock */
1139 page = ofs >> chip->page_shift;
1140 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
1141
1142 /* Submit address of last page to unlock */
1143 page = (ofs + len) >> chip->page_shift;
1144 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
1145 (page | invert) & chip->pagemask);
1146
1147 /* Call wait ready function */
1148 status = chip->waitfunc(mtd, chip);
7d70f334 1149 /* See if device thinks it succeeded */
74830966 1150 if (status & NAND_STATUS_FAIL) {
289c0522 1151 pr_debug("%s: error status = 0x%08x\n",
7d70f334
VS
1152 __func__, status);
1153 ret = -EIO;
1154 }
1155
1156 return ret;
1157}
1158
1159/**
b6d676db 1160 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
b6d676db
RD
1161 * @mtd: mtd info
1162 * @ofs: offset to start unlock from
1163 * @len: length to unlock
7d70f334 1164 *
8b6e50c9 1165 * Returns unlock status.
7d70f334
VS
1166 */
1167int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1168{
1169 int ret = 0;
1170 int chipnr;
862eba51 1171 struct nand_chip *chip = mtd_to_nand(mtd);
7d70f334 1172
289c0522 1173 pr_debug("%s: start = 0x%012llx, len = %llu\n",
7d70f334
VS
1174 __func__, (unsigned long long)ofs, len);
1175
1176 if (check_offs_len(mtd, ofs, len))
b1a2348a 1177 return -EINVAL;
7d70f334
VS
1178
1179 /* Align to last block address if size addresses end of the device */
1180 if (ofs + len == mtd->size)
1181 len -= mtd->erasesize;
1182
6a8214aa 1183 nand_get_device(mtd, FL_UNLOCKING);
7d70f334
VS
1184
1185 /* Shift to get chip number */
1186 chipnr = ofs >> chip->chip_shift;
1187
1188 chip->select_chip(mtd, chipnr);
1189
57d3a9a8
WD
1190 /*
1191 * Reset the chip.
1192 * If we want to check the WP through READ STATUS and check the bit 7
1193 * we must reset the chip
1194 * some operation can also clear the bit 7 of status register
1195 * eg. erase/program a locked block
1196 */
2f94abfe 1197 nand_reset(chip);
57d3a9a8 1198
7d70f334
VS
1199 /* Check, if it is write protected */
1200 if (nand_check_wp(mtd)) {
289c0522 1201 pr_debug("%s: device is write protected!\n",
7d70f334
VS
1202 __func__);
1203 ret = -EIO;
1204 goto out;
1205 }
1206
1207 ret = __nand_unlock(mtd, ofs, len, 0);
1208
1209out:
b0bb6903 1210 chip->select_chip(mtd, -1);
7d70f334
VS
1211 nand_release_device(mtd);
1212
1213 return ret;
1214}
7351d3a5 1215EXPORT_SYMBOL(nand_unlock);
7d70f334
VS
1216
1217/**
b6d676db 1218 * nand_lock - [REPLACEABLE] locks all blocks present in the device
b6d676db
RD
1219 * @mtd: mtd info
1220 * @ofs: offset to start unlock from
1221 * @len: length to unlock
7d70f334 1222 *
8b6e50c9
BN
1223 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
1224 * have this feature, but it allows only to lock all blocks, not for specified
1225 * range for block. Implementing 'lock' feature by making use of 'unlock', for
1226 * now.
7d70f334 1227 *
8b6e50c9 1228 * Returns lock status.
7d70f334
VS
1229 */
1230int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1231{
1232 int ret = 0;
1233 int chipnr, status, page;
862eba51 1234 struct nand_chip *chip = mtd_to_nand(mtd);
7d70f334 1235
289c0522 1236 pr_debug("%s: start = 0x%012llx, len = %llu\n",
7d70f334
VS
1237 __func__, (unsigned long long)ofs, len);
1238
1239 if (check_offs_len(mtd, ofs, len))
b1a2348a 1240 return -EINVAL;
7d70f334 1241
6a8214aa 1242 nand_get_device(mtd, FL_LOCKING);
7d70f334
VS
1243
1244 /* Shift to get chip number */
1245 chipnr = ofs >> chip->chip_shift;
1246
1247 chip->select_chip(mtd, chipnr);
1248
57d3a9a8
WD
1249 /*
1250 * Reset the chip.
1251 * If we want to check the WP through READ STATUS and check the bit 7
1252 * we must reset the chip
1253 * some operation can also clear the bit 7 of status register
1254 * eg. erase/program a locked block
1255 */
2f94abfe 1256 nand_reset(chip);
57d3a9a8 1257
7d70f334
VS
1258 /* Check, if it is write protected */
1259 if (nand_check_wp(mtd)) {
289c0522 1260 pr_debug("%s: device is write protected!\n",
7d70f334
VS
1261 __func__);
1262 status = MTD_ERASE_FAILED;
1263 ret = -EIO;
1264 goto out;
1265 }
1266
1267 /* Submit address of first page to lock */
1268 page = ofs >> chip->page_shift;
1269 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1270
1271 /* Call wait ready function */
1272 status = chip->waitfunc(mtd, chip);
7d70f334 1273 /* See if device thinks it succeeded */
74830966 1274 if (status & NAND_STATUS_FAIL) {
289c0522 1275 pr_debug("%s: error status = 0x%08x\n",
7d70f334
VS
1276 __func__, status);
1277 ret = -EIO;
1278 goto out;
1279 }
1280
1281 ret = __nand_unlock(mtd, ofs, len, 0x1);
1282
1283out:
b0bb6903 1284 chip->select_chip(mtd, -1);
7d70f334
VS
1285 nand_release_device(mtd);
1286
1287 return ret;
1288}
7351d3a5 1289EXPORT_SYMBOL(nand_lock);
7d70f334 1290
730a43fb
BB
1291/**
1292 * nand_check_erased_buf - check if a buffer contains (almost) only 0xff data
1293 * @buf: buffer to test
1294 * @len: buffer length
1295 * @bitflips_threshold: maximum number of bitflips
1296 *
1297 * Check if a buffer contains only 0xff, which means the underlying region
1298 * has been erased and is ready to be programmed.
1299 * The bitflips_threshold specify the maximum number of bitflips before
1300 * considering the region is not erased.
1301 * Note: The logic of this function has been extracted from the memweight
1302 * implementation, except that nand_check_erased_buf function exit before
1303 * testing the whole buffer if the number of bitflips exceed the
1304 * bitflips_threshold value.
1305 *
1306 * Returns a positive number of bitflips less than or equal to
1307 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1308 * threshold.
1309 */
1310static int nand_check_erased_buf(void *buf, int len, int bitflips_threshold)
1311{
1312 const unsigned char *bitmap = buf;
1313 int bitflips = 0;
1314 int weight;
1315
1316 for (; len && ((uintptr_t)bitmap) % sizeof(long);
1317 len--, bitmap++) {
1318 weight = hweight8(*bitmap);
1319 bitflips += BITS_PER_BYTE - weight;
1320 if (unlikely(bitflips > bitflips_threshold))
1321 return -EBADMSG;
1322 }
1323
1324 for (; len >= sizeof(long);
1325 len -= sizeof(long), bitmap += sizeof(long)) {
1326 weight = hweight_long(*((unsigned long *)bitmap));
1327 bitflips += BITS_PER_LONG - weight;
1328 if (unlikely(bitflips > bitflips_threshold))
1329 return -EBADMSG;
1330 }
1331
1332 for (; len > 0; len--, bitmap++) {
1333 weight = hweight8(*bitmap);
1334 bitflips += BITS_PER_BYTE - weight;
1335 if (unlikely(bitflips > bitflips_threshold))
1336 return -EBADMSG;
1337 }
1338
1339 return bitflips;
1340}
1341
1342/**
1343 * nand_check_erased_ecc_chunk - check if an ECC chunk contains (almost) only
1344 * 0xff data
1345 * @data: data buffer to test
1346 * @datalen: data length
1347 * @ecc: ECC buffer
1348 * @ecclen: ECC length
1349 * @extraoob: extra OOB buffer
1350 * @extraooblen: extra OOB length
1351 * @bitflips_threshold: maximum number of bitflips
1352 *
1353 * Check if a data buffer and its associated ECC and OOB data contains only
1354 * 0xff pattern, which means the underlying region has been erased and is
1355 * ready to be programmed.
1356 * The bitflips_threshold specify the maximum number of bitflips before
1357 * considering the region as not erased.
1358 *
1359 * Note:
1360 * 1/ ECC algorithms are working on pre-defined block sizes which are usually
1361 * different from the NAND page size. When fixing bitflips, ECC engines will
1362 * report the number of errors per chunk, and the NAND core infrastructure
1363 * expect you to return the maximum number of bitflips for the whole page.
1364 * This is why you should always use this function on a single chunk and
1365 * not on the whole page. After checking each chunk you should update your
1366 * max_bitflips value accordingly.
1367 * 2/ When checking for bitflips in erased pages you should not only check
1368 * the payload data but also their associated ECC data, because a user might
1369 * have programmed almost all bits to 1 but a few. In this case, we
1370 * shouldn't consider the chunk as erased, and checking ECC bytes prevent
1371 * this case.
1372 * 3/ The extraoob argument is optional, and should be used if some of your OOB
1373 * data are protected by the ECC engine.
1374 * It could also be used if you support subpages and want to attach some
1375 * extra OOB data to an ECC chunk.
1376 *
1377 * Returns a positive number of bitflips less than or equal to
1378 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1379 * threshold. In case of success, the passed buffers are filled with 0xff.
1380 */
1381int nand_check_erased_ecc_chunk(void *data, int datalen,
1382 void *ecc, int ecclen,
1383 void *extraoob, int extraooblen,
1384 int bitflips_threshold)
1385{
1386 int data_bitflips = 0, ecc_bitflips = 0, extraoob_bitflips = 0;
1387
1388 data_bitflips = nand_check_erased_buf(data, datalen,
1389 bitflips_threshold);
1390 if (data_bitflips < 0)
1391 return data_bitflips;
1392
1393 bitflips_threshold -= data_bitflips;
1394
1395 ecc_bitflips = nand_check_erased_buf(ecc, ecclen, bitflips_threshold);
1396 if (ecc_bitflips < 0)
1397 return ecc_bitflips;
1398
1399 bitflips_threshold -= ecc_bitflips;
1400
1401 extraoob_bitflips = nand_check_erased_buf(extraoob, extraooblen,
1402 bitflips_threshold);
1403 if (extraoob_bitflips < 0)
1404 return extraoob_bitflips;
1405
1406 if (data_bitflips)
1407 memset(data, 0xff, datalen);
1408
1409 if (ecc_bitflips)
1410 memset(ecc, 0xff, ecclen);
1411
1412 if (extraoob_bitflips)
1413 memset(extraoob, 0xff, extraooblen);
1414
1415 return data_bitflips + ecc_bitflips + extraoob_bitflips;
1416}
1417EXPORT_SYMBOL(nand_check_erased_ecc_chunk);
1418
8593fbc6 1419/**
7854d3f7 1420 * nand_read_page_raw - [INTERN] read raw page data without ecc
8b6e50c9
BN
1421 * @mtd: mtd info structure
1422 * @chip: nand chip info structure
1423 * @buf: buffer to store read data
1fbb938d 1424 * @oob_required: caller requires OOB data read to chip->oob_poi
8b6e50c9 1425 * @page: page number to read
52ff49df 1426 *
7854d3f7 1427 * Not for syndrome calculating ECC controllers, which use a special oob layout.
8593fbc6
TG
1428 */
1429static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1fbb938d 1430 uint8_t *buf, int oob_required, int page)
8593fbc6
TG
1431{
1432 chip->read_buf(mtd, buf, mtd->writesize);
279f08d4
BN
1433 if (oob_required)
1434 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
8593fbc6
TG
1435 return 0;
1436}
1437
52ff49df 1438/**
7854d3f7 1439 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
8b6e50c9
BN
1440 * @mtd: mtd info structure
1441 * @chip: nand chip info structure
1442 * @buf: buffer to store read data
1fbb938d 1443 * @oob_required: caller requires OOB data read to chip->oob_poi
8b6e50c9 1444 * @page: page number to read
52ff49df
DB
1445 *
1446 * We need a special oob layout and handling even when OOB isn't used.
1447 */
7351d3a5 1448static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
1fbb938d
BN
1449 struct nand_chip *chip, uint8_t *buf,
1450 int oob_required, int page)
52ff49df
DB
1451{
1452 int eccsize = chip->ecc.size;
1453 int eccbytes = chip->ecc.bytes;
1454 uint8_t *oob = chip->oob_poi;
1455 int steps, size;
1456
1457 for (steps = chip->ecc.steps; steps > 0; steps--) {
1458 chip->read_buf(mtd, buf, eccsize);
1459 buf += eccsize;
1460
1461 if (chip->ecc.prepad) {
1462 chip->read_buf(mtd, oob, chip->ecc.prepad);
1463 oob += chip->ecc.prepad;
1464 }
1465
1466 chip->read_buf(mtd, oob, eccbytes);
1467 oob += eccbytes;
1468
1469 if (chip->ecc.postpad) {
1470 chip->read_buf(mtd, oob, chip->ecc.postpad);
1471 oob += chip->ecc.postpad;
1472 }
1473 }
1474
1475 size = mtd->oobsize - (oob - chip->oob_poi);
1476 if (size)
1477 chip->read_buf(mtd, oob, size);
1478
1479 return 0;
1480}
1481
1da177e4 1482/**
7854d3f7 1483 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
8b6e50c9
BN
1484 * @mtd: mtd info structure
1485 * @chip: nand chip info structure
1486 * @buf: buffer to store read data
1fbb938d 1487 * @oob_required: caller requires OOB data read to chip->oob_poi
8b6e50c9 1488 * @page: page number to read
068e3c0a 1489 */
f5bbdacc 1490static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1fbb938d 1491 uint8_t *buf, int oob_required, int page)
1da177e4 1492{
846031d3 1493 int i, eccsize = chip->ecc.size, ret;
f5bbdacc
TG
1494 int eccbytes = chip->ecc.bytes;
1495 int eccsteps = chip->ecc.steps;
1496 uint8_t *p = buf;
4bf63fcb
DW
1497 uint8_t *ecc_calc = chip->buffers->ecccalc;
1498 uint8_t *ecc_code = chip->buffers->ecccode;
3f91e94f 1499 unsigned int max_bitflips = 0;
f5bbdacc 1500
1fbb938d 1501 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
f5bbdacc
TG
1502
1503 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1504 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1505
846031d3
BB
1506 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1507 chip->ecc.total);
1508 if (ret)
1509 return ret;
f5bbdacc
TG
1510
1511 eccsteps = chip->ecc.steps;
1512 p = buf;
1513
1514 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1515 int stat;
1516
1517 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
3f91e94f 1518 if (stat < 0) {
f5bbdacc 1519 mtd->ecc_stats.failed++;
3f91e94f 1520 } else {
f5bbdacc 1521 mtd->ecc_stats.corrected += stat;
3f91e94f
MD
1522 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1523 }
f5bbdacc 1524 }
3f91e94f 1525 return max_bitflips;
22c60f5f 1526}
1da177e4 1527
3d459559 1528/**
837a6ba4 1529 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
8b6e50c9
BN
1530 * @mtd: mtd info structure
1531 * @chip: nand chip info structure
1532 * @data_offs: offset of requested data within the page
1533 * @readlen: data length
1534 * @bufpoi: buffer to store read data
e004debd 1535 * @page: page number to read
3d459559 1536 */
7351d3a5 1537static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
e004debd
HS
1538 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi,
1539 int page)
3d459559 1540{
846031d3 1541 int start_step, end_step, num_steps, ret;
3d459559
AK
1542 uint8_t *p;
1543 int data_col_addr, i, gaps = 0;
1544 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1545 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
846031d3 1546 int index, section = 0;
3f91e94f 1547 unsigned int max_bitflips = 0;
846031d3 1548 struct mtd_oob_region oobregion = { };
3d459559 1549
7854d3f7 1550 /* Column address within the page aligned to ECC size (256bytes) */
3d459559
AK
1551 start_step = data_offs / chip->ecc.size;
1552 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1553 num_steps = end_step - start_step + 1;
4a4163ca 1554 index = start_step * chip->ecc.bytes;
3d459559 1555
8b6e50c9 1556 /* Data size aligned to ECC ecc.size */
3d459559
AK
1557 datafrag_len = num_steps * chip->ecc.size;
1558 eccfrag_len = num_steps * chip->ecc.bytes;
1559
1560 data_col_addr = start_step * chip->ecc.size;
1561 /* If we read not a page aligned data */
1562 if (data_col_addr != 0)
1563 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1564
1565 p = bufpoi + data_col_addr;
1566 chip->read_buf(mtd, p, datafrag_len);
1567
8b6e50c9 1568 /* Calculate ECC */
3d459559
AK
1569 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1570 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1571
8b6e50c9
BN
1572 /*
1573 * The performance is faster if we position offsets according to
7854d3f7 1574 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
8b6e50c9 1575 */
846031d3
BB
1576 ret = mtd_ooblayout_find_eccregion(mtd, index, &section, &oobregion);
1577 if (ret)
1578 return ret;
1579
1580 if (oobregion.length < eccfrag_len)
1581 gaps = 1;
1582
3d459559
AK
1583 if (gaps) {
1584 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1585 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1586 } else {
8b6e50c9 1587 /*
7854d3f7 1588 * Send the command to read the particular ECC bytes take care
8b6e50c9
BN
1589 * about buswidth alignment in read_buf.
1590 */
846031d3 1591 aligned_pos = oobregion.offset & ~(busw - 1);
3d459559 1592 aligned_len = eccfrag_len;
846031d3 1593 if (oobregion.offset & (busw - 1))
3d459559 1594 aligned_len++;
846031d3
BB
1595 if ((oobregion.offset + (num_steps * chip->ecc.bytes)) &
1596 (busw - 1))
3d459559
AK
1597 aligned_len++;
1598
7351d3a5 1599 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
846031d3 1600 mtd->writesize + aligned_pos, -1);
3d459559
AK
1601 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1602 }
1603
846031d3
BB
1604 ret = mtd_ooblayout_get_eccbytes(mtd, chip->buffers->ecccode,
1605 chip->oob_poi, index, eccfrag_len);
1606 if (ret)
1607 return ret;
3d459559
AK
1608
1609 p = bufpoi + data_col_addr;
1610 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1611 int stat;
1612
7351d3a5
FF
1613 stat = chip->ecc.correct(mtd, p,
1614 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
40cbe6ee
BB
1615 if (stat == -EBADMSG &&
1616 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1617 /* check for empty pages with bitflips */
1618 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
1619 &chip->buffers->ecccode[i],
1620 chip->ecc.bytes,
1621 NULL, 0,
1622 chip->ecc.strength);
1623 }
1624
3f91e94f 1625 if (stat < 0) {
3d459559 1626 mtd->ecc_stats.failed++;
3f91e94f 1627 } else {
3d459559 1628 mtd->ecc_stats.corrected += stat;
3f91e94f
MD
1629 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1630 }
3d459559 1631 }
3f91e94f 1632 return max_bitflips;
3d459559
AK
1633}
1634
068e3c0a 1635/**
7854d3f7 1636 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
8b6e50c9
BN
1637 * @mtd: mtd info structure
1638 * @chip: nand chip info structure
1639 * @buf: buffer to store read data
1fbb938d 1640 * @oob_required: caller requires OOB data read to chip->oob_poi
8b6e50c9 1641 * @page: page number to read
068e3c0a 1642 *
7854d3f7 1643 * Not for syndrome calculating ECC controllers which need a special oob layout.
068e3c0a 1644 */
f5bbdacc 1645static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1fbb938d 1646 uint8_t *buf, int oob_required, int page)
1da177e4 1647{
846031d3 1648 int i, eccsize = chip->ecc.size, ret;
f5bbdacc
TG
1649 int eccbytes = chip->ecc.bytes;
1650 int eccsteps = chip->ecc.steps;
1651 uint8_t *p = buf;
4bf63fcb
DW
1652 uint8_t *ecc_calc = chip->buffers->ecccalc;
1653 uint8_t *ecc_code = chip->buffers->ecccode;
3f91e94f 1654 unsigned int max_bitflips = 0;
f5bbdacc
TG
1655
1656 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1657 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1658 chip->read_buf(mtd, p, eccsize);
1659 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1da177e4 1660 }
f75e5097 1661 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1da177e4 1662
846031d3
BB
1663 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1664 chip->ecc.total);
1665 if (ret)
1666 return ret;
1da177e4 1667
f5bbdacc
TG
1668 eccsteps = chip->ecc.steps;
1669 p = buf;
61b03bd7 1670
f5bbdacc
TG
1671 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1672 int stat;
1da177e4 1673
f5bbdacc 1674 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
40cbe6ee
BB
1675 if (stat == -EBADMSG &&
1676 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1677 /* check for empty pages with bitflips */
1678 stat = nand_check_erased_ecc_chunk(p, eccsize,
1679 &ecc_code[i], eccbytes,
1680 NULL, 0,
1681 chip->ecc.strength);
1682 }
1683
3f91e94f 1684 if (stat < 0) {
f5bbdacc 1685 mtd->ecc_stats.failed++;
3f91e94f 1686 } else {
f5bbdacc 1687 mtd->ecc_stats.corrected += stat;
3f91e94f
MD
1688 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1689 }
f5bbdacc 1690 }
3f91e94f 1691 return max_bitflips;
f5bbdacc 1692}
1da177e4 1693
6e0cb135 1694/**
7854d3f7 1695 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
8b6e50c9
BN
1696 * @mtd: mtd info structure
1697 * @chip: nand chip info structure
1698 * @buf: buffer to store read data
1fbb938d 1699 * @oob_required: caller requires OOB data read to chip->oob_poi
8b6e50c9 1700 * @page: page number to read
6e0cb135 1701 *
8b6e50c9
BN
1702 * Hardware ECC for large page chips, require OOB to be read first. For this
1703 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1704 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1705 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1706 * the data area, by overwriting the NAND manufacturer bad block markings.
6e0cb135
SN
1707 */
1708static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
1fbb938d 1709 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
6e0cb135 1710{
846031d3 1711 int i, eccsize = chip->ecc.size, ret;
6e0cb135
SN
1712 int eccbytes = chip->ecc.bytes;
1713 int eccsteps = chip->ecc.steps;
1714 uint8_t *p = buf;
1715 uint8_t *ecc_code = chip->buffers->ecccode;
6e0cb135 1716 uint8_t *ecc_calc = chip->buffers->ecccalc;
3f91e94f 1717 unsigned int max_bitflips = 0;
6e0cb135
SN
1718
1719 /* Read the OOB area first */
1720 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1721 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1722 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1723
846031d3
BB
1724 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
1725 chip->ecc.total);
1726 if (ret)
1727 return ret;
6e0cb135
SN
1728
1729 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1730 int stat;
1731
1732 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1733 chip->read_buf(mtd, p, eccsize);
1734 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1735
1736 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
40cbe6ee
BB
1737 if (stat == -EBADMSG &&
1738 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1739 /* check for empty pages with bitflips */
1740 stat = nand_check_erased_ecc_chunk(p, eccsize,
1741 &ecc_code[i], eccbytes,
1742 NULL, 0,
1743 chip->ecc.strength);
1744 }
1745
3f91e94f 1746 if (stat < 0) {
6e0cb135 1747 mtd->ecc_stats.failed++;
3f91e94f 1748 } else {
6e0cb135 1749 mtd->ecc_stats.corrected += stat;
3f91e94f
MD
1750 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1751 }
6e0cb135 1752 }
3f91e94f 1753 return max_bitflips;
6e0cb135
SN
1754}
1755
f5bbdacc 1756/**
7854d3f7 1757 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
8b6e50c9
BN
1758 * @mtd: mtd info structure
1759 * @chip: nand chip info structure
1760 * @buf: buffer to store read data
1fbb938d 1761 * @oob_required: caller requires OOB data read to chip->oob_poi
8b6e50c9 1762 * @page: page number to read
f5bbdacc 1763 *
8b6e50c9
BN
1764 * The hw generator calculates the error syndrome automatically. Therefore we
1765 * need a special oob layout and handling.
f5bbdacc
TG
1766 */
1767static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1fbb938d 1768 uint8_t *buf, int oob_required, int page)
f5bbdacc
TG
1769{
1770 int i, eccsize = chip->ecc.size;
1771 int eccbytes = chip->ecc.bytes;
1772 int eccsteps = chip->ecc.steps;
40cbe6ee 1773 int eccpadbytes = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
f5bbdacc 1774 uint8_t *p = buf;
f75e5097 1775 uint8_t *oob = chip->oob_poi;
3f91e94f 1776 unsigned int max_bitflips = 0;
1da177e4 1777
f5bbdacc
TG
1778 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1779 int stat;
61b03bd7 1780
f5bbdacc
TG
1781 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1782 chip->read_buf(mtd, p, eccsize);
1da177e4 1783
f5bbdacc
TG
1784 if (chip->ecc.prepad) {
1785 chip->read_buf(mtd, oob, chip->ecc.prepad);
1786 oob += chip->ecc.prepad;
1787 }
1da177e4 1788
f5bbdacc
TG
1789 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1790 chip->read_buf(mtd, oob, eccbytes);
1791 stat = chip->ecc.correct(mtd, p, oob, NULL);
61b03bd7 1792
f5bbdacc 1793 oob += eccbytes;
1da177e4 1794
f5bbdacc
TG
1795 if (chip->ecc.postpad) {
1796 chip->read_buf(mtd, oob, chip->ecc.postpad);
1797 oob += chip->ecc.postpad;
61b03bd7 1798 }
40cbe6ee
BB
1799
1800 if (stat == -EBADMSG &&
1801 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1802 /* check for empty pages with bitflips */
1803 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
1804 oob - eccpadbytes,
1805 eccpadbytes,
1806 NULL, 0,
1807 chip->ecc.strength);
1808 }
1809
1810 if (stat < 0) {
1811 mtd->ecc_stats.failed++;
1812 } else {
1813 mtd->ecc_stats.corrected += stat;
1814 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1815 }
f5bbdacc 1816 }
1da177e4 1817
f5bbdacc 1818 /* Calculate remaining oob bytes */
7e4178f9 1819 i = mtd->oobsize - (oob - chip->oob_poi);
f5bbdacc
TG
1820 if (i)
1821 chip->read_buf(mtd, oob, i);
61b03bd7 1822
3f91e94f 1823 return max_bitflips;
f5bbdacc 1824}
1da177e4 1825
f5bbdacc 1826/**
7854d3f7 1827 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
846031d3 1828 * @mtd: mtd info structure
8b6e50c9
BN
1829 * @oob: oob destination address
1830 * @ops: oob ops structure
1831 * @len: size of oob to transfer
8593fbc6 1832 */
846031d3 1833static uint8_t *nand_transfer_oob(struct mtd_info *mtd, uint8_t *oob,
7014568b 1834 struct mtd_oob_ops *ops, size_t len)
8593fbc6 1835{
846031d3
BB
1836 struct nand_chip *chip = mtd_to_nand(mtd);
1837 int ret;
1838
f8ac0414 1839 switch (ops->mode) {
8593fbc6 1840
0612b9dd
BN
1841 case MTD_OPS_PLACE_OOB:
1842 case MTD_OPS_RAW:
8593fbc6
TG
1843 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1844 return oob + len;
1845
846031d3
BB
1846 case MTD_OPS_AUTO_OOB:
1847 ret = mtd_ooblayout_get_databytes(mtd, oob, chip->oob_poi,
1848 ops->ooboffs, len);
1849 BUG_ON(ret);
1850 return oob + len;
1851
8593fbc6
TG
1852 default:
1853 BUG();
1854 }
1855 return NULL;
1856}
1857
ba84fb59
BN
1858/**
1859 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
1860 * @mtd: MTD device structure
1861 * @retry_mode: the retry mode to use
1862 *
1863 * Some vendors supply a special command to shift the Vt threshold, to be used
1864 * when there are too many bitflips in a page (i.e., ECC error). After setting
1865 * a new threshold, the host should retry reading the page.
1866 */
1867static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
1868{
862eba51 1869 struct nand_chip *chip = mtd_to_nand(mtd);
ba84fb59
BN
1870
1871 pr_debug("setting READ RETRY mode %d\n", retry_mode);
1872
1873 if (retry_mode >= chip->read_retries)
1874 return -EINVAL;
1875
1876 if (!chip->setup_read_retry)
1877 return -EOPNOTSUPP;
1878
1879 return chip->setup_read_retry(mtd, retry_mode);
1880}
1881
8593fbc6 1882/**
7854d3f7 1883 * nand_do_read_ops - [INTERN] Read data with ECC
8b6e50c9
BN
1884 * @mtd: MTD device structure
1885 * @from: offset to read from
1886 * @ops: oob ops structure
f5bbdacc
TG
1887 *
1888 * Internal function. Called with chip held.
1889 */
8593fbc6
TG
1890static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1891 struct mtd_oob_ops *ops)
f5bbdacc 1892{
e47f3db4 1893 int chipnr, page, realpage, col, bytes, aligned, oob_required;
862eba51 1894 struct nand_chip *chip = mtd_to_nand(mtd);
f5bbdacc 1895 int ret = 0;
8593fbc6 1896 uint32_t readlen = ops->len;
7014568b 1897 uint32_t oobreadlen = ops->ooblen;
29f1058a 1898 uint32_t max_oobsize = mtd_oobavail(mtd, ops);
9aca334e 1899
8593fbc6 1900 uint8_t *bufpoi, *oob, *buf;
66507c7b 1901 int use_bufpoi;
edbc4540 1902 unsigned int max_bitflips = 0;
ba84fb59 1903 int retry_mode = 0;
b72f3dfb 1904 bool ecc_fail = false;
1da177e4 1905
f5bbdacc
TG
1906 chipnr = (int)(from >> chip->chip_shift);
1907 chip->select_chip(mtd, chipnr);
61b03bd7 1908
f5bbdacc
TG
1909 realpage = (int)(from >> chip->page_shift);
1910 page = realpage & chip->pagemask;
1da177e4 1911
f5bbdacc 1912 col = (int)(from & (mtd->writesize - 1));
61b03bd7 1913
8593fbc6
TG
1914 buf = ops->datbuf;
1915 oob = ops->oobbuf;
e47f3db4 1916 oob_required = oob ? 1 : 0;
8593fbc6 1917
f8ac0414 1918 while (1) {
b72f3dfb
BN
1919 unsigned int ecc_failures = mtd->ecc_stats.failed;
1920
f5bbdacc
TG
1921 bytes = min(mtd->writesize - col, readlen);
1922 aligned = (bytes == mtd->writesize);
61b03bd7 1923
66507c7b
KD
1924 if (!aligned)
1925 use_bufpoi = 1;
1926 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
1927 use_bufpoi = !virt_addr_valid(buf);
1928 else
1929 use_bufpoi = 0;
1930
8b6e50c9 1931 /* Is the current page in the buffer? */
8593fbc6 1932 if (realpage != chip->pagebuf || oob) {
66507c7b
KD
1933 bufpoi = use_bufpoi ? chip->buffers->databuf : buf;
1934
1935 if (use_bufpoi && aligned)
1936 pr_debug("%s: using read bounce buffer for buf@%p\n",
1937 __func__, buf);
61b03bd7 1938
ba84fb59 1939read_retry:
c00a0991 1940 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
1da177e4 1941
edbc4540
MD
1942 /*
1943 * Now read the page into the buffer. Absent an error,
1944 * the read methods return max bitflips per ecc step.
1945 */
0612b9dd 1946 if (unlikely(ops->mode == MTD_OPS_RAW))
1fbb938d 1947 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
e47f3db4
BN
1948 oob_required,
1949 page);
a5ff4f10
JW
1950 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
1951 !oob)
7351d3a5 1952 ret = chip->ecc.read_subpage(mtd, chip,
e004debd
HS
1953 col, bytes, bufpoi,
1954 page);
956e944c 1955 else
46a8cf2d 1956 ret = chip->ecc.read_page(mtd, chip, bufpoi,
e47f3db4 1957 oob_required, page);
6d77b9d0 1958 if (ret < 0) {
66507c7b 1959 if (use_bufpoi)
6d77b9d0
BN
1960 /* Invalidate page cache */
1961 chip->pagebuf = -1;
1da177e4 1962 break;
6d77b9d0 1963 }
f5bbdacc 1964
edbc4540
MD
1965 max_bitflips = max_t(unsigned int, max_bitflips, ret);
1966
f5bbdacc 1967 /* Transfer not aligned data */
66507c7b 1968 if (use_bufpoi) {
a5ff4f10 1969 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
b72f3dfb 1970 !(mtd->ecc_stats.failed - ecc_failures) &&
edbc4540 1971 (ops->mode != MTD_OPS_RAW)) {
3d459559 1972 chip->pagebuf = realpage;
edbc4540
MD
1973 chip->pagebuf_bitflips = ret;
1974 } else {
6d77b9d0
BN
1975 /* Invalidate page cache */
1976 chip->pagebuf = -1;
edbc4540 1977 }
4bf63fcb 1978 memcpy(buf, chip->buffers->databuf + col, bytes);
f5bbdacc
TG
1979 }
1980
8593fbc6 1981 if (unlikely(oob)) {
b64d39d8
ML
1982 int toread = min(oobreadlen, max_oobsize);
1983
1984 if (toread) {
846031d3 1985 oob = nand_transfer_oob(mtd,
b64d39d8
ML
1986 oob, ops, toread);
1987 oobreadlen -= toread;
1988 }
8593fbc6 1989 }
5bc7c33c
BN
1990
1991 if (chip->options & NAND_NEED_READRDY) {
1992 /* Apply delay or wait for ready/busy pin */
1993 if (!chip->dev_ready)
1994 udelay(chip->chip_delay);
1995 else
1996 nand_wait_ready(mtd);
1997 }
b72f3dfb 1998
ba84fb59 1999 if (mtd->ecc_stats.failed - ecc_failures) {
28fa65e6 2000 if (retry_mode + 1 < chip->read_retries) {
ba84fb59
BN
2001 retry_mode++;
2002 ret = nand_setup_read_retry(mtd,
2003 retry_mode);
2004 if (ret < 0)
2005 break;
2006
2007 /* Reset failures; retry */
2008 mtd->ecc_stats.failed = ecc_failures;
2009 goto read_retry;
2010 } else {
2011 /* No more retry modes; real failure */
2012 ecc_fail = true;
2013 }
2014 }
2015
2016 buf += bytes;
8593fbc6 2017 } else {
4bf63fcb 2018 memcpy(buf, chip->buffers->databuf + col, bytes);
8593fbc6 2019 buf += bytes;
edbc4540
MD
2020 max_bitflips = max_t(unsigned int, max_bitflips,
2021 chip->pagebuf_bitflips);
8593fbc6 2022 }
1da177e4 2023
f5bbdacc 2024 readlen -= bytes;
61b03bd7 2025
ba84fb59
BN
2026 /* Reset to retry mode 0 */
2027 if (retry_mode) {
2028 ret = nand_setup_read_retry(mtd, 0);
2029 if (ret < 0)
2030 break;
2031 retry_mode = 0;
2032 }
2033
f5bbdacc 2034 if (!readlen)
61b03bd7 2035 break;
1da177e4 2036
8b6e50c9 2037 /* For subsequent reads align to page boundary */
1da177e4
LT
2038 col = 0;
2039 /* Increment page address */
2040 realpage++;
2041
ace4dfee 2042 page = realpage & chip->pagemask;
1da177e4
LT
2043 /* Check, if we cross a chip boundary */
2044 if (!page) {
2045 chipnr++;
ace4dfee
TG
2046 chip->select_chip(mtd, -1);
2047 chip->select_chip(mtd, chipnr);
1da177e4 2048 }
1da177e4 2049 }
b0bb6903 2050 chip->select_chip(mtd, -1);
1da177e4 2051
8593fbc6 2052 ops->retlen = ops->len - (size_t) readlen;
7014568b
VW
2053 if (oob)
2054 ops->oobretlen = ops->ooblen - oobreadlen;
1da177e4 2055
3f91e94f 2056 if (ret < 0)
f5bbdacc
TG
2057 return ret;
2058
b72f3dfb 2059 if (ecc_fail)
9a1fcdfd
TG
2060 return -EBADMSG;
2061
edbc4540 2062 return max_bitflips;
f5bbdacc
TG
2063}
2064
2065/**
25985edc 2066 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
8b6e50c9
BN
2067 * @mtd: MTD device structure
2068 * @from: offset to read from
2069 * @len: number of bytes to read
2070 * @retlen: pointer to variable to store the number of read bytes
2071 * @buf: the databuffer to put data
f5bbdacc 2072 *
8b6e50c9 2073 * Get hold of the chip and call nand_do_read.
f5bbdacc
TG
2074 */
2075static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
2076 size_t *retlen, uint8_t *buf)
2077{
4a89ff88 2078 struct mtd_oob_ops ops;
f5bbdacc
TG
2079 int ret;
2080
6a8214aa 2081 nand_get_device(mtd, FL_READING);
0ec56dc4 2082 memset(&ops, 0, sizeof(ops));
4a89ff88
BN
2083 ops.len = len;
2084 ops.datbuf = buf;
11041ae6 2085 ops.mode = MTD_OPS_PLACE_OOB;
4a89ff88 2086 ret = nand_do_read_ops(mtd, from, &ops);
4a89ff88 2087 *retlen = ops.retlen;
f5bbdacc 2088 nand_release_device(mtd);
f5bbdacc 2089 return ret;
1da177e4
LT
2090}
2091
7bc3312b 2092/**
7854d3f7 2093 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
8b6e50c9
BN
2094 * @mtd: mtd info structure
2095 * @chip: nand chip info structure
2096 * @page: page number to read
7bc3312b 2097 */
9d02fc2a 2098int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
7bc3312b 2099{
5c2ffb11 2100 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
7bc3312b 2101 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
5c2ffb11 2102 return 0;
7bc3312b 2103}
9d02fc2a 2104EXPORT_SYMBOL(nand_read_oob_std);
7bc3312b
TG
2105
2106/**
7854d3f7 2107 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
7bc3312b 2108 * with syndromes
8b6e50c9
BN
2109 * @mtd: mtd info structure
2110 * @chip: nand chip info structure
2111 * @page: page number to read
7bc3312b 2112 */
9d02fc2a
BB
2113int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2114 int page)
7bc3312b 2115{
7bc3312b
TG
2116 int length = mtd->oobsize;
2117 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2118 int eccsize = chip->ecc.size;
2ea69d21 2119 uint8_t *bufpoi = chip->oob_poi;
7bc3312b
TG
2120 int i, toread, sndrnd = 0, pos;
2121
2122 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
2123 for (i = 0; i < chip->ecc.steps; i++) {
2124 if (sndrnd) {
2125 pos = eccsize + i * (eccsize + chunk);
2126 if (mtd->writesize > 512)
2127 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
2128 else
2129 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
2130 } else
2131 sndrnd = 1;
2132 toread = min_t(int, length, chunk);
2133 chip->read_buf(mtd, bufpoi, toread);
2134 bufpoi += toread;
2135 length -= toread;
2136 }
2137 if (length > 0)
2138 chip->read_buf(mtd, bufpoi, length);
2139
5c2ffb11 2140 return 0;
7bc3312b 2141}
9d02fc2a 2142EXPORT_SYMBOL(nand_read_oob_syndrome);
7bc3312b
TG
2143
2144/**
7854d3f7 2145 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
8b6e50c9
BN
2146 * @mtd: mtd info structure
2147 * @chip: nand chip info structure
2148 * @page: page number to write
7bc3312b 2149 */
9d02fc2a 2150int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
7bc3312b
TG
2151{
2152 int status = 0;
2153 const uint8_t *buf = chip->oob_poi;
2154 int length = mtd->oobsize;
2155
2156 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
2157 chip->write_buf(mtd, buf, length);
2158 /* Send command to program the OOB data */
2159 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2160
2161 status = chip->waitfunc(mtd, chip);
2162
0d420f9d 2163 return status & NAND_STATUS_FAIL ? -EIO : 0;
7bc3312b 2164}
9d02fc2a 2165EXPORT_SYMBOL(nand_write_oob_std);
7bc3312b
TG
2166
2167/**
7854d3f7 2168 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
8b6e50c9
BN
2169 * with syndrome - only for large page flash
2170 * @mtd: mtd info structure
2171 * @chip: nand chip info structure
2172 * @page: page number to write
7bc3312b 2173 */
9d02fc2a
BB
2174int nand_write_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
2175 int page)
7bc3312b
TG
2176{
2177 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
2178 int eccsize = chip->ecc.size, length = mtd->oobsize;
2179 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
2180 const uint8_t *bufpoi = chip->oob_poi;
2181
2182 /*
2183 * data-ecc-data-ecc ... ecc-oob
2184 * or
2185 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
2186 */
2187 if (!chip->ecc.prepad && !chip->ecc.postpad) {
2188 pos = steps * (eccsize + chunk);
2189 steps = 0;
2190 } else
8b0036ee 2191 pos = eccsize;
7bc3312b
TG
2192
2193 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
2194 for (i = 0; i < steps; i++) {
2195 if (sndcmd) {
2196 if (mtd->writesize <= 512) {
2197 uint32_t fill = 0xFFFFFFFF;
2198
2199 len = eccsize;
2200 while (len > 0) {
2201 int num = min_t(int, len, 4);
2202 chip->write_buf(mtd, (uint8_t *)&fill,
2203 num);
2204 len -= num;
2205 }
2206 } else {
2207 pos = eccsize + i * (eccsize + chunk);
2208 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
2209 }
2210 } else
2211 sndcmd = 1;
2212 len = min_t(int, length, chunk);
2213 chip->write_buf(mtd, bufpoi, len);
2214 bufpoi += len;
2215 length -= len;
2216 }
2217 if (length > 0)
2218 chip->write_buf(mtd, bufpoi, length);
2219
2220 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2221 status = chip->waitfunc(mtd, chip);
2222
2223 return status & NAND_STATUS_FAIL ? -EIO : 0;
2224}
9d02fc2a 2225EXPORT_SYMBOL(nand_write_oob_syndrome);
7bc3312b 2226
1da177e4 2227/**
7854d3f7 2228 * nand_do_read_oob - [INTERN] NAND read out-of-band
8b6e50c9
BN
2229 * @mtd: MTD device structure
2230 * @from: offset to read from
2231 * @ops: oob operations description structure
1da177e4 2232 *
8b6e50c9 2233 * NAND read out-of-band data from the spare area.
1da177e4 2234 */
8593fbc6
TG
2235static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
2236 struct mtd_oob_ops *ops)
1da177e4 2237{
c00a0991 2238 int page, realpage, chipnr;
862eba51 2239 struct nand_chip *chip = mtd_to_nand(mtd);
041e4575 2240 struct mtd_ecc_stats stats;
7014568b
VW
2241 int readlen = ops->ooblen;
2242 int len;
7bc3312b 2243 uint8_t *buf = ops->oobbuf;
1951f2f7 2244 int ret = 0;
61b03bd7 2245
289c0522 2246 pr_debug("%s: from = 0x%08Lx, len = %i\n",
20d8e248 2247 __func__, (unsigned long long)from, readlen);
1da177e4 2248
041e4575
BN
2249 stats = mtd->ecc_stats;
2250
29f1058a 2251 len = mtd_oobavail(mtd, ops);
03736155
AH
2252
2253 if (unlikely(ops->ooboffs >= len)) {
289c0522
BN
2254 pr_debug("%s: attempt to start read outside oob\n",
2255 __func__);
03736155
AH
2256 return -EINVAL;
2257 }
2258
2259 /* Do not allow reads past end of device */
2260 if (unlikely(from >= mtd->size ||
2261 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
2262 (from >> chip->page_shift)) * len)) {
289c0522
BN
2263 pr_debug("%s: attempt to read beyond end of device\n",
2264 __func__);
03736155
AH
2265 return -EINVAL;
2266 }
7014568b 2267
7314e9e7 2268 chipnr = (int)(from >> chip->chip_shift);
ace4dfee 2269 chip->select_chip(mtd, chipnr);
1da177e4 2270
7314e9e7
TG
2271 /* Shift to get page */
2272 realpage = (int)(from >> chip->page_shift);
2273 page = realpage & chip->pagemask;
1da177e4 2274
f8ac0414 2275 while (1) {
0612b9dd 2276 if (ops->mode == MTD_OPS_RAW)
1951f2f7 2277 ret = chip->ecc.read_oob_raw(mtd, chip, page);
c46f6483 2278 else
1951f2f7
SL
2279 ret = chip->ecc.read_oob(mtd, chip, page);
2280
2281 if (ret < 0)
2282 break;
7014568b
VW
2283
2284 len = min(len, readlen);
846031d3 2285 buf = nand_transfer_oob(mtd, buf, ops, len);
8593fbc6 2286
5bc7c33c
BN
2287 if (chip->options & NAND_NEED_READRDY) {
2288 /* Apply delay or wait for ready/busy pin */
2289 if (!chip->dev_ready)
2290 udelay(chip->chip_delay);
2291 else
2292 nand_wait_ready(mtd);
2293 }
2294
7014568b 2295 readlen -= len;
0d420f9d
SZ
2296 if (!readlen)
2297 break;
2298
7314e9e7
TG
2299 /* Increment page address */
2300 realpage++;
2301
2302 page = realpage & chip->pagemask;
2303 /* Check, if we cross a chip boundary */
2304 if (!page) {
2305 chipnr++;
2306 chip->select_chip(mtd, -1);
2307 chip->select_chip(mtd, chipnr);
1da177e4
LT
2308 }
2309 }
b0bb6903 2310 chip->select_chip(mtd, -1);
1da177e4 2311
1951f2f7
SL
2312 ops->oobretlen = ops->ooblen - readlen;
2313
2314 if (ret < 0)
2315 return ret;
041e4575
BN
2316
2317 if (mtd->ecc_stats.failed - stats.failed)
2318 return -EBADMSG;
2319
2320 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
1da177e4
LT
2321}
2322
2323/**
8593fbc6 2324 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
8b6e50c9
BN
2325 * @mtd: MTD device structure
2326 * @from: offset to read from
2327 * @ops: oob operation description structure
1da177e4 2328 *
8b6e50c9 2329 * NAND read data and/or out-of-band data.
1da177e4 2330 */
8593fbc6
TG
2331static int nand_read_oob(struct mtd_info *mtd, loff_t from,
2332 struct mtd_oob_ops *ops)
1da177e4 2333{
fc6b4d12 2334 int ret;
8593fbc6
TG
2335
2336 ops->retlen = 0;
1da177e4
LT
2337
2338 /* Do not allow reads past end of device */
7014568b 2339 if (ops->datbuf && (from + ops->len) > mtd->size) {
289c0522
BN
2340 pr_debug("%s: attempt to read beyond end of device\n",
2341 __func__);
1da177e4
LT
2342 return -EINVAL;
2343 }
2344
fc6b4d12
AS
2345 if (ops->mode != MTD_OPS_PLACE_OOB &&
2346 ops->mode != MTD_OPS_AUTO_OOB &&
2347 ops->mode != MTD_OPS_RAW)
2348 return -ENOTSUPP;
1da177e4 2349
fc6b4d12 2350 nand_get_device(mtd, FL_READING);
1da177e4 2351
8593fbc6
TG
2352 if (!ops->datbuf)
2353 ret = nand_do_read_oob(mtd, from, ops);
2354 else
2355 ret = nand_do_read_ops(mtd, from, ops);
61b03bd7 2356
8593fbc6
TG
2357 nand_release_device(mtd);
2358 return ret;
2359}
61b03bd7 2360
1da177e4 2361
8593fbc6 2362/**
7854d3f7 2363 * nand_write_page_raw - [INTERN] raw page write function
8b6e50c9
BN
2364 * @mtd: mtd info structure
2365 * @chip: nand chip info structure
2366 * @buf: data buffer
1fbb938d 2367 * @oob_required: must write chip->oob_poi to OOB
45aaeff9 2368 * @page: page number to write
52ff49df 2369 *
7854d3f7 2370 * Not for syndrome calculating ECC controllers, which use a special oob layout.
8593fbc6 2371 */
fdbad98d 2372static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
45aaeff9 2373 const uint8_t *buf, int oob_required, int page)
8593fbc6
TG
2374{
2375 chip->write_buf(mtd, buf, mtd->writesize);
279f08d4
BN
2376 if (oob_required)
2377 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
fdbad98d
JW
2378
2379 return 0;
1da177e4
LT
2380}
2381
52ff49df 2382/**
7854d3f7 2383 * nand_write_page_raw_syndrome - [INTERN] raw page write function
8b6e50c9
BN
2384 * @mtd: mtd info structure
2385 * @chip: nand chip info structure
2386 * @buf: data buffer
1fbb938d 2387 * @oob_required: must write chip->oob_poi to OOB
45aaeff9 2388 * @page: page number to write
52ff49df
DB
2389 *
2390 * We need a special oob layout and handling even when ECC isn't checked.
2391 */
fdbad98d 2392static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
7351d3a5 2393 struct nand_chip *chip,
45aaeff9
BB
2394 const uint8_t *buf, int oob_required,
2395 int page)
52ff49df
DB
2396{
2397 int eccsize = chip->ecc.size;
2398 int eccbytes = chip->ecc.bytes;
2399 uint8_t *oob = chip->oob_poi;
2400 int steps, size;
2401
2402 for (steps = chip->ecc.steps; steps > 0; steps--) {
2403 chip->write_buf(mtd, buf, eccsize);
2404 buf += eccsize;
2405
2406 if (chip->ecc.prepad) {
2407 chip->write_buf(mtd, oob, chip->ecc.prepad);
2408 oob += chip->ecc.prepad;
2409 }
2410
60c3bc1f 2411 chip->write_buf(mtd, oob, eccbytes);
52ff49df
DB
2412 oob += eccbytes;
2413
2414 if (chip->ecc.postpad) {
2415 chip->write_buf(mtd, oob, chip->ecc.postpad);
2416 oob += chip->ecc.postpad;
2417 }
2418 }
2419
2420 size = mtd->oobsize - (oob - chip->oob_poi);
2421 if (size)
2422 chip->write_buf(mtd, oob, size);
fdbad98d
JW
2423
2424 return 0;
52ff49df 2425}
9223a456 2426/**
7854d3f7 2427 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
8b6e50c9
BN
2428 * @mtd: mtd info structure
2429 * @chip: nand chip info structure
2430 * @buf: data buffer
1fbb938d 2431 * @oob_required: must write chip->oob_poi to OOB
45aaeff9 2432 * @page: page number to write
9223a456 2433 */
fdbad98d 2434static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
45aaeff9
BB
2435 const uint8_t *buf, int oob_required,
2436 int page)
9223a456 2437{
846031d3 2438 int i, eccsize = chip->ecc.size, ret;
f75e5097
TG
2439 int eccbytes = chip->ecc.bytes;
2440 int eccsteps = chip->ecc.steps;
4bf63fcb 2441 uint8_t *ecc_calc = chip->buffers->ecccalc;
f75e5097 2442 const uint8_t *p = buf;
9223a456 2443
7854d3f7 2444 /* Software ECC calculation */
8593fbc6
TG
2445 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
2446 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
9223a456 2447
846031d3
BB
2448 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2449 chip->ecc.total);
2450 if (ret)
2451 return ret;
9223a456 2452
45aaeff9 2453 return chip->ecc.write_page_raw(mtd, chip, buf, 1, page);
f75e5097 2454}
9223a456 2455
f75e5097 2456/**
7854d3f7 2457 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
8b6e50c9
BN
2458 * @mtd: mtd info structure
2459 * @chip: nand chip info structure
2460 * @buf: data buffer
1fbb938d 2461 * @oob_required: must write chip->oob_poi to OOB
45aaeff9 2462 * @page: page number to write
f75e5097 2463 */
fdbad98d 2464static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
45aaeff9
BB
2465 const uint8_t *buf, int oob_required,
2466 int page)
f75e5097 2467{
846031d3 2468 int i, eccsize = chip->ecc.size, ret;
f75e5097
TG
2469 int eccbytes = chip->ecc.bytes;
2470 int eccsteps = chip->ecc.steps;
4bf63fcb 2471 uint8_t *ecc_calc = chip->buffers->ecccalc;
f75e5097 2472 const uint8_t *p = buf;
9223a456 2473
f75e5097
TG
2474 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2475 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
29da9cea 2476 chip->write_buf(mtd, p, eccsize);
f75e5097 2477 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
9223a456
TG
2478 }
2479
846031d3
BB
2480 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2481 chip->ecc.total);
2482 if (ret)
2483 return ret;
f75e5097
TG
2484
2485 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
fdbad98d
JW
2486
2487 return 0;
9223a456
TG
2488}
2489
837a6ba4
GP
2490
2491/**
73c8aaf4 2492 * nand_write_subpage_hwecc - [REPLACEABLE] hardware ECC based subpage write
837a6ba4
GP
2493 * @mtd: mtd info structure
2494 * @chip: nand chip info structure
d6a95080 2495 * @offset: column address of subpage within the page
837a6ba4 2496 * @data_len: data length
d6a95080 2497 * @buf: data buffer
837a6ba4 2498 * @oob_required: must write chip->oob_poi to OOB
45aaeff9 2499 * @page: page number to write
837a6ba4
GP
2500 */
2501static int nand_write_subpage_hwecc(struct mtd_info *mtd,
2502 struct nand_chip *chip, uint32_t offset,
d6a95080 2503 uint32_t data_len, const uint8_t *buf,
45aaeff9 2504 int oob_required, int page)
837a6ba4
GP
2505{
2506 uint8_t *oob_buf = chip->oob_poi;
2507 uint8_t *ecc_calc = chip->buffers->ecccalc;
2508 int ecc_size = chip->ecc.size;
2509 int ecc_bytes = chip->ecc.bytes;
2510 int ecc_steps = chip->ecc.steps;
837a6ba4
GP
2511 uint32_t start_step = offset / ecc_size;
2512 uint32_t end_step = (offset + data_len - 1) / ecc_size;
2513 int oob_bytes = mtd->oobsize / ecc_steps;
846031d3 2514 int step, ret;
837a6ba4
GP
2515
2516 for (step = 0; step < ecc_steps; step++) {
2517 /* configure controller for WRITE access */
2518 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2519
2520 /* write data (untouched subpages already masked by 0xFF) */
d6a95080 2521 chip->write_buf(mtd, buf, ecc_size);
837a6ba4
GP
2522
2523 /* mask ECC of un-touched subpages by padding 0xFF */
2524 if ((step < start_step) || (step > end_step))
2525 memset(ecc_calc, 0xff, ecc_bytes);
2526 else
d6a95080 2527 chip->ecc.calculate(mtd, buf, ecc_calc);
837a6ba4
GP
2528
2529 /* mask OOB of un-touched subpages by padding 0xFF */
2530 /* if oob_required, preserve OOB metadata of written subpage */
2531 if (!oob_required || (step < start_step) || (step > end_step))
2532 memset(oob_buf, 0xff, oob_bytes);
2533
d6a95080 2534 buf += ecc_size;
837a6ba4
GP
2535 ecc_calc += ecc_bytes;
2536 oob_buf += oob_bytes;
2537 }
2538
2539 /* copy calculated ECC for whole page to chip->buffer->oob */
2540 /* this include masked-value(0xFF) for unwritten subpages */
2541 ecc_calc = chip->buffers->ecccalc;
846031d3
BB
2542 ret = mtd_ooblayout_set_eccbytes(mtd, ecc_calc, chip->oob_poi, 0,
2543 chip->ecc.total);
2544 if (ret)
2545 return ret;
837a6ba4
GP
2546
2547 /* write OOB buffer to NAND device */
2548 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2549
2550 return 0;
2551}
2552
2553
61b03bd7 2554/**
7854d3f7 2555 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
8b6e50c9
BN
2556 * @mtd: mtd info structure
2557 * @chip: nand chip info structure
2558 * @buf: data buffer
1fbb938d 2559 * @oob_required: must write chip->oob_poi to OOB
45aaeff9 2560 * @page: page number to write
1da177e4 2561 *
8b6e50c9
BN
2562 * The hw generator calculates the error syndrome automatically. Therefore we
2563 * need a special oob layout and handling.
f75e5097 2564 */
fdbad98d 2565static int nand_write_page_syndrome(struct mtd_info *mtd,
1fbb938d 2566 struct nand_chip *chip,
45aaeff9
BB
2567 const uint8_t *buf, int oob_required,
2568 int page)
1da177e4 2569{
f75e5097
TG
2570 int i, eccsize = chip->ecc.size;
2571 int eccbytes = chip->ecc.bytes;
2572 int eccsteps = chip->ecc.steps;
2573 const uint8_t *p = buf;
2574 uint8_t *oob = chip->oob_poi;
1da177e4 2575
f75e5097 2576 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1da177e4 2577
f75e5097
TG
2578 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2579 chip->write_buf(mtd, p, eccsize);
61b03bd7 2580
f75e5097
TG
2581 if (chip->ecc.prepad) {
2582 chip->write_buf(mtd, oob, chip->ecc.prepad);
2583 oob += chip->ecc.prepad;
2584 }
2585
2586 chip->ecc.calculate(mtd, p, oob);
2587 chip->write_buf(mtd, oob, eccbytes);
2588 oob += eccbytes;
2589
2590 if (chip->ecc.postpad) {
2591 chip->write_buf(mtd, oob, chip->ecc.postpad);
2592 oob += chip->ecc.postpad;
1da177e4 2593 }
1da177e4 2594 }
f75e5097
TG
2595
2596 /* Calculate remaining oob bytes */
7e4178f9 2597 i = mtd->oobsize - (oob - chip->oob_poi);
f75e5097
TG
2598 if (i)
2599 chip->write_buf(mtd, oob, i);
fdbad98d
JW
2600
2601 return 0;
f75e5097
TG
2602}
2603
2604/**
956e944c 2605 * nand_write_page - [REPLACEABLE] write one page
8b6e50c9
BN
2606 * @mtd: MTD device structure
2607 * @chip: NAND chip descriptor
837a6ba4
GP
2608 * @offset: address offset within the page
2609 * @data_len: length of actual data to be written
8b6e50c9 2610 * @buf: the data to write
1fbb938d 2611 * @oob_required: must write chip->oob_poi to OOB
8b6e50c9
BN
2612 * @page: page number to write
2613 * @cached: cached programming
2614 * @raw: use _raw version of write_page
f75e5097
TG
2615 */
2616static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
837a6ba4
GP
2617 uint32_t offset, int data_len, const uint8_t *buf,
2618 int oob_required, int page, int cached, int raw)
f75e5097 2619{
837a6ba4
GP
2620 int status, subpage;
2621
2622 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2623 chip->ecc.write_subpage)
2624 subpage = offset || (data_len < mtd->writesize);
2625 else
2626 subpage = 0;
f75e5097
TG
2627
2628 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2629
956e944c 2630 if (unlikely(raw))
837a6ba4 2631 status = chip->ecc.write_page_raw(mtd, chip, buf,
45aaeff9 2632 oob_required, page);
837a6ba4
GP
2633 else if (subpage)
2634 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
45aaeff9 2635 buf, oob_required, page);
956e944c 2636 else
45aaeff9
BB
2637 status = chip->ecc.write_page(mtd, chip, buf, oob_required,
2638 page);
fdbad98d
JW
2639
2640 if (status < 0)
2641 return status;
f75e5097
TG
2642
2643 /*
7854d3f7 2644 * Cached progamming disabled for now. Not sure if it's worth the
8b6e50c9 2645 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
f75e5097
TG
2646 */
2647 cached = 0;
2648
3239a6cd 2649 if (!cached || !NAND_HAS_CACHEPROG(chip)) {
f75e5097
TG
2650
2651 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
7bc3312b 2652 status = chip->waitfunc(mtd, chip);
f75e5097
TG
2653 /*
2654 * See if operation failed and additional status checks are
8b6e50c9 2655 * available.
f75e5097
TG
2656 */
2657 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2658 status = chip->errstat(mtd, chip, FL_WRITING, status,
2659 page);
2660
2661 if (status & NAND_STATUS_FAIL)
2662 return -EIO;
2663 } else {
2664 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
7bc3312b 2665 status = chip->waitfunc(mtd, chip);
f75e5097
TG
2666 }
2667
f75e5097 2668 return 0;
1da177e4
LT
2669}
2670
8593fbc6 2671/**
7854d3f7 2672 * nand_fill_oob - [INTERN] Transfer client buffer to oob
f722013e 2673 * @mtd: MTD device structure
8b6e50c9
BN
2674 * @oob: oob data buffer
2675 * @len: oob data write length
2676 * @ops: oob ops structure
8593fbc6 2677 */
f722013e
TAA
2678static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2679 struct mtd_oob_ops *ops)
8593fbc6 2680{
862eba51 2681 struct nand_chip *chip = mtd_to_nand(mtd);
846031d3 2682 int ret;
f722013e
TAA
2683
2684 /*
2685 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2686 * data from a previous OOB read.
2687 */
2688 memset(chip->oob_poi, 0xff, mtd->oobsize);
2689
f8ac0414 2690 switch (ops->mode) {
8593fbc6 2691
0612b9dd
BN
2692 case MTD_OPS_PLACE_OOB:
2693 case MTD_OPS_RAW:
8593fbc6
TG
2694 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2695 return oob + len;
2696
846031d3
BB
2697 case MTD_OPS_AUTO_OOB:
2698 ret = mtd_ooblayout_set_databytes(mtd, oob, chip->oob_poi,
2699 ops->ooboffs, len);
2700 BUG_ON(ret);
2701 return oob + len;
2702
8593fbc6
TG
2703 default:
2704 BUG();
2705 }
2706 return NULL;
2707}
2708
f8ac0414 2709#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
1da177e4
LT
2710
2711/**
7854d3f7 2712 * nand_do_write_ops - [INTERN] NAND write with ECC
8b6e50c9
BN
2713 * @mtd: MTD device structure
2714 * @to: offset to write to
2715 * @ops: oob operations description structure
1da177e4 2716 *
8b6e50c9 2717 * NAND write with ECC.
1da177e4 2718 */
8593fbc6
TG
2719static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2720 struct mtd_oob_ops *ops)
1da177e4 2721{
29072b96 2722 int chipnr, realpage, page, blockmask, column;
862eba51 2723 struct nand_chip *chip = mtd_to_nand(mtd);
8593fbc6 2724 uint32_t writelen = ops->len;
782ce79a
ML
2725
2726 uint32_t oobwritelen = ops->ooblen;
29f1058a 2727 uint32_t oobmaxlen = mtd_oobavail(mtd, ops);
782ce79a 2728
8593fbc6
TG
2729 uint8_t *oob = ops->oobbuf;
2730 uint8_t *buf = ops->datbuf;
837a6ba4 2731 int ret;
e47f3db4 2732 int oob_required = oob ? 1 : 0;
1da177e4 2733
8593fbc6 2734 ops->retlen = 0;
29072b96
TG
2735 if (!writelen)
2736 return 0;
1da177e4 2737
8b6e50c9 2738 /* Reject writes, which are not page aligned */
8593fbc6 2739 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
d0370219
BN
2740 pr_notice("%s: attempt to write non page aligned data\n",
2741 __func__);
1da177e4
LT
2742 return -EINVAL;
2743 }
2744
29072b96 2745 column = to & (mtd->writesize - 1);
1da177e4 2746
6a930961
TG
2747 chipnr = (int)(to >> chip->chip_shift);
2748 chip->select_chip(mtd, chipnr);
2749
1da177e4 2750 /* Check, if it is write protected */
b0bb6903
HS
2751 if (nand_check_wp(mtd)) {
2752 ret = -EIO;
2753 goto err_out;
2754 }
1da177e4 2755
f75e5097
TG
2756 realpage = (int)(to >> chip->page_shift);
2757 page = realpage & chip->pagemask;
2758 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2759
2760 /* Invalidate the page cache, when we write to the cached page */
537ab1bd
BN
2761 if (to <= ((loff_t)chip->pagebuf << chip->page_shift) &&
2762 ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len))
ace4dfee 2763 chip->pagebuf = -1;
61b03bd7 2764
782ce79a 2765 /* Don't allow multipage oob writes with offset */
b0bb6903
HS
2766 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
2767 ret = -EINVAL;
2768 goto err_out;
2769 }
782ce79a 2770
f8ac0414 2771 while (1) {
29072b96 2772 int bytes = mtd->writesize;
f75e5097 2773 int cached = writelen > bytes && page != blockmask;
29072b96 2774 uint8_t *wbuf = buf;
66507c7b 2775 int use_bufpoi;
144f4c98 2776 int part_pagewr = (column || writelen < mtd->writesize);
66507c7b
KD
2777
2778 if (part_pagewr)
2779 use_bufpoi = 1;
2780 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
2781 use_bufpoi = !virt_addr_valid(buf);
2782 else
2783 use_bufpoi = 0;
29072b96 2784
66507c7b
KD
2785 /* Partial page write?, or need to use bounce buffer */
2786 if (use_bufpoi) {
2787 pr_debug("%s: using write bounce buffer for buf@%p\n",
2788 __func__, buf);
29072b96 2789 cached = 0;
66507c7b
KD
2790 if (part_pagewr)
2791 bytes = min_t(int, bytes - column, writelen);
29072b96
TG
2792 chip->pagebuf = -1;
2793 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2794 memcpy(&chip->buffers->databuf[column], buf, bytes);
2795 wbuf = chip->buffers->databuf;
2796 }
1da177e4 2797
782ce79a
ML
2798 if (unlikely(oob)) {
2799 size_t len = min(oobwritelen, oobmaxlen);
f722013e 2800 oob = nand_fill_oob(mtd, oob, len, ops);
782ce79a 2801 oobwritelen -= len;
f722013e
TAA
2802 } else {
2803 /* We still need to erase leftover OOB data */
2804 memset(chip->oob_poi, 0xff, mtd->oobsize);
782ce79a 2805 }
837a6ba4
GP
2806 ret = chip->write_page(mtd, chip, column, bytes, wbuf,
2807 oob_required, page, cached,
2808 (ops->mode == MTD_OPS_RAW));
f75e5097
TG
2809 if (ret)
2810 break;
2811
2812 writelen -= bytes;
2813 if (!writelen)
2814 break;
2815
29072b96 2816 column = 0;
f75e5097
TG
2817 buf += bytes;
2818 realpage++;
2819
2820 page = realpage & chip->pagemask;
2821 /* Check, if we cross a chip boundary */
2822 if (!page) {
2823 chipnr++;
2824 chip->select_chip(mtd, -1);
2825 chip->select_chip(mtd, chipnr);
1da177e4
LT
2826 }
2827 }
8593fbc6 2828
8593fbc6 2829 ops->retlen = ops->len - writelen;
7014568b
VW
2830 if (unlikely(oob))
2831 ops->oobretlen = ops->ooblen;
b0bb6903
HS
2832
2833err_out:
2834 chip->select_chip(mtd, -1);
1da177e4
LT
2835 return ret;
2836}
2837
2af7c653
SK
2838/**
2839 * panic_nand_write - [MTD Interface] NAND write with ECC
8b6e50c9
BN
2840 * @mtd: MTD device structure
2841 * @to: offset to write to
2842 * @len: number of bytes to write
2843 * @retlen: pointer to variable to store the number of written bytes
2844 * @buf: the data to write
2af7c653
SK
2845 *
2846 * NAND write with ECC. Used when performing writes in interrupt context, this
2847 * may for example be called by mtdoops when writing an oops while in panic.
2848 */
2849static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2850 size_t *retlen, const uint8_t *buf)
2851{
862eba51 2852 struct nand_chip *chip = mtd_to_nand(mtd);
4a89ff88 2853 struct mtd_oob_ops ops;
2af7c653
SK
2854 int ret;
2855
8b6e50c9 2856 /* Wait for the device to get ready */
2af7c653
SK
2857 panic_nand_wait(mtd, chip, 400);
2858
8b6e50c9 2859 /* Grab the device */
2af7c653
SK
2860 panic_nand_get_device(chip, mtd, FL_WRITING);
2861
0ec56dc4 2862 memset(&ops, 0, sizeof(ops));
4a89ff88
BN
2863 ops.len = len;
2864 ops.datbuf = (uint8_t *)buf;
11041ae6 2865 ops.mode = MTD_OPS_PLACE_OOB;
2af7c653 2866
4a89ff88 2867 ret = nand_do_write_ops(mtd, to, &ops);
2af7c653 2868
4a89ff88 2869 *retlen = ops.retlen;
2af7c653
SK
2870 return ret;
2871}
2872
f75e5097 2873/**
8593fbc6 2874 * nand_write - [MTD Interface] NAND write with ECC
8b6e50c9
BN
2875 * @mtd: MTD device structure
2876 * @to: offset to write to
2877 * @len: number of bytes to write
2878 * @retlen: pointer to variable to store the number of written bytes
2879 * @buf: the data to write
f75e5097 2880 *
8b6e50c9 2881 * NAND write with ECC.
f75e5097 2882 */
8593fbc6
TG
2883static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2884 size_t *retlen, const uint8_t *buf)
f75e5097 2885{
4a89ff88 2886 struct mtd_oob_ops ops;
f75e5097
TG
2887 int ret;
2888
6a8214aa 2889 nand_get_device(mtd, FL_WRITING);
0ec56dc4 2890 memset(&ops, 0, sizeof(ops));
4a89ff88
BN
2891 ops.len = len;
2892 ops.datbuf = (uint8_t *)buf;
11041ae6 2893 ops.mode = MTD_OPS_PLACE_OOB;
4a89ff88 2894 ret = nand_do_write_ops(mtd, to, &ops);
4a89ff88 2895 *retlen = ops.retlen;
f75e5097 2896 nand_release_device(mtd);
8593fbc6 2897 return ret;
f75e5097 2898}
7314e9e7 2899
1da177e4 2900/**
8593fbc6 2901 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
8b6e50c9
BN
2902 * @mtd: MTD device structure
2903 * @to: offset to write to
2904 * @ops: oob operation description structure
1da177e4 2905 *
8b6e50c9 2906 * NAND write out-of-band.
1da177e4 2907 */
8593fbc6
TG
2908static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2909 struct mtd_oob_ops *ops)
1da177e4 2910{
03736155 2911 int chipnr, page, status, len;
862eba51 2912 struct nand_chip *chip = mtd_to_nand(mtd);
1da177e4 2913
289c0522 2914 pr_debug("%s: to = 0x%08x, len = %i\n",
20d8e248 2915 __func__, (unsigned int)to, (int)ops->ooblen);
1da177e4 2916
29f1058a 2917 len = mtd_oobavail(mtd, ops);
03736155 2918
1da177e4 2919 /* Do not allow write past end of page */
03736155 2920 if ((ops->ooboffs + ops->ooblen) > len) {
289c0522
BN
2921 pr_debug("%s: attempt to write past end of page\n",
2922 __func__);
1da177e4
LT
2923 return -EINVAL;
2924 }
2925
03736155 2926 if (unlikely(ops->ooboffs >= len)) {
289c0522
BN
2927 pr_debug("%s: attempt to start write outside oob\n",
2928 __func__);
03736155
AH
2929 return -EINVAL;
2930 }
2931
775adc3d 2932 /* Do not allow write past end of device */
03736155
AH
2933 if (unlikely(to >= mtd->size ||
2934 ops->ooboffs + ops->ooblen >
2935 ((mtd->size >> chip->page_shift) -
2936 (to >> chip->page_shift)) * len)) {
289c0522
BN
2937 pr_debug("%s: attempt to write beyond end of device\n",
2938 __func__);
03736155
AH
2939 return -EINVAL;
2940 }
2941
7314e9e7 2942 chipnr = (int)(to >> chip->chip_shift);
ace4dfee 2943 chip->select_chip(mtd, chipnr);
1da177e4 2944
7314e9e7
TG
2945 /* Shift to get page */
2946 page = (int)(to >> chip->page_shift);
2947
2948 /*
2949 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2950 * of my DiskOnChip 2000 test units) will clear the whole data page too
2951 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2952 * it in the doc2000 driver in August 1999. dwmw2.
2953 */
2f94abfe 2954 nand_reset(chip);
1da177e4
LT
2955
2956 /* Check, if it is write protected */
b0bb6903
HS
2957 if (nand_check_wp(mtd)) {
2958 chip->select_chip(mtd, -1);
8593fbc6 2959 return -EROFS;
b0bb6903 2960 }
61b03bd7 2961
1da177e4 2962 /* Invalidate the page cache, if we write to the cached page */
ace4dfee
TG
2963 if (page == chip->pagebuf)
2964 chip->pagebuf = -1;
1da177e4 2965
f722013e 2966 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
9ce244b3 2967
0612b9dd 2968 if (ops->mode == MTD_OPS_RAW)
9ce244b3
BN
2969 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
2970 else
2971 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
1da177e4 2972
b0bb6903
HS
2973 chip->select_chip(mtd, -1);
2974
7bc3312b
TG
2975 if (status)
2976 return status;
1da177e4 2977
7014568b 2978 ops->oobretlen = ops->ooblen;
1da177e4 2979
7bc3312b 2980 return 0;
8593fbc6
TG
2981}
2982
2983/**
2984 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
8b6e50c9
BN
2985 * @mtd: MTD device structure
2986 * @to: offset to write to
2987 * @ops: oob operation description structure
8593fbc6
TG
2988 */
2989static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2990 struct mtd_oob_ops *ops)
2991{
8593fbc6
TG
2992 int ret = -ENOTSUPP;
2993
2994 ops->retlen = 0;
2995
2996 /* Do not allow writes past end of device */
7014568b 2997 if (ops->datbuf && (to + ops->len) > mtd->size) {
289c0522
BN
2998 pr_debug("%s: attempt to write beyond end of device\n",
2999 __func__);
8593fbc6
TG
3000 return -EINVAL;
3001 }
3002
6a8214aa 3003 nand_get_device(mtd, FL_WRITING);
8593fbc6 3004
f8ac0414 3005 switch (ops->mode) {
0612b9dd
BN
3006 case MTD_OPS_PLACE_OOB:
3007 case MTD_OPS_AUTO_OOB:
3008 case MTD_OPS_RAW:
8593fbc6
TG
3009 break;
3010
3011 default:
3012 goto out;
3013 }
3014
3015 if (!ops->datbuf)
3016 ret = nand_do_write_oob(mtd, to, ops);
3017 else
3018 ret = nand_do_write_ops(mtd, to, ops);
3019
7351d3a5 3020out:
1da177e4 3021 nand_release_device(mtd);
1da177e4
LT
3022 return ret;
3023}
3024
1da177e4 3025/**
49c50b97 3026 * single_erase - [GENERIC] NAND standard block erase command function
8b6e50c9
BN
3027 * @mtd: MTD device structure
3028 * @page: the page address of the block which will be erased
1da177e4 3029 *
49c50b97 3030 * Standard erase command for NAND chips. Returns NAND status.
1da177e4 3031 */
49c50b97 3032static int single_erase(struct mtd_info *mtd, int page)
1da177e4 3033{
862eba51 3034 struct nand_chip *chip = mtd_to_nand(mtd);
1da177e4 3035 /* Send commands to erase a block */
ace4dfee
TG
3036 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
3037 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
49c50b97
BN
3038
3039 return chip->waitfunc(mtd, chip);
1da177e4
LT
3040}
3041
1da177e4
LT
3042/**
3043 * nand_erase - [MTD Interface] erase block(s)
8b6e50c9
BN
3044 * @mtd: MTD device structure
3045 * @instr: erase instruction
1da177e4 3046 *
8b6e50c9 3047 * Erase one ore more blocks.
1da177e4 3048 */
e0c7d767 3049static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
1da177e4 3050{
e0c7d767 3051 return nand_erase_nand(mtd, instr, 0);
1da177e4 3052}
61b03bd7 3053
1da177e4 3054/**
7854d3f7 3055 * nand_erase_nand - [INTERN] erase block(s)
8b6e50c9
BN
3056 * @mtd: MTD device structure
3057 * @instr: erase instruction
3058 * @allowbbt: allow erasing the bbt area
1da177e4 3059 *
8b6e50c9 3060 * Erase one ore more blocks.
1da177e4 3061 */
ace4dfee
TG
3062int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
3063 int allowbbt)
1da177e4 3064{
69423d99 3065 int page, status, pages_per_block, ret, chipnr;
862eba51 3066 struct nand_chip *chip = mtd_to_nand(mtd);
69423d99 3067 loff_t len;
1da177e4 3068
289c0522
BN
3069 pr_debug("%s: start = 0x%012llx, len = %llu\n",
3070 __func__, (unsigned long long)instr->addr,
3071 (unsigned long long)instr->len);
1da177e4 3072
6fe5a6ac 3073 if (check_offs_len(mtd, instr->addr, instr->len))
1da177e4 3074 return -EINVAL;
1da177e4 3075
1da177e4 3076 /* Grab the lock and see if the device is available */
6a8214aa 3077 nand_get_device(mtd, FL_ERASING);
1da177e4
LT
3078
3079 /* Shift to get first page */
ace4dfee
TG
3080 page = (int)(instr->addr >> chip->page_shift);
3081 chipnr = (int)(instr->addr >> chip->chip_shift);
1da177e4
LT
3082
3083 /* Calculate pages in each block */
ace4dfee 3084 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
1da177e4
LT
3085
3086 /* Select the NAND device */
ace4dfee 3087 chip->select_chip(mtd, chipnr);
1da177e4 3088
1da177e4
LT
3089 /* Check, if it is write protected */
3090 if (nand_check_wp(mtd)) {
289c0522
BN
3091 pr_debug("%s: device is write protected!\n",
3092 __func__);
1da177e4
LT
3093 instr->state = MTD_ERASE_FAILED;
3094 goto erase_exit;
3095 }
3096
3097 /* Loop through the pages */
3098 len = instr->len;
3099
3100 instr->state = MTD_ERASING;
3101
3102 while (len) {
12183a20 3103 /* Check if we have a bad block, we do not erase bad blocks! */
ace4dfee 3104 if (nand_block_checkbad(mtd, ((loff_t) page) <<
9f3e0429 3105 chip->page_shift, allowbbt)) {
d0370219
BN
3106 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
3107 __func__, page);
1da177e4
LT
3108 instr->state = MTD_ERASE_FAILED;
3109 goto erase_exit;
3110 }
61b03bd7 3111
ace4dfee
TG
3112 /*
3113 * Invalidate the page cache, if we erase the block which
8b6e50c9 3114 * contains the current cached page.
ace4dfee
TG
3115 */
3116 if (page <= chip->pagebuf && chip->pagebuf <
3117 (page + pages_per_block))
3118 chip->pagebuf = -1;
1da177e4 3119
49c50b97 3120 status = chip->erase(mtd, page & chip->pagemask);
1da177e4 3121
ace4dfee
TG
3122 /*
3123 * See if operation failed and additional status checks are
3124 * available
3125 */
3126 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
3127 status = chip->errstat(mtd, chip, FL_ERASING,
3128 status, page);
068e3c0a 3129
1da177e4 3130 /* See if block erase succeeded */
a4ab4c5d 3131 if (status & NAND_STATUS_FAIL) {
289c0522
BN
3132 pr_debug("%s: failed erase, page 0x%08x\n",
3133 __func__, page);
1da177e4 3134 instr->state = MTD_ERASE_FAILED;
69423d99
AH
3135 instr->fail_addr =
3136 ((loff_t)page << chip->page_shift);
1da177e4
LT
3137 goto erase_exit;
3138 }
30f464b7 3139
1da177e4 3140 /* Increment page address and decrement length */
daae74ca 3141 len -= (1ULL << chip->phys_erase_shift);
1da177e4
LT
3142 page += pages_per_block;
3143
3144 /* Check, if we cross a chip boundary */
ace4dfee 3145 if (len && !(page & chip->pagemask)) {
1da177e4 3146 chipnr++;
ace4dfee
TG
3147 chip->select_chip(mtd, -1);
3148 chip->select_chip(mtd, chipnr);
1da177e4
LT
3149 }
3150 }
3151 instr->state = MTD_ERASE_DONE;
3152
7351d3a5 3153erase_exit:
1da177e4
LT
3154
3155 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
1da177e4
LT
3156
3157 /* Deselect and wake up anyone waiting on the device */
b0bb6903 3158 chip->select_chip(mtd, -1);
1da177e4
LT
3159 nand_release_device(mtd);
3160
49defc01
DW
3161 /* Do call back function */
3162 if (!ret)
3163 mtd_erase_callback(instr);
3164
1da177e4
LT
3165 /* Return more or less happy */
3166 return ret;
3167}
3168
3169/**
3170 * nand_sync - [MTD Interface] sync
8b6e50c9 3171 * @mtd: MTD device structure
1da177e4 3172 *
8b6e50c9 3173 * Sync is actually a wait for chip ready function.
1da177e4 3174 */
e0c7d767 3175static void nand_sync(struct mtd_info *mtd)
1da177e4 3176{
289c0522 3177 pr_debug("%s: called\n", __func__);
1da177e4
LT
3178
3179 /* Grab the lock and see if the device is available */
6a8214aa 3180 nand_get_device(mtd, FL_SYNCING);
1da177e4 3181 /* Release it and go back */
e0c7d767 3182 nand_release_device(mtd);
1da177e4
LT
3183}
3184
1da177e4 3185/**
ace4dfee 3186 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
8b6e50c9
BN
3187 * @mtd: MTD device structure
3188 * @offs: offset relative to mtd start
1da177e4 3189 */
ace4dfee 3190static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
1da177e4 3191{
9f3e0429
AT
3192 struct nand_chip *chip = mtd_to_nand(mtd);
3193 int chipnr = (int)(offs >> chip->chip_shift);
3194 int ret;
3195
3196 /* Select the NAND device */
3197 nand_get_device(mtd, FL_READING);
3198 chip->select_chip(mtd, chipnr);
3199
3200 ret = nand_block_checkbad(mtd, offs, 0);
3201
3202 chip->select_chip(mtd, -1);
3203 nand_release_device(mtd);
3204
3205 return ret;
1da177e4
LT
3206}
3207
3208/**
ace4dfee 3209 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
8b6e50c9
BN
3210 * @mtd: MTD device structure
3211 * @ofs: offset relative to mtd start
1da177e4 3212 */
e0c7d767 3213static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
1da177e4 3214{
1da177e4
LT
3215 int ret;
3216
f8ac0414
FF
3217 ret = nand_block_isbad(mtd, ofs);
3218 if (ret) {
8b6e50c9 3219 /* If it was bad already, return success and do nothing */
1da177e4
LT
3220 if (ret > 0)
3221 return 0;
e0c7d767
DW
3222 return ret;
3223 }
1da177e4 3224
5a0edb25 3225 return nand_block_markbad_lowlevel(mtd, ofs);
1da177e4
LT
3226}
3227
7db03ecc
HS
3228/**
3229 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
3230 * @mtd: MTD device structure
3231 * @chip: nand chip info structure
3232 * @addr: feature address.
3233 * @subfeature_param: the subfeature parameters, a four bytes array.
3234 */
3235static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
3236 int addr, uint8_t *subfeature_param)
3237{
3238 int status;
05f78359 3239 int i;
7db03ecc 3240
d914c932
DM
3241 if (!chip->onfi_version ||
3242 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3243 & ONFI_OPT_CMD_SET_GET_FEATURES))
7db03ecc
HS
3244 return -EINVAL;
3245
3246 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
05f78359
UKK
3247 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3248 chip->write_byte(mtd, subfeature_param[i]);
3249
7db03ecc
HS
3250 status = chip->waitfunc(mtd, chip);
3251 if (status & NAND_STATUS_FAIL)
3252 return -EIO;
3253 return 0;
3254}
3255
3256/**
3257 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
3258 * @mtd: MTD device structure
3259 * @chip: nand chip info structure
3260 * @addr: feature address.
3261 * @subfeature_param: the subfeature parameters, a four bytes array.
3262 */
3263static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
3264 int addr, uint8_t *subfeature_param)
3265{
05f78359
UKK
3266 int i;
3267
d914c932
DM
3268 if (!chip->onfi_version ||
3269 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3270 & ONFI_OPT_CMD_SET_GET_FEATURES))
7db03ecc
HS
3271 return -EINVAL;
3272
7db03ecc 3273 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
05f78359
UKK
3274 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3275 *subfeature_param++ = chip->read_byte(mtd);
7db03ecc
HS
3276 return 0;
3277}
3278
962034f4
VW
3279/**
3280 * nand_suspend - [MTD Interface] Suspend the NAND flash
8b6e50c9 3281 * @mtd: MTD device structure
962034f4
VW
3282 */
3283static int nand_suspend(struct mtd_info *mtd)
3284{
6a8214aa 3285 return nand_get_device(mtd, FL_PM_SUSPENDED);
962034f4
VW
3286}
3287
3288/**
3289 * nand_resume - [MTD Interface] Resume the NAND flash
8b6e50c9 3290 * @mtd: MTD device structure
962034f4
VW
3291 */
3292static void nand_resume(struct mtd_info *mtd)
3293{
862eba51 3294 struct nand_chip *chip = mtd_to_nand(mtd);
962034f4 3295
ace4dfee 3296 if (chip->state == FL_PM_SUSPENDED)
962034f4
VW
3297 nand_release_device(mtd);
3298 else
d0370219
BN
3299 pr_err("%s called for a chip which is not in suspended state\n",
3300 __func__);
962034f4
VW
3301}
3302
72ea4036
SB
3303/**
3304 * nand_shutdown - [MTD Interface] Finish the current NAND operation and
3305 * prevent further operations
3306 * @mtd: MTD device structure
3307 */
3308static void nand_shutdown(struct mtd_info *mtd)
3309{
9ca641b0 3310 nand_get_device(mtd, FL_PM_SUSPENDED);
72ea4036
SB
3311}
3312
8b6e50c9 3313/* Set default functions */
ace4dfee 3314static void nand_set_defaults(struct nand_chip *chip, int busw)
7aa65bfd 3315{
1da177e4 3316 /* check for proper chip_delay setup, set 20us if not */
ace4dfee
TG
3317 if (!chip->chip_delay)
3318 chip->chip_delay = 20;
1da177e4
LT
3319
3320 /* check, if a user supplied command function given */
ace4dfee
TG
3321 if (chip->cmdfunc == NULL)
3322 chip->cmdfunc = nand_command;
1da177e4
LT
3323
3324 /* check, if a user supplied wait function given */
ace4dfee
TG
3325 if (chip->waitfunc == NULL)
3326 chip->waitfunc = nand_wait;
3327
3328 if (!chip->select_chip)
3329 chip->select_chip = nand_select_chip;
68e80780 3330
4204cccd
HS
3331 /* set for ONFI nand */
3332 if (!chip->onfi_set_features)
3333 chip->onfi_set_features = nand_onfi_set_features;
3334 if (!chip->onfi_get_features)
3335 chip->onfi_get_features = nand_onfi_get_features;
3336
68e80780
BN
3337 /* If called twice, pointers that depend on busw may need to be reset */
3338 if (!chip->read_byte || chip->read_byte == nand_read_byte)
ace4dfee
TG
3339 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
3340 if (!chip->read_word)
3341 chip->read_word = nand_read_word;
3342 if (!chip->block_bad)
3343 chip->block_bad = nand_block_bad;
3344 if (!chip->block_markbad)
3345 chip->block_markbad = nand_default_block_markbad;
68e80780 3346 if (!chip->write_buf || chip->write_buf == nand_write_buf)
ace4dfee 3347 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
05f78359
UKK
3348 if (!chip->write_byte || chip->write_byte == nand_write_byte)
3349 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
68e80780 3350 if (!chip->read_buf || chip->read_buf == nand_read_buf)
ace4dfee 3351 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
ace4dfee
TG
3352 if (!chip->scan_bbt)
3353 chip->scan_bbt = nand_default_bbt;
f75e5097
TG
3354
3355 if (!chip->controller) {
3356 chip->controller = &chip->hwcontrol;
d45bc58d 3357 nand_hw_control_init(chip->controller);
f75e5097
TG
3358 }
3359
7aa65bfd
TG
3360}
3361
8b6e50c9 3362/* Sanitize ONFI strings so we can safely print them */
d1e1f4e4
FF
3363static void sanitize_string(uint8_t *s, size_t len)
3364{
3365 ssize_t i;
3366
8b6e50c9 3367 /* Null terminate */
d1e1f4e4
FF
3368 s[len - 1] = 0;
3369
8b6e50c9 3370 /* Remove non printable chars */
d1e1f4e4
FF
3371 for (i = 0; i < len - 1; i++) {
3372 if (s[i] < ' ' || s[i] > 127)
3373 s[i] = '?';
3374 }
3375
8b6e50c9 3376 /* Remove trailing spaces */
d1e1f4e4
FF
3377 strim(s);
3378}
3379
3380static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
3381{
3382 int i;
3383 while (len--) {
3384 crc ^= *p++ << 8;
3385 for (i = 0; i < 8; i++)
3386 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
3387 }
3388
3389 return crc;
3390}
3391
6dcbe0cd
HS
3392/* Parse the Extended Parameter Page. */
3393static int nand_flash_detect_ext_param_page(struct mtd_info *mtd,
3394 struct nand_chip *chip, struct nand_onfi_params *p)
3395{
3396 struct onfi_ext_param_page *ep;
3397 struct onfi_ext_section *s;
3398 struct onfi_ext_ecc_info *ecc;
3399 uint8_t *cursor;
3400 int ret = -EINVAL;
3401 int len;
3402 int i;
3403
3404 len = le16_to_cpu(p->ext_param_page_length) * 16;
3405 ep = kmalloc(len, GFP_KERNEL);
5cb13271
BN
3406 if (!ep)
3407 return -ENOMEM;
6dcbe0cd
HS
3408
3409 /* Send our own NAND_CMD_PARAM. */
3410 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3411
3412 /* Use the Change Read Column command to skip the ONFI param pages. */
3413 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
3414 sizeof(*p) * p->num_of_param_pages , -1);
3415
3416 /* Read out the Extended Parameter Page. */
3417 chip->read_buf(mtd, (uint8_t *)ep, len);
3418 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
3419 != le16_to_cpu(ep->crc))) {
3420 pr_debug("fail in the CRC.\n");
3421 goto ext_out;
3422 }
3423
3424 /*
3425 * Check the signature.
3426 * Do not strictly follow the ONFI spec, maybe changed in future.
3427 */
3428 if (strncmp(ep->sig, "EPPS", 4)) {
3429 pr_debug("The signature is invalid.\n");
3430 goto ext_out;
3431 }
3432
3433 /* find the ECC section. */
3434 cursor = (uint8_t *)(ep + 1);
3435 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
3436 s = ep->sections + i;
3437 if (s->type == ONFI_SECTION_TYPE_2)
3438 break;
3439 cursor += s->length * 16;
3440 }
3441 if (i == ONFI_EXT_SECTION_MAX) {
3442 pr_debug("We can not find the ECC section.\n");
3443 goto ext_out;
3444 }
3445
3446 /* get the info we want. */
3447 ecc = (struct onfi_ext_ecc_info *)cursor;
3448
4ae7d228
BN
3449 if (!ecc->codeword_size) {
3450 pr_debug("Invalid codeword size\n");
3451 goto ext_out;
6dcbe0cd
HS
3452 }
3453
4ae7d228
BN
3454 chip->ecc_strength_ds = ecc->ecc_bits;
3455 chip->ecc_step_ds = 1 << ecc->codeword_size;
5cb13271 3456 ret = 0;
6dcbe0cd
HS
3457
3458ext_out:
3459 kfree(ep);
3460 return ret;
3461}
3462
8429bb39
BN
3463static int nand_setup_read_retry_micron(struct mtd_info *mtd, int retry_mode)
3464{
862eba51 3465 struct nand_chip *chip = mtd_to_nand(mtd);
8429bb39
BN
3466 uint8_t feature[ONFI_SUBFEATURE_PARAM_LEN] = {retry_mode};
3467
3468 return chip->onfi_set_features(mtd, chip, ONFI_FEATURE_ADDR_READ_RETRY,
3469 feature);
3470}
3471
3472/*
3473 * Configure chip properties from Micron vendor-specific ONFI table
3474 */
3475static void nand_onfi_detect_micron(struct nand_chip *chip,
3476 struct nand_onfi_params *p)
3477{
3478 struct nand_onfi_vendor_micron *micron = (void *)p->vendor;
3479
3480 if (le16_to_cpu(p->vendor_revision) < 1)
3481 return;
3482
3483 chip->read_retries = micron->read_retry_options;
3484 chip->setup_read_retry = nand_setup_read_retry_micron;
3485}
3486
6fb277ba 3487/*
8b6e50c9 3488 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
6fb277ba
FF
3489 */
3490static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
08c248fb 3491 int *busw)
6fb277ba
FF
3492{
3493 struct nand_onfi_params *p = &chip->onfi_params;
bd9c6e99 3494 int i, j;
6fb277ba
FF
3495 int val;
3496
7854d3f7 3497 /* Try ONFI for unknown chip or LP */
6fb277ba
FF
3498 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
3499 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
3500 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
3501 return 0;
3502
6fb277ba
FF
3503 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3504 for (i = 0; i < 3; i++) {
bd9c6e99
BN
3505 for (j = 0; j < sizeof(*p); j++)
3506 ((uint8_t *)p)[j] = chip->read_byte(mtd);
6fb277ba
FF
3507 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
3508 le16_to_cpu(p->crc)) {
6fb277ba
FF
3509 break;
3510 }
3511 }
3512
c7f23a70
BN
3513 if (i == 3) {
3514 pr_err("Could not find valid ONFI parameter page; aborting\n");
6fb277ba 3515 return 0;
c7f23a70 3516 }
6fb277ba 3517
8b6e50c9 3518 /* Check version */
6fb277ba 3519 val = le16_to_cpu(p->revision);
b7b1a29d
BN
3520 if (val & (1 << 5))
3521 chip->onfi_version = 23;
3522 else if (val & (1 << 4))
6fb277ba
FF
3523 chip->onfi_version = 22;
3524 else if (val & (1 << 3))
3525 chip->onfi_version = 21;
3526 else if (val & (1 << 2))
3527 chip->onfi_version = 20;
b7b1a29d 3528 else if (val & (1 << 1))
6fb277ba 3529 chip->onfi_version = 10;
b7b1a29d
BN
3530
3531 if (!chip->onfi_version) {
20171642 3532 pr_info("unsupported ONFI version: %d\n", val);
b7b1a29d
BN
3533 return 0;
3534 }
6fb277ba
FF
3535
3536 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3537 sanitize_string(p->model, sizeof(p->model));
3538 if (!mtd->name)
3539 mtd->name = p->model;
4355b70c 3540
6fb277ba 3541 mtd->writesize = le32_to_cpu(p->byte_per_page);
4355b70c
BN
3542
3543 /*
3544 * pages_per_block and blocks_per_lun may not be a power-of-2 size
3545 * (don't ask me who thought of this...). MTD assumes that these
3546 * dimensions will be power-of-2, so just truncate the remaining area.
3547 */
3548 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3549 mtd->erasesize *= mtd->writesize;
3550
6fb277ba 3551 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
4355b70c
BN
3552
3553 /* See erasesize comment */
3554 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
63795755 3555 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
13fbd179 3556 chip->bits_per_cell = p->bits_per_cell;
e2985fc1
HS
3557
3558 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
08c248fb 3559 *busw = NAND_BUSWIDTH_16;
e2985fc1
HS
3560 else
3561 *busw = 0;
6fb277ba 3562
10c86bab
HS
3563 if (p->ecc_bits != 0xff) {
3564 chip->ecc_strength_ds = p->ecc_bits;
3565 chip->ecc_step_ds = 512;
6dcbe0cd
HS
3566 } else if (chip->onfi_version >= 21 &&
3567 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
3568
3569 /*
3570 * The nand_flash_detect_ext_param_page() uses the
3571 * Change Read Column command which maybe not supported
3572 * by the chip->cmdfunc. So try to update the chip->cmdfunc
3573 * now. We do not replace user supplied command function.
3574 */
3575 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3576 chip->cmdfunc = nand_command_lp;
3577
3578 /* The Extended Parameter Page is supported since ONFI 2.1. */
3579 if (nand_flash_detect_ext_param_page(mtd, chip, p))
c7f23a70
BN
3580 pr_warn("Failed to detect ONFI extended param page\n");
3581 } else {
3582 pr_warn("Could not retrieve ONFI ECC requirements\n");
10c86bab
HS
3583 }
3584
8429bb39
BN
3585 if (p->jedec_id == NAND_MFR_MICRON)
3586 nand_onfi_detect_micron(chip, p);
3587
6fb277ba
FF
3588 return 1;
3589}
3590
91361818
HS
3591/*
3592 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
3593 */
3594static int nand_flash_detect_jedec(struct mtd_info *mtd, struct nand_chip *chip,
3595 int *busw)
3596{
3597 struct nand_jedec_params *p = &chip->jedec_params;
3598 struct jedec_ecc_info *ecc;
3599 int val;
3600 int i, j;
3601
3602 /* Try JEDEC for unknown chip or LP */
3603 chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1);
3604 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' ||
3605 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' ||
3606 chip->read_byte(mtd) != 'C')
3607 return 0;
3608
3609 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1);
3610 for (i = 0; i < 3; i++) {
3611 for (j = 0; j < sizeof(*p); j++)
3612 ((uint8_t *)p)[j] = chip->read_byte(mtd);
3613
3614 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
3615 le16_to_cpu(p->crc))
3616 break;
3617 }
3618
3619 if (i == 3) {
3620 pr_err("Could not find valid JEDEC parameter page; aborting\n");
3621 return 0;
3622 }
3623
3624 /* Check version */
3625 val = le16_to_cpu(p->revision);
3626 if (val & (1 << 2))
3627 chip->jedec_version = 10;
3628 else if (val & (1 << 1))
3629 chip->jedec_version = 1; /* vendor specific version */
3630
3631 if (!chip->jedec_version) {
3632 pr_info("unsupported JEDEC version: %d\n", val);
3633 return 0;
3634 }
3635
3636 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3637 sanitize_string(p->model, sizeof(p->model));
3638 if (!mtd->name)
3639 mtd->name = p->model;
3640
3641 mtd->writesize = le32_to_cpu(p->byte_per_page);
3642
3643 /* Please reference to the comment for nand_flash_detect_onfi. */
3644 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3645 mtd->erasesize *= mtd->writesize;
3646
3647 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3648
3649 /* Please reference to the comment for nand_flash_detect_onfi. */
3650 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3651 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3652 chip->bits_per_cell = p->bits_per_cell;
3653
3654 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
3655 *busw = NAND_BUSWIDTH_16;
3656 else
3657 *busw = 0;
3658
3659 /* ECC info */
3660 ecc = &p->ecc_info[0];
3661
3662 if (ecc->codeword_size >= 9) {
3663 chip->ecc_strength_ds = ecc->ecc_bits;
3664 chip->ecc_step_ds = 1 << ecc->codeword_size;
3665 } else {
3666 pr_warn("Invalid codeword size\n");
3667 }
3668
3669 return 1;
3670}
3671
e3b88bd6
BN
3672/*
3673 * nand_id_has_period - Check if an ID string has a given wraparound period
3674 * @id_data: the ID string
3675 * @arrlen: the length of the @id_data array
3676 * @period: the period of repitition
3677 *
3678 * Check if an ID string is repeated within a given sequence of bytes at
3679 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
d4d4f1bf 3680 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
e3b88bd6
BN
3681 * if the repetition has a period of @period; otherwise, returns zero.
3682 */
3683static int nand_id_has_period(u8 *id_data, int arrlen, int period)
3684{
3685 int i, j;
3686 for (i = 0; i < period; i++)
3687 for (j = i + period; j < arrlen; j += period)
3688 if (id_data[i] != id_data[j])
3689 return 0;
3690 return 1;
3691}
3692
3693/*
3694 * nand_id_len - Get the length of an ID string returned by CMD_READID
3695 * @id_data: the ID string
3696 * @arrlen: the length of the @id_data array
3697
3698 * Returns the length of the ID string, according to known wraparound/trailing
3699 * zero patterns. If no pattern exists, returns the length of the array.
3700 */
3701static int nand_id_len(u8 *id_data, int arrlen)
3702{
3703 int last_nonzero, period;
3704
3705 /* Find last non-zero byte */
3706 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
3707 if (id_data[last_nonzero])
3708 break;
3709
3710 /* All zeros */
3711 if (last_nonzero < 0)
3712 return 0;
3713
3714 /* Calculate wraparound period */
3715 for (period = 1; period < arrlen; period++)
3716 if (nand_id_has_period(id_data, arrlen, period))
3717 break;
3718
3719 /* There's a repeated pattern */
3720 if (period < arrlen)
3721 return period;
3722
3723 /* There are trailing zeros */
3724 if (last_nonzero < arrlen - 1)
3725 return last_nonzero + 1;
3726
3727 /* No pattern detected */
3728 return arrlen;
3729}
3730
7db906b7
HS
3731/* Extract the bits of per cell from the 3rd byte of the extended ID */
3732static int nand_get_bits_per_cell(u8 cellinfo)
3733{
3734 int bits;
3735
3736 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
3737 bits >>= NAND_CI_CELLTYPE_SHIFT;
3738 return bits + 1;
3739}
3740
fc09bbc0
BN
3741/*
3742 * Many new NAND share similar device ID codes, which represent the size of the
3743 * chip. The rest of the parameters must be decoded according to generic or
3744 * manufacturer-specific "extended ID" decoding patterns.
3745 */
3746static void nand_decode_ext_id(struct mtd_info *mtd, struct nand_chip *chip,
3747 u8 id_data[8], int *busw)
3748{
e3b88bd6 3749 int extid, id_len;
fc09bbc0 3750 /* The 3rd id byte holds MLC / multichip data */
7db906b7 3751 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
fc09bbc0
BN
3752 /* The 4th id byte is the important one */
3753 extid = id_data[3];
3754
e3b88bd6
BN
3755 id_len = nand_id_len(id_data, 8);
3756
fc09bbc0
BN
3757 /*
3758 * Field definitions are in the following datasheets:
3759 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
af451af4 3760 * New Samsung (6 byte ID): Samsung K9GAG08U0F (p.44)
73ca392f 3761 * Hynix MLC (6 byte ID): Hynix H27UBG8T2B (p.22)
fc09bbc0 3762 *
af451af4
BN
3763 * Check for ID length, non-zero 6th byte, cell type, and Hynix/Samsung
3764 * ID to decide what to do.
fc09bbc0 3765 */
af451af4 3766 if (id_len == 6 && id_data[0] == NAND_MFR_SAMSUNG &&
1d0ed69d 3767 !nand_is_slc(chip) && id_data[5] != 0x00) {
fc09bbc0
BN
3768 /* Calc pagesize */
3769 mtd->writesize = 2048 << (extid & 0x03);
3770 extid >>= 2;
3771 /* Calc oobsize */
e2d3a35e 3772 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
fc09bbc0
BN
3773 case 1:
3774 mtd->oobsize = 128;
3775 break;
3776 case 2:
3777 mtd->oobsize = 218;
3778 break;
3779 case 3:
3780 mtd->oobsize = 400;
3781 break;
e2d3a35e 3782 case 4:
fc09bbc0
BN
3783 mtd->oobsize = 436;
3784 break;
e2d3a35e
BN
3785 case 5:
3786 mtd->oobsize = 512;
3787 break;
3788 case 6:
e2d3a35e
BN
3789 mtd->oobsize = 640;
3790 break;
94d04e82
HS
3791 case 7:
3792 default: /* Other cases are "reserved" (unknown) */
3793 mtd->oobsize = 1024;
3794 break;
fc09bbc0
BN
3795 }
3796 extid >>= 2;
3797 /* Calc blocksize */
3798 mtd->erasesize = (128 * 1024) <<
3799 (((extid >> 1) & 0x04) | (extid & 0x03));
3800 *busw = 0;
73ca392f 3801 } else if (id_len == 6 && id_data[0] == NAND_MFR_HYNIX &&
1d0ed69d 3802 !nand_is_slc(chip)) {
73ca392f
BN
3803 unsigned int tmp;
3804
3805 /* Calc pagesize */
3806 mtd->writesize = 2048 << (extid & 0x03);
3807 extid >>= 2;
3808 /* Calc oobsize */
3809 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
3810 case 0:
3811 mtd->oobsize = 128;
3812 break;
3813 case 1:
3814 mtd->oobsize = 224;
3815 break;
3816 case 2:
3817 mtd->oobsize = 448;
3818 break;
3819 case 3:
3820 mtd->oobsize = 64;
3821 break;
3822 case 4:
3823 mtd->oobsize = 32;
3824 break;
3825 case 5:
3826 mtd->oobsize = 16;
3827 break;
3828 default:
3829 mtd->oobsize = 640;
3830 break;
3831 }
3832 extid >>= 2;
3833 /* Calc blocksize */
3834 tmp = ((extid >> 1) & 0x04) | (extid & 0x03);
3835 if (tmp < 0x03)
3836 mtd->erasesize = (128 * 1024) << tmp;
3837 else if (tmp == 0x03)
3838 mtd->erasesize = 768 * 1024;
3839 else
3840 mtd->erasesize = (64 * 1024) << tmp;
3841 *busw = 0;
fc09bbc0
BN
3842 } else {
3843 /* Calc pagesize */
3844 mtd->writesize = 1024 << (extid & 0x03);
3845 extid >>= 2;
3846 /* Calc oobsize */
3847 mtd->oobsize = (8 << (extid & 0x01)) *
3848 (mtd->writesize >> 9);
3849 extid >>= 2;
3850 /* Calc blocksize. Blocksize is multiples of 64KiB */
3851 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3852 extid >>= 2;
3853 /* Get buswidth information */
3854 *busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
60c67382
BN
3855
3856 /*
3857 * Toshiba 24nm raw SLC (i.e., not BENAND) have 32B OOB per
3858 * 512B page. For Toshiba SLC, we decode the 5th/6th byte as
3859 * follows:
3860 * - ID byte 6, bits[2:0]: 100b -> 43nm, 101b -> 32nm,
3861 * 110b -> 24nm
3862 * - ID byte 5, bit[7]: 1 -> BENAND, 0 -> raw SLC
3863 */
3864 if (id_len >= 6 && id_data[0] == NAND_MFR_TOSHIBA &&
1d0ed69d 3865 nand_is_slc(chip) &&
60c67382
BN
3866 (id_data[5] & 0x7) == 0x6 /* 24nm */ &&
3867 !(id_data[4] & 0x80) /* !BENAND */) {
3868 mtd->oobsize = 32 * mtd->writesize >> 9;
3869 }
3870
fc09bbc0
BN
3871 }
3872}
3873
f23a481c
BN
3874/*
3875 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
3876 * decodes a matching ID table entry and assigns the MTD size parameters for
3877 * the chip.
3878 */
3879static void nand_decode_id(struct mtd_info *mtd, struct nand_chip *chip,
3880 struct nand_flash_dev *type, u8 id_data[8],
3881 int *busw)
3882{
3883 int maf_id = id_data[0];
3884
3885 mtd->erasesize = type->erasesize;
3886 mtd->writesize = type->pagesize;
3887 mtd->oobsize = mtd->writesize / 32;
3888 *busw = type->options & NAND_BUSWIDTH_16;
3889
1c195e90
HS
3890 /* All legacy ID NAND are small-page, SLC */
3891 chip->bits_per_cell = 1;
3892
f23a481c
BN
3893 /*
3894 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3895 * some Spansion chips have erasesize that conflicts with size
3896 * listed in nand_ids table.
3897 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3898 */
3899 if (maf_id == NAND_MFR_AMD && id_data[4] != 0x00 && id_data[5] == 0x00
3900 && id_data[6] == 0x00 && id_data[7] == 0x00
3901 && mtd->writesize == 512) {
3902 mtd->erasesize = 128 * 1024;
3903 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3904 }
3905}
3906
7e74c2d7
BN
3907/*
3908 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
3909 * heuristic patterns using various detected parameters (e.g., manufacturer,
3910 * page size, cell-type information).
3911 */
3912static void nand_decode_bbm_options(struct mtd_info *mtd,
3913 struct nand_chip *chip, u8 id_data[8])
3914{
3915 int maf_id = id_data[0];
3916
3917 /* Set the bad block position */
3918 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
3919 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
3920 else
3921 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
3922
3923 /*
3924 * Bad block marker is stored in the last page of each block on Samsung
3925 * and Hynix MLC devices; stored in first two pages of each block on
3926 * Micron devices with 2KiB pages and on SLC Samsung, Hynix, Toshiba,
3927 * AMD/Spansion, and Macronix. All others scan only the first page.
3928 */
1d0ed69d 3929 if (!nand_is_slc(chip) &&
7e74c2d7
BN
3930 (maf_id == NAND_MFR_SAMSUNG ||
3931 maf_id == NAND_MFR_HYNIX))
3932 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
1d0ed69d 3933 else if ((nand_is_slc(chip) &&
7e74c2d7
BN
3934 (maf_id == NAND_MFR_SAMSUNG ||
3935 maf_id == NAND_MFR_HYNIX ||
3936 maf_id == NAND_MFR_TOSHIBA ||
3937 maf_id == NAND_MFR_AMD ||
3938 maf_id == NAND_MFR_MACRONIX)) ||
3939 (mtd->writesize == 2048 &&
3940 maf_id == NAND_MFR_MICRON))
3941 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
3942}
3943
ec6e87e3
HS
3944static inline bool is_full_id_nand(struct nand_flash_dev *type)
3945{
3946 return type->id_len;
3947}
3948
3949static bool find_full_id_nand(struct mtd_info *mtd, struct nand_chip *chip,
3950 struct nand_flash_dev *type, u8 *id_data, int *busw)
3951{
3952 if (!strncmp(type->id, id_data, type->id_len)) {
3953 mtd->writesize = type->pagesize;
3954 mtd->erasesize = type->erasesize;
3955 mtd->oobsize = type->oobsize;
3956
7db906b7 3957 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
ec6e87e3
HS
3958 chip->chipsize = (uint64_t)type->chipsize << 20;
3959 chip->options |= type->options;
57219342
HS
3960 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
3961 chip->ecc_step_ds = NAND_ECC_STEP(type);
57a94e24
BB
3962 chip->onfi_timing_mode_default =
3963 type->onfi_timing_mode_default;
ec6e87e3
HS
3964
3965 *busw = type->options & NAND_BUSWIDTH_16;
3966
092b6a1d
CZ
3967 if (!mtd->name)
3968 mtd->name = type->name;
3969
ec6e87e3
HS
3970 return true;
3971 }
3972 return false;
3973}
3974
7aa65bfd 3975/*
8b6e50c9 3976 * Get the flash and manufacturer id and lookup if the type is supported.
7aa65bfd
TG
3977 */
3978static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
ace4dfee 3979 struct nand_chip *chip,
7351d3a5 3980 int *maf_id, int *dev_id,
5e81e88a 3981 struct nand_flash_dev *type)
7aa65bfd 3982{
bb77082f 3983 int busw;
d1e1f4e4 3984 int i, maf_idx;
426c457a 3985 u8 id_data[8];
1da177e4
LT
3986
3987 /* Select the device */
ace4dfee 3988 chip->select_chip(mtd, 0);
1da177e4 3989
ef89a880
KB
3990 /*
3991 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
8b6e50c9 3992 * after power-up.
ef89a880 3993 */
2f94abfe 3994 nand_reset(chip);
ef89a880 3995
1da177e4 3996 /* Send the command for reading device ID */
ace4dfee 3997 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
1da177e4
LT
3998
3999 /* Read manufacturer and device IDs */
ace4dfee 4000 *maf_id = chip->read_byte(mtd);
d1e1f4e4 4001 *dev_id = chip->read_byte(mtd);
1da177e4 4002
8b6e50c9
BN
4003 /*
4004 * Try again to make sure, as some systems the bus-hold or other
ed8165c7
BD
4005 * interface concerns can cause random data which looks like a
4006 * possibly credible NAND flash to appear. If the two results do
4007 * not match, ignore the device completely.
4008 */
4009
4010 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
4011
4aef9b78
BN
4012 /* Read entire ID string */
4013 for (i = 0; i < 8; i++)
426c457a 4014 id_data[i] = chip->read_byte(mtd);
ed8165c7 4015
d1e1f4e4 4016 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
20171642 4017 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
d0370219 4018 *maf_id, *dev_id, id_data[0], id_data[1]);
ed8165c7
BD
4019 return ERR_PTR(-ENODEV);
4020 }
4021
7aa65bfd 4022 if (!type)
5e81e88a
DW
4023 type = nand_flash_ids;
4024
ec6e87e3
HS
4025 for (; type->name != NULL; type++) {
4026 if (is_full_id_nand(type)) {
4027 if (find_full_id_nand(mtd, chip, type, id_data, &busw))
4028 goto ident_done;
4029 } else if (*dev_id == type->dev_id) {
db5b09f6 4030 break;
ec6e87e3
HS
4031 }
4032 }
5e81e88a 4033
d1e1f4e4
FF
4034 chip->onfi_version = 0;
4035 if (!type->name || !type->pagesize) {
35fc5195 4036 /* Check if the chip is ONFI compliant */
47450b35 4037 if (nand_flash_detect_onfi(mtd, chip, &busw))
6fb277ba 4038 goto ident_done;
91361818
HS
4039
4040 /* Check if the chip is JEDEC compliant */
4041 if (nand_flash_detect_jedec(mtd, chip, &busw))
4042 goto ident_done;
d1e1f4e4
FF
4043 }
4044
5e81e88a 4045 if (!type->name)
7aa65bfd
TG
4046 return ERR_PTR(-ENODEV);
4047
ba0251fe
TG
4048 if (!mtd->name)
4049 mtd->name = type->name;
4050
69423d99 4051 chip->chipsize = (uint64_t)type->chipsize << 20;
7aa65bfd 4052
a7f5ba40 4053 if (!type->pagesize) {
fc09bbc0
BN
4054 /* Decode parameters from extended ID */
4055 nand_decode_ext_id(mtd, chip, id_data, &busw);
7aa65bfd 4056 } else {
f23a481c 4057 nand_decode_id(mtd, chip, type, id_data, &busw);
7aa65bfd 4058 }
bf7a01bf
BN
4059 /* Get chip options */
4060 chip->options |= type->options;
d1e1f4e4 4061
8b6e50c9
BN
4062 /*
4063 * Check if chip is not a Samsung device. Do not clear the
4064 * options for chips which do not have an extended id.
d1e1f4e4
FF
4065 */
4066 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
4067 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
4068ident_done:
4069
7aa65bfd 4070 /* Try to identify manufacturer */
9a909867 4071 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
7aa65bfd
TG
4072 if (nand_manuf_ids[maf_idx].id == *maf_id)
4073 break;
4074 }
0ea4a755 4075
64b37b2a
MC
4076 if (chip->options & NAND_BUSWIDTH_AUTO) {
4077 WARN_ON(chip->options & NAND_BUSWIDTH_16);
4078 chip->options |= busw;
4079 nand_set_defaults(chip, busw);
4080 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
4081 /*
4082 * Check, if buswidth is correct. Hardware drivers should set
4083 * chip correct!
4084 */
20171642
EG
4085 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
4086 *maf_id, *dev_id);
4087 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name, mtd->name);
4088 pr_warn("bus width %d instead %d bit\n",
d0370219
BN
4089 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
4090 busw ? 16 : 8);
7aa65bfd
TG
4091 return ERR_PTR(-EINVAL);
4092 }
61b03bd7 4093
7e74c2d7
BN
4094 nand_decode_bbm_options(mtd, chip, id_data);
4095
7aa65bfd 4096 /* Calculate the address shift from the page size */
ace4dfee 4097 chip->page_shift = ffs(mtd->writesize) - 1;
8b6e50c9 4098 /* Convert chipsize to number of pages per chip -1 */
ace4dfee 4099 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
61b03bd7 4100
ace4dfee 4101 chip->bbt_erase_shift = chip->phys_erase_shift =
7aa65bfd 4102 ffs(mtd->erasesize) - 1;
69423d99
AH
4103 if (chip->chipsize & 0xffffffff)
4104 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
7351d3a5
FF
4105 else {
4106 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
4107 chip->chip_shift += 32 - 1;
4108 }
1da177e4 4109
26d9be11 4110 chip->badblockbits = 8;
49c50b97 4111 chip->erase = single_erase;
7aa65bfd 4112
8b6e50c9 4113 /* Do not replace user supplied command function! */
ace4dfee
TG
4114 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
4115 chip->cmdfunc = nand_command_lp;
7aa65bfd 4116
20171642
EG
4117 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
4118 *maf_id, *dev_id);
ffdac6cd
HS
4119
4120 if (chip->onfi_version)
4121 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
4122 chip->onfi_params.model);
4123 else if (chip->jedec_version)
4124 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
4125 chip->jedec_params.model);
4126 else
4127 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
4128 type->name);
4129
3755a991 4130 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
3723e93c 4131 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
3755a991 4132 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
7aa65bfd
TG
4133 return type;
4134}
4135
d48f62b9
BB
4136static const char * const nand_ecc_modes[] = {
4137 [NAND_ECC_NONE] = "none",
4138 [NAND_ECC_SOFT] = "soft",
4139 [NAND_ECC_HW] = "hw",
4140 [NAND_ECC_HW_SYNDROME] = "hw_syndrome",
4141 [NAND_ECC_HW_OOB_FIRST] = "hw_oob_first",
d48f62b9
BB
4142};
4143
4144static int of_get_nand_ecc_mode(struct device_node *np)
4145{
4146 const char *pm;
4147 int err, i;
4148
4149 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4150 if (err < 0)
4151 return err;
4152
4153 for (i = 0; i < ARRAY_SIZE(nand_ecc_modes); i++)
4154 if (!strcasecmp(pm, nand_ecc_modes[i]))
4155 return i;
4156
ae211bcf
RM
4157 /*
4158 * For backward compatibility we support few obsoleted values that don't
4159 * have their mappings into nand_ecc_modes_t anymore (they were merged
4160 * with other enums).
4161 */
4162 if (!strcasecmp(pm, "soft_bch"))
4163 return NAND_ECC_SOFT;
4164
d48f62b9
BB
4165 return -ENODEV;
4166}
4167
ba4f46b2
RM
4168static const char * const nand_ecc_algos[] = {
4169 [NAND_ECC_HAMMING] = "hamming",
4170 [NAND_ECC_BCH] = "bch",
4171};
4172
d48f62b9
BB
4173static int of_get_nand_ecc_algo(struct device_node *np)
4174{
4175 const char *pm;
ba4f46b2 4176 int err, i;
d48f62b9 4177
ba4f46b2
RM
4178 err = of_property_read_string(np, "nand-ecc-algo", &pm);
4179 if (!err) {
4180 for (i = NAND_ECC_HAMMING; i < ARRAY_SIZE(nand_ecc_algos); i++)
4181 if (!strcasecmp(pm, nand_ecc_algos[i]))
4182 return i;
4183 return -ENODEV;
4184 }
d48f62b9
BB
4185
4186 /*
4187 * For backward compatibility we also read "nand-ecc-mode" checking
4188 * for some obsoleted values that were specifying ECC algorithm.
4189 */
4190 err = of_property_read_string(np, "nand-ecc-mode", &pm);
4191 if (err < 0)
4192 return err;
4193
4194 if (!strcasecmp(pm, "soft"))
4195 return NAND_ECC_HAMMING;
4196 else if (!strcasecmp(pm, "soft_bch"))
4197 return NAND_ECC_BCH;
4198
4199 return -ENODEV;
4200}
4201
4202static int of_get_nand_ecc_step_size(struct device_node *np)
4203{
4204 int ret;
4205 u32 val;
4206
4207 ret = of_property_read_u32(np, "nand-ecc-step-size", &val);
4208 return ret ? ret : val;
4209}
4210
4211static int of_get_nand_ecc_strength(struct device_node *np)
4212{
4213 int ret;
4214 u32 val;
4215
4216 ret = of_property_read_u32(np, "nand-ecc-strength", &val);
4217 return ret ? ret : val;
4218}
4219
4220static int of_get_nand_bus_width(struct device_node *np)
4221{
4222 u32 val;
4223
4224 if (of_property_read_u32(np, "nand-bus-width", &val))
4225 return 8;
4226
4227 switch (val) {
4228 case 8:
4229 case 16:
4230 return val;
4231 default:
4232 return -EIO;
4233 }
4234}
4235
4236static bool of_get_nand_on_flash_bbt(struct device_node *np)
4237{
4238 return of_property_read_bool(np, "nand-on-flash-bbt");
4239}
4240
7194a29a 4241static int nand_dt_init(struct nand_chip *chip)
5844feea 4242{
7194a29a 4243 struct device_node *dn = nand_get_flash_node(chip);
79082457 4244 int ecc_mode, ecc_algo, ecc_strength, ecc_step;
5844feea 4245
7194a29a
BB
4246 if (!dn)
4247 return 0;
4248
5844feea
BN
4249 if (of_get_nand_bus_width(dn) == 16)
4250 chip->options |= NAND_BUSWIDTH_16;
4251
4252 if (of_get_nand_on_flash_bbt(dn))
4253 chip->bbt_options |= NAND_BBT_USE_FLASH;
4254
4255 ecc_mode = of_get_nand_ecc_mode(dn);
79082457 4256 ecc_algo = of_get_nand_ecc_algo(dn);
5844feea
BN
4257 ecc_strength = of_get_nand_ecc_strength(dn);
4258 ecc_step = of_get_nand_ecc_step_size(dn);
4259
4260 if ((ecc_step >= 0 && !(ecc_strength >= 0)) ||
4261 (!(ecc_step >= 0) && ecc_strength >= 0)) {
4262 pr_err("must set both strength and step size in DT\n");
4263 return -EINVAL;
4264 }
4265
4266 if (ecc_mode >= 0)
4267 chip->ecc.mode = ecc_mode;
4268
79082457
RM
4269 if (ecc_algo >= 0)
4270 chip->ecc.algo = ecc_algo;
4271
5844feea
BN
4272 if (ecc_strength >= 0)
4273 chip->ecc.strength = ecc_strength;
4274
4275 if (ecc_step > 0)
4276 chip->ecc.size = ecc_step;
4277
ba78ee00
BB
4278 if (of_property_read_bool(dn, "nand-ecc-maximize"))
4279 chip->ecc.options |= NAND_ECC_MAXIMIZE;
4280
5844feea
BN
4281 return 0;
4282}
4283
7aa65bfd 4284/**
3b85c321 4285 * nand_scan_ident - [NAND Interface] Scan for the NAND device
8b6e50c9
BN
4286 * @mtd: MTD device structure
4287 * @maxchips: number of chips to scan for
4288 * @table: alternative NAND ID table
7aa65bfd 4289 *
8b6e50c9
BN
4290 * This is the first phase of the normal nand_scan() function. It reads the
4291 * flash ID and sets up MTD fields accordingly.
7aa65bfd
TG
4292 *
4293 */
5e81e88a
DW
4294int nand_scan_ident(struct mtd_info *mtd, int maxchips,
4295 struct nand_flash_dev *table)
7aa65bfd 4296{
bb77082f 4297 int i, nand_maf_id, nand_dev_id;
862eba51 4298 struct nand_chip *chip = mtd_to_nand(mtd);
7aa65bfd 4299 struct nand_flash_dev *type;
5844feea
BN
4300 int ret;
4301
7194a29a
BB
4302 ret = nand_dt_init(chip);
4303 if (ret)
4304 return ret;
7aa65bfd 4305
f7a8e38f
BN
4306 if (!mtd->name && mtd->dev.parent)
4307 mtd->name = dev_name(mtd->dev.parent);
4308
76fe334f
AS
4309 if ((!chip->cmdfunc || !chip->select_chip) && !chip->cmd_ctrl) {
4310 /*
4311 * Default functions assigned for chip_select() and
4312 * cmdfunc() both expect cmd_ctrl() to be populated,
4313 * so we need to check that that's the case
4314 */
4315 pr_err("chip.cmd_ctrl() callback is not provided");
4316 return -EINVAL;
4317 }
7aa65bfd 4318 /* Set the default functions */
bb77082f 4319 nand_set_defaults(chip, chip->options & NAND_BUSWIDTH_16);
7aa65bfd
TG
4320
4321 /* Read the flash type */
bb77082f
CZ
4322 type = nand_get_flash_type(mtd, chip, &nand_maf_id,
4323 &nand_dev_id, table);
7aa65bfd
TG
4324
4325 if (IS_ERR(type)) {
b1c6e6db 4326 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
d0370219 4327 pr_warn("No NAND device found\n");
ace4dfee 4328 chip->select_chip(mtd, -1);
7aa65bfd 4329 return PTR_ERR(type);
1da177e4
LT
4330 }
4331
d8e725dd
BB
4332 ret = nand_init_data_interface(chip);
4333 if (ret)
4334 return ret;
4335
07300164
HS
4336 chip->select_chip(mtd, -1);
4337
7aa65bfd 4338 /* Check for a chip array */
e0c7d767 4339 for (i = 1; i < maxchips; i++) {
ace4dfee 4340 chip->select_chip(mtd, i);
ef89a880 4341 /* See comment in nand_get_flash_type for reset */
2f94abfe 4342 nand_reset(chip);
1da177e4 4343 /* Send the command for reading device ID */
ace4dfee 4344 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
1da177e4 4345 /* Read manufacturer and device IDs */
ace4dfee 4346 if (nand_maf_id != chip->read_byte(mtd) ||
07300164
HS
4347 nand_dev_id != chip->read_byte(mtd)) {
4348 chip->select_chip(mtd, -1);
1da177e4 4349 break;
07300164
HS
4350 }
4351 chip->select_chip(mtd, -1);
1da177e4
LT
4352 }
4353 if (i > 1)
20171642 4354 pr_info("%d chips detected\n", i);
61b03bd7 4355
1da177e4 4356 /* Store the number of chips and calc total size for mtd */
ace4dfee
TG
4357 chip->numchips = i;
4358 mtd->size = i * chip->chipsize;
7aa65bfd 4359
3b85c321
DW
4360 return 0;
4361}
7351d3a5 4362EXPORT_SYMBOL(nand_scan_ident);
3b85c321 4363
06f384c9
RM
4364static int nand_set_ecc_soft_ops(struct mtd_info *mtd)
4365{
4366 struct nand_chip *chip = mtd_to_nand(mtd);
4367 struct nand_ecc_ctrl *ecc = &chip->ecc;
4368
e4225ae8 4369 if (WARN_ON(ecc->mode != NAND_ECC_SOFT))
06f384c9
RM
4370 return -EINVAL;
4371
4372 switch (ecc->algo) {
4373 case NAND_ECC_HAMMING:
4374 ecc->calculate = nand_calculate_ecc;
4375 ecc->correct = nand_correct_data;
4376 ecc->read_page = nand_read_page_swecc;
4377 ecc->read_subpage = nand_read_subpage;
4378 ecc->write_page = nand_write_page_swecc;
4379 ecc->read_page_raw = nand_read_page_raw;
4380 ecc->write_page_raw = nand_write_page_raw;
4381 ecc->read_oob = nand_read_oob_std;
4382 ecc->write_oob = nand_write_oob_std;
4383 if (!ecc->size)
4384 ecc->size = 256;
4385 ecc->bytes = 3;
4386 ecc->strength = 1;
4387 return 0;
4388 case NAND_ECC_BCH:
4389 if (!mtd_nand_has_bch()) {
4390 WARN(1, "CONFIG_MTD_NAND_ECC_BCH not enabled\n");
4391 return -EINVAL;
4392 }
4393 ecc->calculate = nand_bch_calculate_ecc;
4394 ecc->correct = nand_bch_correct_data;
4395 ecc->read_page = nand_read_page_swecc;
4396 ecc->read_subpage = nand_read_subpage;
4397 ecc->write_page = nand_write_page_swecc;
4398 ecc->read_page_raw = nand_read_page_raw;
4399 ecc->write_page_raw = nand_write_page_raw;
4400 ecc->read_oob = nand_read_oob_std;
4401 ecc->write_oob = nand_write_oob_std;
8bbba481 4402
06f384c9
RM
4403 /*
4404 * Board driver should supply ecc.size and ecc.strength
4405 * values to select how many bits are correctable.
4406 * Otherwise, default to 4 bits for large page devices.
4407 */
4408 if (!ecc->size && (mtd->oobsize >= 64)) {
4409 ecc->size = 512;
4410 ecc->strength = 4;
4411 }
4412
4413 /*
4414 * if no ecc placement scheme was provided pickup the default
4415 * large page one.
4416 */
4417 if (!mtd->ooblayout) {
4418 /* handle large page devices only */
4419 if (mtd->oobsize < 64) {
4420 WARN(1, "OOB layout is required when using software BCH on small pages\n");
4421 return -EINVAL;
4422 }
4423
4424 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
8bbba481
BB
4425
4426 }
4427
4428 /*
4429 * We can only maximize ECC config when the default layout is
4430 * used, otherwise we don't know how many bytes can really be
4431 * used.
4432 */
4433 if (mtd->ooblayout == &nand_ooblayout_lp_ops &&
4434 ecc->options & NAND_ECC_MAXIMIZE) {
4435 int steps, bytes;
4436
4437 /* Always prefer 1k blocks over 512bytes ones */
4438 ecc->size = 1024;
4439 steps = mtd->writesize / ecc->size;
4440
4441 /* Reserve 2 bytes for the BBM */
4442 bytes = (mtd->oobsize - 2) / steps;
4443 ecc->strength = bytes * 8 / fls(8 * ecc->size);
06f384c9
RM
4444 }
4445
4446 /* See nand_bch_init() for details. */
4447 ecc->bytes = 0;
4448 ecc->priv = nand_bch_init(mtd);
4449 if (!ecc->priv) {
4450 WARN(1, "BCH ECC initialization failed!\n");
4451 return -EINVAL;
4452 }
4453 return 0;
4454 default:
4455 WARN(1, "Unsupported ECC algorithm!\n");
4456 return -EINVAL;
4457 }
4458}
4459
67a9ad9b
EG
4460/*
4461 * Check if the chip configuration meet the datasheet requirements.
4462
4463 * If our configuration corrects A bits per B bytes and the minimum
4464 * required correction level is X bits per Y bytes, then we must ensure
4465 * both of the following are true:
4466 *
4467 * (1) A / B >= X / Y
4468 * (2) A >= X
4469 *
4470 * Requirement (1) ensures we can correct for the required bitflip density.
4471 * Requirement (2) ensures we can correct even when all bitflips are clumped
4472 * in the same sector.
4473 */
4474static bool nand_ecc_strength_good(struct mtd_info *mtd)
4475{
862eba51 4476 struct nand_chip *chip = mtd_to_nand(mtd);
67a9ad9b
EG
4477 struct nand_ecc_ctrl *ecc = &chip->ecc;
4478 int corr, ds_corr;
4479
4480 if (ecc->size == 0 || chip->ecc_step_ds == 0)
4481 /* Not enough information */
4482 return true;
4483
4484 /*
4485 * We get the number of corrected bits per page to compare
4486 * the correction density.
4487 */
4488 corr = (mtd->writesize * ecc->strength) / ecc->size;
4489 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
4490
4491 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
4492}
3b85c321
DW
4493
4494/**
4495 * nand_scan_tail - [NAND Interface] Scan for the NAND device
8b6e50c9 4496 * @mtd: MTD device structure
3b85c321 4497 *
8b6e50c9
BN
4498 * This is the second phase of the normal nand_scan() function. It fills out
4499 * all the uninitialized function pointers with the defaults and scans for a
4500 * bad block table if appropriate.
3b85c321
DW
4501 */
4502int nand_scan_tail(struct mtd_info *mtd)
4503{
862eba51 4504 struct nand_chip *chip = mtd_to_nand(mtd);
97de79e0 4505 struct nand_ecc_ctrl *ecc = &chip->ecc;
f02ea4e6 4506 struct nand_buffers *nbuf;
11eaf6df 4507 int ret;
3b85c321 4508
e2414f4c 4509 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
11eaf6df
EG
4510 if (WARN_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
4511 !(chip->bbt_options & NAND_BBT_USE_FLASH)))
4512 return -EINVAL;
e2414f4c 4513
f02ea4e6
HS
4514 if (!(chip->options & NAND_OWN_BUFFERS)) {
4515 nbuf = kzalloc(sizeof(*nbuf) + mtd->writesize
4516 + mtd->oobsize * 3, GFP_KERNEL);
4517 if (!nbuf)
4518 return -ENOMEM;
4519 nbuf->ecccalc = (uint8_t *)(nbuf + 1);
4520 nbuf->ecccode = nbuf->ecccalc + mtd->oobsize;
4521 nbuf->databuf = nbuf->ecccode + mtd->oobsize;
4522
4523 chip->buffers = nbuf;
4524 } else {
4525 if (!chip->buffers)
4526 return -ENOMEM;
4527 }
4bf63fcb 4528
7dcdcbef 4529 /* Set the internal oob buffer location, just after the page data */
784f4d5e 4530 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
1da177e4 4531
7aa65bfd 4532 /*
8b6e50c9 4533 * If no default placement scheme is given, select an appropriate one.
7aa65bfd 4534 */
06f384c9 4535 if (!mtd->ooblayout &&
e4225ae8 4536 !(ecc->mode == NAND_ECC_SOFT && ecc->algo == NAND_ECC_BCH)) {
61b03bd7 4537 switch (mtd->oobsize) {
1da177e4 4538 case 8:
1da177e4 4539 case 16:
41b207a7 4540 mtd_set_ooblayout(mtd, &nand_ooblayout_sp_ops);
1da177e4
LT
4541 break;
4542 case 64:
81ec5364 4543 case 128:
41b207a7 4544 mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops);
81ec5364 4545 break;
1da177e4 4546 default:
11eaf6df
EG
4547 WARN(1, "No oob scheme defined for oobsize %d\n",
4548 mtd->oobsize);
4549 ret = -EINVAL;
4550 goto err_free;
1da177e4
LT
4551 }
4552 }
61b03bd7 4553
956e944c
DW
4554 if (!chip->write_page)
4555 chip->write_page = nand_write_page;
4556
61b03bd7 4557 /*
8b6e50c9 4558 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
7aa65bfd 4559 * selected and we have 256 byte pagesize fallback to software ECC
e0c7d767 4560 */
956e944c 4561
97de79e0 4562 switch (ecc->mode) {
6e0cb135
SN
4563 case NAND_ECC_HW_OOB_FIRST:
4564 /* Similar to NAND_ECC_HW, but a separate read_page handle */
97de79e0 4565 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
11eaf6df
EG
4566 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
4567 ret = -EINVAL;
4568 goto err_free;
6e0cb135 4569 }
97de79e0
HS
4570 if (!ecc->read_page)
4571 ecc->read_page = nand_read_page_hwecc_oob_first;
6e0cb135 4572
6dfc6d25 4573 case NAND_ECC_HW:
8b6e50c9 4574 /* Use standard hwecc read page function? */
97de79e0
HS
4575 if (!ecc->read_page)
4576 ecc->read_page = nand_read_page_hwecc;
4577 if (!ecc->write_page)
4578 ecc->write_page = nand_write_page_hwecc;
4579 if (!ecc->read_page_raw)
4580 ecc->read_page_raw = nand_read_page_raw;
4581 if (!ecc->write_page_raw)
4582 ecc->write_page_raw = nand_write_page_raw;
4583 if (!ecc->read_oob)
4584 ecc->read_oob = nand_read_oob_std;
4585 if (!ecc->write_oob)
4586 ecc->write_oob = nand_write_oob_std;
4587 if (!ecc->read_subpage)
4588 ecc->read_subpage = nand_read_subpage;
44991b3d 4589 if (!ecc->write_subpage && ecc->hwctl && ecc->calculate)
97de79e0 4590 ecc->write_subpage = nand_write_subpage_hwecc;
f5bbdacc 4591
6dfc6d25 4592 case NAND_ECC_HW_SYNDROME:
97de79e0
HS
4593 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
4594 (!ecc->read_page ||
4595 ecc->read_page == nand_read_page_hwecc ||
4596 !ecc->write_page ||
4597 ecc->write_page == nand_write_page_hwecc)) {
11eaf6df
EG
4598 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
4599 ret = -EINVAL;
4600 goto err_free;
6dfc6d25 4601 }
8b6e50c9 4602 /* Use standard syndrome read/write page function? */
97de79e0
HS
4603 if (!ecc->read_page)
4604 ecc->read_page = nand_read_page_syndrome;
4605 if (!ecc->write_page)
4606 ecc->write_page = nand_write_page_syndrome;
4607 if (!ecc->read_page_raw)
4608 ecc->read_page_raw = nand_read_page_raw_syndrome;
4609 if (!ecc->write_page_raw)
4610 ecc->write_page_raw = nand_write_page_raw_syndrome;
4611 if (!ecc->read_oob)
4612 ecc->read_oob = nand_read_oob_syndrome;
4613 if (!ecc->write_oob)
4614 ecc->write_oob = nand_write_oob_syndrome;
4615
4616 if (mtd->writesize >= ecc->size) {
4617 if (!ecc->strength) {
11eaf6df
EG
4618 WARN(1, "Driver must set ecc.strength when using hardware ECC\n");
4619 ret = -EINVAL;
4620 goto err_free;
e2788c98 4621 }
6dfc6d25 4622 break;
e2788c98 4623 }
2ac63d90
RM
4624 pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n",
4625 ecc->size, mtd->writesize);
97de79e0 4626 ecc->mode = NAND_ECC_SOFT;
e9d4faed 4627 ecc->algo = NAND_ECC_HAMMING;
61b03bd7 4628
6dfc6d25 4629 case NAND_ECC_SOFT:
06f384c9
RM
4630 ret = nand_set_ecc_soft_ops(mtd);
4631 if (ret) {
11eaf6df
EG
4632 ret = -EINVAL;
4633 goto err_free;
193bd400
ID
4634 }
4635 break;
4636
61b03bd7 4637 case NAND_ECC_NONE:
2ac63d90 4638 pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n");
97de79e0
HS
4639 ecc->read_page = nand_read_page_raw;
4640 ecc->write_page = nand_write_page_raw;
4641 ecc->read_oob = nand_read_oob_std;
4642 ecc->read_page_raw = nand_read_page_raw;
4643 ecc->write_page_raw = nand_write_page_raw;
4644 ecc->write_oob = nand_write_oob_std;
4645 ecc->size = mtd->writesize;
4646 ecc->bytes = 0;
4647 ecc->strength = 0;
1da177e4 4648 break;
956e944c 4649
1da177e4 4650 default:
11eaf6df
EG
4651 WARN(1, "Invalid NAND_ECC_MODE %d\n", ecc->mode);
4652 ret = -EINVAL;
4653 goto err_free;
1da177e4 4654 }
61b03bd7 4655
9ce244b3 4656 /* For many systems, the standard OOB write also works for raw */
97de79e0
HS
4657 if (!ecc->read_oob_raw)
4658 ecc->read_oob_raw = ecc->read_oob;
4659 if (!ecc->write_oob_raw)
4660 ecc->write_oob_raw = ecc->write_oob;
9ce244b3 4661
846031d3 4662 /* propagate ecc info to mtd_info */
846031d3
BB
4663 mtd->ecc_strength = ecc->strength;
4664 mtd->ecc_step_size = ecc->size;
67a9ad9b 4665
7aa65bfd
TG
4666 /*
4667 * Set the number of read / write steps for one page depending on ECC
8b6e50c9 4668 * mode.
7aa65bfd 4669 */
97de79e0
HS
4670 ecc->steps = mtd->writesize / ecc->size;
4671 if (ecc->steps * ecc->size != mtd->writesize) {
11eaf6df
EG
4672 WARN(1, "Invalid ECC parameters\n");
4673 ret = -EINVAL;
4674 goto err_free;
1da177e4 4675 }
97de79e0 4676 ecc->total = ecc->steps * ecc->bytes;
61b03bd7 4677
846031d3
BB
4678 /*
4679 * The number of bytes available for a client to place data into
4680 * the out of band area.
4681 */
4682 ret = mtd_ooblayout_count_freebytes(mtd);
4683 if (ret < 0)
4684 ret = 0;
4685
4686 mtd->oobavail = ret;
4687
4688 /* ECC sanity check: warn if it's too weak */
4689 if (!nand_ecc_strength_good(mtd))
4690 pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n",
4691 mtd->name);
4692
8b6e50c9 4693 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
1d0ed69d 4694 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
97de79e0 4695 switch (ecc->steps) {
29072b96
TG
4696 case 2:
4697 mtd->subpage_sft = 1;
4698 break;
4699 case 4:
4700 case 8:
81ec5364 4701 case 16:
29072b96
TG
4702 mtd->subpage_sft = 2;
4703 break;
4704 }
4705 }
4706 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
4707
04bbd0ea 4708 /* Initialize state */
ace4dfee 4709 chip->state = FL_READY;
1da177e4 4710
1da177e4 4711 /* Invalidate the pagebuffer reference */
ace4dfee 4712 chip->pagebuf = -1;
1da177e4 4713
a5ff4f10 4714 /* Large page NAND with SOFT_ECC should support subpage reads */
4007e2d1
RL
4715 switch (ecc->mode) {
4716 case NAND_ECC_SOFT:
4007e2d1
RL
4717 if (chip->page_shift > 9)
4718 chip->options |= NAND_SUBPAGE_READ;
4719 break;
4720
4721 default:
4722 break;
4723 }
a5ff4f10 4724
1da177e4 4725 /* Fill in remaining MTD driver data */
963d1c28 4726 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
93edbad6
ML
4727 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
4728 MTD_CAP_NANDFLASH;
3c3c10bb
AB
4729 mtd->_erase = nand_erase;
4730 mtd->_point = NULL;
4731 mtd->_unpoint = NULL;
4732 mtd->_read = nand_read;
4733 mtd->_write = nand_write;
4734 mtd->_panic_write = panic_nand_write;
4735 mtd->_read_oob = nand_read_oob;
4736 mtd->_write_oob = nand_write_oob;
4737 mtd->_sync = nand_sync;
4738 mtd->_lock = NULL;
4739 mtd->_unlock = NULL;
4740 mtd->_suspend = nand_suspend;
4741 mtd->_resume = nand_resume;
72ea4036 4742 mtd->_reboot = nand_shutdown;
8471bb73 4743 mtd->_block_isreserved = nand_block_isreserved;
3c3c10bb
AB
4744 mtd->_block_isbad = nand_block_isbad;
4745 mtd->_block_markbad = nand_block_markbad;
cbcab65a 4746 mtd->writebufsize = mtd->writesize;
1da177e4 4747
ea3b2ea2
SL
4748 /*
4749 * Initialize bitflip_threshold to its default prior scan_bbt() call.
4750 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
4751 * properly set.
4752 */
4753 if (!mtd->bitflip_threshold)
240181fd 4754 mtd->bitflip_threshold = DIV_ROUND_UP(mtd->ecc_strength * 3, 4);
1da177e4 4755
0040bf38 4756 /* Check, if we should skip the bad block table scan */
ace4dfee 4757 if (chip->options & NAND_SKIP_BBTSCAN)
0040bf38 4758 return 0;
1da177e4
LT
4759
4760 /* Build bad block table */
ace4dfee 4761 return chip->scan_bbt(mtd);
11eaf6df
EG
4762err_free:
4763 if (!(chip->options & NAND_OWN_BUFFERS))
4764 kfree(chip->buffers);
4765 return ret;
1da177e4 4766}
7351d3a5 4767EXPORT_SYMBOL(nand_scan_tail);
1da177e4 4768
8b6e50c9
BN
4769/*
4770 * is_module_text_address() isn't exported, and it's mostly a pointless
7351d3a5 4771 * test if this is a module _anyway_ -- they'd have to try _really_ hard
8b6e50c9
BN
4772 * to call us from in-kernel code if the core NAND support is modular.
4773 */
3b85c321
DW
4774#ifdef MODULE
4775#define caller_is_module() (1)
4776#else
4777#define caller_is_module() \
a6e6abd5 4778 is_module_text_address((unsigned long)__builtin_return_address(0))
3b85c321
DW
4779#endif
4780
4781/**
4782 * nand_scan - [NAND Interface] Scan for the NAND device
8b6e50c9
BN
4783 * @mtd: MTD device structure
4784 * @maxchips: number of chips to scan for
3b85c321 4785 *
8b6e50c9
BN
4786 * This fills out all the uninitialized function pointers with the defaults.
4787 * The flash ID is read and the mtd/chip structures are filled with the
20c07a5b 4788 * appropriate values.
3b85c321
DW
4789 */
4790int nand_scan(struct mtd_info *mtd, int maxchips)
4791{
4792 int ret;
4793
5e81e88a 4794 ret = nand_scan_ident(mtd, maxchips, NULL);
3b85c321
DW
4795 if (!ret)
4796 ret = nand_scan_tail(mtd);
4797 return ret;
4798}
7351d3a5 4799EXPORT_SYMBOL(nand_scan);
3b85c321 4800
1da177e4 4801/**
61b03bd7 4802 * nand_release - [NAND Interface] Free resources held by the NAND device
8b6e50c9
BN
4803 * @mtd: MTD device structure
4804 */
e0c7d767 4805void nand_release(struct mtd_info *mtd)
1da177e4 4806{
862eba51 4807 struct nand_chip *chip = mtd_to_nand(mtd);
1da177e4 4808
e4225ae8 4809 if (chip->ecc.mode == NAND_ECC_SOFT &&
06f384c9 4810 chip->ecc.algo == NAND_ECC_BCH)
193bd400
ID
4811 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
4812
5ffcaf3d 4813 mtd_device_unregister(mtd);
1da177e4 4814
d8e725dd
BB
4815 nand_release_data_interface(chip);
4816
fa671646 4817 /* Free bad block table memory */
ace4dfee 4818 kfree(chip->bbt);
4bf63fcb
DW
4819 if (!(chip->options & NAND_OWN_BUFFERS))
4820 kfree(chip->buffers);
58373ff0
BN
4821
4822 /* Free bad block descriptor memory */
4823 if (chip->badblock_pattern && chip->badblock_pattern->options
4824 & NAND_BBT_DYNAMICSTRUCT)
4825 kfree(chip->badblock_pattern);
1da177e4 4826}
e0c7d767 4827EXPORT_SYMBOL_GPL(nand_release);
8fe833c1 4828
e0c7d767 4829MODULE_LICENSE("GPL");
7351d3a5
FF
4830MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
4831MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
e0c7d767 4832MODULE_DESCRIPTION("Generic NAND flash driver code");