blob: 3a9a8fc6a36c6e695e1fa2c1d93d190aa3278c50 [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.
7 * Basic support for AG-AND chips is provided.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Additional technical information is available on
maximilian attems8b2b4032007-07-28 13:07:16 +020010 * http://www.linux-mtd.infradead.org/doc/nand.html
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020013 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020015 * Credits:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000016 * David Woodhouse for adding multichip support
17 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
19 * rework for 2K page size chips
20 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020021 * TODO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * Enable cached programming for 2k page size chips
23 * Check, if mtd->ecctype should be set to MTD_ECC_HW
24 * if we have HW ecc support.
25 * The AG-AND chips have nice features for speed improvement,
26 * which are not supported yet. Read / program 4 pages in one go.
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +030027 * BBT table is not serialized, has to be fixed
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License version 2 as
31 * published by the Free Software Foundation.
32 *
33 */
34
David Woodhouse552d9202006-05-14 01:20:46 +010035#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/delay.h>
37#include <linux/errno.h>
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +020038#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/sched.h>
40#include <linux/slab.h>
41#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
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020096static int nand_get_device(struct nand_chip *chip, struct mtd_info *mtd,
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +020097 int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Thomas Gleixner8593fbc2006-05-29 03:26:58 +020099static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
100 struct mtd_oob_ops *ops);
101
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200102/*
Joe Perches8e87d782008-02-03 17:22:34 +0200103 * For devices which display every fart in the system on a separate LED. Is
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200104 * compiled away when LED support is disabled.
105 */
106DEFINE_LED_TRIGGER(nand_led_trigger);
107
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530108static int check_offs_len(struct mtd_info *mtd,
109 loff_t ofs, uint64_t len)
110{
111 struct nand_chip *chip = mtd->priv;
112 int ret = 0;
113
114 /* Start address must align on block boundary */
115 if (ofs & ((1 << chip->phys_erase_shift) - 1)) {
116 DEBUG(MTD_DEBUG_LEVEL0, "%s: Unaligned address\n", __func__);
117 ret = -EINVAL;
118 }
119
120 /* Length must align on block boundary */
121 if (len & ((1 << chip->phys_erase_shift) - 1)) {
122 DEBUG(MTD_DEBUG_LEVEL0, "%s: Length not block aligned\n",
123 __func__);
124 ret = -EINVAL;
125 }
126
127 /* Do not allow past end of device */
128 if (ofs + len > mtd->size) {
129 DEBUG(MTD_DEBUG_LEVEL0, "%s: Past end of device\n",
130 __func__);
131 ret = -EINVAL;
132 }
133
134 return ret;
135}
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/**
138 * nand_release_device - [GENERIC] release chip
139 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000140 *
141 * Deselect, release chip lock and wake up anyone waiting on the device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100143static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200145 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 /* De-select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200148 chip->select_chip(mtd, -1);
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100149
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200150 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200151 spin_lock(&chip->controller->lock);
152 chip->controller->active = NULL;
153 chip->state = FL_READY;
154 wake_up(&chip->controller->wq);
155 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158/**
159 * nand_read_byte - [DEFAULT] read one byte from the chip
160 * @mtd: MTD device structure
161 *
162 * Default read function for 8bit buswith
163 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200164static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200166 struct nand_chip *chip = mtd->priv;
167 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * nand_read_byte16 - [DEFAULT] read one byte endianess aware from the chip
172 * @mtd: MTD device structure
173 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000174 * Default read function for 16bit buswith with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * endianess conversion
176 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200177static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200179 struct nand_chip *chip = mtd->priv;
180 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
183/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * nand_read_word - [DEFAULT] read one word from the chip
185 * @mtd: MTD device structure
186 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000187 * Default read function for 16bit buswith without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 * endianess conversion
189 */
190static u16 nand_read_word(struct mtd_info *mtd)
191{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200192 struct nand_chip *chip = mtd->priv;
193 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * nand_select_chip - [DEFAULT] control CE line
198 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -0700199 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 *
201 * Default select function for 1 chip devices.
202 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200203static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200205 struct nand_chip *chip = mtd->priv;
206
207 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200209 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 break;
211 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 break;
213
214 default:
215 BUG();
216 }
217}
218
219/**
220 * nand_write_buf - [DEFAULT] write buffer to chip
221 * @mtd: MTD device structure
222 * @buf: data buffer
223 * @len: number of bytes to write
224 *
225 * Default write function for 8bit buswith
226 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200227static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200230 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
David Woodhousee0c7d762006-05-13 18:07:53 +0100232 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200233 writeb(buf[i], chip->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000237 * nand_read_buf - [DEFAULT] read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 * @mtd: MTD device structure
239 * @buf: buffer to store date
240 * @len: number of bytes to read
241 *
242 * Default read function for 8bit buswith
243 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200244static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200247 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
David Woodhousee0c7d762006-05-13 18:07:53 +0100249 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200250 buf[i] = readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000254 * nand_verify_buf - [DEFAULT] Verify chip data against buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 * @mtd: MTD device structure
256 * @buf: buffer containing the data to compare
257 * @len: number of bytes to compare
258 *
259 * Default verify function for 8bit buswith
260 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200261static int nand_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200264 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
David Woodhousee0c7d762006-05-13 18:07:53 +0100266 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200267 if (buf[i] != readb(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return 0;
270}
271
272/**
273 * nand_write_buf16 - [DEFAULT] write buffer to chip
274 * @mtd: MTD device structure
275 * @buf: data buffer
276 * @len: number of bytes to write
277 *
278 * Default write function for 16bit buswith
279 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200280static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200283 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 u16 *p = (u16 *) buf;
285 len >>= 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000286
David Woodhousee0c7d762006-05-13 18:07:53 +0100287 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200288 writew(p[i], chip->IO_ADDR_W);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000293 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * @mtd: MTD device structure
295 * @buf: buffer to store date
296 * @len: number of bytes to read
297 *
298 * Default read function for 16bit buswith
299 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200300static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200303 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 u16 *p = (u16 *) buf;
305 len >>= 1;
306
David Woodhousee0c7d762006-05-13 18:07:53 +0100307 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200308 p[i] = readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000312 * nand_verify_buf16 - [DEFAULT] Verify chip data against buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * @mtd: MTD device structure
314 * @buf: buffer containing the data to compare
315 * @len: number of bytes to compare
316 *
317 * Default verify function for 16bit buswith
318 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200319static int nand_verify_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200322 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 u16 *p = (u16 *) buf;
324 len >>= 1;
325
David Woodhousee0c7d762006-05-13 18:07:53 +0100326 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200327 if (p[i] != readw(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return -EFAULT;
329
330 return 0;
331}
332
333/**
334 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
335 * @mtd: MTD device structure
336 * @ofs: offset from device start
337 * @getchip: 0, if the chip is already selected
338 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000339 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 */
341static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
342{
343 int page, chipnr, res = 0;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200344 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 u16 bad;
346
Brian Norris5fb15492011-05-31 16:31:21 -0700347 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700348 ofs += mtd->erasesize - mtd->writesize;
349
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100350 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (getchip) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200353 chipnr = (int)(ofs >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200355 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200358 chip->select_chip(mtd, chipnr);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200361 if (chip->options & NAND_BUSWIDTH_16) {
362 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos & 0xFE,
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100363 page);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200364 bad = cpu_to_le16(chip->read_word(mtd));
365 if (chip->badblockpos & 0x1)
Vitaly Wool49196f32005-11-02 16:54:46 +0000366 bad >>= 8;
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200367 else
368 bad &= 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 } else {
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100370 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos, page);
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200371 bad = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000373
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200374 if (likely(chip->badblockbits == 8))
375 res = bad != 0xFF;
376 else
377 res = hweight8(bad) < chip->badblockbits;
378
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200379 if (getchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 nand_release_device(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return res;
383}
384
385/**
386 * nand_default_block_markbad - [DEFAULT] mark a block bad
387 * @mtd: MTD device structure
388 * @ofs: offset from device start
389 *
390 * This is the default implementation, which can be overridden by
391 * a hardware specific driver.
392*/
393static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
394{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200395 struct nand_chip *chip = mtd->priv;
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200396 uint8_t buf[2] = { 0, 0 };
Brian Norris02ed70b2010-07-21 16:53:47 -0700397 int block, ret, i = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000398
Brian Norris5fb15492011-05-31 16:31:21 -0700399 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700400 ofs += mtd->erasesize - mtd->writesize;
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* Get block number */
Andre Renaud4226b512007-04-17 13:50:59 -0400403 block = (int)(ofs >> chip->bbt_erase_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200404 if (chip->bbt)
405 chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /* Do we have a flash based bad block table ? */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200408 if (chip->options & NAND_USE_FLASH_BBT)
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200409 ret = nand_update_bbt(mtd, ofs);
410 else {
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300411 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000412
Brian Norrisa0dc5522011-05-31 16:31:20 -0700413 /*
414 * Write to first two pages if necessary. If we write to more
415 * than one location, the first error encountered quits the
416 * procedure. We write two bytes per location, so we dont have
417 * to mess with 16 bit access.
Brian Norris02ed70b2010-07-21 16:53:47 -0700418 */
419 do {
420 chip->ops.len = chip->ops.ooblen = 2;
421 chip->ops.datbuf = NULL;
422 chip->ops.oobbuf = buf;
423 chip->ops.ooboffs = chip->badblockpos & ~0x01;
424
425 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
426
Brian Norris02ed70b2010-07-21 16:53:47 -0700427 i++;
428 ofs += mtd->writesize;
Brian Norris5fb15492011-05-31 16:31:21 -0700429 } while (!ret && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE) &&
Brian Norris02ed70b2010-07-21 16:53:47 -0700430 i < 2);
431
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300432 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200433 }
434 if (!ret)
435 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300436
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200437 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000440/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * nand_check_wp - [GENERIC] check if the chip is write protected
442 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000443 * Check, if the device is write protected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000445 * The function expects, that the device is already selected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100447static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200449 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200450
451 /* broken xD cards report WP despite being writable */
452 if (chip->options & NAND_BROKEN_XD)
453 return 0;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200456 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
457 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460/**
461 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
462 * @mtd: MTD device structure
463 * @ofs: offset from device start
464 * @getchip: 0, if the chip is already selected
465 * @allowbbt: 1, if its allowed to access the bbt area
466 *
467 * Check, if the block is bad. Either by reading the bad block table or
468 * calling of the scan function.
469 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200470static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
471 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200473 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000474
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200475 if (!chip->bbt)
476 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100479 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200482/**
483 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
484 * @mtd: MTD device structure
485 * @timeo: Timeout
486 *
487 * Helper function for nand_wait_ready used when needing to wait in interrupt
488 * context.
489 */
490static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
491{
492 struct nand_chip *chip = mtd->priv;
493 int i;
494
495 /* Wait for the device to get ready */
496 for (i = 0; i < timeo; i++) {
497 if (chip->dev_ready(mtd))
498 break;
499 touch_softlockup_watchdog();
500 mdelay(1);
501 }
502}
503
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000504/*
Thomas Gleixner3b887752005-02-22 21:56:49 +0000505 * Wait for the ready pin, after a command
506 * The timeout is catched later.
507 */
David Woodhouse4b648b02006-09-25 17:05:24 +0100508void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000509{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200510 struct nand_chip *chip = mtd->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100511 unsigned long timeo = jiffies + 2;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000512
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200513 /* 400ms timeout */
514 if (in_interrupt() || oops_in_progress)
515 return panic_nand_wait_ready(mtd, 400);
516
Richard Purdie8fe833c2006-03-31 02:31:14 -0800517 led_trigger_event(nand_led_trigger, LED_FULL);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000518 /* wait until command is processed or timeout occures */
519 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200520 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800521 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700522 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000523 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800524 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000525}
David Woodhouse4b648b02006-09-25 17:05:24 +0100526EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528/**
529 * nand_command - [DEFAULT] Send command to NAND device
530 * @mtd: MTD device structure
531 * @command: the command to be sent
532 * @column: the column address for this command, -1 if none
533 * @page_addr: the page address for this command, -1 if none
534 *
535 * Send command to NAND device. This function is used for small page
536 * devices (256/512 Bytes per page)
537 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200538static void nand_command(struct mtd_info *mtd, unsigned int command,
539 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200541 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200542 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /*
545 * Write out the command to the device.
546 */
547 if (command == NAND_CMD_SEQIN) {
548 int readcmd;
549
Joern Engel28318772006-05-22 23:18:05 +0200550 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200552 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 readcmd = NAND_CMD_READOOB;
554 } else if (column < 256) {
555 /* First 256 bytes --> READ0 */
556 readcmd = NAND_CMD_READ0;
557 } else {
558 column -= 256;
559 readcmd = NAND_CMD_READ1;
560 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200561 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200562 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200564 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200566 /*
567 * Address cycle, when necessary
568 */
569 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
570 /* Serially input address */
571 if (column != -1) {
572 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200573 if (chip->options & NAND_BUSWIDTH_16)
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200574 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200575 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200576 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200578 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200579 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200580 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200581 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200582 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200583 if (chip->chipsize > (32 << 20))
584 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200585 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200586 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000587
588 /*
589 * program and erase have their own busy handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 * status and sequential in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100591 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 case NAND_CMD_PAGEPROG:
595 case NAND_CMD_ERASE1:
596 case NAND_CMD_ERASE2:
597 case NAND_CMD_SEQIN:
598 case NAND_CMD_STATUS:
599 return;
600
601 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200602 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200604 udelay(chip->chip_delay);
605 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200606 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200607 chip->cmd_ctrl(mtd,
608 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200609 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
610 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return;
612
David Woodhousee0c7d762006-05-13 18:07:53 +0100613 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000615 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 * If we don't have access to the busy pin, we apply the given
617 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100618 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200619 if (!chip->dev_ready) {
620 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /* Apply this short delay always to ensure that we do wait tWB in
625 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100626 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000627
628 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631/**
632 * nand_command_lp - [DEFAULT] Send command to NAND large page device
633 * @mtd: MTD device structure
634 * @command: the command to be sent
635 * @column: the column address for this command, -1 if none
636 * @page_addr: the page address for this command, -1 if none
637 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200638 * Send command to NAND device. This is the version for the new large page
639 * devices We dont have the separate regions as we have in the small page
640 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200642static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
643 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200645 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 /* Emulate NAND_CMD_READOOB */
648 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200649 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 command = NAND_CMD_READ0;
651 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000652
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200653 /* Command latch cycle */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200654 chip->cmd_ctrl(mtd, command & 0xff,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200655 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200658 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 /* Serially input address */
661 if (column != -1) {
662 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200663 if (chip->options & NAND_BUSWIDTH_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200665 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200666 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200667 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200670 chip->cmd_ctrl(mtd, page_addr, ctrl);
671 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200672 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200674 if (chip->chipsize > (128 << 20))
675 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200676 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200679 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000680
681 /*
682 * program and erase have their own busy handlers
David A. Marlin30f464b2005-01-17 18:35:25 +0000683 * status, sequential in, and deplete1 need no delay
684 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 case NAND_CMD_CACHEDPROG:
688 case NAND_CMD_PAGEPROG:
689 case NAND_CMD_ERASE1:
690 case NAND_CMD_ERASE2:
691 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200692 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000694 case NAND_CMD_DEPLETE1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return;
696
David Woodhousee0c7d762006-05-13 18:07:53 +0100697 /*
698 * read error status commands require only a short delay
699 */
David A. Marlin30f464b2005-01-17 18:35:25 +0000700 case NAND_CMD_STATUS_ERROR:
701 case NAND_CMD_STATUS_ERROR0:
702 case NAND_CMD_STATUS_ERROR1:
703 case NAND_CMD_STATUS_ERROR2:
704 case NAND_CMD_STATUS_ERROR3:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200705 udelay(chip->chip_delay);
David A. Marlin30f464b2005-01-17 18:35:25 +0000706 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200709 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200711 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200712 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
713 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
714 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
715 NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200716 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
717 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return;
719
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200720 case NAND_CMD_RNDOUT:
721 /* No ready / busy check necessary */
722 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
723 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
724 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
725 NAND_NCE | NAND_CTRL_CHANGE);
726 return;
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200729 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
730 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
731 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
732 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000733
David Woodhousee0c7d762006-05-13 18:07:53 +0100734 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000736 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 * If we don't have access to the busy pin, we apply the given
738 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100739 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200740 if (!chip->dev_ready) {
741 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 /* Apply this short delay always to ensure that we do wait tWB in
747 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100748 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000749
750 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
753/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200754 * panic_nand_get_device - [GENERIC] Get chip for selected access
755 * @chip: the nand chip descriptor
756 * @mtd: MTD device structure
757 * @new_state: the state which is requested
758 *
759 * Used when in panic, no locks are taken.
760 */
761static void panic_nand_get_device(struct nand_chip *chip,
762 struct mtd_info *mtd, int new_state)
763{
764 /* Hardware controller shared among independend devices */
765 chip->controller->active = chip;
766 chip->state = new_state;
767}
768
769/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 * nand_get_device - [GENERIC] Get chip for selected access
Randy Dunlap844d3b42006-06-28 21:48:27 -0700771 * @chip: the nand chip descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000773 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 *
775 * Get the device and lock it for exclusive access
776 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200777static int
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200778nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200780 spinlock_t *lock = &chip->controller->lock;
781 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100782 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200783retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100784 spin_lock(lock);
785
vimal singhb8b3ee92009-07-09 20:41:22 +0530786 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200787 if (!chip->controller->active)
788 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200789
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200790 if (chip->controller->active == chip && chip->state == FL_READY) {
791 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100792 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100793 return 0;
794 }
795 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800796 if (chip->controller->active->state == FL_PM_SUSPENDED) {
797 chip->state = FL_PM_SUSPENDED;
798 spin_unlock(lock);
799 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800800 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100801 }
802 set_current_state(TASK_UNINTERRUPTIBLE);
803 add_wait_queue(wq, &wait);
804 spin_unlock(lock);
805 schedule();
806 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 goto retry;
808}
809
810/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200811 * panic_nand_wait - [GENERIC] wait until the command is done
812 * @mtd: MTD device structure
813 * @chip: NAND chip structure
814 * @timeo: Timeout
815 *
816 * Wait for command done. This is a helper function for nand_wait used when
817 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400818 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200819 */
820static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
821 unsigned long timeo)
822{
823 int i;
824 for (i = 0; i < timeo; i++) {
825 if (chip->dev_ready) {
826 if (chip->dev_ready(mtd))
827 break;
828 } else {
829 if (chip->read_byte(mtd) & NAND_STATUS_READY)
830 break;
831 }
832 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200833 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200834}
835
836/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 * nand_wait - [DEFAULT] wait until the command is done
838 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -0700839 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 *
841 * Wait for command done. This applies to erase and program only
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000842 * Erase can take up to 400ms and program up to 20ms according to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 * general NAND and SmartMedia specs
Randy Dunlap844d3b42006-06-28 21:48:27 -0700844 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200845static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
847
David Woodhousee0c7d762006-05-13 18:07:53 +0100848 unsigned long timeo = jiffies;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200849 int status, state = chip->state;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (state == FL_ERASING)
David Woodhousee0c7d762006-05-13 18:07:53 +0100852 timeo += (HZ * 400) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100854 timeo += (HZ * 20) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Richard Purdie8fe833c2006-03-31 02:31:14 -0800856 led_trigger_event(nand_led_trigger, LED_FULL);
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /* Apply this short delay always to ensure that we do wait tWB in
859 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100860 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200862 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
863 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000864 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200865 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200867 if (in_interrupt() || oops_in_progress)
868 panic_nand_wait(mtd, chip, timeo);
869 else {
870 while (time_before(jiffies, timeo)) {
871 if (chip->dev_ready) {
872 if (chip->dev_ready(mtd))
873 break;
874 } else {
875 if (chip->read_byte(mtd) & NAND_STATUS_READY)
876 break;
877 }
878 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800881 led_trigger_event(nand_led_trigger, LED_OFF);
882
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200883 status = (int)chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return status;
885}
886
887/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700888 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Vimal Singh7d70f332010-02-08 15:50:49 +0530889 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700890 * @mtd: mtd info
891 * @ofs: offset to start unlock from
892 * @len: length to unlock
893 * @invert: when = 0, unlock the range of blocks within the lower and
Vimal Singh7d70f332010-02-08 15:50:49 +0530894 * upper boundary address
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700895 * when = 1, unlock the range of blocks outside the boundaries
Vimal Singh7d70f332010-02-08 15:50:49 +0530896 * of the lower and upper boundary address
897 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700898 * return - unlock status
Vimal Singh7d70f332010-02-08 15:50:49 +0530899 */
900static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
901 uint64_t len, int invert)
902{
903 int ret = 0;
904 int status, page;
905 struct nand_chip *chip = mtd->priv;
906
907 /* Submit address of first page to unlock */
908 page = ofs >> chip->page_shift;
909 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
910
911 /* Submit address of last page to unlock */
912 page = (ofs + len) >> chip->page_shift;
913 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
914 (page | invert) & chip->pagemask);
915
916 /* Call wait ready function */
917 status = chip->waitfunc(mtd, chip);
918 udelay(1000);
919 /* See if device thinks it succeeded */
920 if (status & 0x01) {
921 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
922 __func__, status);
923 ret = -EIO;
924 }
925
926 return ret;
927}
928
929/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700930 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Vimal Singh7d70f332010-02-08 15:50:49 +0530931 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700932 * @mtd: mtd info
933 * @ofs: offset to start unlock from
934 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530935 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700936 * return - unlock status
Vimal Singh7d70f332010-02-08 15:50:49 +0530937 */
938int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
939{
940 int ret = 0;
941 int chipnr;
942 struct nand_chip *chip = mtd->priv;
943
944 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
945 __func__, (unsigned long long)ofs, len);
946
947 if (check_offs_len(mtd, ofs, len))
948 ret = -EINVAL;
949
950 /* Align to last block address if size addresses end of the device */
951 if (ofs + len == mtd->size)
952 len -= mtd->erasesize;
953
954 nand_get_device(chip, mtd, FL_UNLOCKING);
955
956 /* Shift to get chip number */
957 chipnr = ofs >> chip->chip_shift;
958
959 chip->select_chip(mtd, chipnr);
960
961 /* Check, if it is write protected */
962 if (nand_check_wp(mtd)) {
963 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
964 __func__);
965 ret = -EIO;
966 goto out;
967 }
968
969 ret = __nand_unlock(mtd, ofs, len, 0);
970
971out:
Vimal Singh7d70f332010-02-08 15:50:49 +0530972 nand_release_device(mtd);
973
974 return ret;
975}
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200976EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +0530977
978/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700979 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Vimal Singh7d70f332010-02-08 15:50:49 +0530980 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700981 * @mtd: mtd info
982 * @ofs: offset to start unlock from
983 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530984 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700985 * return - lock status
Vimal Singh7d70f332010-02-08 15:50:49 +0530986 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700987 * This feature is not supported in many NAND parts. 'Micron' NAND parts
988 * do have this feature, but it allows only to lock all blocks, not for
Vimal Singh7d70f332010-02-08 15:50:49 +0530989 * specified range for block.
990 *
991 * Implementing 'lock' feature by making use of 'unlock', for now.
992 */
993int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
994{
995 int ret = 0;
996 int chipnr, status, page;
997 struct nand_chip *chip = mtd->priv;
998
999 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
1000 __func__, (unsigned long long)ofs, len);
1001
1002 if (check_offs_len(mtd, ofs, len))
1003 ret = -EINVAL;
1004
1005 nand_get_device(chip, mtd, FL_LOCKING);
1006
1007 /* Shift to get chip number */
1008 chipnr = ofs >> chip->chip_shift;
1009
1010 chip->select_chip(mtd, chipnr);
1011
1012 /* Check, if it is write protected */
1013 if (nand_check_wp(mtd)) {
1014 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
1015 __func__);
1016 status = MTD_ERASE_FAILED;
1017 ret = -EIO;
1018 goto out;
1019 }
1020
1021 /* Submit address of first page to lock */
1022 page = ofs >> chip->page_shift;
1023 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1024
1025 /* Call wait ready function */
1026 status = chip->waitfunc(mtd, chip);
1027 udelay(1000);
1028 /* See if device thinks it succeeded */
1029 if (status & 0x01) {
1030 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
1031 __func__, status);
1032 ret = -EIO;
1033 goto out;
1034 }
1035
1036 ret = __nand_unlock(mtd, ofs, len, 0x1);
1037
1038out:
Vimal Singh7d70f332010-02-08 15:50:49 +05301039 nand_release_device(mtd);
1040
1041 return ret;
1042}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001043EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301044
1045/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001046 * nand_read_page_raw - [Intern] read raw page data without ecc
1047 * @mtd: mtd info structure
1048 * @chip: nand chip info structure
1049 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001050 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001051 *
1052 * Not for syndrome calculating ecc controllers, which use a special oob layout
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001053 */
1054static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001055 uint8_t *buf, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001056{
1057 chip->read_buf(mtd, buf, mtd->writesize);
1058 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1059 return 0;
1060}
1061
1062/**
David Brownell52ff49d2009-03-04 12:01:36 -08001063 * nand_read_page_raw_syndrome - [Intern] read raw page data without ecc
1064 * @mtd: mtd info structure
1065 * @chip: nand chip info structure
1066 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001067 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001068 *
1069 * We need a special oob layout and handling even when OOB isn't used.
1070 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001071static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
1072 struct nand_chip *chip,
1073 uint8_t *buf, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001074{
1075 int eccsize = chip->ecc.size;
1076 int eccbytes = chip->ecc.bytes;
1077 uint8_t *oob = chip->oob_poi;
1078 int steps, size;
1079
1080 for (steps = chip->ecc.steps; steps > 0; steps--) {
1081 chip->read_buf(mtd, buf, eccsize);
1082 buf += eccsize;
1083
1084 if (chip->ecc.prepad) {
1085 chip->read_buf(mtd, oob, chip->ecc.prepad);
1086 oob += chip->ecc.prepad;
1087 }
1088
1089 chip->read_buf(mtd, oob, eccbytes);
1090 oob += eccbytes;
1091
1092 if (chip->ecc.postpad) {
1093 chip->read_buf(mtd, oob, chip->ecc.postpad);
1094 oob += chip->ecc.postpad;
1095 }
1096 }
1097
1098 size = mtd->oobsize - (oob - chip->oob_poi);
1099 if (size)
1100 chip->read_buf(mtd, oob, size);
1101
1102 return 0;
1103}
1104
1105/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001106 * nand_read_page_swecc - [REPLACABLE] software ecc based page read function
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001107 * @mtd: mtd info structure
1108 * @chip: nand chip info structure
1109 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001110 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001111 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001112static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001113 uint8_t *buf, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001115 int i, eccsize = chip->ecc.size;
1116 int eccbytes = chip->ecc.bytes;
1117 int eccsteps = chip->ecc.steps;
1118 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001119 uint8_t *ecc_calc = chip->buffers->ecccalc;
1120 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001121 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001122
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001123 chip->ecc.read_page_raw(mtd, chip, buf, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001124
1125 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1126 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1127
1128 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001129 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001130
1131 eccsteps = chip->ecc.steps;
1132 p = buf;
1133
1134 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1135 int stat;
1136
1137 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001138 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001139 mtd->ecc_stats.failed++;
1140 else
1141 mtd->ecc_stats.corrected += stat;
1142 }
1143 return 0;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001144}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146/**
Alexey Korolev3d459552008-05-15 17:23:18 +01001147 * nand_read_subpage - [REPLACABLE] software ecc based sub-page read function
1148 * @mtd: mtd info structure
1149 * @chip: nand chip info structure
Alexey Korolev17c1d2b2008-08-20 22:32:08 +01001150 * @data_offs: offset of requested data within the page
1151 * @readlen: data length
1152 * @bufpoi: buffer to store read data
Alexey Korolev3d459552008-05-15 17:23:18 +01001153 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001154static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
1155 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
Alexey Korolev3d459552008-05-15 17:23:18 +01001156{
1157 int start_step, end_step, num_steps;
1158 uint32_t *eccpos = chip->ecc.layout->eccpos;
1159 uint8_t *p;
1160 int data_col_addr, i, gaps = 0;
1161 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1162 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001163 int index = 0;
Alexey Korolev3d459552008-05-15 17:23:18 +01001164
1165 /* Column address wihin the page aligned to ECC size (256bytes). */
1166 start_step = data_offs / chip->ecc.size;
1167 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1168 num_steps = end_step - start_step + 1;
1169
1170 /* Data size aligned to ECC ecc.size*/
1171 datafrag_len = num_steps * chip->ecc.size;
1172 eccfrag_len = num_steps * chip->ecc.bytes;
1173
1174 data_col_addr = start_step * chip->ecc.size;
1175 /* If we read not a page aligned data */
1176 if (data_col_addr != 0)
1177 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1178
1179 p = bufpoi + data_col_addr;
1180 chip->read_buf(mtd, p, datafrag_len);
1181
1182 /* Calculate ECC */
1183 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1184 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1185
1186 /* The performance is faster if to position offsets
1187 according to ecc.pos. Let make sure here that
1188 there are no gaps in ecc positions */
1189 for (i = 0; i < eccfrag_len - 1; i++) {
1190 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1191 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1192 gaps = 1;
1193 break;
1194 }
1195 }
1196 if (gaps) {
1197 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1198 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1199 } else {
1200 /* send the command to read the particular ecc bytes */
1201 /* take care about buswidth alignment in read_buf */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001202 index = start_step * chip->ecc.bytes;
1203
1204 aligned_pos = eccpos[index] & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001205 aligned_len = eccfrag_len;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001206 if (eccpos[index] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001207 aligned_len++;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001208 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001209 aligned_len++;
1210
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001211 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1212 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001213 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1214 }
1215
1216 for (i = 0; i < eccfrag_len; i++)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001217 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Alexey Korolev3d459552008-05-15 17:23:18 +01001218
1219 p = bufpoi + data_col_addr;
1220 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1221 int stat;
1222
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001223 stat = chip->ecc.correct(mtd, p,
1224 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Baruch Siach12c8eb92010-08-09 07:20:23 +03001225 if (stat < 0)
Alexey Korolev3d459552008-05-15 17:23:18 +01001226 mtd->ecc_stats.failed++;
1227 else
1228 mtd->ecc_stats.corrected += stat;
1229 }
1230 return 0;
1231}
1232
1233/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001234 * nand_read_page_hwecc - [REPLACABLE] hardware ecc based page read function
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001235 * @mtd: mtd info structure
1236 * @chip: nand chip info structure
1237 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001238 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001239 *
1240 * Not for syndrome calculating ecc controllers which need a special oob layout
1241 */
1242static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001243 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001244{
1245 int i, eccsize = chip->ecc.size;
1246 int eccbytes = chip->ecc.bytes;
1247 int eccsteps = chip->ecc.steps;
1248 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001249 uint8_t *ecc_calc = chip->buffers->ecccalc;
1250 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001251 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001252
1253 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1254 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1255 chip->read_buf(mtd, p, eccsize);
1256 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1257 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001258 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001259
1260 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001261 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001262
1263 eccsteps = chip->ecc.steps;
1264 p = buf;
1265
1266 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1267 int stat;
1268
1269 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001270 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001271 mtd->ecc_stats.failed++;
1272 else
1273 mtd->ecc_stats.corrected += stat;
1274 }
1275 return 0;
1276}
1277
1278/**
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001279 * nand_read_page_hwecc_oob_first - [REPLACABLE] hw ecc, read oob first
1280 * @mtd: mtd info structure
1281 * @chip: nand chip info structure
1282 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001283 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001284 *
1285 * Hardware ECC for large page chips, require OOB to be read first.
1286 * For this ECC mode, the write_page method is re-used from ECC_HW.
1287 * These methods read/write ECC from the OOB area, unlike the
1288 * ECC_HW_SYNDROME support with multiple ECC steps, follows the
1289 * "infix ECC" scheme and reads/writes ECC from the data area, by
1290 * overwriting the NAND manufacturer bad block markings.
1291 */
1292static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
1293 struct nand_chip *chip, uint8_t *buf, int page)
1294{
1295 int i, eccsize = chip->ecc.size;
1296 int eccbytes = chip->ecc.bytes;
1297 int eccsteps = chip->ecc.steps;
1298 uint8_t *p = buf;
1299 uint8_t *ecc_code = chip->buffers->ecccode;
1300 uint32_t *eccpos = chip->ecc.layout->eccpos;
1301 uint8_t *ecc_calc = chip->buffers->ecccalc;
1302
1303 /* Read the OOB area first */
1304 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1305 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1306 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1307
1308 for (i = 0; i < chip->ecc.total; i++)
1309 ecc_code[i] = chip->oob_poi[eccpos[i]];
1310
1311 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1312 int stat;
1313
1314 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1315 chip->read_buf(mtd, p, eccsize);
1316 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1317
1318 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
1319 if (stat < 0)
1320 mtd->ecc_stats.failed++;
1321 else
1322 mtd->ecc_stats.corrected += stat;
1323 }
1324 return 0;
1325}
1326
1327/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001328 * nand_read_page_syndrome - [REPLACABLE] hardware ecc syndrom based page read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001329 * @mtd: mtd info structure
1330 * @chip: nand chip info structure
1331 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001332 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001333 *
1334 * The hw generator calculates the error syndrome automatically. Therefor
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001335 * we need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001336 */
1337static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001338 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001339{
1340 int i, eccsize = chip->ecc.size;
1341 int eccbytes = chip->ecc.bytes;
1342 int eccsteps = chip->ecc.steps;
1343 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001344 uint8_t *oob = chip->oob_poi;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001345
1346 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1347 int stat;
1348
1349 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1350 chip->read_buf(mtd, p, eccsize);
1351
1352 if (chip->ecc.prepad) {
1353 chip->read_buf(mtd, oob, chip->ecc.prepad);
1354 oob += chip->ecc.prepad;
1355 }
1356
1357 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1358 chip->read_buf(mtd, oob, eccbytes);
1359 stat = chip->ecc.correct(mtd, p, oob, NULL);
1360
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001361 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001362 mtd->ecc_stats.failed++;
1363 else
1364 mtd->ecc_stats.corrected += stat;
1365
1366 oob += eccbytes;
1367
1368 if (chip->ecc.postpad) {
1369 chip->read_buf(mtd, oob, chip->ecc.postpad);
1370 oob += chip->ecc.postpad;
1371 }
1372 }
1373
1374 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001375 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001376 if (i)
1377 chip->read_buf(mtd, oob, i);
1378
1379 return 0;
1380}
1381
1382/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001383 * nand_transfer_oob - [Internal] Transfer oob to client buffer
1384 * @chip: nand chip structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07001385 * @oob: oob destination address
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001386 * @ops: oob ops structure
Vitaly Wool70145682006-11-03 18:20:38 +03001387 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001388 */
1389static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001390 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001391{
Florian Fainellif8ac0412010-09-07 13:23:43 +02001392 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001393
1394 case MTD_OOB_PLACE:
1395 case MTD_OOB_RAW:
1396 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1397 return oob + len;
1398
1399 case MTD_OOB_AUTO: {
1400 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001401 uint32_t boffs = 0, roffs = ops->ooboffs;
1402 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001403
Florian Fainellif8ac0412010-09-07 13:23:43 +02001404 for (; free->length && len; free++, len -= bytes) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001405 /* Read request not from offset 0 ? */
1406 if (unlikely(roffs)) {
1407 if (roffs >= free->length) {
1408 roffs -= free->length;
1409 continue;
1410 }
1411 boffs = free->offset + roffs;
1412 bytes = min_t(size_t, len,
1413 (free->length - roffs));
1414 roffs = 0;
1415 } else {
1416 bytes = min_t(size_t, len, free->length);
1417 boffs = free->offset;
1418 }
1419 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001420 oob += bytes;
1421 }
1422 return oob;
1423 }
1424 default:
1425 BUG();
1426 }
1427 return NULL;
1428}
1429
1430/**
1431 * nand_do_read_ops - [Internal] Read data with ECC
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001432 *
David A. Marlin068e3c02005-01-24 03:07:46 +00001433 * @mtd: MTD device structure
1434 * @from: offset to read from
Randy Dunlap844d3b42006-06-28 21:48:27 -07001435 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001436 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001437 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001438 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001439static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1440 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001441{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001442 int chipnr, page, realpage, col, bytes, aligned;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001443 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001444 struct mtd_ecc_stats stats;
1445 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1446 int sndcmd = 1;
1447 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001448 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001449 uint32_t oobreadlen = ops->ooblen;
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001450 uint32_t max_oobsize = ops->mode == MTD_OOB_AUTO ?
1451 mtd->oobavail : mtd->oobsize;
1452
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001453 uint8_t *bufpoi, *oob, *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001455 stats = mtd->ecc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001457 chipnr = (int)(from >> chip->chip_shift);
1458 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001460 realpage = (int)(from >> chip->page_shift);
1461 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001463 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001465 buf = ops->datbuf;
1466 oob = ops->oobbuf;
1467
Florian Fainellif8ac0412010-09-07 13:23:43 +02001468 while (1) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001469 bytes = min(mtd->writesize - col, readlen);
1470 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001471
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001472 /* Is the current page in the buffer ? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001473 if (realpage != chip->pagebuf || oob) {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001474 bufpoi = aligned ? buf : chip->buffers->databuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001476 if (likely(sndcmd)) {
1477 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
1478 sndcmd = 0;
1479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001481 /* Now read the page into the buffer */
David Woodhouse956e9442006-09-25 17:12:39 +01001482 if (unlikely(ops->mode == MTD_OOB_RAW))
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001483 ret = chip->ecc.read_page_raw(mtd, chip,
1484 bufpoi, page);
Alexey Korolev3d459552008-05-15 17:23:18 +01001485 else if (!aligned && NAND_SUBPAGE_READ(chip) && !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001486 ret = chip->ecc.read_subpage(mtd, chip,
1487 col, bytes, bufpoi);
David Woodhouse956e9442006-09-25 17:12:39 +01001488 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001489 ret = chip->ecc.read_page(mtd, chip, bufpoi,
1490 page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001491 if (ret < 0)
David Woodhousee0c7d762006-05-13 18:07:53 +01001492 break;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001493
1494 /* Transfer not aligned data */
1495 if (!aligned) {
Artem Bityutskiyc1194c72010-09-03 22:01:16 +03001496 if (!NAND_SUBPAGE_READ(chip) && !oob &&
1497 !(mtd->ecc_stats.failed - stats.failed))
Alexey Korolev3d459552008-05-15 17:23:18 +01001498 chip->pagebuf = realpage;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001499 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001501
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001502 buf += bytes;
1503
1504 if (unlikely(oob)) {
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001505
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001506 int toread = min(oobreadlen, max_oobsize);
1507
1508 if (toread) {
1509 oob = nand_transfer_oob(chip,
1510 oob, ops, toread);
1511 oobreadlen -= toread;
1512 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001513 }
1514
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001515 if (!(chip->options & NAND_NO_READRDY)) {
1516 /*
1517 * Apply delay or wait for ready/busy pin. Do
1518 * this before the AUTOINCR check, so no
1519 * problems arise if a chip which does auto
1520 * increment is marked as NOAUTOINCR by the
1521 * board driver.
1522 */
1523 if (!chip->dev_ready)
1524 udelay(chip->chip_delay);
1525 else
1526 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001528 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001529 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001530 buf += bytes;
1531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001533 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001534
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001535 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001536 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538 /* For subsequent reads align to page boundary. */
1539 col = 0;
1540 /* Increment page address */
1541 realpage++;
1542
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001543 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 /* Check, if we cross a chip boundary */
1545 if (!page) {
1546 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001547 chip->select_chip(mtd, -1);
1548 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001550
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001551 /* Check, if the chip supports auto page increment
1552 * or if we have hit a block boundary.
David Woodhousee0c7d762006-05-13 18:07:53 +01001553 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001554 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001555 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
1557
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001558 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001559 if (oob)
1560 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001562 if (ret)
1563 return ret;
1564
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001565 if (mtd->ecc_stats.failed - stats.failed)
1566 return -EBADMSG;
1567
1568 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001569}
1570
1571/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001572 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001573 * @mtd: MTD device structure
1574 * @from: offset to read from
1575 * @len: number of bytes to read
1576 * @retlen: pointer to variable to store the number of read bytes
1577 * @buf: the databuffer to put data
1578 *
1579 * Get hold of the chip and call nand_do_read
1580 */
1581static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1582 size_t *retlen, uint8_t *buf)
1583{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001584 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001585 int ret;
1586
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001587 /* Do not allow reads past end of device */
1588 if ((from + len) > mtd->size)
1589 return -EINVAL;
1590 if (!len)
1591 return 0;
1592
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001593 nand_get_device(chip, mtd, FL_READING);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001594
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001595 chip->ops.len = len;
1596 chip->ops.datbuf = buf;
1597 chip->ops.oobbuf = NULL;
1598
1599 ret = nand_do_read_ops(mtd, from, &chip->ops);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001600
Richard Purdie7fd5aec2006-08-27 01:23:33 -07001601 *retlen = chip->ops.retlen;
1602
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001603 nand_release_device(mtd);
1604
1605 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
1607
1608/**
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001609 * nand_read_oob_std - [REPLACABLE] the most common OOB data read function
1610 * @mtd: mtd info structure
1611 * @chip: nand chip info structure
1612 * @page: page number to read
1613 * @sndcmd: flag whether to issue read command or not
1614 */
1615static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1616 int page, int sndcmd)
1617{
1618 if (sndcmd) {
1619 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1620 sndcmd = 0;
1621 }
1622 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1623 return sndcmd;
1624}
1625
1626/**
1627 * nand_read_oob_syndrome - [REPLACABLE] OOB data read function for HW ECC
1628 * with syndromes
1629 * @mtd: mtd info structure
1630 * @chip: nand chip info structure
1631 * @page: page number to read
1632 * @sndcmd: flag whether to issue read command or not
1633 */
1634static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1635 int page, int sndcmd)
1636{
1637 uint8_t *buf = chip->oob_poi;
1638 int length = mtd->oobsize;
1639 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1640 int eccsize = chip->ecc.size;
1641 uint8_t *bufpoi = buf;
1642 int i, toread, sndrnd = 0, pos;
1643
1644 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1645 for (i = 0; i < chip->ecc.steps; i++) {
1646 if (sndrnd) {
1647 pos = eccsize + i * (eccsize + chunk);
1648 if (mtd->writesize > 512)
1649 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1650 else
1651 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1652 } else
1653 sndrnd = 1;
1654 toread = min_t(int, length, chunk);
1655 chip->read_buf(mtd, bufpoi, toread);
1656 bufpoi += toread;
1657 length -= toread;
1658 }
1659 if (length > 0)
1660 chip->read_buf(mtd, bufpoi, length);
1661
1662 return 1;
1663}
1664
1665/**
1666 * nand_write_oob_std - [REPLACABLE] the most common OOB data write function
1667 * @mtd: mtd info structure
1668 * @chip: nand chip info structure
1669 * @page: page number to write
1670 */
1671static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1672 int page)
1673{
1674 int status = 0;
1675 const uint8_t *buf = chip->oob_poi;
1676 int length = mtd->oobsize;
1677
1678 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1679 chip->write_buf(mtd, buf, length);
1680 /* Send command to program the OOB data */
1681 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1682
1683 status = chip->waitfunc(mtd, chip);
1684
Savin Zlobec0d420f92006-06-21 11:51:20 +02001685 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001686}
1687
1688/**
1689 * nand_write_oob_syndrome - [REPLACABLE] OOB data write function for HW ECC
1690 * with syndrome - only for large page flash !
1691 * @mtd: mtd info structure
1692 * @chip: nand chip info structure
1693 * @page: page number to write
1694 */
1695static int nand_write_oob_syndrome(struct mtd_info *mtd,
1696 struct nand_chip *chip, int page)
1697{
1698 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1699 int eccsize = chip->ecc.size, length = mtd->oobsize;
1700 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1701 const uint8_t *bufpoi = chip->oob_poi;
1702
1703 /*
1704 * data-ecc-data-ecc ... ecc-oob
1705 * or
1706 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1707 */
1708 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1709 pos = steps * (eccsize + chunk);
1710 steps = 0;
1711 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001712 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001713
1714 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1715 for (i = 0; i < steps; i++) {
1716 if (sndcmd) {
1717 if (mtd->writesize <= 512) {
1718 uint32_t fill = 0xFFFFFFFF;
1719
1720 len = eccsize;
1721 while (len > 0) {
1722 int num = min_t(int, len, 4);
1723 chip->write_buf(mtd, (uint8_t *)&fill,
1724 num);
1725 len -= num;
1726 }
1727 } else {
1728 pos = eccsize + i * (eccsize + chunk);
1729 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1730 }
1731 } else
1732 sndcmd = 1;
1733 len = min_t(int, length, chunk);
1734 chip->write_buf(mtd, bufpoi, len);
1735 bufpoi += len;
1736 length -= len;
1737 }
1738 if (length > 0)
1739 chip->write_buf(mtd, bufpoi, length);
1740
1741 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1742 status = chip->waitfunc(mtd, chip);
1743
1744 return status & NAND_STATUS_FAIL ? -EIO : 0;
1745}
1746
1747/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001748 * nand_do_read_oob - [Intern] NAND read out-of-band
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 * @mtd: MTD device structure
1750 * @from: offset to read from
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001751 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 *
1753 * NAND read out-of-band data from the spare area
1754 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001755static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1756 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001758 int page, realpage, chipnr, sndcmd = 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001759 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001760 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
Vitaly Wool70145682006-11-03 18:20:38 +03001761 int readlen = ops->ooblen;
1762 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001763 uint8_t *buf = ops->oobbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
vimal singh20d8e242009-07-07 15:49:49 +05301765 DEBUG(MTD_DEBUG_LEVEL3, "%s: from = 0x%08Lx, len = %i\n",
1766 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Adrian Hunter03736152007-01-31 17:58:29 +02001768 if (ops->mode == MTD_OOB_AUTO)
Vitaly Wool70145682006-11-03 18:20:38 +03001769 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02001770 else
1771 len = mtd->oobsize;
1772
1773 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301774 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start read "
1775 "outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001776 return -EINVAL;
1777 }
1778
1779 /* Do not allow reads past end of device */
1780 if (unlikely(from >= mtd->size ||
1781 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1782 (from >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301783 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read beyond end "
1784 "of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001785 return -EINVAL;
1786 }
Vitaly Wool70145682006-11-03 18:20:38 +03001787
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001788 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001789 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001791 /* Shift to get page */
1792 realpage = (int)(from >> chip->page_shift);
1793 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Florian Fainellif8ac0412010-09-07 13:23:43 +02001795 while (1) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001796 sndcmd = chip->ecc.read_oob(mtd, chip, page, sndcmd);
Vitaly Wool70145682006-11-03 18:20:38 +03001797
1798 len = min(len, readlen);
1799 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001800
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001801 if (!(chip->options & NAND_NO_READRDY)) {
1802 /*
1803 * Apply delay or wait for ready/busy pin. Do this
1804 * before the AUTOINCR check, so no problems arise if a
1805 * chip which does auto increment is marked as
1806 * NOAUTOINCR by the board driver.
Thomas Gleixner19870da2005-07-15 14:53:51 +01001807 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001808 if (!chip->dev_ready)
1809 udelay(chip->chip_delay);
Thomas Gleixner19870da2005-07-15 14:53:51 +01001810 else
1811 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 }
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001813
Vitaly Wool70145682006-11-03 18:20:38 +03001814 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02001815 if (!readlen)
1816 break;
1817
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001818 /* Increment page address */
1819 realpage++;
1820
1821 page = realpage & chip->pagemask;
1822 /* Check, if we cross a chip boundary */
1823 if (!page) {
1824 chipnr++;
1825 chip->select_chip(mtd, -1);
1826 chip->select_chip(mtd, chipnr);
1827 }
1828
1829 /* Check, if the chip supports auto page increment
1830 * or if we have hit a block boundary.
1831 */
1832 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1833 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
1835
Vitaly Wool70145682006-11-03 18:20:38 +03001836 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return 0;
1838}
1839
1840/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001841 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 * @from: offset to read from
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001844 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 *
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001846 * NAND read data and/or out-of-band data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001848static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1849 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001851 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001852 int ret = -ENOTSUPP;
1853
1854 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001857 if (ops->datbuf && (from + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05301858 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read "
1859 "beyond end of device\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 return -EINVAL;
1861 }
1862
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001863 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Florian Fainellif8ac0412010-09-07 13:23:43 +02001865 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001866 case MTD_OOB_PLACE:
1867 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001868 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001869 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001870
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001871 default:
1872 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
1874
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001875 if (!ops->datbuf)
1876 ret = nand_do_read_oob(mtd, from, ops);
1877 else
1878 ret = nand_do_read_ops(mtd, from, ops);
1879
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001880out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001882 return ret;
1883}
1884
1885
1886/**
1887 * nand_write_page_raw - [Intern] raw page write function
1888 * @mtd: mtd info structure
1889 * @chip: nand chip info structure
1890 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001891 *
1892 * Not for syndrome calculating ecc controllers, which use a special oob layout
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001893 */
1894static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1895 const uint8_t *buf)
1896{
1897 chip->write_buf(mtd, buf, mtd->writesize);
1898 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899}
1900
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001901/**
David Brownell52ff49d2009-03-04 12:01:36 -08001902 * nand_write_page_raw_syndrome - [Intern] raw page write function
1903 * @mtd: mtd info structure
1904 * @chip: nand chip info structure
1905 * @buf: data buffer
1906 *
1907 * We need a special oob layout and handling even when ECC isn't checked.
1908 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001909static void nand_write_page_raw_syndrome(struct mtd_info *mtd,
1910 struct nand_chip *chip,
1911 const uint8_t *buf)
David Brownell52ff49d2009-03-04 12:01:36 -08001912{
1913 int eccsize = chip->ecc.size;
1914 int eccbytes = chip->ecc.bytes;
1915 uint8_t *oob = chip->oob_poi;
1916 int steps, size;
1917
1918 for (steps = chip->ecc.steps; steps > 0; steps--) {
1919 chip->write_buf(mtd, buf, eccsize);
1920 buf += eccsize;
1921
1922 if (chip->ecc.prepad) {
1923 chip->write_buf(mtd, oob, chip->ecc.prepad);
1924 oob += chip->ecc.prepad;
1925 }
1926
1927 chip->read_buf(mtd, oob, eccbytes);
1928 oob += eccbytes;
1929
1930 if (chip->ecc.postpad) {
1931 chip->write_buf(mtd, oob, chip->ecc.postpad);
1932 oob += chip->ecc.postpad;
1933 }
1934 }
1935
1936 size = mtd->oobsize - (oob - chip->oob_poi);
1937 if (size)
1938 chip->write_buf(mtd, oob, size);
1939}
1940/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001941 * nand_write_page_swecc - [REPLACABLE] software ecc based page write function
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001942 * @mtd: mtd info structure
1943 * @chip: nand chip info structure
1944 * @buf: data buffer
1945 */
1946static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1947 const uint8_t *buf)
1948{
1949 int i, eccsize = chip->ecc.size;
1950 int eccbytes = chip->ecc.bytes;
1951 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001952 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001953 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001954 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001955
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001956 /* Software ecc calculation */
1957 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1958 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001959
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001960 for (i = 0; i < chip->ecc.total; i++)
1961 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001962
Thomas Gleixner90424de2007-04-05 11:44:05 +02001963 chip->ecc.write_page_raw(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001964}
1965
1966/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001967 * nand_write_page_hwecc - [REPLACABLE] hardware ecc based page write function
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001968 * @mtd: mtd info structure
1969 * @chip: nand chip info structure
1970 * @buf: data buffer
1971 */
1972static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1973 const uint8_t *buf)
1974{
1975 int i, eccsize = chip->ecc.size;
1976 int eccbytes = chip->ecc.bytes;
1977 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001978 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001979 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001980 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001981
1982 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1983 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01001984 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001985 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1986 }
1987
1988 for (i = 0; i < chip->ecc.total; i++)
1989 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1990
1991 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1992}
1993
1994/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001995 * nand_write_page_syndrome - [REPLACABLE] hardware ecc syndrom based page write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001996 * @mtd: mtd info structure
1997 * @chip: nand chip info structure
1998 * @buf: data buffer
1999 *
2000 * The hw generator calculates the error syndrome automatically. Therefor
2001 * we need a special oob layout and handling.
2002 */
2003static void nand_write_page_syndrome(struct mtd_info *mtd,
2004 struct nand_chip *chip, const uint8_t *buf)
2005{
2006 int i, eccsize = chip->ecc.size;
2007 int eccbytes = chip->ecc.bytes;
2008 int eccsteps = chip->ecc.steps;
2009 const uint8_t *p = buf;
2010 uint8_t *oob = chip->oob_poi;
2011
2012 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2013
2014 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2015 chip->write_buf(mtd, p, eccsize);
2016
2017 if (chip->ecc.prepad) {
2018 chip->write_buf(mtd, oob, chip->ecc.prepad);
2019 oob += chip->ecc.prepad;
2020 }
2021
2022 chip->ecc.calculate(mtd, p, oob);
2023 chip->write_buf(mtd, oob, eccbytes);
2024 oob += eccbytes;
2025
2026 if (chip->ecc.postpad) {
2027 chip->write_buf(mtd, oob, chip->ecc.postpad);
2028 oob += chip->ecc.postpad;
2029 }
2030 }
2031
2032 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002033 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002034 if (i)
2035 chip->write_buf(mtd, oob, i);
2036}
2037
2038/**
David Woodhouse956e9442006-09-25 17:12:39 +01002039 * nand_write_page - [REPLACEABLE] write one page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002040 * @mtd: MTD device structure
2041 * @chip: NAND chip descriptor
2042 * @buf: the data to write
2043 * @page: page number to write
2044 * @cached: cached programming
Jesper Juhlefbfe96c2006-10-27 23:24:47 +02002045 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002046 */
2047static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
David Woodhouse956e9442006-09-25 17:12:39 +01002048 const uint8_t *buf, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002049{
2050 int status;
2051
2052 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2053
David Woodhouse956e9442006-09-25 17:12:39 +01002054 if (unlikely(raw))
2055 chip->ecc.write_page_raw(mtd, chip, buf);
2056 else
2057 chip->ecc.write_page(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002058
2059 /*
2060 * Cached progamming disabled for now, Not sure if its worth the
2061 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s)
2062 */
2063 cached = 0;
2064
2065 if (!cached || !(chip->options & NAND_CACHEPRG)) {
2066
2067 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002068 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002069 /*
2070 * See if operation failed and additional status checks are
2071 * available
2072 */
2073 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2074 status = chip->errstat(mtd, chip, FL_WRITING, status,
2075 page);
2076
2077 if (status & NAND_STATUS_FAIL)
2078 return -EIO;
2079 } else {
2080 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002081 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002082 }
2083
2084#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
2085 /* Send command to read back the data */
2086 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
2087
2088 if (chip->verify_buf(mtd, buf, mtd->writesize))
2089 return -EIO;
2090#endif
2091 return 0;
2092}
2093
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002094/**
2095 * nand_fill_oob - [Internal] Transfer client buffer to oob
2096 * @chip: nand chip structure
2097 * @oob: oob data buffer
Randy Dunlapb6d676d2010-08-10 18:02:50 -07002098 * @len: oob data write length
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002099 * @ops: oob ops structure
2100 */
Maxim Levitsky782ce792010-02-22 20:39:36 +02002101static uint8_t *nand_fill_oob(struct nand_chip *chip, uint8_t *oob, size_t len,
2102 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002103{
Florian Fainellif8ac0412010-09-07 13:23:43 +02002104 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002105
2106 case MTD_OOB_PLACE:
2107 case MTD_OOB_RAW:
2108 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2109 return oob + len;
2110
2111 case MTD_OOB_AUTO: {
2112 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002113 uint32_t boffs = 0, woffs = ops->ooboffs;
2114 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002115
Florian Fainellif8ac0412010-09-07 13:23:43 +02002116 for (; free->length && len; free++, len -= bytes) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002117 /* Write request not from offset 0 ? */
2118 if (unlikely(woffs)) {
2119 if (woffs >= free->length) {
2120 woffs -= free->length;
2121 continue;
2122 }
2123 boffs = free->offset + woffs;
2124 bytes = min_t(size_t, len,
2125 (free->length - woffs));
2126 woffs = 0;
2127 } else {
2128 bytes = min_t(size_t, len, free->length);
2129 boffs = free->offset;
2130 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002131 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002132 oob += bytes;
2133 }
2134 return oob;
2135 }
2136 default:
2137 BUG();
2138 }
2139 return NULL;
2140}
2141
Florian Fainellif8ac0412010-09-07 13:23:43 +02002142#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002143
2144/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002145 * nand_do_write_ops - [Internal] NAND write with ECC
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002146 * @mtd: MTD device structure
2147 * @to: offset to write to
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002148 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002149 *
2150 * NAND write with ECC
2151 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002152static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2153 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002154{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002155 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002156 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002157 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002158
2159 uint32_t oobwritelen = ops->ooblen;
2160 uint32_t oobmaxlen = ops->mode == MTD_OOB_AUTO ?
2161 mtd->oobavail : mtd->oobsize;
2162
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002163 uint8_t *oob = ops->oobbuf;
2164 uint8_t *buf = ops->datbuf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002165 int ret, subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002166
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002167 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002168 if (!writelen)
2169 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002170
2171 /* reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002172 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302173 printk(KERN_NOTICE "%s: Attempt to write not "
2174 "page aligned data\n", __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002175 return -EINVAL;
2176 }
2177
Thomas Gleixner29072b92006-09-28 15:38:36 +02002178 column = to & (mtd->writesize - 1);
2179 subpage = column || (writelen & (mtd->writesize - 1));
2180
2181 if (subpage && oob)
2182 return -EINVAL;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002183
Thomas Gleixner6a930962006-06-28 00:11:45 +02002184 chipnr = (int)(to >> chip->chip_shift);
2185 chip->select_chip(mtd, chipnr);
2186
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002187 /* Check, if it is write protected */
2188 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002189 return -EIO;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002190
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002191 realpage = (int)(to >> chip->page_shift);
2192 page = realpage & chip->pagemask;
2193 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2194
2195 /* Invalidate the page cache, when we write to the cached page */
2196 if (to <= (chip->pagebuf << chip->page_shift) &&
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002197 (chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002198 chip->pagebuf = -1;
2199
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01002200 /* If we're not given explicit OOB data, let it be 0xFF */
2201 if (likely(!oob))
2202 memset(chip->oob_poi, 0xff, mtd->oobsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002203
Maxim Levitsky782ce792010-02-22 20:39:36 +02002204 /* Don't allow multipage oob writes with offset */
Jon Poveycdcf12b2010-09-30 20:41:34 +09002205 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen))
Maxim Levitsky782ce792010-02-22 20:39:36 +02002206 return -EINVAL;
2207
Florian Fainellif8ac0412010-09-07 13:23:43 +02002208 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002209 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002210 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002211 uint8_t *wbuf = buf;
2212
2213 /* Partial page write ? */
2214 if (unlikely(column || writelen < (mtd->writesize - 1))) {
2215 cached = 0;
2216 bytes = min_t(int, bytes - column, (int) writelen);
2217 chip->pagebuf = -1;
2218 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2219 memcpy(&chip->buffers->databuf[column], buf, bytes);
2220 wbuf = chip->buffers->databuf;
2221 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002222
Maxim Levitsky782ce792010-02-22 20:39:36 +02002223 if (unlikely(oob)) {
2224 size_t len = min(oobwritelen, oobmaxlen);
2225 oob = nand_fill_oob(chip, oob, len, ops);
2226 oobwritelen -= len;
2227 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002228
Thomas Gleixner29072b92006-09-28 15:38:36 +02002229 ret = chip->write_page(mtd, chip, wbuf, page, cached,
David Woodhouse956e9442006-09-25 17:12:39 +01002230 (ops->mode == MTD_OOB_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002231 if (ret)
2232 break;
2233
2234 writelen -= bytes;
2235 if (!writelen)
2236 break;
2237
Thomas Gleixner29072b92006-09-28 15:38:36 +02002238 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002239 buf += bytes;
2240 realpage++;
2241
2242 page = realpage & chip->pagemask;
2243 /* Check, if we cross a chip boundary */
2244 if (!page) {
2245 chipnr++;
2246 chip->select_chip(mtd, -1);
2247 chip->select_chip(mtd, chipnr);
2248 }
2249 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002250
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002251 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002252 if (unlikely(oob))
2253 ops->oobretlen = ops->ooblen;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002254 return ret;
2255}
2256
2257/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002258 * panic_nand_write - [MTD Interface] NAND write with ECC
2259 * @mtd: MTD device structure
2260 * @to: offset to write to
2261 * @len: number of bytes to write
2262 * @retlen: pointer to variable to store the number of written bytes
2263 * @buf: the data to write
2264 *
2265 * NAND write with ECC. Used when performing writes in interrupt context, this
2266 * may for example be called by mtdoops when writing an oops while in panic.
2267 */
2268static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2269 size_t *retlen, const uint8_t *buf)
2270{
2271 struct nand_chip *chip = mtd->priv;
2272 int ret;
2273
2274 /* Do not allow reads past end of device */
2275 if ((to + len) > mtd->size)
2276 return -EINVAL;
2277 if (!len)
2278 return 0;
2279
2280 /* Wait for the device to get ready. */
2281 panic_nand_wait(mtd, chip, 400);
2282
2283 /* Grab the device. */
2284 panic_nand_get_device(chip, mtd, FL_WRITING);
2285
2286 chip->ops.len = len;
2287 chip->ops.datbuf = (uint8_t *)buf;
2288 chip->ops.oobbuf = NULL;
2289
2290 ret = nand_do_write_ops(mtd, to, &chip->ops);
2291
2292 *retlen = chip->ops.retlen;
2293 return ret;
2294}
2295
2296/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002297 * nand_write - [MTD Interface] NAND write with ECC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 * @mtd: MTD device structure
2299 * @to: offset to write to
2300 * @len: number of bytes to write
2301 * @retlen: pointer to variable to store the number of written bytes
2302 * @buf: the data to write
2303 *
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002304 * NAND write with ECC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002306static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002307 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002309 struct nand_chip *chip = mtd->priv;
2310 int ret;
2311
2312 /* Do not allow reads past end of device */
2313 if ((to + len) > mtd->size)
2314 return -EINVAL;
2315 if (!len)
2316 return 0;
2317
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002318 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002319
2320 chip->ops.len = len;
2321 chip->ops.datbuf = (uint8_t *)buf;
2322 chip->ops.oobbuf = NULL;
2323
2324 ret = nand_do_write_ops(mtd, to, &chip->ops);
2325
Richard Purdie7fd5aec2006-08-27 01:23:33 -07002326 *retlen = chip->ops.retlen;
2327
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002328 nand_release_device(mtd);
2329
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002330 return ret;
2331}
2332
2333/**
2334 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
2335 * @mtd: MTD device structure
2336 * @to: offset to write to
2337 * @ops: oob operation description structure
2338 *
2339 * NAND write out-of-band
2340 */
2341static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2342 struct mtd_oob_ops *ops)
2343{
Adrian Hunter03736152007-01-31 17:58:29 +02002344 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002345 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
vimal singh20d8e242009-07-07 15:49:49 +05302347 DEBUG(MTD_DEBUG_LEVEL3, "%s: to = 0x%08x, len = %i\n",
2348 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Adrian Hunter03736152007-01-31 17:58:29 +02002350 if (ops->mode == MTD_OOB_AUTO)
2351 len = chip->ecc.layout->oobavail;
2352 else
2353 len = mtd->oobsize;
2354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002356 if ((ops->ooboffs + ops->ooblen) > len) {
vimal singh20d8e242009-07-07 15:49:49 +05302357 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to write "
2358 "past end of page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 return -EINVAL;
2360 }
2361
Adrian Hunter03736152007-01-31 17:58:29 +02002362 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302363 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start "
2364 "write outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002365 return -EINVAL;
2366 }
2367
Jason Liu775adc32011-02-25 13:06:18 +08002368 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002369 if (unlikely(to >= mtd->size ||
2370 ops->ooboffs + ops->ooblen >
2371 ((mtd->size >> chip->page_shift) -
2372 (to >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302373 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2374 "end of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002375 return -EINVAL;
2376 }
2377
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002378 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002379 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002381 /* Shift to get page */
2382 page = (int)(to >> chip->page_shift);
2383
2384 /*
2385 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2386 * of my DiskOnChip 2000 test units) will clear the whole data page too
2387 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2388 * it in the doc2000 driver in August 1999. dwmw2.
2389 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002390 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392 /* Check, if it is write protected */
2393 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002394 return -EROFS;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002397 if (page == chip->pagebuf)
2398 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002400 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002401 nand_fill_oob(chip, ops->oobbuf, ops->ooblen, ops);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002402 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
2403 memset(chip->oob_poi, 0xff, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002404
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002405 if (status)
2406 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Vitaly Wool70145682006-11-03 18:20:38 +03002408 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002410 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002411}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002413/**
2414 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
2415 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07002416 * @to: offset to write to
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002417 * @ops: oob operation description structure
2418 */
2419static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2420 struct mtd_oob_ops *ops)
2421{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002422 struct nand_chip *chip = mtd->priv;
2423 int ret = -ENOTSUPP;
2424
2425 ops->retlen = 0;
2426
2427 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002428 if (ops->datbuf && (to + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05302429 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2430 "end of device\n", __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002431 return -EINVAL;
2432 }
2433
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002434 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002435
Florian Fainellif8ac0412010-09-07 13:23:43 +02002436 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002437 case MTD_OOB_PLACE:
2438 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002439 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002440 break;
2441
2442 default:
2443 goto out;
2444 }
2445
2446 if (!ops->datbuf)
2447 ret = nand_do_write_oob(mtd, to, ops);
2448 else
2449 ret = nand_do_write_ops(mtd, to, ops);
2450
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002451out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002452 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 return ret;
2454}
2455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 * single_erease_cmd - [GENERIC] NAND standard block erase command function
2458 * @mtd: MTD device structure
2459 * @page: the page address of the block which will be erased
2460 *
2461 * Standard erase command for NAND chips
2462 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002463static void single_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002465 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002467 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2468 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469}
2470
2471/**
2472 * multi_erease_cmd - [GENERIC] AND specific block erase command function
2473 * @mtd: MTD device structure
2474 * @page: the page address of the block which will be erased
2475 *
2476 * AND multi block erase command function
2477 * Erase 4 consecutive blocks
2478 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002479static void multi_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002481 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002483 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2484 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2485 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2486 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2487 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
2489
2490/**
2491 * nand_erase - [MTD Interface] erase block(s)
2492 * @mtd: MTD device structure
2493 * @instr: erase instruction
2494 *
2495 * Erase one ore more blocks
2496 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002497static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498{
David Woodhousee0c7d762006-05-13 18:07:53 +01002499 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002501
David A. Marlin30f464b2005-01-17 18:35:25 +00002502#define BBT_PAGE_MASK 0xffffff3f
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002504 * nand_erase_nand - [Internal] erase block(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 * @mtd: MTD device structure
2506 * @instr: erase instruction
2507 * @allowbbt: allow erasing the bbt area
2508 *
2509 * Erase one ore more blocks
2510 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002511int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2512 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513{
Adrian Hunter69423d92008-12-10 13:37:21 +00002514 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002515 struct nand_chip *chip = mtd->priv;
Florian Fainellif8ac0412010-09-07 13:23:43 +02002516 loff_t rewrite_bbt[NAND_MAX_CHIPS] = {0};
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002517 unsigned int bbt_masked_page = 0xffffffff;
Adrian Hunter69423d92008-12-10 13:37:21 +00002518 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
vimal singh20d8e242009-07-07 15:49:49 +05302520 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
2521 __func__, (unsigned long long)instr->addr,
2522 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302524 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Adrian Hunterbb0eb212008-08-12 12:40:50 +03002527 instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002530 nand_get_device(chip, mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
2532 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002533 page = (int)(instr->addr >> chip->page_shift);
2534 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
2536 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002537 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
2539 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002540 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 /* Check, if it is write protected */
2543 if (nand_check_wp(mtd)) {
vimal singh20d8e242009-07-07 15:49:49 +05302544 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
2545 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 instr->state = MTD_ERASE_FAILED;
2547 goto erase_exit;
2548 }
2549
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002550 /*
2551 * If BBT requires refresh, set the BBT page mask to see if the BBT
2552 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2553 * can not be matched. This is also done when the bbt is actually
2554 * erased to avoid recusrsive updates
2555 */
2556 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2557 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
David A. Marlin30f464b2005-01-17 18:35:25 +00002558
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 /* Loop through the pages */
2560 len = instr->len;
2561
2562 instr->state = MTD_ERASING;
2563
2564 while (len) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002565 /*
2566 * heck if we have a bad block, we do not erase bad blocks !
2567 */
2568 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2569 chip->page_shift, 0, allowbbt)) {
vimal singh20d8e242009-07-07 15:49:49 +05302570 printk(KERN_WARNING "%s: attempt to erase a bad block "
2571 "at page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 instr->state = MTD_ERASE_FAILED;
2573 goto erase_exit;
2574 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002575
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002576 /*
2577 * Invalidate the page cache, if we erase the block which
2578 * contains the current cached page
2579 */
2580 if (page <= chip->pagebuf && chip->pagebuf <
2581 (page + pages_per_block))
2582 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002584 chip->erase_cmd(mtd, page & chip->pagemask);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002585
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002586 status = chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002588 /*
2589 * See if operation failed and additional status checks are
2590 * available
2591 */
2592 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2593 status = chip->errstat(mtd, chip, FL_ERASING,
2594 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002595
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002597 if (status & NAND_STATUS_FAIL) {
vimal singh20d8e242009-07-07 15:49:49 +05302598 DEBUG(MTD_DEBUG_LEVEL0, "%s: Failed erase, "
2599 "page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002601 instr->fail_addr =
2602 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 goto erase_exit;
2604 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002605
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002606 /*
2607 * If BBT requires refresh, set the BBT rewrite flag to the
2608 * page being erased
2609 */
2610 if (bbt_masked_page != 0xffffffff &&
2611 (page & BBT_PAGE_MASK) == bbt_masked_page)
Adrian Hunter69423d92008-12-10 13:37:21 +00002612 rewrite_bbt[chipnr] =
2613 ((loff_t)page << chip->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 /* Increment page address and decrement length */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002616 len -= (1 << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 page += pages_per_block;
2618
2619 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002620 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002622 chip->select_chip(mtd, -1);
2623 chip->select_chip(mtd, chipnr);
David A. Marlin30f464b2005-01-17 18:35:25 +00002624
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002625 /*
2626 * If BBT requires refresh and BBT-PERCHIP, set the BBT
2627 * page mask to see if this BBT should be rewritten
2628 */
2629 if (bbt_masked_page != 0xffffffff &&
2630 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2631 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2632 BBT_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 }
2634 }
2635 instr->state = MTD_ERASE_DONE;
2636
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002637erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
2639 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
2641 /* Deselect and wake up anyone waiting on the device */
2642 nand_release_device(mtd);
2643
David Woodhouse49defc02007-10-06 15:01:59 -04002644 /* Do call back function */
2645 if (!ret)
2646 mtd_erase_callback(instr);
2647
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002648 /*
2649 * If BBT requires refresh and erase was successful, rewrite any
2650 * selected bad block tables
2651 */
2652 if (bbt_masked_page == 0xffffffff || ret)
2653 return ret;
2654
2655 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2656 if (!rewrite_bbt[chipnr])
2657 continue;
2658 /* update the BBT for chip */
vimal singh20d8e242009-07-07 15:49:49 +05302659 DEBUG(MTD_DEBUG_LEVEL0, "%s: nand_update_bbt "
2660 "(%d:0x%0llx 0x%0x)\n", __func__, chipnr,
2661 rewrite_bbt[chipnr], chip->bbt_td->pages[chipnr]);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002662 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
David A. Marlin30f464b2005-01-17 18:35:25 +00002663 }
2664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 /* Return more or less happy */
2666 return ret;
2667}
2668
2669/**
2670 * nand_sync - [MTD Interface] sync
2671 * @mtd: MTD device structure
2672 *
2673 * Sync is actually a wait for chip ready function
2674 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002675static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002677 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
vimal singh20d8e242009-07-07 15:49:49 +05302679 DEBUG(MTD_DEBUG_LEVEL3, "%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
2681 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002682 nand_get_device(chip, mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002684 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685}
2686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002688 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07002690 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002692static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
2694 /* Check for invalid offset */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002695 if (offs > mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 return -EINVAL;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002697
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002698 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699}
2700
2701/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002702 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 * @mtd: MTD device structure
2704 * @ofs: offset relative to mtd start
2705 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002706static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002708 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 int ret;
2710
Florian Fainellif8ac0412010-09-07 13:23:43 +02002711 ret = nand_block_isbad(mtd, ofs);
2712 if (ret) {
David Woodhousee0c7d762006-05-13 18:07:53 +01002713 /* If it was bad already, return success and do nothing. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 if (ret > 0)
2715 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002716 return ret;
2717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002719 return chip->block_markbad(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720}
2721
2722/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002723 * nand_suspend - [MTD Interface] Suspend the NAND flash
2724 * @mtd: MTD device structure
2725 */
2726static int nand_suspend(struct mtd_info *mtd)
2727{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002728 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002729
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002730 return nand_get_device(chip, mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002731}
2732
2733/**
2734 * nand_resume - [MTD Interface] Resume the NAND flash
2735 * @mtd: MTD device structure
2736 */
2737static void nand_resume(struct mtd_info *mtd)
2738{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002739 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002740
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002741 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002742 nand_release_device(mtd);
2743 else
vimal singh20d8e242009-07-07 15:49:49 +05302744 printk(KERN_ERR "%s called for a chip which is not "
2745 "in suspended state\n", __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01002746}
2747
Thomas Gleixnera36ed292006-05-23 11:37:03 +02002748/*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002749 * Set default functions
2750 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002751static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002752{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002754 if (!chip->chip_delay)
2755 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
2757 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002758 if (chip->cmdfunc == NULL)
2759 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
2761 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002762 if (chip->waitfunc == NULL)
2763 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002765 if (!chip->select_chip)
2766 chip->select_chip = nand_select_chip;
2767 if (!chip->read_byte)
2768 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2769 if (!chip->read_word)
2770 chip->read_word = nand_read_word;
2771 if (!chip->block_bad)
2772 chip->block_bad = nand_block_bad;
2773 if (!chip->block_markbad)
2774 chip->block_markbad = nand_default_block_markbad;
2775 if (!chip->write_buf)
2776 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2777 if (!chip->read_buf)
2778 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2779 if (!chip->verify_buf)
2780 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2781 if (!chip->scan_bbt)
2782 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002783
2784 if (!chip->controller) {
2785 chip->controller = &chip->hwcontrol;
2786 spin_lock_init(&chip->controller->lock);
2787 init_waitqueue_head(&chip->controller->wq);
2788 }
2789
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002790}
2791
2792/*
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002793 * sanitize ONFI strings so we can safely print them
2794 */
2795static void sanitize_string(uint8_t *s, size_t len)
2796{
2797 ssize_t i;
2798
2799 /* null terminate */
2800 s[len - 1] = 0;
2801
2802 /* remove non printable chars */
2803 for (i = 0; i < len - 1; i++) {
2804 if (s[i] < ' ' || s[i] > 127)
2805 s[i] = '?';
2806 }
2807
2808 /* remove trailing spaces */
2809 strim(s);
2810}
2811
2812static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
2813{
2814 int i;
2815 while (len--) {
2816 crc ^= *p++ << 8;
2817 for (i = 0; i < 8; i++)
2818 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
2819 }
2820
2821 return crc;
2822}
2823
2824/*
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002825 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise
2826 */
2827static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
2828 int busw)
2829{
2830 struct nand_onfi_params *p = &chip->onfi_params;
2831 int i;
2832 int val;
2833
2834 /* try ONFI for unknow chip or LP */
2835 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
2836 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
2837 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
2838 return 0;
2839
2840 printk(KERN_INFO "ONFI flash detected\n");
2841 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2842 for (i = 0; i < 3; i++) {
2843 chip->read_buf(mtd, (uint8_t *)p, sizeof(*p));
2844 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
2845 le16_to_cpu(p->crc)) {
2846 printk(KERN_INFO "ONFI param page %d valid\n", i);
2847 break;
2848 }
2849 }
2850
2851 if (i == 3)
2852 return 0;
2853
2854 /* check version */
2855 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08002856 if (val & (1 << 5))
2857 chip->onfi_version = 23;
2858 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002859 chip->onfi_version = 22;
2860 else if (val & (1 << 3))
2861 chip->onfi_version = 21;
2862 else if (val & (1 << 2))
2863 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002864 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002865 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002866 else
2867 chip->onfi_version = 0;
2868
2869 if (!chip->onfi_version) {
2870 printk(KERN_INFO "%s: unsupported ONFI version: %d\n",
2871 __func__, val);
2872 return 0;
2873 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002874
2875 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
2876 sanitize_string(p->model, sizeof(p->model));
2877 if (!mtd->name)
2878 mtd->name = p->model;
2879 mtd->writesize = le32_to_cpu(p->byte_per_page);
2880 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize;
2881 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
David Woodhouse4ccb3b42010-12-03 16:36:34 +00002882 chip->chipsize = (uint64_t)le32_to_cpu(p->blocks_per_lun) * mtd->erasesize;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002883 busw = 0;
2884 if (le16_to_cpu(p->features) & 1)
2885 busw = NAND_BUSWIDTH_16;
2886
2887 chip->options &= ~NAND_CHIPOPTIONS_MSK;
2888 chip->options |= (NAND_NO_READRDY |
2889 NAND_NO_AUTOINCR) & NAND_CHIPOPTIONS_MSK;
2890
2891 return 1;
2892}
2893
2894/*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002895 * Get the flash and manufacturer id and lookup if the type is supported
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002896 */
2897static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002898 struct nand_chip *chip,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002899 int busw,
2900 int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00002901 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002902{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002903 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07002904 u8 id_data[8];
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002905 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002908 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Karl Beldanef89a882008-09-15 14:37:29 +02002910 /*
2911 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
2912 * after power-up
2913 */
2914 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2915
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002917 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
2919 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002920 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002921 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Ben Dooksed8165c2008-04-14 14:58:58 +01002923 /* Try again to make sure, as some systems the bus-hold or other
2924 * interface concerns can cause random data which looks like a
2925 * possibly credible NAND flash to appear. If the two results do
2926 * not match, ignore the device completely.
2927 */
2928
2929 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2930
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002931 for (i = 0; i < 2; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002932 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01002933
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002934 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Ben Dooksed8165c2008-04-14 14:58:58 +01002935 printk(KERN_INFO "%s: second ID read did not match "
2936 "%02x,%02x against %02x,%02x\n", __func__,
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002937 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01002938 return ERR_PTR(-ENODEV);
2939 }
2940
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002941 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00002942 type = nand_flash_ids;
2943
2944 for (; type->name != NULL; type++)
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002945 if (*dev_id == type->id)
Florian Fainellif8ac0412010-09-07 13:23:43 +02002946 break;
David Woodhouse5e81e882010-02-26 18:32:56 +00002947
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002948 chip->onfi_version = 0;
2949 if (!type->name || !type->pagesize) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002950 /* Check is chip is ONFI compliant */
2951 ret = nand_flash_detect_onfi(mtd, chip, busw);
2952 if (ret)
2953 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002954 }
2955
2956 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2957
2958 /* Read entire ID string */
2959
2960 for (i = 0; i < 8; i++)
2961 id_data[i] = chip->read_byte(mtd);
2962
David Woodhouse5e81e882010-02-26 18:32:56 +00002963 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002964 return ERR_PTR(-ENODEV);
2965
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002966 if (!mtd->name)
2967 mtd->name = type->name;
2968
Adrian Hunter69423d92008-12-10 13:37:21 +00002969 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002970
Huang Shijie12a40a52010-09-27 10:43:53 +08002971 if (!type->pagesize && chip->init_size) {
2972 /* set the pagesize, oobsize, erasesize by the driver*/
2973 busw = chip->init_size(mtd, chip, id_data);
2974 } else if (!type->pagesize) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002975 int extid;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002976 /* The 3rd id byte holds MLC / multichip data */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002977 chip->cellinfo = id_data[2];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002978 /* The 4th id byte is the important one */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002979 extid = id_data[3];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002980
Kevin Cernekee426c4572010-05-04 20:58:03 -07002981 /*
2982 * Field definitions are in the following datasheets:
2983 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norris34c5bf62010-08-20 10:50:43 -07002984 * New style (6 byte ID): Samsung K9GBG08U0M (p.40)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002985 *
2986 * Check for wraparound + Samsung ID + nonzero 6th byte
2987 * to decide what to do.
2988 */
2989 if (id_data[0] == id_data[6] && id_data[1] == id_data[7] &&
2990 id_data[0] == NAND_MFR_SAMSUNG &&
Tilman Sauerbeckcfe3fda2010-08-20 14:01:47 -07002991 (chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
Kevin Cernekee426c4572010-05-04 20:58:03 -07002992 id_data[5] != 0x00) {
2993 /* Calc pagesize */
2994 mtd->writesize = 2048 << (extid & 0x03);
2995 extid >>= 2;
2996 /* Calc oobsize */
Brian Norris34c5bf62010-08-20 10:50:43 -07002997 switch (extid & 0x03) {
2998 case 1:
2999 mtd->oobsize = 128;
3000 break;
3001 case 2:
3002 mtd->oobsize = 218;
3003 break;
3004 case 3:
3005 mtd->oobsize = 400;
3006 break;
3007 default:
3008 mtd->oobsize = 436;
3009 break;
3010 }
Kevin Cernekee426c4572010-05-04 20:58:03 -07003011 extid >>= 2;
3012 /* Calc blocksize */
3013 mtd->erasesize = (128 * 1024) <<
3014 (((extid >> 1) & 0x04) | (extid & 0x03));
3015 busw = 0;
3016 } else {
3017 /* Calc pagesize */
3018 mtd->writesize = 1024 << (extid & 0x03);
3019 extid >>= 2;
3020 /* Calc oobsize */
3021 mtd->oobsize = (8 << (extid & 0x01)) *
3022 (mtd->writesize >> 9);
3023 extid >>= 2;
3024 /* Calc blocksize. Blocksize is multiples of 64KiB */
3025 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3026 extid >>= 2;
3027 /* Get buswidth information */
3028 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
3029 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003030 } else {
3031 /*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003032 * Old devices have chip data hardcoded in the device id table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003033 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003034 mtd->erasesize = type->erasesize;
3035 mtd->writesize = type->pagesize;
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02003036 mtd->oobsize = mtd->writesize / 32;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003037 busw = type->options & NAND_BUSWIDTH_16;
Brian Norris2173bae2010-08-19 08:11:02 -07003038
3039 /*
3040 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3041 * some Spansion chips have erasesize that conflicts with size
3042 * listed in nand_ids table
3043 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3044 */
3045 if (*maf_id == NAND_MFR_AMD && id_data[4] != 0x00 &&
3046 id_data[5] == 0x00 && id_data[6] == 0x00 &&
3047 id_data[7] == 0x00 && mtd->writesize == 512) {
3048 mtd->erasesize = 128 * 1024;
3049 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3050 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003051 }
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003052 /* Get chip options, preserve non chip based options */
3053 chip->options &= ~NAND_CHIPOPTIONS_MSK;
3054 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
3055
3056 /* Check if chip is a not a samsung device. Do not clear the
3057 * options for chips which are not having an extended id.
3058 */
3059 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3060 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3061ident_done:
3062
3063 /*
3064 * Set chip as a default. Board drivers can override it, if necessary
3065 */
3066 chip->options |= NAND_NO_AUTOINCR;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003067
3068 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003069 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003070 if (nand_manuf_ids[maf_idx].id == *maf_id)
3071 break;
3072 }
3073
3074 /*
3075 * Check, if buswidth is correct. Hardware drivers should set
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003076 * chip correct !
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003077 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003078 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003079 printk(KERN_INFO "NAND device: Manufacturer ID:"
3080 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003081 *dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003082 printk(KERN_WARNING "NAND bus width %d instead %d bit\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003083 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003084 busw ? 16 : 8);
3085 return ERR_PTR(-EINVAL);
3086 }
3087
3088 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003089 chip->page_shift = ffs(mtd->writesize) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003090 /* Convert chipsize to number of pages per chip -1. */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003091 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003092
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003093 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003094 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003095 if (chip->chipsize & 0xffffffff)
3096 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003097 else {
3098 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3099 chip->chip_shift += 32 - 1;
3100 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003101
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03003102 chip->badblockbits = 8;
3103
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003104 /* Set the bad block position */
Brian Norris065a1ed2010-08-18 11:25:04 -07003105 if (mtd->writesize > 512 || (busw & NAND_BUSWIDTH_16))
Brian Norrisc7b28e22010-07-13 15:13:00 -07003106 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
Brian Norris065a1ed2010-08-18 11:25:04 -07003107 else
3108 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003109
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003110 /*
3111 * Bad block marker is stored in the last page of each block
Brian Norrisc7b28e22010-07-13 15:13:00 -07003112 * on Samsung and Hynix MLC devices; stored in first two pages
3113 * of each block on Micron devices with 2KiB pages and on
Brian Norris13ed7ae2010-08-20 12:36:12 -07003114 * SLC Samsung, Hynix, Toshiba and AMD/Spansion. All others scan
3115 * only the first page.
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003116 */
3117 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3118 (*maf_id == NAND_MFR_SAMSUNG ||
3119 *maf_id == NAND_MFR_HYNIX))
Brian Norris5fb15492011-05-31 16:31:21 -07003120 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003121 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3122 (*maf_id == NAND_MFR_SAMSUNG ||
3123 *maf_id == NAND_MFR_HYNIX ||
Brian Norris13ed7ae2010-08-20 12:36:12 -07003124 *maf_id == NAND_MFR_TOSHIBA ||
Brian Norrisc7b28e22010-07-13 15:13:00 -07003125 *maf_id == NAND_MFR_AMD)) ||
3126 (mtd->writesize == 2048 &&
3127 *maf_id == NAND_MFR_MICRON))
Brian Norris5fb15492011-05-31 16:31:21 -07003128 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003129
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003130 /* Check for AND chips with 4 page planes */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003131 if (chip->options & NAND_4PAGE_ARRAY)
3132 chip->erase_cmd = multi_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003133 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003134 chip->erase_cmd = single_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003135
3136 /* Do not replace user supplied command function ! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003137 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3138 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003139
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003140 /* TODO onfi flash name */
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003141 printk(KERN_INFO "NAND device: Manufacturer ID:"
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003142 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, *dev_id,
3143 nand_manuf_ids[maf_idx].name,
Brian Norris0b524fb2010-12-12 00:23:32 -08003144 chip->onfi_version ? chip->onfi_params.model : type->name);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003145
3146 return type;
3147}
3148
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003149/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003150 * nand_scan_ident - [NAND Interface] Scan for the NAND device
3151 * @mtd: MTD device structure
3152 * @maxchips: Number of chips to scan for
David Woodhouse5e81e882010-02-26 18:32:56 +00003153 * @table: Alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003154 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003155 * This is the first phase of the normal nand_scan() function. It
3156 * reads the flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003157 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003158 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003159 */
David Woodhouse5e81e882010-02-26 18:32:56 +00003160int nand_scan_ident(struct mtd_info *mtd, int maxchips,
3161 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003162{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003163 int i, busw, nand_maf_id, nand_dev_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003164 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003165 struct nand_flash_dev *type;
3166
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003167 /* Get buswidth to select the correct functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003168 busw = chip->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003169 /* Set the default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003170 nand_set_defaults(chip, busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003171
3172 /* Read the flash type */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003173 type = nand_get_flash_type(mtd, chip, busw,
3174 &nand_maf_id, &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003175
3176 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00003177 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
3178 printk(KERN_WARNING "No NAND device found.\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003179 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003180 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 }
3182
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003183 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01003184 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003185 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02003186 /* See comment in nand_get_flash_type for reset */
3187 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003189 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003191 if (nand_maf_id != chip->read_byte(mtd) ||
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003192 nand_dev_id != chip->read_byte(mtd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 break;
3194 }
3195 if (i > 1)
3196 printk(KERN_INFO "%d NAND chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003197
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003199 chip->numchips = i;
3200 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
David Woodhouse3b85c322006-09-25 17:06:53 +01003202 return 0;
3203}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003204EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01003205
3206
3207/**
3208 * nand_scan_tail - [NAND Interface] Scan for the NAND device
3209 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01003210 *
3211 * This is the second phase of the normal nand_scan() function. It
3212 * fills out all the uninitialized function pointers with the defaults
3213 * and scans for a bad block table if appropriate.
3214 */
3215int nand_scan_tail(struct mtd_info *mtd)
3216{
3217 int i;
3218 struct nand_chip *chip = mtd->priv;
3219
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003220 if (!(chip->options & NAND_OWN_BUFFERS))
3221 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
3222 if (!chip->buffers)
3223 return -ENOMEM;
3224
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01003225 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01003226 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003227
3228 /*
3229 * If no default placement scheme is given, select an appropriate one
3230 */
Ivan Djelic193bd402011-03-11 11:05:33 +01003231 if (!chip->ecc.layout && (chip->ecc.mode != NAND_ECC_SOFT_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003232 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 case 8:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003234 chip->ecc.layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 break;
3236 case 16:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003237 chip->ecc.layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 break;
3239 case 64:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003240 chip->ecc.layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003242 case 128:
3243 chip->ecc.layout = &nand_oob_128;
3244 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003246 printk(KERN_WARNING "No oob scheme defined for "
3247 "oobsize %d\n", mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 BUG();
3249 }
3250 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003251
David Woodhouse956e9442006-09-25 17:12:39 +01003252 if (!chip->write_page)
3253 chip->write_page = nand_write_page;
3254
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003255 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003256 * check ECC mode, default to software if 3byte/512byte hardware ECC is
3257 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01003258 */
David Woodhouse956e9442006-09-25 17:12:39 +01003259
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003260 switch (chip->ecc.mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003261 case NAND_ECC_HW_OOB_FIRST:
3262 /* Similar to NAND_ECC_HW, but a separate read_page handle */
3263 if (!chip->ecc.calculate || !chip->ecc.correct ||
3264 !chip->ecc.hwctl) {
3265 printk(KERN_WARNING "No ECC functions supplied; "
3266 "Hardware ECC not possible\n");
3267 BUG();
3268 }
3269 if (!chip->ecc.read_page)
3270 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
3271
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003272 case NAND_ECC_HW:
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003273 /* Use standard hwecc read page function ? */
3274 if (!chip->ecc.read_page)
3275 chip->ecc.read_page = nand_read_page_hwecc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003276 if (!chip->ecc.write_page)
3277 chip->ecc.write_page = nand_write_page_hwecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003278 if (!chip->ecc.read_page_raw)
3279 chip->ecc.read_page_raw = nand_read_page_raw;
3280 if (!chip->ecc.write_page_raw)
3281 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003282 if (!chip->ecc.read_oob)
3283 chip->ecc.read_oob = nand_read_oob_std;
3284 if (!chip->ecc.write_oob)
3285 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003286
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003287 case NAND_ECC_HW_SYNDROME:
Scott Wood78b65172007-12-13 11:15:28 -06003288 if ((!chip->ecc.calculate || !chip->ecc.correct ||
3289 !chip->ecc.hwctl) &&
3290 (!chip->ecc.read_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003291 chip->ecc.read_page == nand_read_page_hwecc ||
Scott Wood78b65172007-12-13 11:15:28 -06003292 !chip->ecc.write_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003293 chip->ecc.write_page == nand_write_page_hwecc)) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003294 printk(KERN_WARNING "No ECC functions supplied; "
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003295 "Hardware ECC not possible\n");
3296 BUG();
3297 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003298 /* Use standard syndrome read/write page function ? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003299 if (!chip->ecc.read_page)
3300 chip->ecc.read_page = nand_read_page_syndrome;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003301 if (!chip->ecc.write_page)
3302 chip->ecc.write_page = nand_write_page_syndrome;
David Brownell52ff49d2009-03-04 12:01:36 -08003303 if (!chip->ecc.read_page_raw)
3304 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
3305 if (!chip->ecc.write_page_raw)
3306 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003307 if (!chip->ecc.read_oob)
3308 chip->ecc.read_oob = nand_read_oob_syndrome;
3309 if (!chip->ecc.write_oob)
3310 chip->ecc.write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003311
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003312 if (mtd->writesize >= chip->ecc.size)
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003313 break;
3314 printk(KERN_WARNING "%d byte HW ECC not possible on "
3315 "%d byte page size, fallback to SW ECC\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003316 chip->ecc.size, mtd->writesize);
3317 chip->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003319 case NAND_ECC_SOFT:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003320 chip->ecc.calculate = nand_calculate_ecc;
3321 chip->ecc.correct = nand_correct_data;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003322 chip->ecc.read_page = nand_read_page_swecc;
Alexey Korolev3d459552008-05-15 17:23:18 +01003323 chip->ecc.read_subpage = nand_read_subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003324 chip->ecc.write_page = nand_write_page_swecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003325 chip->ecc.read_page_raw = nand_read_page_raw;
3326 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003327 chip->ecc.read_oob = nand_read_oob_std;
3328 chip->ecc.write_oob = nand_write_oob_std;
Singh, Vimal9a732902008-12-12 00:10:57 +00003329 if (!chip->ecc.size)
3330 chip->ecc.size = 256;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003331 chip->ecc.bytes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003333
Ivan Djelic193bd402011-03-11 11:05:33 +01003334 case NAND_ECC_SOFT_BCH:
3335 if (!mtd_nand_has_bch()) {
3336 printk(KERN_WARNING "CONFIG_MTD_ECC_BCH not enabled\n");
3337 BUG();
3338 }
3339 chip->ecc.calculate = nand_bch_calculate_ecc;
3340 chip->ecc.correct = nand_bch_correct_data;
3341 chip->ecc.read_page = nand_read_page_swecc;
3342 chip->ecc.read_subpage = nand_read_subpage;
3343 chip->ecc.write_page = nand_write_page_swecc;
3344 chip->ecc.read_page_raw = nand_read_page_raw;
3345 chip->ecc.write_page_raw = nand_write_page_raw;
3346 chip->ecc.read_oob = nand_read_oob_std;
3347 chip->ecc.write_oob = nand_write_oob_std;
3348 /*
3349 * Board driver should supply ecc.size and ecc.bytes values to
3350 * select how many bits are correctable; see nand_bch_init()
3351 * for details.
3352 * Otherwise, default to 4 bits for large page devices
3353 */
3354 if (!chip->ecc.size && (mtd->oobsize >= 64)) {
3355 chip->ecc.size = 512;
3356 chip->ecc.bytes = 7;
3357 }
3358 chip->ecc.priv = nand_bch_init(mtd,
3359 chip->ecc.size,
3360 chip->ecc.bytes,
3361 &chip->ecc.layout);
3362 if (!chip->ecc.priv) {
3363 printk(KERN_WARNING "BCH ECC initialization failed!\n");
3364 BUG();
3365 }
3366 break;
3367
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003368 case NAND_ECC_NONE:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003369 printk(KERN_WARNING "NAND_ECC_NONE selected by board driver. "
3370 "This is not recommended !!\n");
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003371 chip->ecc.read_page = nand_read_page_raw;
3372 chip->ecc.write_page = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003373 chip->ecc.read_oob = nand_read_oob_std;
David Brownell52ff49d2009-03-04 12:01:36 -08003374 chip->ecc.read_page_raw = nand_read_page_raw;
3375 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003376 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003377 chip->ecc.size = mtd->writesize;
3378 chip->ecc.bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 break;
David Woodhouse956e9442006-09-25 17:12:39 +01003380
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003382 printk(KERN_WARNING "Invalid NAND_ECC_MODE %d\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003383 chip->ecc.mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003384 BUG();
3385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003387 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003388 * The number of bytes available for a client to place data into
3389 * the out of band area
3390 */
3391 chip->ecc.layout->oobavail = 0;
David Brownell81d19b02009-04-21 19:51:20 -07003392 for (i = 0; chip->ecc.layout->oobfree[i].length
3393 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003394 chip->ecc.layout->oobavail +=
3395 chip->ecc.layout->oobfree[i].length;
Vitaly Wool1f922672007-03-06 16:56:34 +03003396 mtd->oobavail = chip->ecc.layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003397
3398 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003399 * Set the number of read / write steps for one page depending on ECC
3400 * mode
3401 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003402 chip->ecc.steps = mtd->writesize / chip->ecc.size;
Florian Fainellif8ac0412010-09-07 13:23:43 +02003403 if (chip->ecc.steps * chip->ecc.size != mtd->writesize) {
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003404 printk(KERN_WARNING "Invalid ecc parameters\n");
3405 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003407 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003408
Thomas Gleixner29072b92006-09-28 15:38:36 +02003409 /*
3410 * Allow subpage writes up to ecc.steps. Not possible for MLC
3411 * FLASH.
3412 */
3413 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3414 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
Florian Fainellif8ac0412010-09-07 13:23:43 +02003415 switch (chip->ecc.steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02003416 case 2:
3417 mtd->subpage_sft = 1;
3418 break;
3419 case 4:
3420 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003421 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02003422 mtd->subpage_sft = 2;
3423 break;
3424 }
3425 }
3426 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3427
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02003428 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003429 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
3431 /* De-select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003432 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
3434 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003435 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
3437 /* Fill in remaining MTD driver data */
3438 mtd->type = MTD_NANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02003439 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3440 MTD_CAP_NANDFLASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 mtd->erase = nand_erase;
3442 mtd->point = NULL;
3443 mtd->unpoint = NULL;
3444 mtd->read = nand_read;
3445 mtd->write = nand_write;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003446 mtd->panic_write = panic_nand_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 mtd->read_oob = nand_read_oob;
3448 mtd->write_oob = nand_write_oob;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 mtd->sync = nand_sync;
3450 mtd->lock = NULL;
3451 mtd->unlock = NULL;
Vitaly Wool962034f2005-09-15 14:58:53 +01003452 mtd->suspend = nand_suspend;
3453 mtd->resume = nand_resume;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 mtd->block_isbad = nand_block_isbad;
3455 mtd->block_markbad = nand_block_markbad;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01003456 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003458 /* propagate ecc.layout to mtd_info */
3459 mtd->ecclayout = chip->ecc.layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003461 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003462 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003463 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
3465 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003466 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003468EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469
Rusty Russella6e6abd2009-03-31 13:05:31 -06003470/* is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003471 * test if this is a module _anyway_ -- they'd have to try _really_ hard
3472 * to call us from in-kernel code if the core NAND support is modular. */
David Woodhouse3b85c322006-09-25 17:06:53 +01003473#ifdef MODULE
3474#define caller_is_module() (1)
3475#else
3476#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06003477 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01003478#endif
3479
3480/**
3481 * nand_scan - [NAND Interface] Scan for the NAND device
3482 * @mtd: MTD device structure
3483 * @maxchips: Number of chips to scan for
3484 *
3485 * This fills out all the uninitialized function pointers
3486 * with the defaults.
3487 * The flash ID is read and the mtd/chip structures are
3488 * filled with the appropriate values.
3489 * The mtd->owner field must be set to the module of the caller
3490 *
3491 */
3492int nand_scan(struct mtd_info *mtd, int maxchips)
3493{
3494 int ret;
3495
3496 /* Many callers got this wrong, so check for it for a while... */
3497 if (!mtd->owner && caller_is_module()) {
vimal singh20d8e242009-07-07 15:49:49 +05303498 printk(KERN_CRIT "%s called with NULL mtd->owner!\n",
3499 __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01003500 BUG();
3501 }
3502
David Woodhouse5e81e882010-02-26 18:32:56 +00003503 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01003504 if (!ret)
3505 ret = nand_scan_tail(mtd);
3506 return ret;
3507}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003508EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01003509
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003511 * nand_release - [NAND Interface] Free resources held by the NAND device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 * @mtd: MTD device structure
3513*/
David Woodhousee0c7d762006-05-13 18:07:53 +01003514void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003516 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517
Ivan Djelic193bd402011-03-11 11:05:33 +01003518 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
3519 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
3520
Jamie Iles5ffcaf32011-05-23 10:22:46 +01003521 mtd_device_unregister(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
Jesper Juhlfa671642005-11-07 01:01:27 -08003523 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003524 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003525 if (!(chip->options & NAND_OWN_BUFFERS))
3526 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07003527
3528 /* Free bad block descriptor memory */
3529 if (chip->badblock_pattern && chip->badblock_pattern->options
3530 & NAND_BBT_DYNAMICSTRUCT)
3531 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532}
David Woodhousee0c7d762006-05-13 18:07:53 +01003533EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08003534
3535static int __init nand_base_init(void)
3536{
3537 led_trigger_register_simple("nand-disk", &nand_led_trigger);
3538 return 0;
3539}
3540
3541static void __exit nand_base_exit(void)
3542{
3543 led_trigger_unregister_simple(nand_led_trigger);
3544}
3545
3546module_init(nand_base_init);
3547module_exit(nand_base_exit);
3548
David Woodhousee0c7d762006-05-13 18:07:53 +01003549MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003550MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
3551MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01003552MODULE_DESCRIPTION("Generic NAND flash driver code");