blob: 4cbd14552d48c68d7499d8d88c8071807ab70817 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/mtd/nand.c
3 *
4 * Overview:
5 * This is the generic MTD driver for NAND flash devices. It should be
6 * capable of working with almost all NAND chips currently available.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Additional technical information is available on
maximilian attems8b2b4032007-07-28 13:07:16 +02009 * http://www.linux-mtd.infradead.org/doc/nand.html
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020012 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020014 * Credits:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000015 * David Woodhouse for adding multichip support
16 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
18 * rework for 2K page size chips
19 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020020 * TODO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * Enable cached programming for 2k page size chips
22 * Check, if mtd->ecctype should be set to MTD_ECC_HW
Brian Norris7854d3f2011-06-23 14:12:08 -070023 * if we have HW ECC support.
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +030024 * BBT table is not serialized, has to be fixed
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * This program is free software; you can redistribute it and/or modify
27 * it under the terms of the GNU General Public License version 2 as
28 * published by the Free Software Foundation.
29 *
30 */
31
Ezequiel Garcia20171642013-11-25 08:30:31 -030032#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
David Woodhouse552d9202006-05-14 01:20:46 +010034#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/delay.h>
36#include <linux/errno.h>
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +020037#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/sched.h>
39#include <linux/slab.h>
Kamal Dasu66507c72014-05-01 20:51:19 -040040#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/types.h>
42#include <linux/mtd/mtd.h>
43#include <linux/mtd/nand.h>
44#include <linux/mtd/nand_ecc.h>
Ivan Djelic193bd402011-03-11 11:05:33 +010045#include <linux/mtd/nand_bch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/interrupt.h>
47#include <linux/bitops.h>
Richard Purdie8fe833c2006-03-31 02:31:14 -080048#include <linux/leds.h>
Florian Fainelli7351d3a2010-09-07 13:23:45 +020049#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/mtd/partitions.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/* Define default oob placement schemes for large and small page devices */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020053static struct nand_ecclayout nand_oob_8 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 .eccbytes = 3,
55 .eccpos = {0, 1, 2},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020056 .oobfree = {
57 {.offset = 3,
58 .length = 2},
59 {.offset = 6,
Florian Fainellif8ac0412010-09-07 13:23:43 +020060 .length = 2} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020063static struct nand_ecclayout nand_oob_16 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 .eccbytes = 6,
65 .eccpos = {0, 1, 2, 3, 6, 7},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020066 .oobfree = {
67 {.offset = 8,
Florian Fainellif8ac0412010-09-07 13:23:43 +020068 . length = 8} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020071static struct nand_ecclayout nand_oob_64 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 .eccbytes = 24,
73 .eccpos = {
David Woodhousee0c7d762006-05-13 18:07:53 +010074 40, 41, 42, 43, 44, 45, 46, 47,
75 48, 49, 50, 51, 52, 53, 54, 55,
76 56, 57, 58, 59, 60, 61, 62, 63},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020077 .oobfree = {
78 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020079 .length = 38} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
Thomas Gleixner81ec5362007-12-12 17:27:03 +010082static struct nand_ecclayout nand_oob_128 = {
83 .eccbytes = 48,
84 .eccpos = {
85 80, 81, 82, 83, 84, 85, 86, 87,
86 88, 89, 90, 91, 92, 93, 94, 95,
87 96, 97, 98, 99, 100, 101, 102, 103,
88 104, 105, 106, 107, 108, 109, 110, 111,
89 112, 113, 114, 115, 116, 117, 118, 119,
90 120, 121, 122, 123, 124, 125, 126, 127},
91 .oobfree = {
92 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020093 .length = 78} }
Thomas Gleixner81ec5362007-12-12 17:27:03 +010094};
95
Huang Shijie6a8214a2012-11-19 14:43:30 +080096static int nand_get_device(struct mtd_info *mtd, int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Thomas Gleixner8593fbc2006-05-29 03:26:58 +020098static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
99 struct mtd_oob_ops *ops);
100
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200101/*
Joe Perches8e87d782008-02-03 17:22:34 +0200102 * For devices which display every fart in the system on a separate LED. Is
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200103 * compiled away when LED support is disabled.
104 */
105DEFINE_LED_TRIGGER(nand_led_trigger);
106
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530107static int check_offs_len(struct mtd_info *mtd,
108 loff_t ofs, uint64_t len)
109{
110 struct nand_chip *chip = mtd->priv;
111 int ret = 0;
112
113 /* Start address must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300114 if (ofs & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700115 pr_debug("%s: unaligned address\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530116 ret = -EINVAL;
117 }
118
119 /* Length must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300120 if (len & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700121 pr_debug("%s: length not block aligned\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530122 ret = -EINVAL;
123 }
124
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530125 return ret;
126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/**
129 * nand_release_device - [GENERIC] release chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700130 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000131 *
Huang Shijieb0bb6902012-11-19 14:43:29 +0800132 * Release chip lock and wake up anyone waiting on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100134static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200136 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200138 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200139 spin_lock(&chip->controller->lock);
140 chip->controller->active = NULL;
141 chip->state = FL_READY;
142 wake_up(&chip->controller->wq);
143 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146/**
147 * nand_read_byte - [DEFAULT] read one byte from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700148 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700150 * Default read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200152static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200154 struct nand_chip *chip = mtd->priv;
155 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158/**
Masanari Iida064a7692012-11-09 23:20:58 +0900159 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Brian Norris7854d3f2011-06-23 14:12:08 -0700160 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700161 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700163 * Default read function for 16bit buswidth with endianness conversion.
164 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200166static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200168 struct nand_chip *chip = mtd->priv;
169 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 * nand_read_word - [DEFAULT] read one word from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700174 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700176 * Default read function for 16bit buswidth without endianness conversion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 */
178static u16 nand_read_word(struct mtd_info *mtd)
179{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200180 struct nand_chip *chip = mtd->priv;
181 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
184/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * nand_select_chip - [DEFAULT] control CE line
Brian Norris8b6e50c2011-05-25 14:59:01 -0700186 * @mtd: MTD device structure
187 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 *
189 * Default select function for 1 chip devices.
190 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200191static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200193 struct nand_chip *chip = mtd->priv;
194
195 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200197 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 break;
199 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 break;
201
202 default:
203 BUG();
204 }
205}
206
207/**
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100208 * nand_write_byte - [DEFAULT] write single byte to chip
209 * @mtd: MTD device structure
210 * @byte: value to write
211 *
212 * Default function to write a byte to I/O[7:0]
213 */
214static void nand_write_byte(struct mtd_info *mtd, uint8_t byte)
215{
216 struct nand_chip *chip = mtd->priv;
217
218 chip->write_buf(mtd, &byte, 1);
219}
220
221/**
222 * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16
223 * @mtd: MTD device structure
224 * @byte: value to write
225 *
226 * Default function to write a byte to I/O[7:0] on a 16-bit wide chip.
227 */
228static void nand_write_byte16(struct mtd_info *mtd, uint8_t byte)
229{
230 struct nand_chip *chip = mtd->priv;
231 uint16_t word = byte;
232
233 /*
234 * It's not entirely clear what should happen to I/O[15:8] when writing
235 * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads:
236 *
237 * When the host supports a 16-bit bus width, only data is
238 * transferred at the 16-bit width. All address and command line
239 * transfers shall use only the lower 8-bits of the data bus. During
240 * command transfers, the host may place any value on the upper
241 * 8-bits of the data bus. During address transfers, the host shall
242 * set the upper 8-bits of the data bus to 00h.
243 *
244 * One user of the write_byte callback is nand_onfi_set_features. The
245 * four parameters are specified to be written to I/O[7:0], but this is
246 * neither an address nor a command transfer. Let's assume a 0 on the
247 * upper I/O lines is OK.
248 */
249 chip->write_buf(mtd, (uint8_t *)&word, 2);
250}
251
252/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 * nand_write_buf - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700254 * @mtd: MTD device structure
255 * @buf: data buffer
256 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700258 * Default write function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200260static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200262 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Alexander Shiyan76413832013-04-13 09:32:13 +0400264 iowrite8_rep(chip->IO_ADDR_W, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000268 * nand_read_buf - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700269 * @mtd: MTD device structure
270 * @buf: buffer to store date
271 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700273 * Default read function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200275static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200277 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Alexander Shiyan76413832013-04-13 09:32:13 +0400279 ioread8_rep(chip->IO_ADDR_R, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 * nand_write_buf16 - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700284 * @mtd: MTD device structure
285 * @buf: data buffer
286 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700288 * Default write function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200290static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200292 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 u16 *p = (u16 *) buf;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000294
Alexander Shiyan76413832013-04-13 09:32:13 +0400295 iowrite16_rep(chip->IO_ADDR_W, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
298/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000299 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700300 * @mtd: MTD device structure
301 * @buf: buffer to store date
302 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700304 * Default read function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200306static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200308 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 u16 *p = (u16 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Alexander Shiyan76413832013-04-13 09:32:13 +0400311 ioread16_rep(chip->IO_ADDR_R, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700316 * @mtd: MTD device structure
317 * @ofs: offset from device start
318 * @getchip: 0, if the chip is already selected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000320 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 */
322static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
323{
Brian Norriscdbec052012-01-13 18:11:48 -0800324 int page, chipnr, res = 0, i = 0;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200325 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 u16 bad;
327
Brian Norris5fb15492011-05-31 16:31:21 -0700328 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700329 ofs += mtd->erasesize - mtd->writesize;
330
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100331 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (getchip) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200334 chipnr = (int)(ofs >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Huang Shijie6a8214a2012-11-19 14:43:30 +0800336 nand_get_device(mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200339 chip->select_chip(mtd, chipnr);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Brian Norriscdbec052012-01-13 18:11:48 -0800342 do {
343 if (chip->options & NAND_BUSWIDTH_16) {
344 chip->cmdfunc(mtd, NAND_CMD_READOOB,
345 chip->badblockpos & 0xFE, page);
346 bad = cpu_to_le16(chip->read_word(mtd));
347 if (chip->badblockpos & 0x1)
348 bad >>= 8;
349 else
350 bad &= 0xFF;
351 } else {
352 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos,
353 page);
354 bad = chip->read_byte(mtd);
355 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000356
Brian Norriscdbec052012-01-13 18:11:48 -0800357 if (likely(chip->badblockbits == 8))
358 res = bad != 0xFF;
359 else
360 res = hweight8(bad) < chip->badblockbits;
361 ofs += mtd->writesize;
362 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
363 i++;
364 } while (!res && i < 2 && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE));
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200365
Huang Shijieb0bb6902012-11-19 14:43:29 +0800366 if (getchip) {
367 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 nand_release_device(mtd);
Huang Shijieb0bb6902012-11-19 14:43:29 +0800369 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return res;
372}
373
374/**
Brian Norris5a0edb22013-07-30 17:52:58 -0700375 * nand_default_block_markbad - [DEFAULT] mark a block bad via bad block marker
Brian Norris8b6e50c2011-05-25 14:59:01 -0700376 * @mtd: MTD device structure
377 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700379 * This is the default implementation, which can be overridden by a hardware
Brian Norris5a0edb22013-07-30 17:52:58 -0700380 * specific driver. It provides the details for writing a bad block marker to a
381 * block.
382 */
383static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
384{
385 struct nand_chip *chip = mtd->priv;
386 struct mtd_oob_ops ops;
387 uint8_t buf[2] = { 0, 0 };
388 int ret = 0, res, i = 0;
389
390 ops.datbuf = NULL;
391 ops.oobbuf = buf;
392 ops.ooboffs = chip->badblockpos;
393 if (chip->options & NAND_BUSWIDTH_16) {
394 ops.ooboffs &= ~0x01;
395 ops.len = ops.ooblen = 2;
396 } else {
397 ops.len = ops.ooblen = 1;
398 }
399 ops.mode = MTD_OPS_PLACE_OOB;
400
401 /* Write to first/last page(s) if necessary */
402 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
403 ofs += mtd->erasesize - mtd->writesize;
404 do {
405 res = nand_do_write_oob(mtd, ofs, &ops);
406 if (!ret)
407 ret = res;
408
409 i++;
410 ofs += mtd->writesize;
411 } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2);
412
413 return ret;
414}
415
416/**
417 * nand_block_markbad_lowlevel - mark a block bad
418 * @mtd: MTD device structure
419 * @ofs: offset from device start
420 *
421 * This function performs the generic NAND bad block marking steps (i.e., bad
422 * block table(s) and/or marker(s)). We only allow the hardware driver to
423 * specify how to write bad block markers to OOB (chip->block_markbad).
424 *
Brian Norrisb32843b2013-07-30 17:52:59 -0700425 * We try operations in the following order:
Brian Norrise2414f42012-02-06 13:44:00 -0800426 * (1) erase the affected block, to allow OOB marker to be written cleanly
Brian Norrisb32843b2013-07-30 17:52:59 -0700427 * (2) write bad block marker to OOB area of affected block (unless flag
428 * NAND_BBT_NO_OOB_BBM is present)
429 * (3) update the BBT
430 * Note that we retain the first error encountered in (2) or (3), finish the
Brian Norrise2414f42012-02-06 13:44:00 -0800431 * procedures, and dump the error in the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432*/
Brian Norris5a0edb22013-07-30 17:52:58 -0700433static int nand_block_markbad_lowlevel(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200435 struct nand_chip *chip = mtd->priv;
Brian Norrisb32843b2013-07-30 17:52:59 -0700436 int res, ret = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000437
Brian Norrisb32843b2013-07-30 17:52:59 -0700438 if (!(chip->bbt_options & NAND_BBT_NO_OOB_BBM)) {
Brian Norris00918422012-01-13 18:11:47 -0800439 struct erase_info einfo;
440
441 /* Attempt erase before marking OOB */
442 memset(&einfo, 0, sizeof(einfo));
443 einfo.mtd = mtd;
444 einfo.addr = ofs;
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300445 einfo.len = 1ULL << chip->phys_erase_shift;
Brian Norris00918422012-01-13 18:11:47 -0800446 nand_erase_nand(mtd, &einfo, 0);
Brian Norris00918422012-01-13 18:11:47 -0800447
Brian Norrisb32843b2013-07-30 17:52:59 -0700448 /* Write bad block marker to OOB */
Huang Shijie6a8214a2012-11-19 14:43:30 +0800449 nand_get_device(mtd, FL_WRITING);
Brian Norris5a0edb22013-07-30 17:52:58 -0700450 ret = chip->block_markbad(mtd, ofs);
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300451 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200452 }
Brian Norrise2414f42012-02-06 13:44:00 -0800453
Brian Norrisb32843b2013-07-30 17:52:59 -0700454 /* Mark block bad in BBT */
455 if (chip->bbt) {
456 res = nand_markbad_bbt(mtd, ofs);
Brian Norrise2414f42012-02-06 13:44:00 -0800457 if (!ret)
458 ret = res;
459 }
460
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200461 if (!ret)
462 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300463
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200464 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000467/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700469 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700471 * Check, if the device is write protected. The function expects, that the
472 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100474static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200476 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200477
Brian Norris8b6e50c2011-05-25 14:59:01 -0700478 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200479 if (chip->options & NAND_BROKEN_XD)
480 return 0;
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200483 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
484 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
487/**
488 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
Brian Norris8b6e50c2011-05-25 14:59:01 -0700489 * @mtd: MTD device structure
490 * @ofs: offset from device start
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300491 *
492 * Check if the block is mark as reserved.
493 */
494static int nand_block_isreserved(struct mtd_info *mtd, loff_t ofs)
495{
496 struct nand_chip *chip = mtd->priv;
497
498 if (!chip->bbt)
499 return 0;
500 /* Return info from the table */
501 return nand_isreserved_bbt(mtd, ofs);
502}
503
504/**
505 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
506 * @mtd: MTD device structure
507 * @ofs: offset from device start
Brian Norris8b6e50c2011-05-25 14:59:01 -0700508 * @getchip: 0, if the chip is already selected
509 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 *
511 * Check, if the block is bad. Either by reading the bad block table or
512 * calling of the scan function.
513 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200514static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
515 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200517 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000518
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200519 if (!chip->bbt)
520 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100523 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200526/**
527 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700528 * @mtd: MTD device structure
529 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200530 *
531 * Helper function for nand_wait_ready used when needing to wait in interrupt
532 * context.
533 */
534static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
535{
536 struct nand_chip *chip = mtd->priv;
537 int i;
538
539 /* Wait for the device to get ready */
540 for (i = 0; i < timeo; i++) {
541 if (chip->dev_ready(mtd))
542 break;
543 touch_softlockup_watchdog();
544 mdelay(1);
545 }
546}
547
Brian Norris7854d3f2011-06-23 14:12:08 -0700548/* Wait for the ready pin, after a command. The timeout is caught later. */
David Woodhouse4b648b02006-09-25 17:05:24 +0100549void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000550{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200551 struct nand_chip *chip = mtd->priv;
Matthieu CASTETca6a2482012-11-22 18:31:28 +0100552 unsigned long timeo = jiffies + msecs_to_jiffies(20);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000553
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200554 /* 400ms timeout */
555 if (in_interrupt() || oops_in_progress)
556 return panic_nand_wait_ready(mtd, 400);
557
Richard Purdie8fe833c2006-03-31 02:31:14 -0800558 led_trigger_event(nand_led_trigger, LED_FULL);
Brian Norris7854d3f2011-06-23 14:12:08 -0700559 /* Wait until command is processed or timeout occurs */
Thomas Gleixner3b887752005-02-22 21:56:49 +0000560 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200561 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800562 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700563 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000564 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800565 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000566}
David Woodhouse4b648b02006-09-25 17:05:24 +0100567EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569/**
570 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700571 * @mtd: MTD device structure
572 * @command: the command to be sent
573 * @column: the column address for this command, -1 if none
574 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700576 * Send command to NAND device. This function is used for small page devices
Artem Bityutskiy51148f12013-03-05 15:00:51 +0200577 * (512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200579static void nand_command(struct mtd_info *mtd, unsigned int command,
580 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200582 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200583 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Brian Norris8b6e50c2011-05-25 14:59:01 -0700585 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (command == NAND_CMD_SEQIN) {
587 int readcmd;
588
Joern Engel28318772006-05-22 23:18:05 +0200589 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200591 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 readcmd = NAND_CMD_READOOB;
593 } else if (column < 256) {
594 /* First 256 bytes --> READ0 */
595 readcmd = NAND_CMD_READ0;
596 } else {
597 column -= 256;
598 readcmd = NAND_CMD_READ1;
599 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200600 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200601 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200603 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Brian Norris8b6e50c2011-05-25 14:59:01 -0700605 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200606 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
607 /* Serially input address */
608 if (column != -1) {
609 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800610 if (chip->options & NAND_BUSWIDTH_16 &&
611 !nand_opcode_8bits(command))
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200612 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200613 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200614 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200616 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200617 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200618 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200619 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200620 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200621 if (chip->chipsize > (32 << 20))
622 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200623 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200624 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000625
626 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700627 * Program and erase have their own busy handlers status and sequential
628 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100629 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 case NAND_CMD_PAGEPROG:
633 case NAND_CMD_ERASE1:
634 case NAND_CMD_ERASE2:
635 case NAND_CMD_SEQIN:
636 case NAND_CMD_STATUS:
637 return;
638
639 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200640 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200642 udelay(chip->chip_delay);
643 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200644 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200645 chip->cmd_ctrl(mtd,
646 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200647 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
648 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return;
650
David Woodhousee0c7d762006-05-13 18:07:53 +0100651 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000653 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 * If we don't have access to the busy pin, we apply the given
655 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100656 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200657 if (!chip->dev_ready) {
658 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700662 /*
663 * Apply this short delay always to ensure that we do wait tWB in
664 * any case on any machine.
665 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100666 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000667
668 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
671/**
672 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700673 * @mtd: MTD device structure
674 * @command: the command to be sent
675 * @column: the column address for this command, -1 if none
676 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200678 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700679 * devices. We don't have the separate regions as we have in the small page
680 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200682static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
683 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200685 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 /* Emulate NAND_CMD_READOOB */
688 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200689 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 command = NAND_CMD_READ0;
691 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000692
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200693 /* Command latch cycle */
Alexander Shiyanfb066ad2013-02-28 12:02:19 +0400694 chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200697 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 /* Serially input address */
700 if (column != -1) {
701 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800702 if (chip->options & NAND_BUSWIDTH_16 &&
703 !nand_opcode_8bits(command))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200705 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200706 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200707 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200710 chip->cmd_ctrl(mtd, page_addr, ctrl);
711 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200712 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200714 if (chip->chipsize > (128 << 20))
715 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200716 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200719 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000720
721 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700722 * Program and erase have their own busy handlers status, sequential
Gerhard Sittig7a442f12014-03-29 14:36:22 +0100723 * in and status need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000724 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 case NAND_CMD_CACHEDPROG:
728 case NAND_CMD_PAGEPROG:
729 case NAND_CMD_ERASE1:
730 case NAND_CMD_ERASE2:
731 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200732 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000734 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200737 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200739 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200740 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
741 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
742 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
743 NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200744 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
745 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return;
747
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200748 case NAND_CMD_RNDOUT:
749 /* No ready / busy check necessary */
750 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
751 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
752 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
753 NAND_NCE | NAND_CTRL_CHANGE);
754 return;
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200757 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
758 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
759 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
760 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000761
David Woodhousee0c7d762006-05-13 18:07:53 +0100762 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000764 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700766 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100767 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200768 if (!chip->dev_ready) {
769 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000773
Brian Norris8b6e50c2011-05-25 14:59:01 -0700774 /*
775 * Apply this short delay always to ensure that we do wait tWB in
776 * any case on any machine.
777 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100778 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000779
780 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
783/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200784 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700785 * @chip: the nand chip descriptor
786 * @mtd: MTD device structure
787 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200788 *
789 * Used when in panic, no locks are taken.
790 */
791static void panic_nand_get_device(struct nand_chip *chip,
792 struct mtd_info *mtd, int new_state)
793{
Brian Norris7854d3f2011-06-23 14:12:08 -0700794 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200795 chip->controller->active = chip;
796 chip->state = new_state;
797}
798
799/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700801 * @mtd: MTD device structure
802 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 *
804 * Get the device and lock it for exclusive access
805 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200806static int
Huang Shijie6a8214a2012-11-19 14:43:30 +0800807nand_get_device(struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Huang Shijie6a8214a2012-11-19 14:43:30 +0800809 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200810 spinlock_t *lock = &chip->controller->lock;
811 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100812 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200813retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100814 spin_lock(lock);
815
vimal singhb8b3ee92009-07-09 20:41:22 +0530816 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200817 if (!chip->controller->active)
818 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200819
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200820 if (chip->controller->active == chip && chip->state == FL_READY) {
821 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100822 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100823 return 0;
824 }
825 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800826 if (chip->controller->active->state == FL_PM_SUSPENDED) {
827 chip->state = FL_PM_SUSPENDED;
828 spin_unlock(lock);
829 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800830 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100831 }
832 set_current_state(TASK_UNINTERRUPTIBLE);
833 add_wait_queue(wq, &wait);
834 spin_unlock(lock);
835 schedule();
836 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 goto retry;
838}
839
840/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700841 * panic_nand_wait - [GENERIC] wait until the command is done
842 * @mtd: MTD device structure
843 * @chip: NAND chip structure
844 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200845 *
846 * Wait for command done. This is a helper function for nand_wait used when
847 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400848 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200849 */
850static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
851 unsigned long timeo)
852{
853 int i;
854 for (i = 0; i < timeo; i++) {
855 if (chip->dev_ready) {
856 if (chip->dev_ready(mtd))
857 break;
858 } else {
859 if (chip->read_byte(mtd) & NAND_STATUS_READY)
860 break;
861 }
862 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200863 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200864}
865
866/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700867 * nand_wait - [DEFAULT] wait until the command is done
868 * @mtd: MTD device structure
869 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700871 * Wait for command done. This applies to erase and program only. Erase can
872 * take up to 400ms and program up to 20ms according to general NAND and
873 * SmartMedia specs.
Randy Dunlap844d3b42006-06-28 21:48:27 -0700874 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200875static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
877
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200878 int status, state = chip->state;
Huang Shijie6d2559f2013-01-30 10:03:56 +0800879 unsigned long timeo = (state == FL_ERASING ? 400 : 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Richard Purdie8fe833c2006-03-31 02:31:14 -0800881 led_trigger_event(nand_led_trigger, LED_FULL);
882
Brian Norris8b6e50c2011-05-25 14:59:01 -0700883 /*
884 * Apply this short delay always to ensure that we do wait tWB in any
885 * case on any machine.
886 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100887 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Artem Bityutskiy14c65782013-03-04 14:21:34 +0200889 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200891 if (in_interrupt() || oops_in_progress)
892 panic_nand_wait(mtd, chip, timeo);
893 else {
Huang Shijie6d2559f2013-01-30 10:03:56 +0800894 timeo = jiffies + msecs_to_jiffies(timeo);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200895 while (time_before(jiffies, timeo)) {
896 if (chip->dev_ready) {
897 if (chip->dev_ready(mtd))
898 break;
899 } else {
900 if (chip->read_byte(mtd) & NAND_STATUS_READY)
901 break;
902 }
903 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800906 led_trigger_event(nand_led_trigger, LED_OFF);
907
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200908 status = (int)chip->read_byte(mtd);
Matthieu CASTETf251b8d2012-11-05 15:00:44 +0100909 /* This can happen if in case of timeout or buggy dev_ready */
910 WARN_ON(!(status & NAND_STATUS_READY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return status;
912}
913
914/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700915 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700916 * @mtd: mtd info
917 * @ofs: offset to start unlock from
918 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -0700919 * @invert: when = 0, unlock the range of blocks within the lower and
920 * upper boundary address
921 * when = 1, unlock the range of blocks outside the boundaries
922 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +0530923 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700924 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530925 */
926static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
927 uint64_t len, int invert)
928{
929 int ret = 0;
930 int status, page;
931 struct nand_chip *chip = mtd->priv;
932
933 /* Submit address of first page to unlock */
934 page = ofs >> chip->page_shift;
935 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
936
937 /* Submit address of last page to unlock */
938 page = (ofs + len) >> chip->page_shift;
939 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
940 (page | invert) & chip->pagemask);
941
942 /* Call wait ready function */
943 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +0530944 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -0400945 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -0700946 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530947 __func__, status);
948 ret = -EIO;
949 }
950
951 return ret;
952}
953
954/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700955 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700956 * @mtd: mtd info
957 * @ofs: offset to start unlock from
958 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530959 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700960 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530961 */
962int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
963{
964 int ret = 0;
965 int chipnr;
966 struct nand_chip *chip = mtd->priv;
967
Brian Norris289c0522011-07-19 10:06:09 -0700968 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530969 __func__, (unsigned long long)ofs, len);
970
971 if (check_offs_len(mtd, ofs, len))
972 ret = -EINVAL;
973
974 /* Align to last block address if size addresses end of the device */
975 if (ofs + len == mtd->size)
976 len -= mtd->erasesize;
977
Huang Shijie6a8214a2012-11-19 14:43:30 +0800978 nand_get_device(mtd, FL_UNLOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +0530979
980 /* Shift to get chip number */
981 chipnr = ofs >> chip->chip_shift;
982
983 chip->select_chip(mtd, chipnr);
984
White Ding57d3a9a2014-07-24 00:10:45 +0800985 /*
986 * Reset the chip.
987 * If we want to check the WP through READ STATUS and check the bit 7
988 * we must reset the chip
989 * some operation can also clear the bit 7 of status register
990 * eg. erase/program a locked block
991 */
992 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
993
Vimal Singh7d70f332010-02-08 15:50:49 +0530994 /* Check, if it is write protected */
995 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -0700996 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530997 __func__);
998 ret = -EIO;
999 goto out;
1000 }
1001
1002 ret = __nand_unlock(mtd, ofs, len, 0);
1003
1004out:
Huang Shijieb0bb6902012-11-19 14:43:29 +08001005 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301006 nand_release_device(mtd);
1007
1008 return ret;
1009}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001010EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301011
1012/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001013 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001014 * @mtd: mtd info
1015 * @ofs: offset to start unlock from
1016 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +05301017 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001018 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
1019 * have this feature, but it allows only to lock all blocks, not for specified
1020 * range for block. Implementing 'lock' feature by making use of 'unlock', for
1021 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +05301022 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001023 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301024 */
1025int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1026{
1027 int ret = 0;
1028 int chipnr, status, page;
1029 struct nand_chip *chip = mtd->priv;
1030
Brian Norris289c0522011-07-19 10:06:09 -07001031 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301032 __func__, (unsigned long long)ofs, len);
1033
1034 if (check_offs_len(mtd, ofs, len))
1035 ret = -EINVAL;
1036
Huang Shijie6a8214a2012-11-19 14:43:30 +08001037 nand_get_device(mtd, FL_LOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +05301038
1039 /* Shift to get chip number */
1040 chipnr = ofs >> chip->chip_shift;
1041
1042 chip->select_chip(mtd, chipnr);
1043
White Ding57d3a9a2014-07-24 00:10:45 +08001044 /*
1045 * Reset the chip.
1046 * If we want to check the WP through READ STATUS and check the bit 7
1047 * we must reset the chip
1048 * some operation can also clear the bit 7 of status register
1049 * eg. erase/program a locked block
1050 */
1051 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
1052
Vimal Singh7d70f332010-02-08 15:50:49 +05301053 /* Check, if it is write protected */
1054 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001055 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301056 __func__);
1057 status = MTD_ERASE_FAILED;
1058 ret = -EIO;
1059 goto out;
1060 }
1061
1062 /* Submit address of first page to lock */
1063 page = ofs >> chip->page_shift;
1064 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1065
1066 /* Call wait ready function */
1067 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301068 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -04001069 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07001070 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301071 __func__, status);
1072 ret = -EIO;
1073 goto out;
1074 }
1075
1076 ret = __nand_unlock(mtd, ofs, len, 0x1);
1077
1078out:
Huang Shijieb0bb6902012-11-19 14:43:29 +08001079 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301080 nand_release_device(mtd);
1081
1082 return ret;
1083}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001084EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301085
1086/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001087 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001088 * @mtd: mtd info structure
1089 * @chip: nand chip info structure
1090 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001091 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001092 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001093 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001094 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001095 */
1096static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001097 uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001098{
1099 chip->read_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07001100 if (oob_required)
1101 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001102 return 0;
1103}
1104
1105/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001106 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001107 * @mtd: mtd info structure
1108 * @chip: nand chip info structure
1109 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001110 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001111 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001112 *
1113 * We need a special oob layout and handling even when OOB isn't used.
1114 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001115static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001116 struct nand_chip *chip, uint8_t *buf,
1117 int oob_required, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001118{
1119 int eccsize = chip->ecc.size;
1120 int eccbytes = chip->ecc.bytes;
1121 uint8_t *oob = chip->oob_poi;
1122 int steps, size;
1123
1124 for (steps = chip->ecc.steps; steps > 0; steps--) {
1125 chip->read_buf(mtd, buf, eccsize);
1126 buf += eccsize;
1127
1128 if (chip->ecc.prepad) {
1129 chip->read_buf(mtd, oob, chip->ecc.prepad);
1130 oob += chip->ecc.prepad;
1131 }
1132
1133 chip->read_buf(mtd, oob, eccbytes);
1134 oob += eccbytes;
1135
1136 if (chip->ecc.postpad) {
1137 chip->read_buf(mtd, oob, chip->ecc.postpad);
1138 oob += chip->ecc.postpad;
1139 }
1140 }
1141
1142 size = mtd->oobsize - (oob - chip->oob_poi);
1143 if (size)
1144 chip->read_buf(mtd, oob, size);
1145
1146 return 0;
1147}
1148
1149/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001150 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001151 * @mtd: mtd info structure
1152 * @chip: nand chip info structure
1153 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001154 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001155 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001156 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001157static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001158 uint8_t *buf, int oob_required, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001160 int i, eccsize = chip->ecc.size;
1161 int eccbytes = chip->ecc.bytes;
1162 int eccsteps = chip->ecc.steps;
1163 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001164 uint8_t *ecc_calc = chip->buffers->ecccalc;
1165 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001166 uint32_t *eccpos = chip->ecc.layout->eccpos;
Mike Dunn3f91e942012-04-25 12:06:09 -07001167 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001168
Brian Norris1fbb9382012-05-02 10:14:55 -07001169 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001170
1171 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1172 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1173
1174 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001175 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001176
1177 eccsteps = chip->ecc.steps;
1178 p = buf;
1179
1180 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1181 int stat;
1182
1183 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001184 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001185 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001186 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001187 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001188 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1189 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001190 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001191 return max_bitflips;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001192}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194/**
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05301195 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001196 * @mtd: mtd info structure
1197 * @chip: nand chip info structure
1198 * @data_offs: offset of requested data within the page
1199 * @readlen: data length
1200 * @bufpoi: buffer to store read data
Huang Shijiee004deb2014-01-03 11:01:40 +08001201 * @page: page number to read
Alexey Korolev3d459552008-05-15 17:23:18 +01001202 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001203static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08001204 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi,
1205 int page)
Alexey Korolev3d459552008-05-15 17:23:18 +01001206{
1207 int start_step, end_step, num_steps;
1208 uint32_t *eccpos = chip->ecc.layout->eccpos;
1209 uint8_t *p;
1210 int data_col_addr, i, gaps = 0;
1211 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1212 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Ron4a4163c2014-03-16 04:01:07 +10301213 int index;
Mike Dunn3f91e942012-04-25 12:06:09 -07001214 unsigned int max_bitflips = 0;
Alexey Korolev3d459552008-05-15 17:23:18 +01001215
Brian Norris7854d3f2011-06-23 14:12:08 -07001216 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001217 start_step = data_offs / chip->ecc.size;
1218 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1219 num_steps = end_step - start_step + 1;
Ron4a4163c2014-03-16 04:01:07 +10301220 index = start_step * chip->ecc.bytes;
Alexey Korolev3d459552008-05-15 17:23:18 +01001221
Brian Norris8b6e50c2011-05-25 14:59:01 -07001222 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001223 datafrag_len = num_steps * chip->ecc.size;
1224 eccfrag_len = num_steps * chip->ecc.bytes;
1225
1226 data_col_addr = start_step * chip->ecc.size;
1227 /* If we read not a page aligned data */
1228 if (data_col_addr != 0)
1229 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1230
1231 p = bufpoi + data_col_addr;
1232 chip->read_buf(mtd, p, datafrag_len);
1233
Brian Norris8b6e50c2011-05-25 14:59:01 -07001234 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001235 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1236 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1237
Brian Norris8b6e50c2011-05-25 14:59:01 -07001238 /*
1239 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07001240 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07001241 */
Alexey Korolev3d459552008-05-15 17:23:18 +01001242 for (i = 0; i < eccfrag_len - 1; i++) {
Ron47570bb12014-03-16 04:01:08 +10301243 if (eccpos[i + index] + 1 != eccpos[i + index + 1]) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001244 gaps = 1;
1245 break;
1246 }
1247 }
1248 if (gaps) {
1249 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1250 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1251 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001252 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07001253 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07001254 * about buswidth alignment in read_buf.
1255 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001256 aligned_pos = eccpos[index] & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001257 aligned_len = eccfrag_len;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001258 if (eccpos[index] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001259 aligned_len++;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001260 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001261 aligned_len++;
1262
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001263 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1264 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001265 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1266 }
1267
1268 for (i = 0; i < eccfrag_len; i++)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001269 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Alexey Korolev3d459552008-05-15 17:23:18 +01001270
1271 p = bufpoi + data_col_addr;
1272 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1273 int stat;
1274
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001275 stat = chip->ecc.correct(mtd, p,
1276 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001277 if (stat < 0) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001278 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001279 } else {
Alexey Korolev3d459552008-05-15 17:23:18 +01001280 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001281 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1282 }
Alexey Korolev3d459552008-05-15 17:23:18 +01001283 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001284 return max_bitflips;
Alexey Korolev3d459552008-05-15 17:23:18 +01001285}
1286
1287/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001288 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001289 * @mtd: mtd info structure
1290 * @chip: nand chip info structure
1291 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001292 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001293 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001294 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001295 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001296 */
1297static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001298 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001299{
1300 int i, eccsize = chip->ecc.size;
1301 int eccbytes = chip->ecc.bytes;
1302 int eccsteps = chip->ecc.steps;
1303 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001304 uint8_t *ecc_calc = chip->buffers->ecccalc;
1305 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001306 uint32_t *eccpos = chip->ecc.layout->eccpos;
Mike Dunn3f91e942012-04-25 12:06:09 -07001307 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001308
1309 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1310 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1311 chip->read_buf(mtd, p, eccsize);
1312 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1313 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001314 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001315
1316 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001317 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001318
1319 eccsteps = chip->ecc.steps;
1320 p = buf;
1321
1322 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1323 int stat;
1324
1325 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001326 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001327 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001328 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001329 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001330 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1331 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001332 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001333 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001334}
1335
1336/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001337 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07001338 * @mtd: mtd info structure
1339 * @chip: nand chip info structure
1340 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001341 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001342 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001343 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001344 * Hardware ECC for large page chips, require OOB to be read first. For this
1345 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1346 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1347 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1348 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001349 */
1350static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001351 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001352{
1353 int i, eccsize = chip->ecc.size;
1354 int eccbytes = chip->ecc.bytes;
1355 int eccsteps = chip->ecc.steps;
1356 uint8_t *p = buf;
1357 uint8_t *ecc_code = chip->buffers->ecccode;
1358 uint32_t *eccpos = chip->ecc.layout->eccpos;
1359 uint8_t *ecc_calc = chip->buffers->ecccalc;
Mike Dunn3f91e942012-04-25 12:06:09 -07001360 unsigned int max_bitflips = 0;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001361
1362 /* Read the OOB area first */
1363 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1364 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1365 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1366
1367 for (i = 0; i < chip->ecc.total; i++)
1368 ecc_code[i] = chip->oob_poi[eccpos[i]];
1369
1370 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1371 int stat;
1372
1373 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1374 chip->read_buf(mtd, p, eccsize);
1375 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1376
1377 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
Mike Dunn3f91e942012-04-25 12:06:09 -07001378 if (stat < 0) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001379 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001380 } else {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001381 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001382 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1383 }
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001384 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001385 return max_bitflips;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001386}
1387
1388/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001389 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07001390 * @mtd: mtd info structure
1391 * @chip: nand chip info structure
1392 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001393 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001394 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001395 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001396 * The hw generator calculates the error syndrome automatically. Therefore we
1397 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001398 */
1399static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001400 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001401{
1402 int i, eccsize = chip->ecc.size;
1403 int eccbytes = chip->ecc.bytes;
1404 int eccsteps = chip->ecc.steps;
1405 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001406 uint8_t *oob = chip->oob_poi;
Mike Dunn3f91e942012-04-25 12:06:09 -07001407 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001408
1409 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1410 int stat;
1411
1412 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1413 chip->read_buf(mtd, p, eccsize);
1414
1415 if (chip->ecc.prepad) {
1416 chip->read_buf(mtd, oob, chip->ecc.prepad);
1417 oob += chip->ecc.prepad;
1418 }
1419
1420 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1421 chip->read_buf(mtd, oob, eccbytes);
1422 stat = chip->ecc.correct(mtd, p, oob, NULL);
1423
Mike Dunn3f91e942012-04-25 12:06:09 -07001424 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001425 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001426 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001427 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001428 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1429 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001430
1431 oob += eccbytes;
1432
1433 if (chip->ecc.postpad) {
1434 chip->read_buf(mtd, oob, chip->ecc.postpad);
1435 oob += chip->ecc.postpad;
1436 }
1437 }
1438
1439 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001440 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001441 if (i)
1442 chip->read_buf(mtd, oob, i);
1443
Mike Dunn3f91e942012-04-25 12:06:09 -07001444 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001445}
1446
1447/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001448 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -07001449 * @chip: nand chip structure
1450 * @oob: oob destination address
1451 * @ops: oob ops structure
1452 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001453 */
1454static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001455 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001456{
Florian Fainellif8ac0412010-09-07 13:23:43 +02001457 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001458
Brian Norris0612b9d2011-08-30 18:45:40 -07001459 case MTD_OPS_PLACE_OOB:
1460 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001461 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1462 return oob + len;
1463
Brian Norris0612b9d2011-08-30 18:45:40 -07001464 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001465 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001466 uint32_t boffs = 0, roffs = ops->ooboffs;
1467 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001468
Florian Fainellif8ac0412010-09-07 13:23:43 +02001469 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001470 /* Read request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001471 if (unlikely(roffs)) {
1472 if (roffs >= free->length) {
1473 roffs -= free->length;
1474 continue;
1475 }
1476 boffs = free->offset + roffs;
1477 bytes = min_t(size_t, len,
1478 (free->length - roffs));
1479 roffs = 0;
1480 } else {
1481 bytes = min_t(size_t, len, free->length);
1482 boffs = free->offset;
1483 }
1484 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001485 oob += bytes;
1486 }
1487 return oob;
1488 }
1489 default:
1490 BUG();
1491 }
1492 return NULL;
1493}
1494
1495/**
Brian Norrisba84fb52014-01-03 15:13:33 -08001496 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
1497 * @mtd: MTD device structure
1498 * @retry_mode: the retry mode to use
1499 *
1500 * Some vendors supply a special command to shift the Vt threshold, to be used
1501 * when there are too many bitflips in a page (i.e., ECC error). After setting
1502 * a new threshold, the host should retry reading the page.
1503 */
1504static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
1505{
1506 struct nand_chip *chip = mtd->priv;
1507
1508 pr_debug("setting READ RETRY mode %d\n", retry_mode);
1509
1510 if (retry_mode >= chip->read_retries)
1511 return -EINVAL;
1512
1513 if (!chip->setup_read_retry)
1514 return -EOPNOTSUPP;
1515
1516 return chip->setup_read_retry(mtd, retry_mode);
1517}
1518
1519/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001520 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001521 * @mtd: MTD device structure
1522 * @from: offset to read from
1523 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001524 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001525 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001526 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001527static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1528 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001529{
Brian Norrise47f3db2012-05-02 10:14:56 -07001530 int chipnr, page, realpage, col, bytes, aligned, oob_required;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001531 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001532 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001533 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001534 uint32_t oobreadlen = ops->ooblen;
Brian Norris0612b9d2011-08-30 18:45:40 -07001535 uint32_t max_oobsize = ops->mode == MTD_OPS_AUTO_OOB ?
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001536 mtd->oobavail : mtd->oobsize;
1537
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001538 uint8_t *bufpoi, *oob, *buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04001539 int use_bufpoi;
Mike Dunnedbc45402012-04-25 12:06:11 -07001540 unsigned int max_bitflips = 0;
Brian Norrisba84fb52014-01-03 15:13:33 -08001541 int retry_mode = 0;
Brian Norrisb72f3df2013-12-03 11:04:14 -08001542 bool ecc_fail = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001544 chipnr = (int)(from >> chip->chip_shift);
1545 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001547 realpage = (int)(from >> chip->page_shift);
1548 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001550 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001552 buf = ops->datbuf;
1553 oob = ops->oobbuf;
Brian Norrise47f3db2012-05-02 10:14:56 -07001554 oob_required = oob ? 1 : 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001555
Florian Fainellif8ac0412010-09-07 13:23:43 +02001556 while (1) {
Brian Norrisb72f3df2013-12-03 11:04:14 -08001557 unsigned int ecc_failures = mtd->ecc_stats.failed;
1558
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001559 bytes = min(mtd->writesize - col, readlen);
1560 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001561
Kamal Dasu66507c72014-05-01 20:51:19 -04001562 if (!aligned)
1563 use_bufpoi = 1;
1564 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
1565 use_bufpoi = !virt_addr_valid(buf);
1566 else
1567 use_bufpoi = 0;
1568
Brian Norris8b6e50c2011-05-25 14:59:01 -07001569 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001570 if (realpage != chip->pagebuf || oob) {
Kamal Dasu66507c72014-05-01 20:51:19 -04001571 bufpoi = use_bufpoi ? chip->buffers->databuf : buf;
1572
1573 if (use_bufpoi && aligned)
1574 pr_debug("%s: using read bounce buffer for buf@%p\n",
1575 __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Brian Norrisba84fb52014-01-03 15:13:33 -08001577read_retry:
Brian Norrisc00a0992012-05-01 17:12:54 -07001578 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Mike Dunnedbc45402012-04-25 12:06:11 -07001580 /*
1581 * Now read the page into the buffer. Absent an error,
1582 * the read methods return max bitflips per ecc step.
1583 */
Brian Norris0612b9d2011-08-30 18:45:40 -07001584 if (unlikely(ops->mode == MTD_OPS_RAW))
Brian Norris1fbb9382012-05-02 10:14:55 -07001585 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001586 oob_required,
1587 page);
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001588 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
1589 !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001590 ret = chip->ecc.read_subpage(mtd, chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08001591 col, bytes, bufpoi,
1592 page);
David Woodhouse956e9442006-09-25 17:12:39 +01001593 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001594 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001595 oob_required, page);
Brian Norris6d77b9d2011-09-07 13:13:40 -07001596 if (ret < 0) {
Kamal Dasu66507c72014-05-01 20:51:19 -04001597 if (use_bufpoi)
Brian Norris6d77b9d2011-09-07 13:13:40 -07001598 /* Invalidate page cache */
1599 chip->pagebuf = -1;
David Woodhousee0c7d762006-05-13 18:07:53 +01001600 break;
Brian Norris6d77b9d2011-09-07 13:13:40 -07001601 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001602
Mike Dunnedbc45402012-04-25 12:06:11 -07001603 max_bitflips = max_t(unsigned int, max_bitflips, ret);
1604
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001605 /* Transfer not aligned data */
Kamal Dasu66507c72014-05-01 20:51:19 -04001606 if (use_bufpoi) {
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001607 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Brian Norrisb72f3df2013-12-03 11:04:14 -08001608 !(mtd->ecc_stats.failed - ecc_failures) &&
Mike Dunnedbc45402012-04-25 12:06:11 -07001609 (ops->mode != MTD_OPS_RAW)) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001610 chip->pagebuf = realpage;
Mike Dunnedbc45402012-04-25 12:06:11 -07001611 chip->pagebuf_bitflips = ret;
1612 } else {
Brian Norris6d77b9d2011-09-07 13:13:40 -07001613 /* Invalidate page cache */
1614 chip->pagebuf = -1;
Mike Dunnedbc45402012-04-25 12:06:11 -07001615 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001616 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001618
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001619 if (unlikely(oob)) {
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001620 int toread = min(oobreadlen, max_oobsize);
1621
1622 if (toread) {
1623 oob = nand_transfer_oob(chip,
1624 oob, ops, toread);
1625 oobreadlen -= toread;
1626 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001627 }
Brian Norris5bc7c332013-03-13 09:51:31 -07001628
1629 if (chip->options & NAND_NEED_READRDY) {
1630 /* Apply delay or wait for ready/busy pin */
1631 if (!chip->dev_ready)
1632 udelay(chip->chip_delay);
1633 else
1634 nand_wait_ready(mtd);
1635 }
Brian Norrisb72f3df2013-12-03 11:04:14 -08001636
Brian Norrisba84fb52014-01-03 15:13:33 -08001637 if (mtd->ecc_stats.failed - ecc_failures) {
Brian Norris28fa65e2014-02-12 16:08:28 -08001638 if (retry_mode + 1 < chip->read_retries) {
Brian Norrisba84fb52014-01-03 15:13:33 -08001639 retry_mode++;
1640 ret = nand_setup_read_retry(mtd,
1641 retry_mode);
1642 if (ret < 0)
1643 break;
1644
1645 /* Reset failures; retry */
1646 mtd->ecc_stats.failed = ecc_failures;
1647 goto read_retry;
1648 } else {
1649 /* No more retry modes; real failure */
1650 ecc_fail = true;
1651 }
1652 }
1653
1654 buf += bytes;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001655 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001656 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001657 buf += bytes;
Mike Dunnedbc45402012-04-25 12:06:11 -07001658 max_bitflips = max_t(unsigned int, max_bitflips,
1659 chip->pagebuf_bitflips);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001662 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001663
Brian Norrisba84fb52014-01-03 15:13:33 -08001664 /* Reset to retry mode 0 */
1665 if (retry_mode) {
1666 ret = nand_setup_read_retry(mtd, 0);
1667 if (ret < 0)
1668 break;
1669 retry_mode = 0;
1670 }
1671
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001672 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001673 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Brian Norris8b6e50c2011-05-25 14:59:01 -07001675 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 col = 0;
1677 /* Increment page address */
1678 realpage++;
1679
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001680 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 /* Check, if we cross a chip boundary */
1682 if (!page) {
1683 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001684 chip->select_chip(mtd, -1);
1685 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08001688 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001690 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001691 if (oob)
1692 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Mike Dunn3f91e942012-04-25 12:06:09 -07001694 if (ret < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001695 return ret;
1696
Brian Norrisb72f3df2013-12-03 11:04:14 -08001697 if (ecc_fail)
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001698 return -EBADMSG;
1699
Mike Dunnedbc45402012-04-25 12:06:11 -07001700 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001701}
1702
1703/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001704 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001705 * @mtd: MTD device structure
1706 * @from: offset to read from
1707 * @len: number of bytes to read
1708 * @retlen: pointer to variable to store the number of read bytes
1709 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001710 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001711 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001712 */
1713static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1714 size_t *retlen, uint8_t *buf)
1715{
Brian Norris4a89ff82011-08-30 18:45:45 -07001716 struct mtd_oob_ops ops;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001717 int ret;
1718
Huang Shijie6a8214a2012-11-19 14:43:30 +08001719 nand_get_device(mtd, FL_READING);
Brian Norris4a89ff82011-08-30 18:45:45 -07001720 ops.len = len;
1721 ops.datbuf = buf;
1722 ops.oobbuf = NULL;
Huang Shijie11041ae2012-07-03 16:44:14 +08001723 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07001724 ret = nand_do_read_ops(mtd, from, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07001725 *retlen = ops.retlen;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001726 nand_release_device(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001727 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728}
1729
1730/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001731 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001732 * @mtd: mtd info structure
1733 * @chip: nand chip info structure
1734 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001735 */
1736static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001737 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001738{
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001739 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001740 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001741 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001742}
1743
1744/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001745 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001746 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07001747 * @mtd: mtd info structure
1748 * @chip: nand chip info structure
1749 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001750 */
1751static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001752 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001753{
1754 uint8_t *buf = chip->oob_poi;
1755 int length = mtd->oobsize;
1756 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1757 int eccsize = chip->ecc.size;
1758 uint8_t *bufpoi = buf;
1759 int i, toread, sndrnd = 0, pos;
1760
1761 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1762 for (i = 0; i < chip->ecc.steps; i++) {
1763 if (sndrnd) {
1764 pos = eccsize + i * (eccsize + chunk);
1765 if (mtd->writesize > 512)
1766 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1767 else
1768 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1769 } else
1770 sndrnd = 1;
1771 toread = min_t(int, length, chunk);
1772 chip->read_buf(mtd, bufpoi, toread);
1773 bufpoi += toread;
1774 length -= toread;
1775 }
1776 if (length > 0)
1777 chip->read_buf(mtd, bufpoi, length);
1778
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001779 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001780}
1781
1782/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001783 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001784 * @mtd: mtd info structure
1785 * @chip: nand chip info structure
1786 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001787 */
1788static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1789 int page)
1790{
1791 int status = 0;
1792 const uint8_t *buf = chip->oob_poi;
1793 int length = mtd->oobsize;
1794
1795 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1796 chip->write_buf(mtd, buf, length);
1797 /* Send command to program the OOB data */
1798 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1799
1800 status = chip->waitfunc(mtd, chip);
1801
Savin Zlobec0d420f92006-06-21 11:51:20 +02001802 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001803}
1804
1805/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001806 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001807 * with syndrome - only for large page flash
1808 * @mtd: mtd info structure
1809 * @chip: nand chip info structure
1810 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001811 */
1812static int nand_write_oob_syndrome(struct mtd_info *mtd,
1813 struct nand_chip *chip, int page)
1814{
1815 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1816 int eccsize = chip->ecc.size, length = mtd->oobsize;
1817 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1818 const uint8_t *bufpoi = chip->oob_poi;
1819
1820 /*
1821 * data-ecc-data-ecc ... ecc-oob
1822 * or
1823 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1824 */
1825 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1826 pos = steps * (eccsize + chunk);
1827 steps = 0;
1828 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001829 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001830
1831 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1832 for (i = 0; i < steps; i++) {
1833 if (sndcmd) {
1834 if (mtd->writesize <= 512) {
1835 uint32_t fill = 0xFFFFFFFF;
1836
1837 len = eccsize;
1838 while (len > 0) {
1839 int num = min_t(int, len, 4);
1840 chip->write_buf(mtd, (uint8_t *)&fill,
1841 num);
1842 len -= num;
1843 }
1844 } else {
1845 pos = eccsize + i * (eccsize + chunk);
1846 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1847 }
1848 } else
1849 sndcmd = 1;
1850 len = min_t(int, length, chunk);
1851 chip->write_buf(mtd, bufpoi, len);
1852 bufpoi += len;
1853 length -= len;
1854 }
1855 if (length > 0)
1856 chip->write_buf(mtd, bufpoi, length);
1857
1858 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1859 status = chip->waitfunc(mtd, chip);
1860
1861 return status & NAND_STATUS_FAIL ? -EIO : 0;
1862}
1863
1864/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001865 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001866 * @mtd: MTD device structure
1867 * @from: offset to read from
1868 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001870 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001872static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1873 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
Brian Norrisc00a0992012-05-01 17:12:54 -07001875 int page, realpage, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001876 struct nand_chip *chip = mtd->priv;
Brian Norris041e4572011-06-23 16:45:24 -07001877 struct mtd_ecc_stats stats;
Vitaly Wool70145682006-11-03 18:20:38 +03001878 int readlen = ops->ooblen;
1879 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001880 uint8_t *buf = ops->oobbuf;
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03001881 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Brian Norris289c0522011-07-19 10:06:09 -07001883 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05301884 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Brian Norris041e4572011-06-23 16:45:24 -07001886 stats = mtd->ecc_stats;
1887
Brian Norris0612b9d2011-08-30 18:45:40 -07001888 if (ops->mode == MTD_OPS_AUTO_OOB)
Vitaly Wool70145682006-11-03 18:20:38 +03001889 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02001890 else
1891 len = mtd->oobsize;
1892
1893 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07001894 pr_debug("%s: attempt to start read outside oob\n",
1895 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001896 return -EINVAL;
1897 }
1898
1899 /* Do not allow reads past end of device */
1900 if (unlikely(from >= mtd->size ||
1901 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1902 (from >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07001903 pr_debug("%s: attempt to read beyond end of device\n",
1904 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001905 return -EINVAL;
1906 }
Vitaly Wool70145682006-11-03 18:20:38 +03001907
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001908 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001909 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001911 /* Shift to get page */
1912 realpage = (int)(from >> chip->page_shift);
1913 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Florian Fainellif8ac0412010-09-07 13:23:43 +02001915 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07001916 if (ops->mode == MTD_OPS_RAW)
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03001917 ret = chip->ecc.read_oob_raw(mtd, chip, page);
Brian Norrisc46f6482011-08-30 18:45:38 -07001918 else
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03001919 ret = chip->ecc.read_oob(mtd, chip, page);
1920
1921 if (ret < 0)
1922 break;
Vitaly Wool70145682006-11-03 18:20:38 +03001923
1924 len = min(len, readlen);
1925 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001926
Brian Norris5bc7c332013-03-13 09:51:31 -07001927 if (chip->options & NAND_NEED_READRDY) {
1928 /* Apply delay or wait for ready/busy pin */
1929 if (!chip->dev_ready)
1930 udelay(chip->chip_delay);
1931 else
1932 nand_wait_ready(mtd);
1933 }
1934
Vitaly Wool70145682006-11-03 18:20:38 +03001935 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02001936 if (!readlen)
1937 break;
1938
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001939 /* Increment page address */
1940 realpage++;
1941
1942 page = realpage & chip->pagemask;
1943 /* Check, if we cross a chip boundary */
1944 if (!page) {
1945 chipnr++;
1946 chip->select_chip(mtd, -1);
1947 chip->select_chip(mtd, chipnr);
1948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08001950 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03001952 ops->oobretlen = ops->ooblen - readlen;
1953
1954 if (ret < 0)
1955 return ret;
Brian Norris041e4572011-06-23 16:45:24 -07001956
1957 if (mtd->ecc_stats.failed - stats.failed)
1958 return -EBADMSG;
1959
1960 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961}
1962
1963/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001964 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001965 * @mtd: MTD device structure
1966 * @from: offset to read from
1967 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001969 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001971static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1972 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001974 int ret = -ENOTSUPP;
1975
1976 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001979 if (ops->datbuf && (from + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07001980 pr_debug("%s: attempt to read beyond end of device\n",
1981 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 return -EINVAL;
1983 }
1984
Huang Shijie6a8214a2012-11-19 14:43:30 +08001985 nand_get_device(mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Florian Fainellif8ac0412010-09-07 13:23:43 +02001987 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07001988 case MTD_OPS_PLACE_OOB:
1989 case MTD_OPS_AUTO_OOB:
1990 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001991 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001992
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001993 default:
1994 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 }
1996
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001997 if (!ops->datbuf)
1998 ret = nand_do_read_oob(mtd, from, ops);
1999 else
2000 ret = nand_do_read_ops(mtd, from, ops);
2001
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002002out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002004 return ret;
2005}
2006
2007
2008/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002009 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002010 * @mtd: mtd info structure
2011 * @chip: nand chip info structure
2012 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002013 * @oob_required: must write chip->oob_poi to OOB
David Brownell52ff49d2009-03-04 12:01:36 -08002014 *
Brian Norris7854d3f2011-06-23 14:12:08 -07002015 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002016 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002017static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07002018 const uint8_t *buf, int oob_required)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002019{
2020 chip->write_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07002021 if (oob_required)
2022 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002023
2024 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
2026
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002027/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002028 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002029 * @mtd: mtd info structure
2030 * @chip: nand chip info structure
2031 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002032 * @oob_required: must write chip->oob_poi to OOB
David Brownell52ff49d2009-03-04 12:01:36 -08002033 *
2034 * We need a special oob layout and handling even when ECC isn't checked.
2035 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002036static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002037 struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07002038 const uint8_t *buf, int oob_required)
David Brownell52ff49d2009-03-04 12:01:36 -08002039{
2040 int eccsize = chip->ecc.size;
2041 int eccbytes = chip->ecc.bytes;
2042 uint8_t *oob = chip->oob_poi;
2043 int steps, size;
2044
2045 for (steps = chip->ecc.steps; steps > 0; steps--) {
2046 chip->write_buf(mtd, buf, eccsize);
2047 buf += eccsize;
2048
2049 if (chip->ecc.prepad) {
2050 chip->write_buf(mtd, oob, chip->ecc.prepad);
2051 oob += chip->ecc.prepad;
2052 }
2053
Boris BREZILLON60c3bc12014-02-01 19:10:28 +01002054 chip->write_buf(mtd, oob, eccbytes);
David Brownell52ff49d2009-03-04 12:01:36 -08002055 oob += eccbytes;
2056
2057 if (chip->ecc.postpad) {
2058 chip->write_buf(mtd, oob, chip->ecc.postpad);
2059 oob += chip->ecc.postpad;
2060 }
2061 }
2062
2063 size = mtd->oobsize - (oob - chip->oob_poi);
2064 if (size)
2065 chip->write_buf(mtd, oob, size);
Josh Wufdbad98d2012-06-25 18:07:45 +08002066
2067 return 0;
David Brownell52ff49d2009-03-04 12:01:36 -08002068}
2069/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002070 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002071 * @mtd: mtd info structure
2072 * @chip: nand chip info structure
2073 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002074 * @oob_required: must write chip->oob_poi to OOB
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002075 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002076static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07002077 const uint8_t *buf, int oob_required)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002078{
2079 int i, eccsize = chip->ecc.size;
2080 int eccbytes = chip->ecc.bytes;
2081 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002082 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002083 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01002084 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002085
Brian Norris7854d3f2011-06-23 14:12:08 -07002086 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002087 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
2088 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002089
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002090 for (i = 0; i < chip->ecc.total; i++)
2091 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002092
Josh Wufdbad98d2012-06-25 18:07:45 +08002093 return chip->ecc.write_page_raw(mtd, chip, buf, 1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002094}
2095
2096/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002097 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002098 * @mtd: mtd info structure
2099 * @chip: nand chip info structure
2100 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002101 * @oob_required: must write chip->oob_poi to OOB
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002102 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002103static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07002104 const uint8_t *buf, int oob_required)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002105{
2106 int i, eccsize = chip->ecc.size;
2107 int eccbytes = chip->ecc.bytes;
2108 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002109 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002110 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01002111 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002112
2113 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2114 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01002115 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002116 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2117 }
2118
2119 for (i = 0; i < chip->ecc.total; i++)
2120 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2121
2122 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002123
2124 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002125}
2126
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302127
2128/**
2129 * nand_write_subpage_hwecc - [REPLACABLE] hardware ECC based subpage write
2130 * @mtd: mtd info structure
2131 * @chip: nand chip info structure
Brian Norrisd6a950802013-08-08 17:16:36 -07002132 * @offset: column address of subpage within the page
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302133 * @data_len: data length
Brian Norrisd6a950802013-08-08 17:16:36 -07002134 * @buf: data buffer
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302135 * @oob_required: must write chip->oob_poi to OOB
2136 */
2137static int nand_write_subpage_hwecc(struct mtd_info *mtd,
2138 struct nand_chip *chip, uint32_t offset,
Brian Norrisd6a950802013-08-08 17:16:36 -07002139 uint32_t data_len, const uint8_t *buf,
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302140 int oob_required)
2141{
2142 uint8_t *oob_buf = chip->oob_poi;
2143 uint8_t *ecc_calc = chip->buffers->ecccalc;
2144 int ecc_size = chip->ecc.size;
2145 int ecc_bytes = chip->ecc.bytes;
2146 int ecc_steps = chip->ecc.steps;
2147 uint32_t *eccpos = chip->ecc.layout->eccpos;
2148 uint32_t start_step = offset / ecc_size;
2149 uint32_t end_step = (offset + data_len - 1) / ecc_size;
2150 int oob_bytes = mtd->oobsize / ecc_steps;
2151 int step, i;
2152
2153 for (step = 0; step < ecc_steps; step++) {
2154 /* configure controller for WRITE access */
2155 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2156
2157 /* write data (untouched subpages already masked by 0xFF) */
Brian Norrisd6a950802013-08-08 17:16:36 -07002158 chip->write_buf(mtd, buf, ecc_size);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302159
2160 /* mask ECC of un-touched subpages by padding 0xFF */
2161 if ((step < start_step) || (step > end_step))
2162 memset(ecc_calc, 0xff, ecc_bytes);
2163 else
Brian Norrisd6a950802013-08-08 17:16:36 -07002164 chip->ecc.calculate(mtd, buf, ecc_calc);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302165
2166 /* mask OOB of un-touched subpages by padding 0xFF */
2167 /* if oob_required, preserve OOB metadata of written subpage */
2168 if (!oob_required || (step < start_step) || (step > end_step))
2169 memset(oob_buf, 0xff, oob_bytes);
2170
Brian Norrisd6a950802013-08-08 17:16:36 -07002171 buf += ecc_size;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302172 ecc_calc += ecc_bytes;
2173 oob_buf += oob_bytes;
2174 }
2175
2176 /* copy calculated ECC for whole page to chip->buffer->oob */
2177 /* this include masked-value(0xFF) for unwritten subpages */
2178 ecc_calc = chip->buffers->ecccalc;
2179 for (i = 0; i < chip->ecc.total; i++)
2180 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2181
2182 /* write OOB buffer to NAND device */
2183 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2184
2185 return 0;
2186}
2187
2188
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002189/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002190 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07002191 * @mtd: mtd info structure
2192 * @chip: nand chip info structure
2193 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002194 * @oob_required: must write chip->oob_poi to OOB
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002195 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002196 * The hw generator calculates the error syndrome automatically. Therefore we
2197 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002198 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002199static int nand_write_page_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07002200 struct nand_chip *chip,
2201 const uint8_t *buf, int oob_required)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002202{
2203 int i, eccsize = chip->ecc.size;
2204 int eccbytes = chip->ecc.bytes;
2205 int eccsteps = chip->ecc.steps;
2206 const uint8_t *p = buf;
2207 uint8_t *oob = chip->oob_poi;
2208
2209 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2210
2211 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2212 chip->write_buf(mtd, p, eccsize);
2213
2214 if (chip->ecc.prepad) {
2215 chip->write_buf(mtd, oob, chip->ecc.prepad);
2216 oob += chip->ecc.prepad;
2217 }
2218
2219 chip->ecc.calculate(mtd, p, oob);
2220 chip->write_buf(mtd, oob, eccbytes);
2221 oob += eccbytes;
2222
2223 if (chip->ecc.postpad) {
2224 chip->write_buf(mtd, oob, chip->ecc.postpad);
2225 oob += chip->ecc.postpad;
2226 }
2227 }
2228
2229 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002230 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002231 if (i)
2232 chip->write_buf(mtd, oob, i);
Josh Wufdbad98d2012-06-25 18:07:45 +08002233
2234 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002235}
2236
2237/**
David Woodhouse956e9442006-09-25 17:12:39 +01002238 * nand_write_page - [REPLACEABLE] write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002239 * @mtd: MTD device structure
2240 * @chip: NAND chip descriptor
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302241 * @offset: address offset within the page
2242 * @data_len: length of actual data to be written
Brian Norris8b6e50c2011-05-25 14:59:01 -07002243 * @buf: the data to write
Brian Norris1fbb9382012-05-02 10:14:55 -07002244 * @oob_required: must write chip->oob_poi to OOB
Brian Norris8b6e50c2011-05-25 14:59:01 -07002245 * @page: page number to write
2246 * @cached: cached programming
2247 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002248 */
2249static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302250 uint32_t offset, int data_len, const uint8_t *buf,
2251 int oob_required, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002252{
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302253 int status, subpage;
2254
2255 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2256 chip->ecc.write_subpage)
2257 subpage = offset || (data_len < mtd->writesize);
2258 else
2259 subpage = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002260
2261 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2262
David Woodhouse956e9442006-09-25 17:12:39 +01002263 if (unlikely(raw))
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302264 status = chip->ecc.write_page_raw(mtd, chip, buf,
2265 oob_required);
2266 else if (subpage)
2267 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
2268 buf, oob_required);
David Woodhouse956e9442006-09-25 17:12:39 +01002269 else
Josh Wufdbad98d2012-06-25 18:07:45 +08002270 status = chip->ecc.write_page(mtd, chip, buf, oob_required);
2271
2272 if (status < 0)
2273 return status;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002274
2275 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002276 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002277 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002278 */
2279 cached = 0;
2280
Artem Bityutskiy3239a6c2013-03-04 14:56:18 +02002281 if (!cached || !NAND_HAS_CACHEPROG(chip)) {
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002282
2283 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002284 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002285 /*
2286 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002287 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002288 */
2289 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2290 status = chip->errstat(mtd, chip, FL_WRITING, status,
2291 page);
2292
2293 if (status & NAND_STATUS_FAIL)
2294 return -EIO;
2295 } else {
2296 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002297 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002298 }
2299
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002300 return 0;
2301}
2302
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002303/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002304 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002305 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002306 * @oob: oob data buffer
2307 * @len: oob data write length
2308 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002309 */
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002310static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2311 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002312{
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002313 struct nand_chip *chip = mtd->priv;
2314
2315 /*
2316 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2317 * data from a previous OOB read.
2318 */
2319 memset(chip->oob_poi, 0xff, mtd->oobsize);
2320
Florian Fainellif8ac0412010-09-07 13:23:43 +02002321 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002322
Brian Norris0612b9d2011-08-30 18:45:40 -07002323 case MTD_OPS_PLACE_OOB:
2324 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002325 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2326 return oob + len;
2327
Brian Norris0612b9d2011-08-30 18:45:40 -07002328 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002329 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002330 uint32_t boffs = 0, woffs = ops->ooboffs;
2331 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002332
Florian Fainellif8ac0412010-09-07 13:23:43 +02002333 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002334 /* Write request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002335 if (unlikely(woffs)) {
2336 if (woffs >= free->length) {
2337 woffs -= free->length;
2338 continue;
2339 }
2340 boffs = free->offset + woffs;
2341 bytes = min_t(size_t, len,
2342 (free->length - woffs));
2343 woffs = 0;
2344 } else {
2345 bytes = min_t(size_t, len, free->length);
2346 boffs = free->offset;
2347 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002348 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002349 oob += bytes;
2350 }
2351 return oob;
2352 }
2353 default:
2354 BUG();
2355 }
2356 return NULL;
2357}
2358
Florian Fainellif8ac0412010-09-07 13:23:43 +02002359#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002360
2361/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002362 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002363 * @mtd: MTD device structure
2364 * @to: offset to write to
2365 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002366 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002367 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002368 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002369static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2370 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002371{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002372 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002373 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002374 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002375
2376 uint32_t oobwritelen = ops->ooblen;
Brian Norris0612b9d2011-08-30 18:45:40 -07002377 uint32_t oobmaxlen = ops->mode == MTD_OPS_AUTO_OOB ?
Maxim Levitsky782ce792010-02-22 20:39:36 +02002378 mtd->oobavail : mtd->oobsize;
2379
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002380 uint8_t *oob = ops->oobbuf;
2381 uint8_t *buf = ops->datbuf;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302382 int ret;
Brian Norrise47f3db2012-05-02 10:14:56 -07002383 int oob_required = oob ? 1 : 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002384
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002385 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002386 if (!writelen)
2387 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002388
Brian Norris8b6e50c2011-05-25 14:59:01 -07002389 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002390 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002391 pr_notice("%s: attempt to write non page aligned data\n",
2392 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002393 return -EINVAL;
2394 }
2395
Thomas Gleixner29072b92006-09-28 15:38:36 +02002396 column = to & (mtd->writesize - 1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002397
Thomas Gleixner6a930962006-06-28 00:11:45 +02002398 chipnr = (int)(to >> chip->chip_shift);
2399 chip->select_chip(mtd, chipnr);
2400
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002401 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002402 if (nand_check_wp(mtd)) {
2403 ret = -EIO;
2404 goto err_out;
2405 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002406
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002407 realpage = (int)(to >> chip->page_shift);
2408 page = realpage & chip->pagemask;
2409 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2410
2411 /* Invalidate the page cache, when we write to the cached page */
Brian Norris537ab1b2014-07-21 19:08:03 -07002412 if (to <= ((loff_t)chip->pagebuf << chip->page_shift) &&
2413 ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002414 chip->pagebuf = -1;
2415
Maxim Levitsky782ce792010-02-22 20:39:36 +02002416 /* Don't allow multipage oob writes with offset */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002417 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
2418 ret = -EINVAL;
2419 goto err_out;
2420 }
Maxim Levitsky782ce792010-02-22 20:39:36 +02002421
Florian Fainellif8ac0412010-09-07 13:23:43 +02002422 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002423 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002424 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002425 uint8_t *wbuf = buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04002426 int use_bufpoi;
2427 int part_pagewr = (column || writelen < (mtd->writesize - 1));
Thomas Gleixner29072b92006-09-28 15:38:36 +02002428
Kamal Dasu66507c72014-05-01 20:51:19 -04002429 if (part_pagewr)
2430 use_bufpoi = 1;
2431 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
2432 use_bufpoi = !virt_addr_valid(buf);
2433 else
2434 use_bufpoi = 0;
2435
2436 /* Partial page write?, or need to use bounce buffer */
2437 if (use_bufpoi) {
2438 pr_debug("%s: using write bounce buffer for buf@%p\n",
2439 __func__, buf);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002440 cached = 0;
Kamal Dasu66507c72014-05-01 20:51:19 -04002441 if (part_pagewr)
2442 bytes = min_t(int, bytes - column, writelen);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002443 chip->pagebuf = -1;
2444 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2445 memcpy(&chip->buffers->databuf[column], buf, bytes);
2446 wbuf = chip->buffers->databuf;
2447 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002448
Maxim Levitsky782ce792010-02-22 20:39:36 +02002449 if (unlikely(oob)) {
2450 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002451 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002452 oobwritelen -= len;
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002453 } else {
2454 /* We still need to erase leftover OOB data */
2455 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002456 }
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302457 ret = chip->write_page(mtd, chip, column, bytes, wbuf,
2458 oob_required, page, cached,
2459 (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002460 if (ret)
2461 break;
2462
2463 writelen -= bytes;
2464 if (!writelen)
2465 break;
2466
Thomas Gleixner29072b92006-09-28 15:38:36 +02002467 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002468 buf += bytes;
2469 realpage++;
2470
2471 page = realpage & chip->pagemask;
2472 /* Check, if we cross a chip boundary */
2473 if (!page) {
2474 chipnr++;
2475 chip->select_chip(mtd, -1);
2476 chip->select_chip(mtd, chipnr);
2477 }
2478 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002479
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002480 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002481 if (unlikely(oob))
2482 ops->oobretlen = ops->ooblen;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002483
2484err_out:
2485 chip->select_chip(mtd, -1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002486 return ret;
2487}
2488
2489/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002490 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002491 * @mtd: MTD device structure
2492 * @to: offset to write to
2493 * @len: number of bytes to write
2494 * @retlen: pointer to variable to store the number of written bytes
2495 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002496 *
2497 * NAND write with ECC. Used when performing writes in interrupt context, this
2498 * may for example be called by mtdoops when writing an oops while in panic.
2499 */
2500static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2501 size_t *retlen, const uint8_t *buf)
2502{
2503 struct nand_chip *chip = mtd->priv;
Brian Norris4a89ff82011-08-30 18:45:45 -07002504 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002505 int ret;
2506
Brian Norris8b6e50c2011-05-25 14:59:01 -07002507 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002508 panic_nand_wait(mtd, chip, 400);
2509
Brian Norris8b6e50c2011-05-25 14:59:01 -07002510 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002511 panic_nand_get_device(chip, mtd, FL_WRITING);
2512
Brian Norris4a89ff82011-08-30 18:45:45 -07002513 ops.len = len;
2514 ops.datbuf = (uint8_t *)buf;
2515 ops.oobbuf = NULL;
Huang Shijie11041ae2012-07-03 16:44:14 +08002516 ops.mode = MTD_OPS_PLACE_OOB;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002517
Brian Norris4a89ff82011-08-30 18:45:45 -07002518 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002519
Brian Norris4a89ff82011-08-30 18:45:45 -07002520 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002521 return ret;
2522}
2523
2524/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002525 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002526 * @mtd: MTD device structure
2527 * @to: offset to write to
2528 * @len: number of bytes to write
2529 * @retlen: pointer to variable to store the number of written bytes
2530 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002532 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002534static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002535 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536{
Brian Norris4a89ff82011-08-30 18:45:45 -07002537 struct mtd_oob_ops ops;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002538 int ret;
2539
Huang Shijie6a8214a2012-11-19 14:43:30 +08002540 nand_get_device(mtd, FL_WRITING);
Brian Norris4a89ff82011-08-30 18:45:45 -07002541 ops.len = len;
2542 ops.datbuf = (uint8_t *)buf;
2543 ops.oobbuf = NULL;
Huang Shijie11041ae2012-07-03 16:44:14 +08002544 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002545 ret = nand_do_write_ops(mtd, to, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002546 *retlen = ops.retlen;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002547 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002548 return ret;
2549}
2550
2551/**
2552 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002553 * @mtd: MTD device structure
2554 * @to: offset to write to
2555 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002556 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002557 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002558 */
2559static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2560 struct mtd_oob_ops *ops)
2561{
Adrian Hunter03736152007-01-31 17:58:29 +02002562 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002563 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Brian Norris289c0522011-07-19 10:06:09 -07002565 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302566 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Brian Norris0612b9d2011-08-30 18:45:40 -07002568 if (ops->mode == MTD_OPS_AUTO_OOB)
Adrian Hunter03736152007-01-31 17:58:29 +02002569 len = chip->ecc.layout->oobavail;
2570 else
2571 len = mtd->oobsize;
2572
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002574 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07002575 pr_debug("%s: attempt to write past end of page\n",
2576 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 return -EINVAL;
2578 }
2579
Adrian Hunter03736152007-01-31 17:58:29 +02002580 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002581 pr_debug("%s: attempt to start write outside oob\n",
2582 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002583 return -EINVAL;
2584 }
2585
Jason Liu775adc32011-02-25 13:06:18 +08002586 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002587 if (unlikely(to >= mtd->size ||
2588 ops->ooboffs + ops->ooblen >
2589 ((mtd->size >> chip->page_shift) -
2590 (to >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002591 pr_debug("%s: attempt to write beyond end of device\n",
2592 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002593 return -EINVAL;
2594 }
2595
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002596 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002597 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002599 /* Shift to get page */
2600 page = (int)(to >> chip->page_shift);
2601
2602 /*
2603 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2604 * of my DiskOnChip 2000 test units) will clear the whole data page too
2605 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2606 * it in the doc2000 driver in August 1999. dwmw2.
2607 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002608 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
2610 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002611 if (nand_check_wp(mtd)) {
2612 chip->select_chip(mtd, -1);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002613 return -EROFS;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002614 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002615
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002617 if (page == chip->pagebuf)
2618 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002620 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07002621
Brian Norris0612b9d2011-08-30 18:45:40 -07002622 if (ops->mode == MTD_OPS_RAW)
Brian Norris9ce244b2011-08-30 18:45:37 -07002623 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
2624 else
2625 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002626
Huang Shijieb0bb6902012-11-19 14:43:29 +08002627 chip->select_chip(mtd, -1);
2628
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002629 if (status)
2630 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
Vitaly Wool70145682006-11-03 18:20:38 +03002632 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002634 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002635}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002637/**
2638 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002639 * @mtd: MTD device structure
2640 * @to: offset to write to
2641 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002642 */
2643static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2644 struct mtd_oob_ops *ops)
2645{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002646 int ret = -ENOTSUPP;
2647
2648 ops->retlen = 0;
2649
2650 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002651 if (ops->datbuf && (to + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002652 pr_debug("%s: attempt to write beyond end of device\n",
2653 __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002654 return -EINVAL;
2655 }
2656
Huang Shijie6a8214a2012-11-19 14:43:30 +08002657 nand_get_device(mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002658
Florian Fainellif8ac0412010-09-07 13:23:43 +02002659 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002660 case MTD_OPS_PLACE_OOB:
2661 case MTD_OPS_AUTO_OOB:
2662 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002663 break;
2664
2665 default:
2666 goto out;
2667 }
2668
2669 if (!ops->datbuf)
2670 ret = nand_do_write_oob(mtd, to, ops);
2671 else
2672 ret = nand_do_write_ops(mtd, to, ops);
2673
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002674out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002675 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 return ret;
2677}
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679/**
Brian Norris49c50b92014-05-06 16:02:19 -07002680 * single_erase - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002681 * @mtd: MTD device structure
2682 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 *
Brian Norris49c50b92014-05-06 16:02:19 -07002684 * Standard erase command for NAND chips. Returns NAND status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 */
Brian Norris49c50b92014-05-06 16:02:19 -07002686static int single_erase(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002688 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002690 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2691 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Brian Norris49c50b92014-05-06 16:02:19 -07002692
2693 return chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694}
2695
2696/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002698 * @mtd: MTD device structure
2699 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002701 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002703static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
David Woodhousee0c7d762006-05-13 18:07:53 +01002705 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002709 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002710 * @mtd: MTD device structure
2711 * @instr: erase instruction
2712 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002714 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002716int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2717 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718{
Adrian Hunter69423d92008-12-10 13:37:21 +00002719 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002720 struct nand_chip *chip = mtd->priv;
Adrian Hunter69423d92008-12-10 13:37:21 +00002721 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Brian Norris289c0522011-07-19 10:06:09 -07002723 pr_debug("%s: start = 0x%012llx, len = %llu\n",
2724 __func__, (unsigned long long)instr->addr,
2725 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302727 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08002731 nand_get_device(mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
2733 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002734 page = (int)(instr->addr >> chip->page_shift);
2735 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
2737 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002738 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
2740 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002741 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 /* Check, if it is write protected */
2744 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07002745 pr_debug("%s: device is write protected!\n",
2746 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 instr->state = MTD_ERASE_FAILED;
2748 goto erase_exit;
2749 }
2750
2751 /* Loop through the pages */
2752 len = instr->len;
2753
2754 instr->state = MTD_ERASING;
2755
2756 while (len) {
Wolfram Sang12183a22011-12-21 23:01:20 +01002757 /* Check if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002758 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2759 chip->page_shift, 0, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002760 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
2761 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 instr->state = MTD_ERASE_FAILED;
2763 goto erase_exit;
2764 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002765
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002766 /*
2767 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07002768 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002769 */
2770 if (page <= chip->pagebuf && chip->pagebuf <
2771 (page + pages_per_block))
2772 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
Brian Norris49c50b92014-05-06 16:02:19 -07002774 status = chip->erase(mtd, page & chip->pagemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002776 /*
2777 * See if operation failed and additional status checks are
2778 * available
2779 */
2780 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2781 status = chip->errstat(mtd, chip, FL_ERASING,
2782 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002785 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07002786 pr_debug("%s: failed erase, page 0x%08x\n",
2787 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002789 instr->fail_addr =
2790 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 goto erase_exit;
2792 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002793
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 /* Increment page address and decrement length */
Dan Carpenterdaae74c2013-08-09 12:49:05 +03002795 len -= (1ULL << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 page += pages_per_block;
2797
2798 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002799 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002801 chip->select_chip(mtd, -1);
2802 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 }
2804 }
2805 instr->state = MTD_ERASE_DONE;
2806
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002807erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
2809 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
2811 /* Deselect and wake up anyone waiting on the device */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002812 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 nand_release_device(mtd);
2814
David Woodhouse49defc02007-10-06 15:01:59 -04002815 /* Do call back function */
2816 if (!ret)
2817 mtd_erase_callback(instr);
2818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 /* Return more or less happy */
2820 return ret;
2821}
2822
2823/**
2824 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07002825 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002827 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002829static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
Brian Norris289c0522011-07-19 10:06:09 -07002831 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
2833 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08002834 nand_get_device(mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002836 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837}
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002840 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002841 * @mtd: MTD device structure
2842 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002844static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002846 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847}
2848
2849/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002850 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002851 * @mtd: MTD device structure
2852 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002854static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 int ret;
2857
Florian Fainellif8ac0412010-09-07 13:23:43 +02002858 ret = nand_block_isbad(mtd, ofs);
2859 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002860 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 if (ret > 0)
2862 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002863 return ret;
2864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
Brian Norris5a0edb22013-07-30 17:52:58 -07002866 return nand_block_markbad_lowlevel(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867}
2868
2869/**
Huang Shijie7db03ec2012-09-13 14:57:52 +08002870 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
2871 * @mtd: MTD device structure
2872 * @chip: nand chip info structure
2873 * @addr: feature address.
2874 * @subfeature_param: the subfeature parameters, a four bytes array.
2875 */
2876static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
2877 int addr, uint8_t *subfeature_param)
2878{
2879 int status;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01002880 int i;
Huang Shijie7db03ec2012-09-13 14:57:52 +08002881
David Mosbergerd914c932013-05-29 15:30:13 +03002882 if (!chip->onfi_version ||
2883 !(le16_to_cpu(chip->onfi_params.opt_cmd)
2884 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08002885 return -EINVAL;
2886
2887 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01002888 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
2889 chip->write_byte(mtd, subfeature_param[i]);
2890
Huang Shijie7db03ec2012-09-13 14:57:52 +08002891 status = chip->waitfunc(mtd, chip);
2892 if (status & NAND_STATUS_FAIL)
2893 return -EIO;
2894 return 0;
2895}
2896
2897/**
2898 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
2899 * @mtd: MTD device structure
2900 * @chip: nand chip info structure
2901 * @addr: feature address.
2902 * @subfeature_param: the subfeature parameters, a four bytes array.
2903 */
2904static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
2905 int addr, uint8_t *subfeature_param)
2906{
Uwe Kleine-König05f78352013-12-05 22:22:04 +01002907 int i;
2908
David Mosbergerd914c932013-05-29 15:30:13 +03002909 if (!chip->onfi_version ||
2910 !(le16_to_cpu(chip->onfi_params.opt_cmd)
2911 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08002912 return -EINVAL;
2913
2914 /* clear the sub feature parameters */
2915 memset(subfeature_param, 0, ONFI_SUBFEATURE_PARAM_LEN);
2916
2917 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01002918 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
2919 *subfeature_param++ = chip->read_byte(mtd);
Huang Shijie7db03ec2012-09-13 14:57:52 +08002920 return 0;
2921}
2922
2923/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002924 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002925 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002926 */
2927static int nand_suspend(struct mtd_info *mtd)
2928{
Huang Shijie6a8214a2012-11-19 14:43:30 +08002929 return nand_get_device(mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002930}
2931
2932/**
2933 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002934 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002935 */
2936static void nand_resume(struct mtd_info *mtd)
2937{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002938 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002939
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002940 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002941 nand_release_device(mtd);
2942 else
Brian Norrisd0370212011-07-19 10:06:08 -07002943 pr_err("%s called for a chip which is not in suspended state\n",
2944 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01002945}
2946
Brian Norris8b6e50c2011-05-25 14:59:01 -07002947/* Set default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002948static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002949{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002951 if (!chip->chip_delay)
2952 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
2954 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002955 if (chip->cmdfunc == NULL)
2956 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
2958 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002959 if (chip->waitfunc == NULL)
2960 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002962 if (!chip->select_chip)
2963 chip->select_chip = nand_select_chip;
Brian Norris68e80782013-07-18 01:17:02 -07002964
Huang Shijie4204ccc2013-08-16 10:10:07 +08002965 /* set for ONFI nand */
2966 if (!chip->onfi_set_features)
2967 chip->onfi_set_features = nand_onfi_set_features;
2968 if (!chip->onfi_get_features)
2969 chip->onfi_get_features = nand_onfi_get_features;
2970
Brian Norris68e80782013-07-18 01:17:02 -07002971 /* If called twice, pointers that depend on busw may need to be reset */
2972 if (!chip->read_byte || chip->read_byte == nand_read_byte)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002973 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2974 if (!chip->read_word)
2975 chip->read_word = nand_read_word;
2976 if (!chip->block_bad)
2977 chip->block_bad = nand_block_bad;
2978 if (!chip->block_markbad)
2979 chip->block_markbad = nand_default_block_markbad;
Brian Norris68e80782013-07-18 01:17:02 -07002980 if (!chip->write_buf || chip->write_buf == nand_write_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002981 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01002982 if (!chip->write_byte || chip->write_byte == nand_write_byte)
2983 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
Brian Norris68e80782013-07-18 01:17:02 -07002984 if (!chip->read_buf || chip->read_buf == nand_read_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002985 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002986 if (!chip->scan_bbt)
2987 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002988
2989 if (!chip->controller) {
2990 chip->controller = &chip->hwcontrol;
2991 spin_lock_init(&chip->controller->lock);
2992 init_waitqueue_head(&chip->controller->wq);
2993 }
2994
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002995}
2996
Brian Norris8b6e50c2011-05-25 14:59:01 -07002997/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002998static void sanitize_string(uint8_t *s, size_t len)
2999{
3000 ssize_t i;
3001
Brian Norris8b6e50c2011-05-25 14:59:01 -07003002 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003003 s[len - 1] = 0;
3004
Brian Norris8b6e50c2011-05-25 14:59:01 -07003005 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003006 for (i = 0; i < len - 1; i++) {
3007 if (s[i] < ' ' || s[i] > 127)
3008 s[i] = '?';
3009 }
3010
Brian Norris8b6e50c2011-05-25 14:59:01 -07003011 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003012 strim(s);
3013}
3014
3015static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
3016{
3017 int i;
3018 while (len--) {
3019 crc ^= *p++ << 8;
3020 for (i = 0; i < 8; i++)
3021 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
3022 }
3023
3024 return crc;
3025}
3026
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003027/* Parse the Extended Parameter Page. */
3028static int nand_flash_detect_ext_param_page(struct mtd_info *mtd,
3029 struct nand_chip *chip, struct nand_onfi_params *p)
3030{
3031 struct onfi_ext_param_page *ep;
3032 struct onfi_ext_section *s;
3033 struct onfi_ext_ecc_info *ecc;
3034 uint8_t *cursor;
3035 int ret = -EINVAL;
3036 int len;
3037 int i;
3038
3039 len = le16_to_cpu(p->ext_param_page_length) * 16;
3040 ep = kmalloc(len, GFP_KERNEL);
Brian Norris5cb13272013-09-16 17:59:20 -07003041 if (!ep)
3042 return -ENOMEM;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003043
3044 /* Send our own NAND_CMD_PARAM. */
3045 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3046
3047 /* Use the Change Read Column command to skip the ONFI param pages. */
3048 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
3049 sizeof(*p) * p->num_of_param_pages , -1);
3050
3051 /* Read out the Extended Parameter Page. */
3052 chip->read_buf(mtd, (uint8_t *)ep, len);
3053 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
3054 != le16_to_cpu(ep->crc))) {
3055 pr_debug("fail in the CRC.\n");
3056 goto ext_out;
3057 }
3058
3059 /*
3060 * Check the signature.
3061 * Do not strictly follow the ONFI spec, maybe changed in future.
3062 */
3063 if (strncmp(ep->sig, "EPPS", 4)) {
3064 pr_debug("The signature is invalid.\n");
3065 goto ext_out;
3066 }
3067
3068 /* find the ECC section. */
3069 cursor = (uint8_t *)(ep + 1);
3070 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
3071 s = ep->sections + i;
3072 if (s->type == ONFI_SECTION_TYPE_2)
3073 break;
3074 cursor += s->length * 16;
3075 }
3076 if (i == ONFI_EXT_SECTION_MAX) {
3077 pr_debug("We can not find the ECC section.\n");
3078 goto ext_out;
3079 }
3080
3081 /* get the info we want. */
3082 ecc = (struct onfi_ext_ecc_info *)cursor;
3083
Brian Norris4ae7d222013-09-16 18:20:21 -07003084 if (!ecc->codeword_size) {
3085 pr_debug("Invalid codeword size\n");
3086 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003087 }
3088
Brian Norris4ae7d222013-09-16 18:20:21 -07003089 chip->ecc_strength_ds = ecc->ecc_bits;
3090 chip->ecc_step_ds = 1 << ecc->codeword_size;
Brian Norris5cb13272013-09-16 17:59:20 -07003091 ret = 0;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003092
3093ext_out:
3094 kfree(ep);
3095 return ret;
3096}
3097
Brian Norris8429bb32013-12-03 15:51:09 -08003098static int nand_setup_read_retry_micron(struct mtd_info *mtd, int retry_mode)
3099{
3100 struct nand_chip *chip = mtd->priv;
3101 uint8_t feature[ONFI_SUBFEATURE_PARAM_LEN] = {retry_mode};
3102
3103 return chip->onfi_set_features(mtd, chip, ONFI_FEATURE_ADDR_READ_RETRY,
3104 feature);
3105}
3106
3107/*
3108 * Configure chip properties from Micron vendor-specific ONFI table
3109 */
3110static void nand_onfi_detect_micron(struct nand_chip *chip,
3111 struct nand_onfi_params *p)
3112{
3113 struct nand_onfi_vendor_micron *micron = (void *)p->vendor;
3114
3115 if (le16_to_cpu(p->vendor_revision) < 1)
3116 return;
3117
3118 chip->read_retries = micron->read_retry_options;
3119 chip->setup_read_retry = nand_setup_read_retry_micron;
3120}
3121
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003122/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003123 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003124 */
3125static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Matthieu CASTET08c248f2011-06-26 18:26:55 +02003126 int *busw)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003127{
3128 struct nand_onfi_params *p = &chip->onfi_params;
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003129 int i, j;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003130 int val;
3131
Brian Norris7854d3f2011-06-23 14:12:08 -07003132 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003133 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
3134 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
3135 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
3136 return 0;
3137
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003138 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3139 for (i = 0; i < 3; i++) {
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003140 for (j = 0; j < sizeof(*p); j++)
3141 ((uint8_t *)p)[j] = chip->read_byte(mtd);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003142 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
3143 le16_to_cpu(p->crc)) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003144 break;
3145 }
3146 }
3147
Brian Norrisc7f23a72013-08-13 10:51:55 -07003148 if (i == 3) {
3149 pr_err("Could not find valid ONFI parameter page; aborting\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003150 return 0;
Brian Norrisc7f23a72013-08-13 10:51:55 -07003151 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003152
Brian Norris8b6e50c2011-05-25 14:59:01 -07003153 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003154 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003155 if (val & (1 << 5))
3156 chip->onfi_version = 23;
3157 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003158 chip->onfi_version = 22;
3159 else if (val & (1 << 3))
3160 chip->onfi_version = 21;
3161 else if (val & (1 << 2))
3162 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003163 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003164 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003165
3166 if (!chip->onfi_version) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003167 pr_info("unsupported ONFI version: %d\n", val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003168 return 0;
3169 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003170
3171 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3172 sanitize_string(p->model, sizeof(p->model));
3173 if (!mtd->name)
3174 mtd->name = p->model;
Brian Norris4355b702013-08-27 18:45:10 -07003175
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003176 mtd->writesize = le32_to_cpu(p->byte_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003177
3178 /*
3179 * pages_per_block and blocks_per_lun may not be a power-of-2 size
3180 * (don't ask me who thought of this...). MTD assumes that these
3181 * dimensions will be power-of-2, so just truncate the remaining area.
3182 */
3183 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3184 mtd->erasesize *= mtd->writesize;
3185
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003186 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003187
3188 /* See erasesize comment */
3189 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
Matthieu CASTET63795752012-03-19 15:35:25 +01003190 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
Huang Shijie13fbd172013-09-25 14:58:13 +08003191 chip->bits_per_cell = p->bits_per_cell;
Huang Shijiee2985fc2013-05-17 11:17:30 +08003192
3193 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
Matthieu CASTET08c248f2011-06-26 18:26:55 +02003194 *busw = NAND_BUSWIDTH_16;
Huang Shijiee2985fc2013-05-17 11:17:30 +08003195 else
3196 *busw = 0;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003197
Huang Shijie10c86ba2013-05-17 11:17:26 +08003198 if (p->ecc_bits != 0xff) {
3199 chip->ecc_strength_ds = p->ecc_bits;
3200 chip->ecc_step_ds = 512;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003201 } else if (chip->onfi_version >= 21 &&
3202 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
3203
3204 /*
3205 * The nand_flash_detect_ext_param_page() uses the
3206 * Change Read Column command which maybe not supported
3207 * by the chip->cmdfunc. So try to update the chip->cmdfunc
3208 * now. We do not replace user supplied command function.
3209 */
3210 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3211 chip->cmdfunc = nand_command_lp;
3212
3213 /* The Extended Parameter Page is supported since ONFI 2.1. */
3214 if (nand_flash_detect_ext_param_page(mtd, chip, p))
Brian Norrisc7f23a72013-08-13 10:51:55 -07003215 pr_warn("Failed to detect ONFI extended param page\n");
3216 } else {
3217 pr_warn("Could not retrieve ONFI ECC requirements\n");
Huang Shijie10c86ba2013-05-17 11:17:26 +08003218 }
3219
Brian Norris8429bb32013-12-03 15:51:09 -08003220 if (p->jedec_id == NAND_MFR_MICRON)
3221 nand_onfi_detect_micron(chip, p);
3222
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003223 return 1;
3224}
3225
3226/*
Huang Shijie91361812014-02-21 13:39:40 +08003227 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
3228 */
3229static int nand_flash_detect_jedec(struct mtd_info *mtd, struct nand_chip *chip,
3230 int *busw)
3231{
3232 struct nand_jedec_params *p = &chip->jedec_params;
3233 struct jedec_ecc_info *ecc;
3234 int val;
3235 int i, j;
3236
3237 /* Try JEDEC for unknown chip or LP */
3238 chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1);
3239 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' ||
3240 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' ||
3241 chip->read_byte(mtd) != 'C')
3242 return 0;
3243
3244 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1);
3245 for (i = 0; i < 3; i++) {
3246 for (j = 0; j < sizeof(*p); j++)
3247 ((uint8_t *)p)[j] = chip->read_byte(mtd);
3248
3249 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
3250 le16_to_cpu(p->crc))
3251 break;
3252 }
3253
3254 if (i == 3) {
3255 pr_err("Could not find valid JEDEC parameter page; aborting\n");
3256 return 0;
3257 }
3258
3259 /* Check version */
3260 val = le16_to_cpu(p->revision);
3261 if (val & (1 << 2))
3262 chip->jedec_version = 10;
3263 else if (val & (1 << 1))
3264 chip->jedec_version = 1; /* vendor specific version */
3265
3266 if (!chip->jedec_version) {
3267 pr_info("unsupported JEDEC version: %d\n", val);
3268 return 0;
3269 }
3270
3271 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3272 sanitize_string(p->model, sizeof(p->model));
3273 if (!mtd->name)
3274 mtd->name = p->model;
3275
3276 mtd->writesize = le32_to_cpu(p->byte_per_page);
3277
3278 /* Please reference to the comment for nand_flash_detect_onfi. */
3279 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3280 mtd->erasesize *= mtd->writesize;
3281
3282 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3283
3284 /* Please reference to the comment for nand_flash_detect_onfi. */
3285 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3286 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3287 chip->bits_per_cell = p->bits_per_cell;
3288
3289 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
3290 *busw = NAND_BUSWIDTH_16;
3291 else
3292 *busw = 0;
3293
3294 /* ECC info */
3295 ecc = &p->ecc_info[0];
3296
3297 if (ecc->codeword_size >= 9) {
3298 chip->ecc_strength_ds = ecc->ecc_bits;
3299 chip->ecc_step_ds = 1 << ecc->codeword_size;
3300 } else {
3301 pr_warn("Invalid codeword size\n");
3302 }
3303
3304 return 1;
3305}
3306
3307/*
Brian Norrise3b88bd2012-09-24 20:40:52 -07003308 * nand_id_has_period - Check if an ID string has a given wraparound period
3309 * @id_data: the ID string
3310 * @arrlen: the length of the @id_data array
3311 * @period: the period of repitition
3312 *
3313 * Check if an ID string is repeated within a given sequence of bytes at
3314 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Brian Norrisd4d4f1b2012-11-14 21:54:20 -08003315 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Brian Norrise3b88bd2012-09-24 20:40:52 -07003316 * if the repetition has a period of @period; otherwise, returns zero.
3317 */
3318static int nand_id_has_period(u8 *id_data, int arrlen, int period)
3319{
3320 int i, j;
3321 for (i = 0; i < period; i++)
3322 for (j = i + period; j < arrlen; j += period)
3323 if (id_data[i] != id_data[j])
3324 return 0;
3325 return 1;
3326}
3327
3328/*
3329 * nand_id_len - Get the length of an ID string returned by CMD_READID
3330 * @id_data: the ID string
3331 * @arrlen: the length of the @id_data array
3332
3333 * Returns the length of the ID string, according to known wraparound/trailing
3334 * zero patterns. If no pattern exists, returns the length of the array.
3335 */
3336static int nand_id_len(u8 *id_data, int arrlen)
3337{
3338 int last_nonzero, period;
3339
3340 /* Find last non-zero byte */
3341 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
3342 if (id_data[last_nonzero])
3343 break;
3344
3345 /* All zeros */
3346 if (last_nonzero < 0)
3347 return 0;
3348
3349 /* Calculate wraparound period */
3350 for (period = 1; period < arrlen; period++)
3351 if (nand_id_has_period(id_data, arrlen, period))
3352 break;
3353
3354 /* There's a repeated pattern */
3355 if (period < arrlen)
3356 return period;
3357
3358 /* There are trailing zeros */
3359 if (last_nonzero < arrlen - 1)
3360 return last_nonzero + 1;
3361
3362 /* No pattern detected */
3363 return arrlen;
3364}
3365
Huang Shijie7db906b2013-09-25 14:58:11 +08003366/* Extract the bits of per cell from the 3rd byte of the extended ID */
3367static int nand_get_bits_per_cell(u8 cellinfo)
3368{
3369 int bits;
3370
3371 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
3372 bits >>= NAND_CI_CELLTYPE_SHIFT;
3373 return bits + 1;
3374}
3375
Brian Norrise3b88bd2012-09-24 20:40:52 -07003376/*
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003377 * Many new NAND share similar device ID codes, which represent the size of the
3378 * chip. The rest of the parameters must be decoded according to generic or
3379 * manufacturer-specific "extended ID" decoding patterns.
3380 */
3381static void nand_decode_ext_id(struct mtd_info *mtd, struct nand_chip *chip,
3382 u8 id_data[8], int *busw)
3383{
Brian Norrise3b88bd2012-09-24 20:40:52 -07003384 int extid, id_len;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003385 /* The 3rd id byte holds MLC / multichip data */
Huang Shijie7db906b2013-09-25 14:58:11 +08003386 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003387 /* The 4th id byte is the important one */
3388 extid = id_data[3];
3389
Brian Norrise3b88bd2012-09-24 20:40:52 -07003390 id_len = nand_id_len(id_data, 8);
3391
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003392 /*
3393 * Field definitions are in the following datasheets:
3394 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norrisaf451af2012-10-09 23:26:06 -07003395 * New Samsung (6 byte ID): Samsung K9GAG08U0F (p.44)
Brian Norris73ca3922012-09-24 20:40:54 -07003396 * Hynix MLC (6 byte ID): Hynix H27UBG8T2B (p.22)
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003397 *
Brian Norrisaf451af2012-10-09 23:26:06 -07003398 * Check for ID length, non-zero 6th byte, cell type, and Hynix/Samsung
3399 * ID to decide what to do.
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003400 */
Brian Norrisaf451af2012-10-09 23:26:06 -07003401 if (id_len == 6 && id_data[0] == NAND_MFR_SAMSUNG &&
Huang Shijie1d0ed692013-09-25 14:58:10 +08003402 !nand_is_slc(chip) && id_data[5] != 0x00) {
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003403 /* Calc pagesize */
3404 mtd->writesize = 2048 << (extid & 0x03);
3405 extid >>= 2;
3406 /* Calc oobsize */
Brian Norrise2d3a352012-09-24 20:40:55 -07003407 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003408 case 1:
3409 mtd->oobsize = 128;
3410 break;
3411 case 2:
3412 mtd->oobsize = 218;
3413 break;
3414 case 3:
3415 mtd->oobsize = 400;
3416 break;
Brian Norrise2d3a352012-09-24 20:40:55 -07003417 case 4:
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003418 mtd->oobsize = 436;
3419 break;
Brian Norrise2d3a352012-09-24 20:40:55 -07003420 case 5:
3421 mtd->oobsize = 512;
3422 break;
3423 case 6:
Brian Norrise2d3a352012-09-24 20:40:55 -07003424 mtd->oobsize = 640;
3425 break;
Huang Shijie94d04e82013-12-25 17:18:55 +08003426 case 7:
3427 default: /* Other cases are "reserved" (unknown) */
3428 mtd->oobsize = 1024;
3429 break;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003430 }
3431 extid >>= 2;
3432 /* Calc blocksize */
3433 mtd->erasesize = (128 * 1024) <<
3434 (((extid >> 1) & 0x04) | (extid & 0x03));
3435 *busw = 0;
Brian Norris73ca3922012-09-24 20:40:54 -07003436 } else if (id_len == 6 && id_data[0] == NAND_MFR_HYNIX &&
Huang Shijie1d0ed692013-09-25 14:58:10 +08003437 !nand_is_slc(chip)) {
Brian Norris73ca3922012-09-24 20:40:54 -07003438 unsigned int tmp;
3439
3440 /* Calc pagesize */
3441 mtd->writesize = 2048 << (extid & 0x03);
3442 extid >>= 2;
3443 /* Calc oobsize */
3444 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
3445 case 0:
3446 mtd->oobsize = 128;
3447 break;
3448 case 1:
3449 mtd->oobsize = 224;
3450 break;
3451 case 2:
3452 mtd->oobsize = 448;
3453 break;
3454 case 3:
3455 mtd->oobsize = 64;
3456 break;
3457 case 4:
3458 mtd->oobsize = 32;
3459 break;
3460 case 5:
3461 mtd->oobsize = 16;
3462 break;
3463 default:
3464 mtd->oobsize = 640;
3465 break;
3466 }
3467 extid >>= 2;
3468 /* Calc blocksize */
3469 tmp = ((extid >> 1) & 0x04) | (extid & 0x03);
3470 if (tmp < 0x03)
3471 mtd->erasesize = (128 * 1024) << tmp;
3472 else if (tmp == 0x03)
3473 mtd->erasesize = 768 * 1024;
3474 else
3475 mtd->erasesize = (64 * 1024) << tmp;
3476 *busw = 0;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003477 } else {
3478 /* Calc pagesize */
3479 mtd->writesize = 1024 << (extid & 0x03);
3480 extid >>= 2;
3481 /* Calc oobsize */
3482 mtd->oobsize = (8 << (extid & 0x01)) *
3483 (mtd->writesize >> 9);
3484 extid >>= 2;
3485 /* Calc blocksize. Blocksize is multiples of 64KiB */
3486 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3487 extid >>= 2;
3488 /* Get buswidth information */
3489 *busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
Brian Norris60c67382013-06-25 13:17:59 -07003490
3491 /*
3492 * Toshiba 24nm raw SLC (i.e., not BENAND) have 32B OOB per
3493 * 512B page. For Toshiba SLC, we decode the 5th/6th byte as
3494 * follows:
3495 * - ID byte 6, bits[2:0]: 100b -> 43nm, 101b -> 32nm,
3496 * 110b -> 24nm
3497 * - ID byte 5, bit[7]: 1 -> BENAND, 0 -> raw SLC
3498 */
3499 if (id_len >= 6 && id_data[0] == NAND_MFR_TOSHIBA &&
Huang Shijie1d0ed692013-09-25 14:58:10 +08003500 nand_is_slc(chip) &&
Brian Norris60c67382013-06-25 13:17:59 -07003501 (id_data[5] & 0x7) == 0x6 /* 24nm */ &&
3502 !(id_data[4] & 0x80) /* !BENAND */) {
3503 mtd->oobsize = 32 * mtd->writesize >> 9;
3504 }
3505
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003506 }
3507}
3508
3509/*
Brian Norrisf23a4812012-09-24 20:40:51 -07003510 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
3511 * decodes a matching ID table entry and assigns the MTD size parameters for
3512 * the chip.
3513 */
3514static void nand_decode_id(struct mtd_info *mtd, struct nand_chip *chip,
3515 struct nand_flash_dev *type, u8 id_data[8],
3516 int *busw)
3517{
3518 int maf_id = id_data[0];
3519
3520 mtd->erasesize = type->erasesize;
3521 mtd->writesize = type->pagesize;
3522 mtd->oobsize = mtd->writesize / 32;
3523 *busw = type->options & NAND_BUSWIDTH_16;
3524
Huang Shijie1c195e92013-09-25 14:58:12 +08003525 /* All legacy ID NAND are small-page, SLC */
3526 chip->bits_per_cell = 1;
3527
Brian Norrisf23a4812012-09-24 20:40:51 -07003528 /*
3529 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3530 * some Spansion chips have erasesize that conflicts with size
3531 * listed in nand_ids table.
3532 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3533 */
3534 if (maf_id == NAND_MFR_AMD && id_data[4] != 0x00 && id_data[5] == 0x00
3535 && id_data[6] == 0x00 && id_data[7] == 0x00
3536 && mtd->writesize == 512) {
3537 mtd->erasesize = 128 * 1024;
3538 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3539 }
3540}
3541
3542/*
Brian Norris7e74c2d2012-09-24 20:40:49 -07003543 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
3544 * heuristic patterns using various detected parameters (e.g., manufacturer,
3545 * page size, cell-type information).
3546 */
3547static void nand_decode_bbm_options(struct mtd_info *mtd,
3548 struct nand_chip *chip, u8 id_data[8])
3549{
3550 int maf_id = id_data[0];
3551
3552 /* Set the bad block position */
3553 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
3554 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
3555 else
3556 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
3557
3558 /*
3559 * Bad block marker is stored in the last page of each block on Samsung
3560 * and Hynix MLC devices; stored in first two pages of each block on
3561 * Micron devices with 2KiB pages and on SLC Samsung, Hynix, Toshiba,
3562 * AMD/Spansion, and Macronix. All others scan only the first page.
3563 */
Huang Shijie1d0ed692013-09-25 14:58:10 +08003564 if (!nand_is_slc(chip) &&
Brian Norris7e74c2d2012-09-24 20:40:49 -07003565 (maf_id == NAND_MFR_SAMSUNG ||
3566 maf_id == NAND_MFR_HYNIX))
3567 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Huang Shijie1d0ed692013-09-25 14:58:10 +08003568 else if ((nand_is_slc(chip) &&
Brian Norris7e74c2d2012-09-24 20:40:49 -07003569 (maf_id == NAND_MFR_SAMSUNG ||
3570 maf_id == NAND_MFR_HYNIX ||
3571 maf_id == NAND_MFR_TOSHIBA ||
3572 maf_id == NAND_MFR_AMD ||
3573 maf_id == NAND_MFR_MACRONIX)) ||
3574 (mtd->writesize == 2048 &&
3575 maf_id == NAND_MFR_MICRON))
3576 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
3577}
3578
Huang Shijieec6e87e2013-03-15 11:01:00 +08003579static inline bool is_full_id_nand(struct nand_flash_dev *type)
3580{
3581 return type->id_len;
3582}
3583
3584static bool find_full_id_nand(struct mtd_info *mtd, struct nand_chip *chip,
3585 struct nand_flash_dev *type, u8 *id_data, int *busw)
3586{
3587 if (!strncmp(type->id, id_data, type->id_len)) {
3588 mtd->writesize = type->pagesize;
3589 mtd->erasesize = type->erasesize;
3590 mtd->oobsize = type->oobsize;
3591
Huang Shijie7db906b2013-09-25 14:58:11 +08003592 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Huang Shijieec6e87e2013-03-15 11:01:00 +08003593 chip->chipsize = (uint64_t)type->chipsize << 20;
3594 chip->options |= type->options;
Huang Shijie57219342013-05-17 11:17:32 +08003595 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
3596 chip->ecc_step_ds = NAND_ECC_STEP(type);
Boris BREZILLON57a94e22014-09-22 20:11:50 +02003597 chip->onfi_timing_mode_default =
3598 type->onfi_timing_mode_default;
Huang Shijieec6e87e2013-03-15 11:01:00 +08003599
3600 *busw = type->options & NAND_BUSWIDTH_16;
3601
Cai Zhiyong092b6a12013-12-25 21:19:21 +08003602 if (!mtd->name)
3603 mtd->name = type->name;
3604
Huang Shijieec6e87e2013-03-15 11:01:00 +08003605 return true;
3606 }
3607 return false;
3608}
3609
Brian Norris7e74c2d2012-09-24 20:40:49 -07003610/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003611 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003612 */
3613static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003614 struct nand_chip *chip,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003615 int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00003616 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003617{
Cai Zhiyongbb770822013-12-25 20:11:15 +08003618 int busw;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003619 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07003620 u8 id_data[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621
3622 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003623 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
Karl Beldanef89a882008-09-15 14:37:29 +02003625 /*
3626 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003627 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02003628 */
3629 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
3630
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003632 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
3634 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003635 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003636 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637
Brian Norris8b6e50c2011-05-25 14:59:01 -07003638 /*
3639 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01003640 * interface concerns can cause random data which looks like a
3641 * possibly credible NAND flash to appear. If the two results do
3642 * not match, ignore the device completely.
3643 */
3644
3645 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3646
Brian Norris4aef9b72012-09-24 20:40:48 -07003647 /* Read entire ID string */
3648 for (i = 0; i < 8; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07003649 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01003650
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003651 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003652 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Brian Norrisd0370212011-07-19 10:06:08 -07003653 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01003654 return ERR_PTR(-ENODEV);
3655 }
3656
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003657 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00003658 type = nand_flash_ids;
3659
Huang Shijieec6e87e2013-03-15 11:01:00 +08003660 for (; type->name != NULL; type++) {
3661 if (is_full_id_nand(type)) {
3662 if (find_full_id_nand(mtd, chip, type, id_data, &busw))
3663 goto ident_done;
3664 } else if (*dev_id == type->dev_id) {
3665 break;
3666 }
3667 }
David Woodhouse5e81e882010-02-26 18:32:56 +00003668
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003669 chip->onfi_version = 0;
3670 if (!type->name || !type->pagesize) {
Masahiro Yamada35fc5192014-04-09 16:26:26 +09003671 /* Check if the chip is ONFI compliant */
Brian Norris47450b32012-09-24 20:40:47 -07003672 if (nand_flash_detect_onfi(mtd, chip, &busw))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003673 goto ident_done;
Huang Shijie91361812014-02-21 13:39:40 +08003674
3675 /* Check if the chip is JEDEC compliant */
3676 if (nand_flash_detect_jedec(mtd, chip, &busw))
3677 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003678 }
3679
David Woodhouse5e81e882010-02-26 18:32:56 +00003680 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003681 return ERR_PTR(-ENODEV);
3682
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003683 if (!mtd->name)
3684 mtd->name = type->name;
3685
Adrian Hunter69423d92008-12-10 13:37:21 +00003686 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003687
Huang Shijie12a40a52010-09-27 10:43:53 +08003688 if (!type->pagesize && chip->init_size) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07003689 /* Set the pagesize, oobsize, erasesize by the driver */
Huang Shijie12a40a52010-09-27 10:43:53 +08003690 busw = chip->init_size(mtd, chip, id_data);
3691 } else if (!type->pagesize) {
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003692 /* Decode parameters from extended ID */
3693 nand_decode_ext_id(mtd, chip, id_data, &busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003694 } else {
Brian Norrisf23a4812012-09-24 20:40:51 -07003695 nand_decode_id(mtd, chip, type, id_data, &busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003696 }
Brian Norrisbf7a01b2012-07-13 09:28:24 -07003697 /* Get chip options */
3698 chip->options |= type->options;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003699
Brian Norris8b6e50c2011-05-25 14:59:01 -07003700 /*
3701 * Check if chip is not a Samsung device. Do not clear the
3702 * options for chips which do not have an extended id.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003703 */
3704 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3705 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3706ident_done:
3707
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003708 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003709 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003710 if (nand_manuf_ids[maf_idx].id == *maf_id)
3711 break;
3712 }
3713
Matthieu CASTET64b37b22012-11-06 11:51:44 +01003714 if (chip->options & NAND_BUSWIDTH_AUTO) {
3715 WARN_ON(chip->options & NAND_BUSWIDTH_16);
3716 chip->options |= busw;
3717 nand_set_defaults(chip, busw);
3718 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
3719 /*
3720 * Check, if buswidth is correct. Hardware drivers should set
3721 * chip correct!
3722 */
Ezequiel Garcia20171642013-11-25 08:30:31 -03003723 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3724 *maf_id, *dev_id);
3725 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name, mtd->name);
3726 pr_warn("bus width %d instead %d bit\n",
Brian Norrisd0370212011-07-19 10:06:08 -07003727 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
3728 busw ? 16 : 8);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003729 return ERR_PTR(-EINVAL);
3730 }
3731
Brian Norris7e74c2d2012-09-24 20:40:49 -07003732 nand_decode_bbm_options(mtd, chip, id_data);
3733
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003734 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003735 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07003736 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003737 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003738
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003739 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003740 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003741 if (chip->chipsize & 0xffffffff)
3742 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003743 else {
3744 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3745 chip->chip_shift += 32 - 1;
3746 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003747
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03003748 chip->badblockbits = 8;
Brian Norris49c50b92014-05-06 16:02:19 -07003749 chip->erase = single_erase;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003750
Brian Norris8b6e50c2011-05-25 14:59:01 -07003751 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003752 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3753 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003754
Ezequiel Garcia20171642013-11-25 08:30:31 -03003755 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3756 *maf_id, *dev_id);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08003757
3758 if (chip->onfi_version)
3759 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3760 chip->onfi_params.model);
3761 else if (chip->jedec_version)
3762 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3763 chip->jedec_params.model);
3764 else
3765 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3766 type->name);
3767
Rafał Miłecki3755a992014-10-21 00:01:04 +02003768 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
Huang Shijie3723e932013-09-25 14:58:14 +08003769 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Rafał Miłecki3755a992014-10-21 00:01:04 +02003770 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003771 return type;
3772}
3773
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003774/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003775 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003776 * @mtd: MTD device structure
3777 * @maxchips: number of chips to scan for
3778 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003779 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003780 * This is the first phase of the normal nand_scan() function. It reads the
3781 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003782 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003783 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003784 */
David Woodhouse5e81e882010-02-26 18:32:56 +00003785int nand_scan_ident(struct mtd_info *mtd, int maxchips,
3786 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003787{
Cai Zhiyongbb770822013-12-25 20:11:15 +08003788 int i, nand_maf_id, nand_dev_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003789 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003790 struct nand_flash_dev *type;
3791
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003792 /* Set the default functions */
Cai Zhiyongbb770822013-12-25 20:11:15 +08003793 nand_set_defaults(chip, chip->options & NAND_BUSWIDTH_16);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003794
3795 /* Read the flash type */
Cai Zhiyongbb770822013-12-25 20:11:15 +08003796 type = nand_get_flash_type(mtd, chip, &nand_maf_id,
3797 &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003798
3799 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00003800 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07003801 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003802 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003803 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 }
3805
Huang Shijie07300162012-11-09 16:23:45 +08003806 chip->select_chip(mtd, -1);
3807
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003808 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01003809 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003810 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02003811 /* See comment in nand_get_flash_type for reset */
3812 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003814 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003816 if (nand_maf_id != chip->read_byte(mtd) ||
Huang Shijie07300162012-11-09 16:23:45 +08003817 nand_dev_id != chip->read_byte(mtd)) {
3818 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 break;
Huang Shijie07300162012-11-09 16:23:45 +08003820 }
3821 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 }
3823 if (i > 1)
Ezequiel Garcia20171642013-11-25 08:30:31 -03003824 pr_info("%d chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003825
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003827 chip->numchips = i;
3828 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
David Woodhouse3b85c322006-09-25 17:06:53 +01003830 return 0;
3831}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003832EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01003833
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03003834/*
3835 * Check if the chip configuration meet the datasheet requirements.
3836
3837 * If our configuration corrects A bits per B bytes and the minimum
3838 * required correction level is X bits per Y bytes, then we must ensure
3839 * both of the following are true:
3840 *
3841 * (1) A / B >= X / Y
3842 * (2) A >= X
3843 *
3844 * Requirement (1) ensures we can correct for the required bitflip density.
3845 * Requirement (2) ensures we can correct even when all bitflips are clumped
3846 * in the same sector.
3847 */
3848static bool nand_ecc_strength_good(struct mtd_info *mtd)
3849{
3850 struct nand_chip *chip = mtd->priv;
3851 struct nand_ecc_ctrl *ecc = &chip->ecc;
3852 int corr, ds_corr;
3853
3854 if (ecc->size == 0 || chip->ecc_step_ds == 0)
3855 /* Not enough information */
3856 return true;
3857
3858 /*
3859 * We get the number of corrected bits per page to compare
3860 * the correction density.
3861 */
3862 corr = (mtd->writesize * ecc->strength) / ecc->size;
3863 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
3864
3865 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
3866}
David Woodhouse3b85c322006-09-25 17:06:53 +01003867
3868/**
3869 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003870 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01003871 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003872 * This is the second phase of the normal nand_scan() function. It fills out
3873 * all the uninitialized function pointers with the defaults and scans for a
3874 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01003875 */
3876int nand_scan_tail(struct mtd_info *mtd)
3877{
3878 int i;
3879 struct nand_chip *chip = mtd->priv;
Huang Shijie97de79e02013-10-18 14:20:53 +08003880 struct nand_ecc_ctrl *ecc = &chip->ecc;
Huang Shijief02ea4e2014-01-13 14:27:12 +08003881 struct nand_buffers *nbuf;
David Woodhouse3b85c322006-09-25 17:06:53 +01003882
Brian Norrise2414f42012-02-06 13:44:00 -08003883 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
3884 BUG_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
3885 !(chip->bbt_options & NAND_BBT_USE_FLASH));
3886
Huang Shijief02ea4e2014-01-13 14:27:12 +08003887 if (!(chip->options & NAND_OWN_BUFFERS)) {
3888 nbuf = kzalloc(sizeof(*nbuf) + mtd->writesize
3889 + mtd->oobsize * 3, GFP_KERNEL);
3890 if (!nbuf)
3891 return -ENOMEM;
3892 nbuf->ecccalc = (uint8_t *)(nbuf + 1);
3893 nbuf->ecccode = nbuf->ecccalc + mtd->oobsize;
3894 nbuf->databuf = nbuf->ecccode + mtd->oobsize;
3895
3896 chip->buffers = nbuf;
3897 } else {
3898 if (!chip->buffers)
3899 return -ENOMEM;
3900 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003901
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01003902 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01003903 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003904
3905 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003906 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003907 */
Huang Shijie97de79e02013-10-18 14:20:53 +08003908 if (!ecc->layout && (ecc->mode != NAND_ECC_SOFT_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003909 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 case 8:
Huang Shijie97de79e02013-10-18 14:20:53 +08003911 ecc->layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 break;
3913 case 16:
Huang Shijie97de79e02013-10-18 14:20:53 +08003914 ecc->layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 break;
3916 case 64:
Huang Shijie97de79e02013-10-18 14:20:53 +08003917 ecc->layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003919 case 128:
Huang Shijie97de79e02013-10-18 14:20:53 +08003920 ecc->layout = &nand_oob_128;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003921 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 default:
Brian Norrisd0370212011-07-19 10:06:08 -07003923 pr_warn("No oob scheme defined for oobsize %d\n",
3924 mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 BUG();
3926 }
3927 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003928
David Woodhouse956e9442006-09-25 17:12:39 +01003929 if (!chip->write_page)
3930 chip->write_page = nand_write_page;
3931
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003932 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003933 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003934 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01003935 */
David Woodhouse956e9442006-09-25 17:12:39 +01003936
Huang Shijie97de79e02013-10-18 14:20:53 +08003937 switch (ecc->mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003938 case NAND_ECC_HW_OOB_FIRST:
3939 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Huang Shijie97de79e02013-10-18 14:20:53 +08003940 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02003941 pr_warn("No ECC functions supplied; hardware ECC not possible\n");
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003942 BUG();
3943 }
Huang Shijie97de79e02013-10-18 14:20:53 +08003944 if (!ecc->read_page)
3945 ecc->read_page = nand_read_page_hwecc_oob_first;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003946
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003947 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07003948 /* Use standard hwecc read page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08003949 if (!ecc->read_page)
3950 ecc->read_page = nand_read_page_hwecc;
3951 if (!ecc->write_page)
3952 ecc->write_page = nand_write_page_hwecc;
3953 if (!ecc->read_page_raw)
3954 ecc->read_page_raw = nand_read_page_raw;
3955 if (!ecc->write_page_raw)
3956 ecc->write_page_raw = nand_write_page_raw;
3957 if (!ecc->read_oob)
3958 ecc->read_oob = nand_read_oob_std;
3959 if (!ecc->write_oob)
3960 ecc->write_oob = nand_write_oob_std;
3961 if (!ecc->read_subpage)
3962 ecc->read_subpage = nand_read_subpage;
3963 if (!ecc->write_subpage)
3964 ecc->write_subpage = nand_write_subpage_hwecc;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003965
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003966 case NAND_ECC_HW_SYNDROME:
Huang Shijie97de79e02013-10-18 14:20:53 +08003967 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
3968 (!ecc->read_page ||
3969 ecc->read_page == nand_read_page_hwecc ||
3970 !ecc->write_page ||
3971 ecc->write_page == nand_write_page_hwecc)) {
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02003972 pr_warn("No ECC functions supplied; hardware ECC not possible\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003973 BUG();
3974 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07003975 /* Use standard syndrome read/write page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08003976 if (!ecc->read_page)
3977 ecc->read_page = nand_read_page_syndrome;
3978 if (!ecc->write_page)
3979 ecc->write_page = nand_write_page_syndrome;
3980 if (!ecc->read_page_raw)
3981 ecc->read_page_raw = nand_read_page_raw_syndrome;
3982 if (!ecc->write_page_raw)
3983 ecc->write_page_raw = nand_write_page_raw_syndrome;
3984 if (!ecc->read_oob)
3985 ecc->read_oob = nand_read_oob_syndrome;
3986 if (!ecc->write_oob)
3987 ecc->write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003988
Huang Shijie97de79e02013-10-18 14:20:53 +08003989 if (mtd->writesize >= ecc->size) {
3990 if (!ecc->strength) {
Mike Dunne2788c92012-04-25 12:06:10 -07003991 pr_warn("Driver must set ecc.strength when using hardware ECC\n");
3992 BUG();
3993 }
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003994 break;
Mike Dunne2788c92012-04-25 12:06:10 -07003995 }
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02003996 pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n",
3997 ecc->size, mtd->writesize);
Huang Shijie97de79e02013-10-18 14:20:53 +08003998 ecc->mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004000 case NAND_ECC_SOFT:
Huang Shijie97de79e02013-10-18 14:20:53 +08004001 ecc->calculate = nand_calculate_ecc;
4002 ecc->correct = nand_correct_data;
4003 ecc->read_page = nand_read_page_swecc;
4004 ecc->read_subpage = nand_read_subpage;
4005 ecc->write_page = nand_write_page_swecc;
4006 ecc->read_page_raw = nand_read_page_raw;
4007 ecc->write_page_raw = nand_write_page_raw;
4008 ecc->read_oob = nand_read_oob_std;
4009 ecc->write_oob = nand_write_oob_std;
4010 if (!ecc->size)
4011 ecc->size = 256;
4012 ecc->bytes = 3;
4013 ecc->strength = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004015
Ivan Djelic193bd402011-03-11 11:05:33 +01004016 case NAND_ECC_SOFT_BCH:
4017 if (!mtd_nand_has_bch()) {
Erico Nunes148256f2014-03-11 01:31:26 -03004018 pr_warn("CONFIG_MTD_NAND_ECC_BCH not enabled\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01004019 BUG();
4020 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004021 ecc->calculate = nand_bch_calculate_ecc;
4022 ecc->correct = nand_bch_correct_data;
4023 ecc->read_page = nand_read_page_swecc;
4024 ecc->read_subpage = nand_read_subpage;
4025 ecc->write_page = nand_write_page_swecc;
4026 ecc->read_page_raw = nand_read_page_raw;
4027 ecc->write_page_raw = nand_write_page_raw;
4028 ecc->read_oob = nand_read_oob_std;
4029 ecc->write_oob = nand_write_oob_std;
Ivan Djelic193bd402011-03-11 11:05:33 +01004030 /*
4031 * Board driver should supply ecc.size and ecc.bytes values to
4032 * select how many bits are correctable; see nand_bch_init()
Brian Norris8b6e50c2011-05-25 14:59:01 -07004033 * for details. Otherwise, default to 4 bits for large page
4034 * devices.
Ivan Djelic193bd402011-03-11 11:05:33 +01004035 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004036 if (!ecc->size && (mtd->oobsize >= 64)) {
4037 ecc->size = 512;
Jordan Friendshuh438320d2014-08-27 12:45:36 -05004038 ecc->bytes = DIV_ROUND_UP(13 * ecc->strength, 8);
Ivan Djelic193bd402011-03-11 11:05:33 +01004039 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004040 ecc->priv = nand_bch_init(mtd, ecc->size, ecc->bytes,
4041 &ecc->layout);
4042 if (!ecc->priv) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07004043 pr_warn("BCH ECC initialization failed!\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01004044 BUG();
4045 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004046 ecc->strength = ecc->bytes * 8 / fls(8 * ecc->size);
Ivan Djelic193bd402011-03-11 11:05:33 +01004047 break;
4048
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004049 case NAND_ECC_NONE:
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004050 pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n");
Huang Shijie97de79e02013-10-18 14:20:53 +08004051 ecc->read_page = nand_read_page_raw;
4052 ecc->write_page = nand_write_page_raw;
4053 ecc->read_oob = nand_read_oob_std;
4054 ecc->read_page_raw = nand_read_page_raw;
4055 ecc->write_page_raw = nand_write_page_raw;
4056 ecc->write_oob = nand_write_oob_std;
4057 ecc->size = mtd->writesize;
4058 ecc->bytes = 0;
4059 ecc->strength = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 break;
David Woodhouse956e9442006-09-25 17:12:39 +01004061
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 default:
Huang Shijie97de79e02013-10-18 14:20:53 +08004063 pr_warn("Invalid NAND_ECC_MODE %d\n", ecc->mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004064 BUG();
4065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
Brian Norris9ce244b2011-08-30 18:45:37 -07004067 /* For many systems, the standard OOB write also works for raw */
Huang Shijie97de79e02013-10-18 14:20:53 +08004068 if (!ecc->read_oob_raw)
4069 ecc->read_oob_raw = ecc->read_oob;
4070 if (!ecc->write_oob_raw)
4071 ecc->write_oob_raw = ecc->write_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07004072
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004073 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004074 * The number of bytes available for a client to place data into
Brian Norris8b6e50c2011-05-25 14:59:01 -07004075 * the out of band area.
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004076 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004077 ecc->layout->oobavail = 0;
4078 for (i = 0; ecc->layout->oobfree[i].length
4079 && i < ARRAY_SIZE(ecc->layout->oobfree); i++)
4080 ecc->layout->oobavail += ecc->layout->oobfree[i].length;
4081 mtd->oobavail = ecc->layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004082
Thomas Petazzoni54c39e92014-07-02 15:16:32 +02004083 /* ECC sanity check: warn if it's too weak */
4084 if (!nand_ecc_strength_good(mtd))
4085 pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n",
4086 mtd->name);
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004087
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004088 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004089 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07004090 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004091 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004092 ecc->steps = mtd->writesize / ecc->size;
4093 if (ecc->steps * ecc->size != mtd->writesize) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07004094 pr_warn("Invalid ECC parameters\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004095 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004097 ecc->total = ecc->steps * ecc->bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004098
Brian Norris8b6e50c2011-05-25 14:59:01 -07004099 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Huang Shijie1d0ed692013-09-25 14:58:10 +08004100 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
Huang Shijie97de79e02013-10-18 14:20:53 +08004101 switch (ecc->steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02004102 case 2:
4103 mtd->subpage_sft = 1;
4104 break;
4105 case 4:
4106 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004107 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02004108 mtd->subpage_sft = 2;
4109 break;
4110 }
4111 }
4112 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
4113
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02004114 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004115 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004118 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004120 /* Large page NAND with SOFT_ECC should support subpage reads */
Ron Lee4007e2d2014-04-25 15:01:35 +09304121 switch (ecc->mode) {
4122 case NAND_ECC_SOFT:
4123 case NAND_ECC_SOFT_BCH:
4124 if (chip->page_shift > 9)
4125 chip->options |= NAND_SUBPAGE_READ;
4126 break;
4127
4128 default:
4129 break;
4130 }
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004131
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 /* Fill in remaining MTD driver data */
Huang Shijie963d1c22013-09-25 14:58:21 +08004133 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02004134 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
4135 MTD_CAP_NANDFLASH;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004136 mtd->_erase = nand_erase;
4137 mtd->_point = NULL;
4138 mtd->_unpoint = NULL;
4139 mtd->_read = nand_read;
4140 mtd->_write = nand_write;
4141 mtd->_panic_write = panic_nand_write;
4142 mtd->_read_oob = nand_read_oob;
4143 mtd->_write_oob = nand_write_oob;
4144 mtd->_sync = nand_sync;
4145 mtd->_lock = NULL;
4146 mtd->_unlock = NULL;
4147 mtd->_suspend = nand_suspend;
4148 mtd->_resume = nand_resume;
Ezequiel Garcia8471bb72014-05-21 19:06:12 -03004149 mtd->_block_isreserved = nand_block_isreserved;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004150 mtd->_block_isbad = nand_block_isbad;
4151 mtd->_block_markbad = nand_block_markbad;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01004152 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153
Mike Dunn6a918ba2012-03-11 14:21:11 -07004154 /* propagate ecc info to mtd_info */
Huang Shijie97de79e02013-10-18 14:20:53 +08004155 mtd->ecclayout = ecc->layout;
4156 mtd->ecc_strength = ecc->strength;
4157 mtd->ecc_step_size = ecc->size;
Shmulik Ladkaniea3b2ea2012-06-08 18:29:06 +03004158 /*
4159 * Initialize bitflip_threshold to its default prior scan_bbt() call.
4160 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
4161 * properly set.
4162 */
4163 if (!mtd->bitflip_threshold)
4164 mtd->bitflip_threshold = mtd->ecc_strength;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004166 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004167 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169
4170 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004171 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004173EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174
Brian Norris8b6e50c2011-05-25 14:59:01 -07004175/*
4176 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004177 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07004178 * to call us from in-kernel code if the core NAND support is modular.
4179 */
David Woodhouse3b85c322006-09-25 17:06:53 +01004180#ifdef MODULE
4181#define caller_is_module() (1)
4182#else
4183#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06004184 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01004185#endif
4186
4187/**
4188 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004189 * @mtd: MTD device structure
4190 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01004191 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004192 * This fills out all the uninitialized function pointers with the defaults.
4193 * The flash ID is read and the mtd/chip structures are filled with the
4194 * appropriate values. The mtd->owner field must be set to the module of the
4195 * caller.
David Woodhouse3b85c322006-09-25 17:06:53 +01004196 */
4197int nand_scan(struct mtd_info *mtd, int maxchips)
4198{
4199 int ret;
4200
4201 /* Many callers got this wrong, so check for it for a while... */
4202 if (!mtd->owner && caller_is_module()) {
Brian Norrisd0370212011-07-19 10:06:08 -07004203 pr_crit("%s called with NULL mtd->owner!\n", __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01004204 BUG();
4205 }
4206
David Woodhouse5e81e882010-02-26 18:32:56 +00004207 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01004208 if (!ret)
4209 ret = nand_scan_tail(mtd);
4210 return ret;
4211}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004212EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01004213
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004215 * nand_release - [NAND Interface] Free resources held by the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004216 * @mtd: MTD device structure
4217 */
David Woodhousee0c7d762006-05-13 18:07:53 +01004218void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004220 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
Ivan Djelic193bd402011-03-11 11:05:33 +01004222 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
4223 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
4224
Jamie Iles5ffcaf32011-05-23 10:22:46 +01004225 mtd_device_unregister(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226
Jesper Juhlfa671642005-11-07 01:01:27 -08004227 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004228 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004229 if (!(chip->options & NAND_OWN_BUFFERS))
4230 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07004231
4232 /* Free bad block descriptor memory */
4233 if (chip->badblock_pattern && chip->badblock_pattern->options
4234 & NAND_BBT_DYNAMICSTRUCT)
4235 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236}
David Woodhousee0c7d762006-05-13 18:07:53 +01004237EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08004238
4239static int __init nand_base_init(void)
4240{
4241 led_trigger_register_simple("nand-disk", &nand_led_trigger);
4242 return 0;
4243}
4244
4245static void __exit nand_base_exit(void)
4246{
4247 led_trigger_unregister_simple(nand_led_trigger);
4248}
4249
4250module_init(nand_base_init);
4251module_exit(nand_base_exit);
4252
David Woodhousee0c7d762006-05-13 18:07:53 +01004253MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004254MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
4255MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01004256MODULE_DESCRIPTION("Generic NAND flash driver code");