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